@charset "utf-8";
 
 

.work-sans-<uniquifier> {
  font-family: "Work Sans", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


/*************** DEFAULT CSS ***************/
:root {
	--body-font:"Work Sans", serif;
	--body-color: #121212;
	--primary-color: #002A53;
	--secondary-color: #BD931B; 
	--black: #000;
	--white: #fff;
	--grey: #F1F3F5;
	--grey-dark	:#ABBCCC;
	--font-weight-light:300;
	--font-weight-normal:400;
	--font-weight-medium:500;	
	--font-weight-bold:600;		 	 
}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	/*letter-spacing: -.1em;-*/
	font-weight: var(--font-weight-light);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background: var(--white);	 
	overflow-x: hidden;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
 
::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--secondary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;

}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 25px 0;
	padding: 0;
	font-weight: normal;
}

.hr {
	margin: 30px 0;
	height: 1px;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0 ,0.2);
	display: block;
	width: 100%;
	height:1px;
	position: relative;
}
 
img {
	border: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a img {
	border: 0;
}

/*-----------text styles------------*/


.text-white {
	color: var(--white) !important;
}

.text-blue {
	color: var(--pramary-color) !important;
}
 .text-black {
	color: var(--black) !important;
}
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

.text-justify {
	text-align: justify;
}

/*-----------background styles------------*/
.corner-round{
	overflow:hidden;
	border-radius: 12px;
}
.bg-gradient{
	background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color);
	color:#fff;
}
.bg-secondary {
	background: var(--secondary-color);
	color:#fff;
}

.bg-grey {
	background: var(--grey);
}
 
 .dots-texture{
	background-image: url(../images/dots.png);
}
/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--white);
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/HiLITE-logo-black.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
	margin: -100px 0 0 -100px;
}

 

 
/*********************************/

.container {
	width: 1366px;
	margin: 0 auto;
	position:relative;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
 
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.corner-radius{
	border-radius: 50%;
	}	
 
/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	border-radius: 12px; 
}

 .hover-effect i{
    width:50px;
    height:50px;
    background-color:var(--primary-color);
	border-radius: 50%;
    color:#fff;
    position:absolute;
    left:50%;
    top:-100px;
    z-index:1;
    line-height:50px;
    text-align:center;
    margin:0 0 0 -25px;
    -webkit-transition:all 300ms ease-in-out;
    -moz-transition:all 300ms ease-in-out;
    transition:all 300ms ease-in-out;
}
 .hover-effect:hover i{
    top:50%;
    margin:-25px 0 0 -25px;
}

 .hover-effect i:hover{
	background-color:var(--secondary-color);
	}
	
	

.hover-effect img {
 	display:block;
  	width:100%;
	-webkit-filter: none;
    filter: none;
 	-webkit-transition: all .5s;
    transition: all .5s;
}
.hover-effect:hover img {
     -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	/*-webkit-filter: brightness(70%);*/
	filter: grayscale(60%);
	-webkit-filter: grayscale(60%);
}


/*.hover-effect:after {
  background:#FFF;
  width:0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 50%;
  content: '';
  opacity: 0.7;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hover-effect:hover:after {
	opacity: 0.1;
	width: 100%;
  	height: 100%;
	left: 0;
    bottom: 0;

}
*/
section {
	width: 100%;
	display:block;
	position: relative;
}
.section-spacing{
	 padding:100px 0;
 }
.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}

/*********************************************/ 
 
 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:40px 0;
	 z-index:5;
	 background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,1));
	 -webkit-transition: all 300ms ease-in-out;
	 -moz-transition: all 300ms ease-in-out;
	 transition: all 300ms ease-in-out;
}
 header.smaller {
	padding:30px 0;
	position: fixed;
	background-image:none;
	background-color:var(--quaternary-color);
	box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1); 
	background-image:none;
	 background-image:none;
	 background-color:var(--primary-color);
}
 

 
.logo { 
	padding:0;
	position:absolute;
	left:50%;
	top:-20px;
	margin-left:-85px;
	width:170px;
	z-index:99;
}

.logo img {
	width:100%;
	display:block;
}
header.smaller .logo{
	width:100px;
    margin-left:-50px;
	top:-15px;
}
 

/***********social ***********/
 
.link {}

.link a {
	
	color: var(--white);
	font-size: 14px; 
	padding: 10px 20px 10px 30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	border-radius: 50px;
	border:1px solid var(--white);
	font-weight:var(--font-weight-bold);
}

 .link a i {
	 margin-left:15px;
 }
	 
.link a:hover {
	background-color: var(--white);
	color:var(--primary-color);
}
 
.link-reverse{}
.link-reverse a{
	border:1px solid var(--white);
	background-color: var(--white);
	color:var(--primary-color);
}
.link-reverse a:hover{
	border:1px solid var(--primary-color);
	background-color: var(--primary-color);
	color:var(--white);
	}
.caps{
	text-transform:uppercase;
}
 
.heading{
	font-size:56px;
	line-height:normal;
	letter-spacing: -.05em;
	 font-weight:var(--font-weight-light);
}
.heading span{
	font-weight:var(--font-weight-medium);
}

.subheading {
	font-size: 26px;
	line-height:34px;	
}
 
.subtitle{
	font-size: 18px;
	font-weight:normal;
	line-height:normal;
}
.bold, strong{
	font-weight:var(--font-weight-bold);
}
.section-title{
	text-transform:uppercase;
	font-size:14px;
	line-height:normal;
	letter-spacing:3px;
	font-weight:var(--font-weight-bold);
	margin:0 0 30px 0 !important;
	padding:0 0 20px 0;	
	position:relative;
	text-align:center;
	color:var(--black);
}
.section-title:before{
	 width:70px;
	 height:1px;
	 content:'';
	 position:absolute;
	 left:50%;
	 bottom:0;
	 margin-left:-35px;
	 background-color:var(--primary-color);
}
/****************************/
  
.pos-relative{
	position:relative;
}
   
 
 

/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
  position:absolute;
  left:0;
  top:-80px;
  z-index:-1;
 }

.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
  gap: 2em;    
}

.scroll h2 {
  font-size: 100px;
  line-height:100px;
  color: var(--black);
  text-transform:uppercase;
  -webkit-text-stroke: 1px #313131;
  font-family: var(--heading-font-bold);
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--tertiary-color);
	outline-offset: 4px;
	outline:1px solid var(--tertiary-color);
	border-radius: 50%;
	display:inline-block;
	position:relative;
	margin:0 25px;
	vertical-align:middle
 
	}
.RightToLeft {
  animation: RightToLeft 20s infinite linear;

  
}

@keyframes  RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.LeftToRight {
  animation: LeftToRight 20s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

  

/*******funfacts***********/
.funfacts{
	width:40%;
}

 .funfacts ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style:none;
	padding:0;
	margin:0;
	position:relative;
}
 
.funfacts ul:after{
	width:10px;
	height:10px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-5px 0 0 -5px;
	content:'';
	background-color:#fff;
	border-radius:50%;
	 
}

.funfacts ul li{
	flex: 0 0 50%;
	padding:30px;
	margin:-1px 0 0 -1px;
	font-weight:var(--font-weight-bold);
	text-align:center;
	position:relative;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.funfacts ul li img{
	display:inline-block;
	width:70px;
}
.funfacts ul li:hover{
	color:rgba(255 ,255, 255, 0.8);
}
 
 
 .funfacts ul li h2{
	 font-size:46px;
	 line-height:36px;	 
	 margin:0 0 10px 0;
 }
  
 
 .funfacts i{
 	 font-size:40px;
	 color:var(--white);
	 margin:0 0 25px 0;
 	 
 } 
 .funfacts p{
 	 
	text-transform:uppercase;
	font-size:12px;
	margin:0;
 	 
 } 
 .border-right-bottom{
	border-right:1px solid var(--white);
	border-bottom:1px solid var(--white);
	border-radius: 0 0 50px 0;
	}  
  
.border-left-bottom{
	border-left:1px solid var(--white);
	border-bottom:1px solid var(--white);
	border-radius: 0 0 0 50px;
	}     
.border-top-right{
	border-top:1px solid var(--white);
	border-right:1px solid var(--white);
	border-radius:0   50px 0 0;
	}   
.border-left-top{
	border-left:1px solid var(--white);
	border-top:1px solid var(--white);
	border-radius:50px 0 0 0;
	}
/************************/	
.project-details{
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	background-color:var(--white);
	border-radius:12px;
	flex: 0 0 31%;
	min-height:180px;
	padding:20px 40px;
	display: flex;
    flex-wrap: wrap; 
	align-items: center; 
	justify-content: space-between;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.project-details:hover{
	background-color:var(--primary-color);
	color:var(--white);
	}
.pro-icon{
	width:20%;
}
.pro-icon img{
	filter: invert(55%) sepia(70%) saturate(3.5);
	width:100%;
	 
	} 
	
.pro-content{
	width:70%;
}
.pro-content p:last-child{
	 margin:0;
	 line-height:24px;
	 font-size:16px;
} 	
.pro-content h2{
	font-size:20px;
	line-height:normal;
	margin:0 0 10px 0;
	font-weight:var(--font-weight-bold);	
} 



 /***********Amenities *******************/
 
 .amenities-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	padding:10px;
	justify-content: space-between;
 
 
  }
 
.amenities-content {
	flex: 0 0 38%;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	padding:50px;
	border-radius:12px;
}
 
.amenities-img {
	flex: 0 0 60%;
}
.amenities-img img {
	width:100%;
	display:block;
	border-radius:12px;
}
.amenities-content h2{
	font-size:30px;
	margin:0 0 15px 0;
	line-height:normal;
	letter-spacing: -.05em;
	font-weight:var(--font-weight-light);
}
.amenities-content h2 span{
	font-weight:var(--font-weight-medium);
}
 /**********************news**********************/
 
.shadow{
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:0 0 0 70px;
	margin-bottom:25px;
}
.iconic:last-child{
	border-bottom:0;
}

.iconic h2{
	font-size:30px;
	margin:0 0 15px 0;
	line-height:normal;
	letter-spacing: -.05em;
	font-weight:var(--font-weight-light);
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:5px;	
	width:50px;
	height:50px;
	text-align:center;
	color:var(--white);
	font-size:20px;
	vertical-align:middle;
	margin:0;
	padding:10px;
	border-radius:50%;
	background-color:var(--secondary-color);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.webicon img{
	display:block;
	width:100%;
}
.webicon:hover{
	background-color:var(--tertiary-color);
}
.iconic p {
	margin:0 0 10px 0;
 
	 
}  
/**********************news**********************/
 
 
/*********whatsa app*/ 
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	line-height:50px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50%;
	text-align:center;
    font-size:30px;
	/*box-shadow: 2px 2px 3px #999;*/
    z-index:100;
}
.float i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
 
}
.float:hover i{
	 -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	transform: rotate(0.12turn);
}
.float:hover{
	color:#FFF;
	 
} 
.float h5 {
    width: 100px;
    top: 8px;
	right:50px;
    background-color:var(--primary-color);
	color:var(--white);
	line-height:12px;
    border-radius: 5px;
	font-size:12px;
	padding:10px;
	position:absolute;
	z-index:-1;
	margin:0;
	-webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	opacity:0;
}
.float:hover h5{
	 opacity:9;
	 right:60px;
}

 
/*************** footer CSS ***************/
 
.footer {
	padding:100px 0 0 0;
	margin:0;
	color:var(--black);
	font-size:16px;
	background-image: url(../images/backgrounds/footer-bg.jpg); 
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

 .footer-col {}
 
.footer a, .footer-col a {
	color:var(--body-color);
}
 .footer a:hover  {
	color:var(--primary-color);
}  

 
 
.footer-logo{
	margin-bottom:20px;	
} 
 .footer-logo img{
 	width:125px;
	display:inline-block;
 }

.footer-col h2{
  font-size:16px;
  font-weight:var(--font-weight-bold);
  }

 
 
 /***************************************/
 .lower-footer{ 
    width: 100%;
	padding:30px 0;
	margin-top:50px;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	border-top:1px solid #B9B9B9;
	border-bottom:1px solid #ccc ;
	
}
 .footer-bottom{
 	
	padding:10px 0;
	}
 /*******************************/
.social {
 	padding:10px 0;
	display:flex;
	vertical-align:middle;
 
}

.social a  {
	width:40px;
	height:40px;
	line-height:40px;
	border-radius: 50%;
	text-align:center;
	color:var(--primary-color);
	font-size:16px;
	margin:5px; 
	display:inline-block;
	text-align:center;
	border:1px solid var(--primary-color);
 
	 
}

.social a:hover  {
	color: var(--white);
	background-color:var(--primary-color);
    
 
}
  
 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	font-size:18px; 
	vertical-align:top;
	line-height:20px;
	font-weight:var(--font-weight-bold);
 
}
.add span{ 
	 
	font-size:14px; 
	font-weight:var(--font-weight-light);
 
 
}
  
.add i{
	width:40px;
	height:40px;
	line-height:40px;
	background-color:var(--primary-color);
	border-radius: 50%;
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:450px;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
}

.ext{
	display:inline-block;
	padding-top:10px;
}
/******************************/

ul.list {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

ul.list li {
	list-style: none;
	padding: 5px 0 5px 30px;
	line-height: 16px;
	font-size:16px;
	position: relative;
	margin:0;
}

ul.list li:before {
	/*content: "\f111";*/
	content: "\f138";
	position: absolute;
	top: 4px;
	left: 0;
	font-family: "FontAwesome";
	color: var(--secondary-color);
	font-size: 14px;
}

/*****************************/



.table-div { 
	overflow-x:auto;
	margin-bottom: 50px;
	}
.table-div td {
  text-transform: uppercase;
}
.table-div h4{
	font-size:20px;
	color:var(--secondary-color);
	font-family:var(--heading-font);
	text-transform:uppercase;
}
table { 
	min-width:100%;
	width:900px;
	border-collapse: collapse; 
	
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background:var(--secondary-color);
	color: var(--white);
	
	}

td, th { 
	padding: 8px 15px !important; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 14px;
	}
 
/************************/
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
/******************************team-style*****************/
 
/*************** INNER BANNER ***************/
.main-banner { 
	width: 100%;
	height:100vh;
	overflow:hidden;	 
	display: flex;
	position: relative;
	align-items: center;
	color:var(--white); 
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/backgrounds/main-banner.jpg);
} 
 
 .main-banner ul.list {
	margin: 0;
	padding: 0;
}

.main-banner ul.list li:before {	
	color: var(--white);
}

.caption-wrap{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: flex-end;
}

.olympus2{
 	display: flex;
    flex-wrap: wrap;
	margin-bottom:50px;
	justify-content: center;
	/*margin-top:100px;*/
	}
.olympus2 img{
 	width:400px;
	}
.button-row{
 	display: flex;
	justify-content: center;
    flex-wrap: wrap; 
	gap:5px 10px;
	/*margin-top:100px;*/
	}
.main-banner-content{
	 }

.form-wrap{
	width:415px;
	padding:40px;
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	border-radius: 12px;
	position:absolute;
	top:-400px;
	right:0;
	z-index:2;
	background-color:var(--white);
}

.form-wrap .fieldset{
	background-color:var(--white);
	border-radius: 0;
	}

.form-wrap h2{
	 font-size:30px;
	 line-height:normal;
	 margin:0 0 15px 0;
	 font-weight:var(--font-weight-medium);
}
.form-wrap h2 i{
	margin:0 10px 0 0;
	vertical-align:middle;
	font-size:28px;
	color:var(--grey-dark);
 
}
.form-wrap .fieldset{
	border:0;	
	padding:15px 0;
	color:var(--black);
}
.input-row{
	position:relative;
	padding:0 0 0 40px;
	border-bottom:1px solid #C9C9C9;
}

.input-row i{
	position:absolute;
	left:10px;
	top:18px;
	font-size:16px;
	color:var(--primary-color);
}

.buntton-row{
	padding:20px 0 0 0;
	 
}

.caption-wrap-thank{
    display: flex;
    justify-content: center;
    text-align: center;
}
.caption-wrap-thank-box{
    background-color: #00000080;
    padding: 50px;
    border-radius: 15px;
    flex: 0 0 43%;
}
.caption-wrap-thank-box h2{
    font-size: 38px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}
.caption-wrap-thank-box p{
    font-size: 18px;
}


.grey-box{
	background-color:var(--grey);
	border-radius: 12px;
	padding:90px;
	}

.facts-bg{
	background-image: url(../images/backgrounds/facts-bg.jpg);	
	border-radius: 12px;
	padding:110px;
	overflow:hidden;
	color:var(--white);
	margin:20px 0;
}

/*************** JARALLAX ***************/
.jarallax, .cover {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
} 
.bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);	  
}
  
/*********file chosen style**************/

input.file{
    display: none;
	}
.fa-upload{
	margin:0 15px 0 0;
}
.custom-file-upload {
    border: 0;
    display: inline-block;
    padding: 14px 20px;
    color: #fff;
    cursor: pointer;
    background-color: var(--primary-color);
    /*border-radius: 6px;*/
    border: 0;border-radius: 6px;
}

.custom-file-upload:hover{
	background-color: var(--secondary-color);
	}
.select-box {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icons/icon5.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}
.pro-pln-head{text-align: center;
    margin-top: 30px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 18px;}
#specifications{ padding-top: 0px;}
.pum-content h5{
    font-size: 28px;
    font-weight: 500;
    font-family: var(--body-font) !important;
    margin-bottom: 6px;
}
.pum-content h6{
    font-size: 16px;
    font-weight: 400;
    font-family: var(--body-font) !important;
    margin-bottom: 22px;
}
.pum-content .input-row-normal i { top: 15px;}
.pum-content { background-color: var(--primary-color);}
.pum-theme-10 .pum-container, .pum-theme-lightbox .pum-container{ border: 8px solid #fff !important;}

/**********forms**************/

.input-row-normal{
	position:relative;
	
	
}

.input-row-normal i{
	position:absolute;
	left:20px;
	top:22px;
	font-size:16px;
	color:var(--primary-color);
}

.cntry-code-align{
    display: flex;
    gap: 1%;
}
.cntry-code-align-field{
    padding-left: 0px;
    flex: 0 0 27%;
}
.mob-nbr-align-field{
    flex: 0 0 72%;
}
/************************/
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:20px 10px 20px 45px;
	border:0;
	background-color:transparent;
	display: block;
	border-radius: 5px;
	margin: 0;
	color: var(--black);
	font-size: 16px;
	font-family: var(--body-font) !important;
    font-weight: 400;
	border:1px solid #B9B9B9;
	border-radius: 5px;
 
}
textarea{ height: 180px;}

.sendbutton {
	border-radius: 50px;
	color: var(--white);
	font-size: 15px;
    padding: 15px 30px;
	font-weight:var(--font-weight-bold);
	border:0;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	background-color:var(--primary-color); 
}

.sendbutton:hover {	
	background-color:var(--secondary-color); 
}

.sendbutton i {
	 margin-left:15px;
 }

 .country-select .country-list li.country {
  
    font-weight: 400;
}
 
/**********************/
.sendbutton2 {
	border-radius: 50px;
	color: var(--primary-color);
	font-size: 15px;
    padding: 15px 30px;
	font-weight:var(--font-weight-bold);
	border:0;
	font-style: normal;
	display: inline-block;
	position: relative;
	margin:0;
	background-color:var(--white); 
	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
}

.sendbutton2:hover {	
	background-color:var(--secondary-color);
	color:var(--white); 
}

.sendbutton2 i {
	 margin-left:15px;
 }
 

/*************************/ 
.select-box {
	appearance: none;
	-webkit-appearance: none;
	background-image: url(../images/icons/icon5.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 14px;
}
 

::-webkit-input-placeholder {
	color:var(--body-color);
}

:-moz-placeholder {
	/* Firefox 18- */
	color: var(--body-color);
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--body-color);
}

:-ms-input-placeholder {
	color: var(--body-color);
}

 /************************/
 


 /************************/
 .input-row-normal ::-webkit-input-placeholder {
	color:var(--body-color);
}

 .input-row-normal :-moz-placeholder {
	/* Firefox 18- */
	color:var(--body-color);
}

 .input-row-normal ::-moz-placeholder {
	/* Firefox 19+ */
	color:var(--body-color);
}

 .input-row-normal :-ms-input-placeholder {
	color:var(--body-color);
}
 

  
/*************** backToTop *************/
 .progress-wrap {
     position: fixed;
     right: 10px;
     bottom: 10px;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     border-radius: 50px;
    /* box-shadow: inset 0 0 0 2px rgb(0 0 0 / 100%);
    */
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     transform: translateY(15px);
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap.active-progress {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .progress-wrap::after {
     position: absolute;
     content: "\f062";
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     text-align: center;
     line-height: 45px;
     font-size: 20px;
     color:var(--secondary-color);
     left: 0;
     top: 0;
     height: 45px;
     width: 45px;
     cursor: pointer;
     display: block;
     z-index: 1;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}
 .progress-wrap svg path {
     fill: none;
}
 .progress-wrap svg.progress-circle path {
     stroke: var(--secondary-color);
     stroke-width: 4;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}

.pum-content .input-row-normal{ margin-bottom: 10px;}
.pum-content .fieldset {
font-size: 14px;
    padding: 15px 10px;}




@media only screen and (min-width: 1024px) {
    .pum-container.pum-responsive.pum-responsive-medium {
		margin-left: -240px !important;
        width: 480px !important;
        left: 50% !important;
    }
}


 
/************************************* 1366px *************************************/

@media only screen and (max-width: 1365.99px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
  
 }
/************************************* 1024px *************************************/
@media only screen and (max-width: 1199.99px) {
  
  
}
/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {


 body {
	font-size: 14px;
	line-height: 24px;
 }
 
 
header,  header.smaller{
	padding:15px 0;
	 
}
 header.smaller{

	background-image:none; 	
}
.logo, header.smaller .logo{
	position:relative;
	left:auto;
	top:0;
	margin:0;
	width:100px;
}


/**********/
.form-wrap{
	display:none;
}

  


/**********/
.heading {
  font-size: 30px;
  line-height: 30px;
} 
 
.subheading {
  font-size: 24px;
  line-height: 28px;
} 

 .section-spacing{
	 padding:40px 0;
 }
 
   
.funfacts{
	width:50%;
}
 
.amenities-content {
	flex: 0 0 100%;
	padding:20px;
	margin-bottom:20px;
 
}
 
.amenities-img {
	flex: 0 0 100%;
} 
.footer-logo img {
    width: 70px;}
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {

 .facts-bg{
	width:100%;
	padding:20px;
} 
 .funfacts{
 	width:100%;
 } 
 
 

.funfacts ul li{	 
	padding:20px;
	margin:-1px 0 0 -1px;
	 
}
.funfacts ul li img{
	width:50px;
}
.funfacts ul li:hover{
	color:rgba(255 ,255, 255, 0.8);
}
 
 
 .funfacts ul li h2{
	 font-size:30px;
	 line-height:30px; 
 
 }
  
.grey-box{
	padding:40px;
}
.caption-wrap-thank-box { flex: 0 0 70%;}
 
}

/************************************* 800px *************************************/
@media only screen and (max-width: 800px) {
	.project-details {flex: 0 0 48.222222222%;}
 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
 
}

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
.main-banner {  
	height:60vh;
	background-image: url(../images/backgrounds/main-banner-mobile.jpg);
    flex-direction: column;
    justify-content: flex-end;

} 

.main-banner-content{
	width:100%;
	margin-bottom:50px;
	 
}
.main-banner-content .heading {
	font-size:24px;
	line-height:30px;
	margin:0 0 10px 0;
}
 .main-banner-content .subheading {
	font-size:14px;
	line-height:18px;
	margin:0;
}
.main-banner .list  {
	display:none;
}
.olympus2{
	margin-bottom:20px;
}
.olympus2 img{
 	width:200px;
	}
	
.button-row{
	margin-top:10px;
	text-align:center;
	gap:10px;
}
.link a{
	padding:5px 10px;
	}
	
.link a i{
	margin-left:5px;
	}
.main-banner-thank{ height: 100vh; justify-content: center;}
.caption-wrap-thank-box{ flex: 0 0 100%; padding: 50px 20px;}

/**********************************/	
.project-details{
	flex: 0 0 48%; 
	padding:20px 20px;
	justify-content: center;
	text-align:center;
	 flex-direction:column;
}
  
.pro-icon, .pro-content{
	width:100%;
	
}	
.pro-icon img{
	width:50px;
}

.footer{
	padding:50px 0 0 0;
}
.lower-footer{
	padding:15px 0;
	gap:10px 3.5%;

}

 .footer-col {
 	flex: 0 0 48%;
 
 }
 .footer-col:last-child {
 	width:100%;	
	display:flex;
	padding:10px;
	justify-content: center;
	flex-direction:column;
 }
 .footer-logo{
 	width:100%;	
	display:flex;
	justify-content: center;
	 }
	 
.footer-logo img{
 	width:100px;
	 
 }
.footer  .flex-gap{
	gap:10px 0;
	}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 575px) {
	.footer-col {
        flex: 0 0 100%;
    } 
.footer-bottom{ justify-content: center !important; text-align: center;}
.grey-box {
	padding: 20px;
}
.heading {
	font-size: 26px;
	line-height: 28px;
}
.pro-pln-head{
    font-size: 16px;}
	.pro-content h2 {
		font-size: 16px;}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
.project-details{ flex: 0 0 100%;}
}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {}