@charset "utf-8";
 @font-face {
    font-family: 'TajawalRegular';
    src: url('../fonts/TajawalRegular.eot');
    src: url('../fonts/TajawalRegular.eot') format('embedded-opentype'),
         url('../fonts/TajawalRegular.woff2') format('woff2'),
         url('../fonts/TajawalRegular.woff') format('woff'),
         url('../fonts/TajawalRegular.ttf') format('truetype'),
         url('../fonts/TajawalRegular.svg#TajawalRegular') format('svg');
}
@font-face {
    font-family: 'TajawalMedium';
    src: url('../fonts/TajawalMedium.eot');
    src: url('../fonts/TajawalMedium.eot') format('embedded-opentype'),
         url('../fonts/TajawalMedium.woff2') format('woff2'),
         url('../fonts/TajawalMedium.woff') format('woff'),
         url('../fonts/TajawalMedium.ttf') format('truetype'),
         url('../fonts/TajawalMedium.svg#TajawalMedium') format('svg');
}
@font-face {
    font-family: 'TajawalBold';
    src: url('../fonts/TajawalBold.eot');
    src: url('../fonts/TajawalBold.eot') format('embedded-opentype'),
         url('../fonts/TajawalBold.woff2') format('woff2'),
         url('../fonts/TajawalBold.woff') format('woff'),
         url('../fonts/TajawalBold.ttf') format('truetype'),
         url('../fonts/TajawalBold.svg#TajawalBold') format('svg');
}
 

/* 
 font-family: "DM Sans", sans-serif;
font-family: "DM Serif Display", serif;*/

/*************** DEFAULT CSS ***************/
:root {
	--body-font: "TajawalRegular";
	--body-color: #303030;
	--primary-color: #B56543;
	--secondary-color: #A98977;
	--tertiary-color: #F7EDA8;
	--quaternary-color:#EDE3D1;	
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--font-medium:'TajawalMedium';
	--font-bold:"TajawalBold";
	 --dot-bg: #fff;
     --dot-color: #000;
     --dot-size: 1px;
     --dot-space: 22px;
}

body {

	font-family: var(--body-font);
	font-size: 18px;
	font-style: normal;
	line-height: 24px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-normal);
	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: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background:  var(--primary-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;
	padding: 0;
	font-weight: normal;
	font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin:0;
	padding:0;
	font-weight: normal;
	line-height: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-black {
	color: var(--black) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}
  
 .text-secondary {
	color: var(--primary-color) !important;
}
 
.text-center {
	text-align: center;
}
.text-right{
	text-align:right;
}

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

 

/*-----------background styles------------*/
 
.bg-gradient{
	background-image: linear-gradient(to left, var(--primary-color), var(--secondary-color));
	color:var(--white)!important;	 
}
.bg-primary {
	background: var(--primary-color) !important;	 
	color:var(--white)!important;	 
	 
}
.bg-secondary {
	background: var(--secondary-color);
	color:var(--white)!important;	 
 
}

.bg-tertiary {
	background: var(--tertiary-color) !important;	
	 
}
.bg-quaternary {
  background: var(--quaternary-color);
 
}
.bg-grey {
	background: var(--grey);
 
}
.bg-grey-light {
	background: var(--grey-light);
 
 }
.bg-white {
	background: var(--white);
}

.fix-bg-30{
	width:30%;
	height:100%;
	top:0;
	z-index:0;
	position:absolute;
    background-image: radial-gradient(#9D9D9D 5%, transparent 0);
    background-size: 20px 20px;
	
}
.pos-right{
	right:0;
	}
.pos-left{
	left:0;
}
.level-up{
	position:relative;
	z-index:1;
}
/*************** 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/azha-logo.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
	margin: -100px 0 0 -100px;
}

 
/*********************************/
.container-large{
	width:100%;
	padding:0 90px;
}
.container {
	width: 1400px;
	margin: 0 auto;
}
.fullheight {
	width: 100%;
	height:100vh;
	overflow:auto;
 
} 
.fullwidth {
	width: 100%;
	display: block;
} 

.img-rounded{
	border-radius: 50%;
	overflow:hidden;
	}
.corner-radius{
	border-radius: 50%;
	}


/*************image-style*******/
.img-style{
	width:100%;
	position:relative;
	overflow:hidden;
	outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: -13px;
	/*border-radius: 16px; */
}
.img-style img{
	width:100%;
	display:block;
	}
	
	
/*************figure.zoom*******/	
figure.zoom {
  background-position: 50% 50%;
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: zoom-in;
}
figure.zoom img:hover {
  opacity: 0;
}
figure.zoom img {
  transition: opacity 0.5s;
  display: block;
  width: 100%;
}

/*************HOVER EFFECT*******/

.hover-effect{
	width:100%;
	position:relative;
	overflow:hidden;
	outline: 1px solid rgba(255, 255, 255, 0.5);
    outline-offset: -15px;
	/*border-radius: 16px; */
}

 .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;
 }
 .page-slug {
    display: none !important;
}

.sticky{
 	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	width:100%; 
}

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

 header{
	 width:100%; 
	 position:absolute;
	 left:0;
	 top:0;
	 padding:0;
	 z-index:5;
	 transition: all 0.4s ease;
	 border-bottom:1px solid rgba(255, 255, 255, 0.2)
}
 
 header.smaller {
	padding:0;
	position: fixed;
	background-image:none;
	background-color:rgba(0, 0, 0, 0.9)
	/*box-shadow: 0px 10px 20px 0px rgba(123, 123, 123, 0.1); */ 
}

.header{
    width:100%;
	height:100px;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding:0 25px;
	transition: all 0.4s ease;
} 
 header.smaller  .header{
 	height:70px;
 }
.logo { 
	width:280px;
	height:100px;
	position:absolute;
	left:50%;
	top:0;
	margin-left:-140px;
	transition: all 0.4s ease;
	border-left:1px solid rgba(255, 255, 255, 0.2);
	border-right:1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	
}
 
.logo img {
	width:185px;
	display:block;
	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
}
header.smaller .logo{
	width:200px;
	height:70px;
	margin-left:-100px;
}
header.smaller .logo img {
	width:100px;
}
header.smaller .logo img {
	filter: none;
 
}
.inline{
 	display: flex; 
	align-items: center;
}
 
.top-group{
	display: flex;
	/*gap:0 5px;*/
	align-items: center;
} 

	
.search-bt-holder{
	display:flex;
} 
.search-bt-holder a{	 
	padding:10px 20px;
	color:var(--white);
	display:flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	font-size:16px;
	 
}
.search-bt-holder a:hover{	 
	color:var(--primary-color);
}
	
/***********serch ***********/
 
 .search-wrap {
     margin: 0;
     width: 100%;
     height: auto;
     position: relative;
    /*margin:5px 0 0 25px;
    */
     padding: 0 60px 0 0;
	 /*border-radius: 50px;*/
	 overflow:hidden;

}
 .search-input {
     width: 100%;
     border:0;
     display:block;
	 /*border-radius: 50px;*/
     color:var(--black) !important;
     background-color:var(--white);
     outline: none;
     vertical-align: middle;
     line-height: 60px;
     height: 60px;
     padding: 0;
     font-size: 18px;
     display: block;
	border-bottom:1px solid var(--grey-dark);
}
ul.search-dropdown {
    background: #f3f3f3cc;
    margin: 0;
    padding: 25px 40px;
}



 .search-button {
     background-color:var(--white);
     color:var(--black);
     width: 60px;
     height: 60px;
    /*border-radius: 50px;
    */
     border: 0;
     outline: none;
     position: absolute;
     top: 0;
     right: 0;
     z-index: 1;
	  
}
 .search-button:hover {
 
	  color:var(--primary-color);
} 
 
/***********link ***********/
 
.link {}

.link a {
	
	color:var(--grey-dark);
	font-size: 16px;
	height:50px;
	line-height:normal;
	padding: 0  60px 0 30px;
	font-style: normal;
	display: inline-flex;
	align-items: center;
	position: relative;
	overflow:hidden;
	margin:0;
	border:1px solid var(--black);
	/*border-radius: 50px;*/	 
	font-family:var(--font-bold);
	transition: all 0.4s ease;
	text-transform:uppercase;	
	}
.link a:after{
	width:50px;
	height:50px;
	position:absolute;
	top:0;
	right:0;
	content:'';
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position:  center center;
	background-size:20px;
	transition: all 0.4s ease;
	}
	
.link a:hover:after{
	right:5px;
}	
.link a:before{
	width:0;
	height:100%;
	position:absolute;	
	background-color:var(--black);
	bottom:0;
	left:auto;
	right:0;
	content:'';
	transition: all 0.4s ease;
	 	
} 
 
.link a:hover:before{
	width:100%;
	left:0;
	right:auto;
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
.link a:hover{
	color:var(--white);
}
.link a i{
	margin-right:10px;
	vertical-align:baseline;
}
/*********/
.filled{
	background-color:var(--black);
	position:relative;
	}
	
.filled a{
	color:var(--white);
}
.filled a:before{
	background-color:var(--white);
}
.filled a:hover{
	color:var(--black);
}
 
 
	
	
.caps{
	text-transform:uppercase;
}
 
.heading, .heading-small{
	font-size:56px;
	line-height:60px;
}
.heading span, .heading-small span{ 
	color:var(--primary-color);
	
}
.heading-small{
	font-size:40px;
	line-height:50px;
	}
.subheading {
	font-size: 26px;
	line-height:normal; 
}

.subtitle{
	font-size: 20px;
}
.bold, strong{
	font-family:var(--font-bold);
}

.section-title{
	color:var(--primary-color);
	line-height:normal;
	font-size:26px;
	font-family:var(--font-bold);
	position:relative;
	padding-bottom:10px;
	margin-bottom:20px
}
.section-title:after{
	width:100px;
	height:1px;
	position:absolute;
	left:50%;
	bottom:0;
	margin-left:-50px;
	content:'';
	background-color:var(--black);
}
/*************************/
.project-style{
	padding:30px;	
	outline: 1px solid rgba(0, 0, 0, 0.2);
    outline-offset: -15px;
	position:relative;
	transition: all 0.4s ease;
}
.project-style:hover{
	padding:30px;	
	outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: -15px;
	position:relative;
	transition: all 0.4s ease;
	color:var(--white);
}
.project-style:before{
	position:absolute;
	left:0;
	top:0;
	content:'';
	transition: all 0.4s ease;
	width:100%;
	height:100%;
	background-color:var(--grey-light);
	z-index:-2;
}
.project-style:after{
	position:absolute;
	left:0;
	top:0;
	content:'';
	transition: all 0.4s ease;
	width:100%;
	height:0;
	background-color:var(--primary-color);
	z-index:-1;
}
.project-style:hover:after{
	height:100%;
	top:auto;
	bottom:0; 
}


.project-details{
	padding:15px 0 0 0;
	text-align:center;
	font-size: 14px;	 
	transition: all 0.4s ease;
}
.project-style a{
	color:var(--black);
}
.project-style a:hover{
	color:var(--white);
}
.project-details h2{
	font-size: 24px;
	line-height:normal;
	font-family:var(--font-bold);
	}
/****************************/
  
.pos-rel{
	position:relative;
}

/**********Amenities item*************/
.amenity-style{
	 background-color:var(--primary-color);
	 display:flex;
	 padding:15px 15px;
	 font-size:16px;
	 line-height:18px;
	 text-transform:uppercase;
	 font-family:var(--font-bold);
	 color:var(--white);
	}
	
.amenity-style i img{
 	 width:40px;
	 margin-right:15px;
	 filter: brightness(0) invert(1);
 }
/****************project slider***************/

.amenities-row{
	display: grid;
    grid-gap:20px;
	padding:25px 20px;
	background-color:var(--grey-light);
    grid-template-columns: repeat(6, 1fr);
}
 .amenities-row .col{
 	 border-left:1px solid var(--grey);
	 display:flex;
	 padding:15px 30px;
	 font-size:16px;
	 line-height:18px;
	 text-transform:uppercase;
	 font-family:var(--font-bold);
	 color:var(--black);
 
 }
  .amenities-row .col:first-child{
   	border-left:0;
   }
 .amenities-row .col i img{
 	 width:40px;
	 margin-right:20px;
 }
 .border-top{
  	border-top:1px solid var(--grey);
  }
  .border-bottom{
  	border-bottom:1px solid var(--grey);
	padding-bottom:20px;
  }
  .flex-gutter{
	gap:10px;
	}
	
  .amenities-red{
  	background-color:var(--primary-color);
 
  }
  
  .amenities-red .col{
  	color:var(--white)!important;
	border-left:1px solid rgba(255 ,255, 255, 0.2);
	padding:15px 10px;
  }
  
  .amenities-red .col i img{
 	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
 }

 .home-slide-mob { display: none;}


/*******align-cnt********/ 

.align-cnt{
    display: flex;
    flex-wrap: wrap;
	justify-content: center; 
	}
 
/**********facts******************/	
	
.facts-container {
    display: grid;
    gap: 10px;
    
  }

  /* Define the grid layout */
  .top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }


  .facts.three-col-facts {
	grid-template-columns: repeat(3, 1fr);
  }

  .bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
	margin-top:12px;
 
  }

  .facts-box {
	padding: 35px;
	position:relative;

  }
  
.box-head{}		
.box-head h2{
	font-size:78px;
	line-height:78px;
	margin:0;
	font-family:var(--font-bold);
}	

.box-footer{
	padding:10px 0;
	border-top:1px solid var(--black);
	margin-top:20px;
}
.bg-secondary	.box-footer{
	border-top:1px solid var(--white);
}

.fun-icon{
	width:50px;
	position:absolute;
	right:20px;
	top:20px;
}
.fun-icon img{
	width:100%;
	display:block;
}
/****************SCROLLING TEXT***************/
 
 .scrolling-text-wrap {
  width:100%;
  overflow-x:hidden !important;
  overflow-Y:hidden !important;
  overflow:hidden !important;
 }
 
.scroll {
  white-space: nowrap;
  margin: 0;
}

.scroll div {
  display: flex;
    
}

.scroll h2 {
  font-size: 134px;
  line-height:134px;
  color: var(--quaternary-color);
  font-weight:var(--font-bold);
  margin:0;
}
.scroll h2 span{
	width:6px;
	height:6px;
	background-color:var(--primary-color);
	outline-offset: 4px;
	outline:1px solid var(--primary-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%);
  }
}

 /****************LEAEDERS STYLE****************/
 
 .img-curve-right{
	border-radius:0  150px 0 0;
	width:100%;
	display:block;
}
 .img-curve-left{
	border-radius:0  0 0 150px ;
	width:100%;
	display:block;
}
 .img-curve-left-top{
	border-radius:150px 0  0 0  ;
	width:100%;
	display:block;
}
.leaders-info-outer{
	padding:0 0 0 30px;
	border-left:1px solid var(--grey);
	position:relative;
	}
.leaders-info-outer:before{
	 width:3px;
	 height:100px;
	 position:absolute;
	 left:-1px;
	 top:0;
	 content:'';
	 background-color:var(--primary-color);
	 transition: all 0.4s ease;
	}
	
.leaders-info-outer:hover:before{
	width:1px;
	height:100%;
}	
.leaders-info{
	padding:20px 0;
 
}	 
 .leaders-info h2{
	 color:var(--primary-color);
	 font-size:30px;
	 font-family:var(--font-bold);
}
.leaders-info p{
	margin:0;
	font-size:14px;
	color:var(--grey-dark);
}
 /**********************news**********************/
 

.news-widget{
  	 padding:20px 80px 20px 0;
  	 color:var(--body-color);
	 position:relative;
	 border-bottom:1px solid var(--grey);
  }
  
.news-widget:after{
	width:50px;
	height:50px;
	position:absolute;
	border:1px solid var(--grey-dark);
	border-radius: 50%;
	bottom:20px;
	right:0;
	content:'';
	background-image: url(../images/icons/arrow.svg);
	background-repeat: no-repeat;
	background-position:  center center;
	background-size:20px;
	transition: all 0.4s ease;
	}
 .news-widget h2{
     font-size:24px;
     line-height:normal;
 
  } 
.date{
	font-size:14px;
	line-height:14px;
	text-transform:uppercase;
	padding:5px 10px;	
	margin:0;	
	vertical-align:middle;
	background-color:var(--primary-color);
	color:var(--white);
}
 

 .news-style p:last-child{
  	margin:15px 0 0 0;
  }

 /********************services scroller**********************/
  
.display-style{ 
     width: 100%;
	 aspect-ratio: 1 / 1;
     overflow: hidden;	 
	 position:relative;
	 z-index:2;
	 padding:40px;
	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
}
  
.shadow{	   
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
 }
 
 
.iconic{
	width:100%;
	display:block;
	position:relative;
	padding:40px 40px 40px 120px;
	min-height:100px;
	margin-bottom:20px;
	outline: 1px solid rgba(255, 255, 255, 0.2);
    outline-offset: -10px;
	/*border-bottom:1px solid rgba(255, 255, 255, 0.4);*/
	background-color:var(--black);
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 100px;
	 
}
.iconic:last-child{
	border-bottom:0;
}
.iconic h2{
	font-size: 24px;
	font-family:var(--font-bold);
	margin:0 0 15px 0;
	line-height:30px;
}
.webicon{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:0;
	top:0;	
	width:80px;
	height:80px;
	text-align:center;
	color:var(--white);
	font-size:30px;
	vertical-align:middle;
	margin:0;
	padding:15px;
	border-radius:50%;
	/*background-image: linear-gradient(to top, var(--primary-color), var(--secondary-color));*/
	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(--primary-color);
}
.iconic p:last-child{
	margin:0;
}

.iconic-number{	
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	left:20px;
	top:40px;
	font-size:40px;

}
.iconic-number:after{
	width:20px;
	height:1px;
	position:absolute;
	top:50%;
	left:150%;
	content:'';
	background-color:var(--white);
}
  
 
/**********************Reviews**********************/
 
 
.m0-p0{
	margin:0 !important;
	padding:0 !important;
}
/*********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:4;
}
.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(--white);
	color:var(--grey-dark);
	 box-shadow: 0px 0px 5px gray;
	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;
}

.bxy, .boxy-large, .bxy-plain,.bxy-transparent{
	background-color:var(--grey-light);
	padding:15px;
	text-align:center;
	font-size:16px !important;
	line-height:18px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 flex-direction:column;
	 transition: all 0.4s ease;
	
}
.bxy:hover, .boxy-large:hover{
	background-color:var(--black);
	color:var(--white);
}
.bxy:hover h2, .boxy-large:hover h2{
	color:var(--tertiary-color);
}
.bxy-transparent{
	background-color:rgba(255, 255, 255, 0.2);
}
.bxy h2 {
	font-size: 20px;
	line-height: 20px;
	color:var(--primary-color);
	font-family:var(--font-bold);
	margin-bottom:8px;
}
.boxy-large{
	padding:40px 15px;
	 
} 
.boxy-large img{
	height:75px;
	margin-bottom:15px;
	transition: all 0.4s ease;
}
.bxy:hover img, .boxy-large:hover img{
	filter: brightness(0) invert(1);
}
.bxy-plain{
	background-color:transparent;
	 justify-content: flex-start;
	 border-left:1px solid var(--grey);
}
.bxy-plain:first-child{
	border-left:0;
}
.bxy-plain h2{
	font-size: 40px;
	line-height: 40px;
}
/***************/
.boxy-outline{
	padding:50px;
	text-align:center;
	outline: 1px solid var(--grey);
    outline-offset: -10px;
	display:flex;
	flex-wrap: wrap;
	flex-direction:column;
	text-align:center;
	position:relative;
 
}
.boxy-outline:hover{
	color:var(--white);
	}
 .up-layerr{
	position:relative;
 	z-index:2;}
.effect{
	background-color:var(--primary-color);
	width:100%;
	height:0;
	position:absolute;
	left:0;
	bottom:0;
	content:'';
	transition: all 0.4s ease;
 
	}
	
.boxy-outline:hover .effect{
	height:100%;
	
}
.boxy-outline i{
	width:70px;
	height:70px;
	display:inline-flex;
	justify-content: center;
	align-items: center;
	color:var(--primary-color);
	font-size:30px;
	border:1px solid var(--primary-color);
	border-radius: 50%;
	margin-bottom:20px;
	transition: all 0.4s ease;
}
.boxy-outline:hover i{
	filter: brightness(0) invert(1);
	}
.boxy-outline h2{
	font-size:30px;
	line-height: 34px;
	margin-bottom:20px;
	font-family:var(--font-bold);
}
.boxy-outline p:last-child{
	margin:0;
}
/************/
.bg-red{
	background: var(--primary-color) !important;
	color:var(--white) !important;
}
.bg-red-light{
	background: var(--secondary-color) !important;
	color:var(--white) !important;
}
.bg-red h2, .bg-red-light h2, .bg-black{	 
	color:var(--white) !important;
}
.bg-yellow{
	background-color:var(--tertiary-color) !important;
	}
.bg-black{
	background-color:var(--black) !important;
	}

/*************** counter box ***************/
.box-shadow{
	  box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);
	  padding:80px;
	  background-color:var(--white);
 }
 
.counter-box{
	display: flex;
    flex-wrap: wrap; 
	background: var(--primary-color);
	color:var(--white);
	padding:30px 40px;
	justify-content: center;
	flex-direction:column;
	text-align:center;
	outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: -10px;
	 
	}

.counter-box h2{
	font-size:30px;
	line-height:normal;
	font-family:var(--font-bold);
}	




/*****des-text start************/

.des-text{
	display: flex;
    flex-wrap: wrap; 
	background: var(--primary-color);
	color:var(--white);
	padding:30px 40px;
	flex-direction:column;
	outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: -10px;
	 
	}
.des-text h2{
	font-size:20px;
	line-height:24px;
	margin:0;
	font-family:var(--font-bold);
	display:block;
	padding:10px;
	border:1px solid rgba(255, 255, 255, 0.3);
	margin-top:5px;
}
.des-text h2 span{
	font-family:var(--font-medium);
	font-size:18px;
}
.des-text h3{
	font-size:20px;
	line-height:normal;
	margin:0;
	font-family:var(--font-bold);
}
.des-text p{
	margin:0;
	font-size:16px;
	line-height:normal;
}
.des-text ul{
	margin-top:15px !important;
	margin-bottom:0 !important;
}
.des-text ul.list li {
	list-style: none;
	padding: 4px 0 4px 25px;
	line-height: normal;
	position: relative;
	font-size:16px;
	margin:0;
	border-bottom:1px solid rgba(255, 255, 255, 0.3);
}

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

/*****des-text end************/

#soundToggle {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#soundToggle:hover {
    background: rgba(0,0,0,0.8);
}

/*****des-text end************/


 .facts{
 	display: grid;
    grid-gap:0;
    grid-template-columns: repeat(2, 1fr);
	text-align:center;
	
	}
 .facts-item{
 	padding:10px;
 }
  .facts-item h2{
  	font-size:60px;
	line-height:70px;
	margin:0;
	font-family:var(--font-bold);
	}
.br-r-b{
	border-right:1px solid  rgba(255, 255, 255, 0.3);
	border-bottom:1px solid  rgba(255, 255, 255, 0.3);
}
.br-r{
	border-right:1px solid  rgba(255, 255, 255, 0.3);
	 
}
.br-b{
	 
	border-bottom:1px solid  rgba(255, 255, 255, 0.3);
}


/******plan-details********/

.plan-info{
	font-size: 16px;

	line-height:normal; 
	margin:0 0 10px 0;
}

 .plan-info span{
 	font-size: 20px;
	font-family:var(--font-bold);
 }

/**********timer******/	
	
	.project-handover-head {
    font-size: 30px;
    line-height: normal;
    font-family: var(--font-bold);
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}


.timer-box {
	background-color:var(--black);
   margin-top:25px;
   padding:25px;
   outline: 1px solid rgba(255, 255, 255, 0.2);
   outline-offset: -10px;
}

.project-handover-head {
    font-size: 30px;
    line-height: normal;
    font-family: var(--font-bold);
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}
	
#timer {
  width: 100%;
   display: flex;
   justify-content: center;
}
	
	
/*#timer {*/
/*  width: 100%;*/
/*   display: flex;*/
/*   justify-content: center;*/
/*   background-color:var(--black);*/
/*   margin-top:25px;*/
/*   padding:25px;*/
/*   outline: 1px solid rgba(255, 255, 255, 0.2);*/
/*   outline-offset: -10px;*/
 
/*}*/
 
#timer ul {
	margin:0;
	padding:0;
	list-style:none;
	width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: center;
	color:var(--white);
}
 #timer ul li{
 	width:25%;
	padding:10px 10px;
	margin:0;
 	text-align:center;
	border-right:1px solid rgba(255, 255, 255, 0.2);
 	text-align:center;
	font-size: 16px;
 }
 #timer ul li:last-child{
 	border-right:0;
 }
 #timer ul li span{
 	font-size:40px;
	font-family:var(--font-bold);
 }
 
 
/**************30 DEC 2025***********************/
 
 .footer-form{
 	background-color:#FCF9E2;
	padding:10px 0 25px;
 }
/*************** footer CSS ***************/
 
.footer {
	padding:20px 0 0 0;
	margin:0;
	background-color:var(--primary-color);
	color:var(--white);
	background-image: url(../images/backgrounds/vector-buildings.svg);
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-attachment:fixed;
}

.footer a {
	color:var(--white);
}
 .footer a:hover  {
	color:rgba(255, 255, 255, 0.5);
}  
.footer-form{
	display: flex;
    flex-wrap: wrap; 
	align-items: center;
	justify-content: space-between;
}

.logo-social{
	 display: flex;
	 gap:0 20px;
	 align-items: center;
 
}
.footer-logo {
	width:100px;
	
}
 
.footer-logo img {
	width:100%;
	display:block;	 
	/*filter: brightness(0) invert(1);*/
}
.mobile-footer-accordian {
	display: none;
}

  
.social { 
	display:flex;
	gap:5px;
	padding:0 10px;
	border-left:1px solid var(--black);
 
}
.social a  {
	width:38px;
	height:38px;
	display:flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-align:center;
	color:var(--primary-color);
	font-size:16px;
	text-align:center;
	/*background-color:var(--primary-color);*/

}
.social a:hover  {
	color:var(--white);
	background-color:var(--primary-color);

}

.register-outer{
    display: flex;
    flex-wrap: wrap;
	width: 65%;
}
.register-outer span.wpcf7-spinner {
    position: absolute;
}
.register select.fieldset {
	padding: 0 15px;
}
.reg-head{
	width:15%;
	
	font-size:30px; 
	line-height:30px;
	font-family:var(--font-bold);  
	}
 
.register{
	 
	display: grid;
    grid-gap:10px;
	grid-template-columns: repeat(3, 1fr);
} 

 .register .fieldset {
	width: 100%;
	height:48px;
	padding:15px ;
	border:0;
	border:1px solid #B0AE9E;
	background-color:#FCF9E2;
	color:var(--black);
	display: block;
	/*border-radius: 12px;*/
	margin: 0;
	font-size: 16px;
 
}

.register .sendbutton {
	/*border-radius: 12px;*/
	color: var(--white);
	font-size: 22px;
	font-family:var(--font-bold);
	background-color:var(--black);
	border:0;
	width: 100%;
	height:48px;
	padding: 0 30px;
	font-style: normal;
	display: block;
	position: relative;
	margin:0;
	 
}

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

.more-bt{}
.more-bt a{
	display:inlineflex;
	padding:5px 10px;
	line-height:normal;
	border:1px solid var(--white);
	font-size:14px;
	color:var(--white);
} 
.more-bt a:hover{
	background-color:var(--tertiary-color);
	border:1px solid var(--tertiary-color);
	color:var(--black);
	}
.footer-menu-row{
    display: flex;
    flex-wrap: wrap;
	gap:0 3.5%; 
	padding:25px 0;
	margin:40px 0;
	border-top:1px solid rgba(255, 255, 255, 0.5);
	border-bottom:1px solid rgba(255, 255, 255, 0.5); 
}

.footer-menu-col{
	flex: 0 0 22.11%;
	
	
}
.footer-menu-col:last-child{border-right: none;}
.footer-menu-col h2{
	font-size:20px;
	line-height:normal;
	font-family:var(--font-bold);
	margin:0 0 20px 0; 
	}

.footer-menu-col ul, .footer-menu-col ul li, .ftr-list{
	margin:0;
	padding:0;
	list-style:none;
}
.footer-menu-col ul li a{
	padding:0 0 10px 0;
	display:block;
	line-height:normal;
	transition: all 0.4s ease;
	font-size:16px;
	color:var(--white);
}
.footer-menu-col ul li a:hover{
	color:rgba(255, 255, 255, 0.5);
	padding:5px 5px;
 
}
.ico-info{
	display:flex;
	gap:0 10px;
	font-size:20px;
	line-height:normal;
	font-family:var(--font-bold);
	align-items: center;
	margin:15px 0;
}
.ico-info i{
	display:flex;
	gap:0 10px;
	width:38px;
	height:38px;
	display:flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-align:center;
	color:var(--primary-color);
	font-size:16px;
	text-align:center;
	background-color:var(--white);
}
.ico-info a{
	color:var(--white);
}
.lower-footer{
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding:0 0 40px 0;
	}
	
.copy{}
.terms{}
 /**********************/
 .address-box{
	padding:40px;
	outline: 1px solid var(--grey);
    outline-offset: -10px;
	/*background-image: linear-gradient(to top right, var(--primary-color), var(--secondary-color));*/
	box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1);  
	} 
.add{
	width:100%;
	position:relative;
	padding:0 0 0 60px;
	min-height:30px;
	margin-bottom:20px;
	font-size:20px; 
	vertical-align:top;
	line-height:24px;
	 
}
 .add h2{
 	font-size:20px;
	line-height:24px;
	font-weight:var(--font-bold);
	color:var(--primary-color);
	margin:0;
	line-height:normal;
 }
.add i{
	width:35px;
	height:35px;
	line-height:35px;
	background-color:var(--primary-color);
	color:var(--white);
	font-size:14px;
	margin:0;
	position:absolute;
	left:0;
	top:0;
	text-align:center;
 
	
}
 .google-map{
     overflow: hidden;
     width: 100%;
	 height:90vh;
	 margin:0;
	 padding:0;
	 outline:none;
	 border:0;
	 display:block;
	  
}
 .map-container {
  width: 100%;
  height:60vh;
  overflow: hidden;
  /* filter: grayscale(100%); */
   /* Make map grayscale */
  /* -webkit-filter: grayscale(100%); */
  border: none;
  background-color:var(--white);
}
.ext{
	display:inline-block;
	padding-top:10px;
}
.add a{
	color:var(--black);
	}
.add a:hover{
	color:var(--primary-color);
	}
/******************************/

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

ul.list li {
	list-style: none;
	padding: 2px 7px 10px 30px;
	line-height: normal;
	position: relative;
}

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

/*****************************/
 
 
.table-wrap{
	width:100%;
	position:relative;
	display:flex;
	overflow-x:scroll;
} 
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;
	} 

/******************************team-style*****************/

 
 

/*************** INNER BANNER ***************/
.banner, .banner-small { 
	width: 100%;
	height:101vh;
	padding-bottom:40px;
	overflow:hidden;	 
	display: flex;
	flex-direction:column;
	position: relative;
	justify-content: flex-end;
	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/banner.jpg); */
 
}
.banner-small{
	height:40vh;
}
.caption-holder{
	width:50%; 
	padding:100px 50px;
}
.banner:after{
	width: 100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:1;
	background-color:rgba(0, 0,0, 0.4);
	opacity:0.7;
}
.banner h2 {
	color:var(--white);	
	font-family:var(--font-bold);
	font-size:60px;
	line-height:60px;
	padding:0;
	position:relative;
	z-index:2;
	 
}


 .project-brand{
	/*position:absolute;
 	top:50px;
	left:-50px;
	overflow:hidden;
	z-index:2;
	background-color:var(--white);
	padding:20px 30px;
 	 box-shadow: 0px 4px 10px 4px rgba(123, 123, 123, 0.1); */
	 /*margin-bottom:15px;
	 border-bottom:1px solid var(--grey);
	 padding-bottom:25px;*/
}

  .project-brand img{
  	width:220px;
	display:inline-block;
	 
  }
  
.brand-white{
	filter: brightness(0) invert(1);
}
.watermark-logo{}
.watermark-logo img{
	width:100%;
	opacity:0.1;
	display:block;
 	filter: grayscale(100%);
}
.leader-box {
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px; 
}
.leader-box p {
	text-align: justify;
	margin-bottom:0 0 20px 0;
}
.leader-box p:last-child {
	margin: 0px;
}
.leader-box .subtitle {
    display: block;
    margin-bottom: 35px;
    color: var(--black);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--quaternary-color);
}
div#ht-ctc-chat {
    bottom: 70px !important;
    right: 10px !important;
}



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

.breadcrumb {   
    display: flex;
	color:var(--white);
	margin:0;
	position:relative;
	z-index:2;
}
 
.breadcrumb ul {    
	display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 20px 0 0 0;
	padding:0;
 
}

.breadcrumb li {
    margin: 0;
	font-size:14px;
	text-transform:uppercase;
	color:var(--white);
	font-family:var(--font-bold);
 } 
    
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 15px;
    /*content: " → "; */
	 content: " / "; 
	 
}
 .breadcrumb a{
  color:var(--white);
}
 .breadcrumb a:hover{
   color:var(--tertiary-color);	
 
}
 

.pro-dtl-cout-hand-wrap{
    display: flex;
    gap: 25px 2%;
}
.pro-dtl-cout-hand-wrap .counter-box, .pro-dtl-cout-hand-wrap .timer-box, .pro-dtl-cout-hand-wrap .des-text{
    flex: 0 0 49%;
}
 .pro-dtl-cout-hand-wrap .timer-box{
    margin-top: 0px;
}
.pro-dtl-cout-hand-wrap .timer-box #timer ul li{     
    width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.pro-dtl-cout-hand-wrap .timer-box #timer ul li:nth-child(2){ border-right: none;}
.pro-dtl-cout-hand-wrap .timer-box #timer ul li:nth-child(3){ border-bottom: none;}
.pro-dtl-cout-hand-wrap .timer-box #timer ul li:nth-child(4){ border-bottom:none; border-right: none;}

.vedio-box video {
    height: auto;
}
 
/*************** 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;
}
  

/*************FLOATING WHATSAPP*******/
.whtsapp-link{position:fixed;right: 10px;bottom: 70px;z-index:11;}
.whtsapp-link h5{float:left;width:100px;position:absolute;right:-11px;opacity:0;color:#6d6d6d;font-size:14px;font-weight:700;margin: 10px 5px 0 0 ;background-color:rgb( 211, 211, 211);padding:6px 10px;border-radius:5px;line-height:18px;z-index:0;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
.whatsapp-icon{
	width: 50px;
	height: 50px;
	background:rgb( 211, 211, 211);
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	/* box-shadow:0px 6px 8px 2pxrgba(0,0,0,0.14);
	-webkit-box-shadow:0px 6px 8px 2px rgba(0,0,0,0.14);
	-moz-box-shadow:0px 6px 8px 2px rgba(0,0,0,0.14); */ 
	text-align:center;
	line-height: 52px; 
	float:right;
	margin-left:0;
	z-index:1;
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.whatsapp-icon img{width: 33px;-webkit-transition:all 300ms ease-in-out;-moz-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;}
.whtsapp-link:hover h5{right:52px;opacity:1}
.whtsapp-link:hover .whatsapp-icon img{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);}



/****************************/
.data-counts{
	padding:300px 50px 50px 50px;
	} 	

 .bg1 {
	background-image: url(../images/backgrounds/bg1.jpg);
	background-attachment:fixed;
	}
 



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

.input-container{
	display: flex;
    gap: 0 10px;
	background-color:var(--white);
	position:relative;
	align-items: center;
	justify-content: space-between;
}
 

.search-input-small {
	flex-grow: 1;
	border:0;
    color:var(--black) !important;
    background-color:transparent !important;
    outline: none;
    vertical-align: middle;
    line-height: 50%;
    height: 48px;
    padding: 0 25px;
    font-size: 16px;
	
}

.go-button  {
    background-color:var(--black);
    color: var(--white);
	text-align:center;
    width: 150px;
    height: 48px;
    border: 0;
    outline: none;
	font-size:20px;
	font-family:var(--font-bold);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.go-button:hover {
   background-color:var(--primary-color);
   color: var(--white);
}
  
 

.formstyle{}
 
form {
	margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

.fieldset {
	width: 100%;
	padding:18px 0;
	border:0;
	border-bottom:1px solid var(--black);
	background-color:var(--white);
	color:var(--black);
	display: block;
	/*border-radius: 12px;*/
	margin: 0;
	font-size: 16px;
 
}

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

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

.input-container span.wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    right: 0;
}
.input-container .search-input-small {
	max-width: 200px;
}
 
::-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);
}
 
/*************** 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(--black);
     stroke-width: 1;
     box-sizing:border-box;
     -webkit-transition: all 200ms linear;
     transition: all 200ms linear;
}

/*****************video settings*********/


.video-outer{
	width:100%;
	height:100vh;
	position:relative;
}
.video-wrap{
	width:100%;
	height:100%;
	position:fixed;
	z-index:-1;
	left:0;
	top:0;	 
}
.video-wrap:before{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	content:'';
	z-index:2;
	background-color:rgba(0, 0, 0, 0.2);
}
 video {
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 
.corner{
	width:100%;
	height:380px;
	position:absolute;
	top:0;
	right:0;
	content:'';
	z-index:1;
	background-image: url(../images/corner.png);
	background-repeat: no-repeat;
	background-position: right top;	 
}


section#form form br {
	display: none;
}
textarea.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.fieldset {
	margin-bottom: 20px;
}


.register .wpcf7-form-control-wrap{ line-height: 0px;}
.register .wpcf7-form-control-wrap br{ display: none;}
.scroll-inn{ display: none;}
.scroll-inn a span{
    color: var(--grey-dark);
    font-size: 16px;
    border: 1px solid var(--black);
    /* border-radius: 50px; */
    font-family: var(--font-bold);
    transition: all 0.4s ease;
    text-transform: uppercase;
    padding: 10px  60px 10px 21px;
    display: inline-block;
    cursor: pointer;
    position:relative;
}
.scroll-inn a span:after {
    width: 50px;
    height: 44px;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    background-image: url(../images/icons/arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
    transition: all 0.4s ease;
}
.scroll-inn a span:hover{ background-color: #000;}
.copy br{display: none;}


/************************************* 1400px *************************************/

@media only screen and (max-width: 1400px) {
.container {
	width: 100%;
	padding:0 25px;
	}
 
 .container-large{
	padding:0 25px;
}
.lower-footer {
    padding: 0 40px 40px 0px;
}
.logo-social {
	width:100%;
	justify-content: center;
	margin:10px 0;
}
.reg-head{
	font-size:24px;
	line-height:28px;
	width:100%;
	margin:20px 0;
	text-align:center;
 
	}
.register-outer{
    width:100%;
	padding-left:0;
}
.register-outer div {
    width: 100%;
}
.register{
	width:100%;	 
}
}
/************************************* 1320px *************************************/
@media only screen and (max-width: 1024px) {


  

}

/************************************* 1280px *************************************/
@media only screen and (max-width: 1280px) {
.amenities-row{
    grid-template-columns: repeat(3, 1fr);
}
 .amenities-row .col{
 	 border-left:1px solid var(--grey);
	 display:flex;
	 padding:10px 20px;
}

.align-cnt .col{
    width:45%;
}
 
}
/************************************* 1280px *************************************/
@media only screen and (max-width: 1189px) {
 
.logo img {
    width: 120px;}
.logo {
    width: 200px; margin-left: -100px;}
.footer-menu-col{
	flex: 0 0 48%;
	
}
.footer-menu-col:nth-child(2){ border-right: none;}

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

 .section-spacing{
	 padding:40px 0;
 }
.box-shadow{
	  padding:50px;
 
 }
  .header{
	height:auto;
	}
.logo { 
	width:170px;
	height:auto;
	padding:20px;
	position:relative;
	left:auto;
	top:auto;
	margin-left:0;
	border-left:0;
	border-right:1px solid rgba(255, 255, 255, 0.2);
}
 
.logo img, header.smaller .logo img {
	width:100%;
	 
}
header.smaller .logo{
	width:150px;
	height:auto;
	margin-left:0;
}
 
 }

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
 
 
.box-shadow{
	  padding:30px;
 
 }
 
 .register{
	grid-template-columns: repeat(2, 1fr);
}
 }

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

 
}

/************************************* 767px *************************************/
@media only screen and (max-width: 768px) {
 
.logo-social, .register{
	width:100%;
	justify-content: center;
	margin:10px 0;
 

}
.pro-dtl-cout-hand-wrap{ flex-direction: column;}
.home-slide-desk {display: none;}
.home-slide-mob {display: block;}
.footer-menu-desk { display: none;}
.mobile-footer-accordian {
	display: block;
	margin:0 0 40px 0;
}
.abt-why-choose-section{ overflow: hidden;}
.abt-why-choose-wrap{
        display: flex;
        flex-wrap: wrap;
        gap: 2%;
		        margin-top: 30px;
        }

.abt-why-choose-wrap .iconic{
    flex: 0 0 49%; padding: 85px 25px 30px;
}
.scroll-inn{ display: block;}

} 

/************************************* 640px *************************************/
@media only screen and (max-width: 640px) {
 
body {
	font-size: 15px;
	line-height:22px;
	}

 header{
	 /* position:relative;
	 background-color:var(--black);  */
}
.header{
	padding:0px;
} 
 

 
.logo img, header.smaller .logo img {
	width:100%;
	 
}
  header.smaller  .header{
 	height:auto;
 }

.heading{
	font-size:30px;
	line-height:34px;
}
.subheading {
	font-size: 22px;
	line-height:24px; 
}
 
.subtitle{
	font-size: 20px;
 
}
 
.banner { 
	height:250px;	 

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


.caption-holder{	 
	padding:20px 20px;
	width:70%;
}
 
 .banner h2 {
	font-size:20px;
	line-height:normal;	 
}
 .project-brand{
	 margin-bottom:15px;
	 padding-bottom:15px;
	
}
 
 .res-center{
 	text-align:center;
	justify-content: center;
	}
.project-brand img{
  	width:150px;
}
 .breadcrumb ul {    
    margin: 0;
 }

.bxy-plain{
	 border:1px solid var(--grey)!important;
}
.scroll h2 {
  font-size:50px;
  line-height: 50px;
   
}
 
.RightToLeft {
  animation: RightToLeft 5s infinite linear;  
}
 
 
 
.iconic h2{
	font-size: 20px;
	line-height:28px;
}
 
.iconic-number{	
 
	font-size:30px;

}
  
 
.amenities-row{
    grid-template-columns: repeat(2, 1fr);
	padding:15px;
}
 .amenities-row .col{
	 padding:8px;
	 border:1px solid var(--grey) !important;
}
 .amenities-row .col i img{
 	 width:20px;
 }
 
  .amenities-red .col{
	border:1px solid rgba(255 ,255, 255, 0.2) !important;
	 font-size:14px;
	 line-height:16px; 
  }
.facts-box{
	padding:20px;
}
.box-head h2{
	font-size:50px;
	line-height:50px;
	 
} 
 .top-row, .bottom-row  {
      grid-template-columns: 1fr;
	  gap: 10px;
}
.bottom-row {
	margin-top:0;
}

.footer {
	padding:40px 0 0 0;
	}
	
.logo-social{
	 gap:0 20px;
}
.footer-logo {
	width:100px;
	
}
.social { 
	padding-left:10px;
}
.footer-menu-row{
	padding:10px 0;
	margin:20px 0;
}
 
.register{
	 grid-template-columns: repeat(1, 1fr);
	 text-align:center;
} 
  
.footer-menu-col{
	width:100%;
	margin-bottom:15px;
}
  
.input-container{
	background-color:transparent;
	display: block;
	text-align:center;    
}
 .search-input-small {
	width:100%;
	margin:10px 0;	 
    background-color:var(--white)!important;
    line-height: normal;
    height: 40px;
    padding: 0 25px;   
 
}

.go-button  {
    width:auto;
    height: 40px;
	font-size:20px;
	padding:0 20px;
}
.counter-box{
	padding:30px;
}
.counter-box h2{
	font-size:24px; 
}	
  .facts-item h2{
  	font-size:40px;
	line-height:50px;
}


 .plan-info{	 
	text-align:left;
}

 .plan-info span{
 	font-size: 14px;
	font-family:var(--font-bold);
 } 
 .print-tab-content .link a {
	font-size: 14px;
 }

 .plan-order{
 	order:-1;
	margin-bottom:20px;
 }
 .corner{
	display:none; 
}
.footer-menu-row{
	gap:10px 0;
	}
.footer-menu-col{
	flex: 0 0 100%;
}

.leaders-info-outer{
	padding:0 0 20px 0;
	margin:0 0 25px 0;
	border-left:0;
	border-bottom:1px solid var(--grey);
	}

#timer {
  
   margin-top:20px;
   padding:15px;
   outline-offset: -8px;
 
}
 
 
 #timer ul li{
	padding:8px 8px;
	font-size: 14px;
 }
 
 #timer ul li span{
 	font-size:30px;
 
 }

.input-container .go-button {
        top: 2px;
        position: relative;
    }
.link a { padding: 0 40px 0 15px; font-size: 14px;}
.link a:after{width: 38px;    background-size: 16px;}
.section-title { font-size: 20px;}
.amenities-row .col{    font-size: 15px;
    line-height: 16px;}
.news-widget h2 {
    font-size: 22px;
    line-height: 27px;
}
.register{ margin: 0px;}
.reg-head{ margin-bottom: 0px;}

.hide-mob{ display: none !important;}
.footer-form { padding: 20px 0 25px;}
.facts-container .bottom-row { grid-template-columns: repeat(2, 1fr);}
.facts-container .facts-box .box-footer{ display: none;}
 .facts-box .box-head h2 {
        font-size: 30px;
        line-height: 34px;
    }
  
.leaders-info-outer:hover:before {
    width: 3px;
    height: 100px;
}

.heading-small {
    font-size: 28px;
    line-height: 32px;
}

}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
.facts-box .fun-icon{ left: 20px; top:20px; right: auto;}
.facts-box .box-head{padding-top: 60px;}
.boxy-outline h2 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;}
.abt-why-choose-wrap .iconic p{display: none;}
.copy br{display: inline-block;}
.banner, .banner-small {
    padding-bottom: 20px;
}
}



/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
	 
 
.video-outer{
	/* height:34vh; */
	/*aspect-ratio: 9 / 16;  /* Portrait ratio */
	/* position:relative; */
 
}
.video-wrap{	 
	position:absolute;	 	 
}
.iconic-number{	
	position: relative;
	left: 0;
	top: 0;
	justify-content: flex-start;
	margin-bottom: 20px;
}
.iconic {
	padding: 25px;
}
.address-box {
	padding: 25px;
}
    .heading, .heading-small {
        font-size: 26px;
        line-height: 30px;
    }
    .subheading {
        font-size: 19px;
        line-height: 22px;
    }
.abt-why-choose-wrap .iconic {
    padding: 40px 25px 30px;}
}


@media only screen and (max-width: 420px) {
.abt-why-choose-wrap .iconic h2 {
        font-size: 18px;
        line-height: 24px;
    }
}


@media only screen and (max-width: 420px) {
.abt-why-choose-wrap .iconic{ flex: 0 0 100%;}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
.link a{ font-size: 12px;}	
.flex-gutter {
    gap: 5px;
}
.link a { padding: 0 40px 0 12px;}
    .facts-box {
        padding: 12px;
    }
}

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