/* Clash grotesk */
@font-face {
  font-family: ClashGrotesk-Bold;
  src: url(../fonts/clashGrotesk_complete/OTF/ClashGrotesk-Bold.otf);
}

@font-face {
  font-family: ClashGrotesk-Extralight;
  src: url(../fonts/clashGrotesk_complete/OTF/ClashGrotesk-Extralight.otf);
}

@font-face {
  font-family: ClashGrotesk-Light;
  src: url(../fonts/clashGrotesk_complete/OTF/ClashGrotesk-Light.otf);
}

@font-face {
  font-family: ClashGrotesk-Regular;
  src: url(../fonts/clashGrotesk_complete/OTF/ClashGrotesk-Light.otf);
}

@font-face {
  font-family: ClashGrotesk-Medium;
  src: url(../fonts/clashGrotesk_complete/OTF/ClashGrotesk-Medium.otf);
}

@font-face {
  font-family: ClashGrotesk-Semibold;
  src: url(../fonts/clashGrotesk_complete/OTF/ClashGrotesk-Semibold.otf);
}

@font-face {
  font-family: ClashGrotesk-Variable;
  src: url(../fonts/clashGrotesk_complete/TTF/ClashGrotesk-Variable.ttf);
}


* {
  margin: 0;
  padding: 0;
}
:focus {
  outline: none;
}
html {
  scroll-behavior: smooth;
}

html,
body {
  font-size: 100%;
  overflow-x: hidden;
  font-family: ClashGrotesk-Regular;
  background: #FCF9F2;
}

body a {
  transition: 0.6s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  text-decoration: none;
  font-size: 16px;
}



body img {
  transition: 0.6s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: #F2EFE5;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: #F2EFE5;
  cursor: pointer;
  user-select: none;
}


h1 {
    font-size:60px;
    line-height: 66px;
    letter-spacing: -1px;
    font-family: ClashGrotesk-Regular;
    font-weight: 400;
    color:#3A3526;
}

h2 {
     font-size:40px;
    line-height:42px;
    letter-spacing: -1px;
    font-family: ClashGrotesk-Regular;
    font-weight: 400;
    color:#3A3526;
    margin-bottom: 40px;
}

h3 {
    font-size:30px;
    line-height: 32px;
    letter-spacing: -1px;
    font-family: ClashGrotesk-Regular;
    font-weight: 400;
    color:#3A3526;
}

h4 {
   font-size:25px;
    line-height:27px;
    font-family: ClashGrotesk-Regular;
    font-weight: 400;
    color:#3A3526;
}

h5 {
     font-size:22px;
    line-height:24px;
    font-family: ClashGrotesk-Regular;
    font-weight: 400;
    color:#3A3526;
}

h6 {
    font-size:20px;
    line-height:22px;
    font-family: ClashGrotesk-Regular;
    font-weight: 400;
    color:#3A3526;
}


p,
.table th,
.table td {
    transition: 0.6s all ease;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 1px;
  color: #3A3526;
}

p,
li,
a {
    transition: 0.6s all ease;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 1px;
  color: #3A3526;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

body a:hover {
  text-decoration: none;
}
.form-control:focus {
  color:inherit;
  background-color:inherit;
  border-color:inherit;
  outline: 0;
  box-shadow:none;
}

/* bg color */
.bg-grey {
  background: #F2EFE5;
}

.bg-black {
  background: #231F14;
}

.bg-white {
  background-color: #F2EFE5 !important;
}

.bg-brown {
  background-color: #3A3526;
}

.common-btn {
  background: #3A3526;
  min-width: 198px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 48px;
  color: #FCFAF3;
  border: 1px solid #FFFFFF2E;
  padding: 0 20px;
  /* font-weight: 600; */
  align-items: center;
  gap: 5px;
  justify-content: center;
  height: 50px;
  text-align: center;
  display: inline-block;
  font-family: ClashGrotesk-Medium;
}

.common-btn:hover {
  background: #231f14; color: #FCFAF3;
}

.common-btn img {
  margin-left: 5px;
  width: 10px;
  height: auto;
  position: relative;
  left: 0;
  top:0;
  display: inline-block;
}

.common-btn:hover img {
  left: 5px;
}

.transparent-btn{backdrop-filter: blur(50px); background: none;}


figure{margin: 0; overflow: hidden; border-radius: 20px;}
figure > img{-webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
border-radius: 20px;
}
figure:hover > img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.menu-toggle{display: none;}
.space{padding:80px 0;}
header {
  position:fixed;
  width: 100%;
  left: 0;
  padding: 0;
  display: flex;
  z-index: 99;
}
.sticky.fixed-header{transition-property: background-color, box-shadow, line-height, height;
  transition-duration: 0.4s;
	 background: #3A3526;
}


.body-padding{padding-top: 80px;}
header .header-right {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 130px;
  min-height: 100px;
  transition: 0.6s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
}

header.sticky .header-right {
  min-height: 80px;
}

header .header-right .nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

header .header-right .nav li {
  font-size: 14px;
  line-height:18px;
   font-family: ClashGrotesk-Medium;
}
header .header-right .nav li i {
  font-size: 13px;
  position: relative;
  left: 3px;
  top: 1px;
  color: #67335A;
}

header .header-right .nav li .sub-menu {
  width: 210px;
  padding: 15px;
  position: absolute;
  background: #fff;
  border-radius: 0 0 15px 15px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

header .header-right .nav > li .sub-menu > li{padding:7px 0;}
header .header-right .nav > li .sub-menu > li a:hover::before{content: none;}

/* Desktop hover */
@media (min-width: 992px) {

.header-right .nav li:hover > .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
     transition: all 0.6s ease;
  }
.toggle-icon{display: none;}
}


header .header-right .nav > li.active a::before {
  width: 100%;
  left: 0;
  border-bottom:1px solid #fff;
}
header .header-right .nav > li.active > a {
  color: #fff;
}

header .header-right .nav li a {
  position: relative;
  color: #fff;
}
header .header-right .nav > li a::before {
  bottom: -3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.3s linear;
  width: 0;
}
header .header-right .nav > li a:hover {
  text-decoration: none;
  color: #fff;
}
header .header-right .nav > li a:hover::before {
  left: 0;
  width: 100%;
border-bottom:1px solid #fff;
}

header .header-right  .common-btn{min-width: 160px;}

.home-banner {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size:75%;
  background-position: right bottom;
  background-color: #756f61;

}
.home-banner .row{min-height: 100vh;}
.home-banner .text-box{padding-bottom: 50px;}
.home-banner .text-box small{letter-spacing: 1px; font-size: 12px; line-height: 16px; color:#FCFAF3; text-transform: uppercase; font-family: ClashGrotesk-Medium;}
.home-banner .text-box h1{color:#FCFAF3;}
.home-banner .text-box p{font-size: 14px; line-height: 18px; letter-spacing: 1px; color:#FCFAF3; margin-bottom: 20px;}
.home-banner .text-box ul {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.home-banner .text-box ul li h5{color:#FCFAF3; font-family: ClashGrotesk-Medium;}
.home-banner .text-box ul li{position: relative;}
.home-banner .text-box ul li::before {
  position: absolute;
  left: -14px;
  top: 4px;
  width: 1px;
  height: 44px;
  border-left: 1px solid #FFFFFF2E;
  content: "";
}
.home-banner .text-box ul li p{
font-size: 12px;
line-height: 20px;
letter-spacing: 1px;
text-transform: uppercase;
font-family: ClashGrotesk-Medium;
margin-bottom: 0;
}
.home-banner .text-box ul li:first-child:before{content: none;}

.home-banner .form-box{background: #FCFAF3; border-radius: 20px 20px 0 0; padding: 30px 25px}
.home-banner .form-box h5{ margin-bottom:15px; font-family: ClashGrotesk-Medium; margin-bottom: 30px;}
.home-banner .form-box select {
	padding: 10px 36px 10px 12px;
	background-image: url("../images/select-arrow.svg");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	height: 50px !important;
	padding: 15px 22px !important;
	color: #3A3526 !important;
font-size: 14px !important;
line-height: 16px !important;
font-family: ClashGrotesk-Medium !important;
	  border-radius: 15px; 
}
.home-banner .form-box select:focus{border: 1px solid #3A35262E; }
.home-banner .form-box input[type="text"], .home-banner .form-box input[type="email"]{
  width:100%; 
  height: 50px; 
  border: 1px solid #3A35262E; 
  border-radius: 15px; 
  padding: 15px 22px !important; 
  color: #3A3526; 
  font-size: 14px; 
  line-height: 16px;  
  font-family: ClashGrotesk-Medium;
  transition: 0.6s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
}
.home-banner .form-box p{margin-bottom:0;}
.form-box button {
	width: 100% !important;
	height: 50px !important;
	border: 1px solid #FFFFFF2E !important;
	border-radius: 15px !important;
	font-size: 14px !important;
	line-height: 49px !important;
	color: #FCFAF3 !important;
	font-family: ClashGrotesk-Medium !important;
	background: #3A3526 !important;
	letter-spacing: 1px !important;
	padding: 0 !important;
	opacity:1 !important;
	position:relative !important;
}

.form-box button::before {
	position: absolute;
	top: 21px;
	right: 58px;
	content: "";
	background: url(../images/arrow-up.svg) no-repeat 0 0;
	width: 10px;
	height: 10px;
	display: block;
	-webkit-transition: 0.5s all ease;
	-moz-transition: 0.5s all ease;
	-o-transition: 0.5s all ease;
	-ms-transition: 0.5s all ease;
	background-size: 9px !important;
}

.form-box button:hover::before {
	right:55px;
	transition: 0.5s all ease;
}


.home-banner .form-box button img{width: 10px;}
.home-banner .form-box button:hover{opacity:1;}

.form-box .form-group{margin-bottom: 15px !important;}
.form-box .common-btn{margin:0 !important;}
.form-box p{font-size: 12px; line-height: 14px; color: #3A3526;}

.lifestyle{width: 100%;}

.sub-text {
  font-size: 12px;
  line-height: 21px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3A3526;
  margin-bottom: 5px;
  font-family: ClashGrotesk-Medium;
  font-weight: 500;
  display: block;
}

.lifestyle .text-box {
  width: 100%;
  background: #F3F0E7;
  border-radius: 20px;
  padding: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.lifestyle .text-box .card-box{background: #FCFAF3; border-radius: 15px; padding: 22px; min-height: 172px; width: calc(50% - 4.5px);}
.lifestyle .text-box .card-box span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: ClashGrotesk-Medium;
  font-weight: 500;
  color: #3A3526;
  margin-bottom: 20px;
  display: block;
}

.lifestyle .text-box .card-box h5{font-size:22px; line-height: 36px; letter-spacing: 0; text-transform: uppercase; font-family: ClashGrotesk-Medium;
font-weight: 500; color:#3A3526; 
}

.lifestyle .text-box .card-box p{font-size:14px; line-height:18px; letter-spacing: 1px; color:#3A3526; margin-bottom: 0;}
.lifestyle figure {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  margin: 0;
  position: relative;
}
.lifestyle figure > img{width: 100%; height: 100%; object-fit: cover; border-radius: 20px; opacity:80%;}
.lifestyle figure .common-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.gallery-slider .inner {
  display: flex;
  justify-content: space-between;
  align-items: last baseline;
}


.gallery-slider .swiper-wrapper{height: auto;  transition-timing-function: linear !important;
    animation-timing-function: linear !important;
    padding-bottom: 20px;}
.gallery-slider .swiper {
  width: 100%;
}

.gallery-slider .swiper-slide {
  width:368px !important;
  height:290px;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slider .gallery-top{margin-top:25px;}


.location{width: 100%;}
.location .inner{background: #F3F0E7; border-radius: 20px; padding: 9px;}
.location .inner .left-box{padding:42px 38px; display: flex; flex-direction: column; height: 100%;}
.location .inner figure{width: 100%;}
.location .inner figure img{width: 100%;}
.location .inner .left-box .top{border-bottom: 1px solid #3732251A}
.location .inner .left-box .top h2{margin-bottom:15px;}
.location .inner .left-box .bottom{margin-top: auto;}
.location .inner .left-box .bottom span{font-size: 14px;
line-height: 22px;
text-transform: uppercase;
color: #3A3526;
margin-bottom: 5px;
 font-family: ClashGrotesk-Semibold; letter-spacing: 1px;
}

.location .inner .left-box .bottom ul {
  width: 100%;
  margin-top: 10px;
}
.location .inner .left-box .bottom ul li{display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #3732251A; padding: 9px 0;}
.location .inner .left-box .bottom ul li:last-child{border-bottom: 0;}
.location .inner .left-box .bottom ul li p{ 
  margin:0; 
  letter-spacing: 1.5px; 
  font-size: 14px; 
  line-height:18px; 
  color: #3A3526;   
  font-family: ClashGrotesk-Medium;
}

.location .inner .left-box .bottom ul li span {
  margin: 0;
  min-width: 57px;
  height: 22px;
  background: #373225;
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  color: #FCFAF3;
  font-family: ClashGrotesk-Medium;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenities .inner-card {
  background: #F3F0E7;
  border-radius: 20px;
  padding: 25px 20px;
  min-height: 150px;
  margin-bottom: 30px;
}
.amenities .inner-card span{display: block; width: 25px; height: 25px; margin-bottom: 19px; flex-shrink: 0;}
.amenities .inner-card span img{width:100%; height:100%;}
.amenities .inner-card > p{
font-family: ClashGrotesk-Medium;
font-size: 16px;
line-height: 20px;
letter-spacing: 1px;
color: #3A3526;
}

.amenities .inner-card.black {
  background: #373225;
  padding: 42px 33px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amenities .inner-card.black::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  background: url(../images/logo-pattern.svg) no-repeat 0 0;
  width: 346px;
  height: 150px;
  object-fit: cover;
}
.amenities .inner-card.black ul {
  position: relative;
  z-index: 1;
  gap: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.amenities .inner-card.black ul li {
  display: flex;
  gap: 17px;
  align-items: center;
}
.amenities .inner-card.black ul li span {
  margin: 0;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.amenities .inner-card.black ul li h6{margin-bottom:5px; color: #FCFAF3; font-size: 20px; line-height: 22px; font-family: ClashGrotesk-Medium;}
.amenities .inner-card.black ul li p{margin-bottom:0; color: #FCFAF3; font-size:14px; line-height:19px;}
.amenities .inner-card.black ul li .common-btn{min-width: 170px; color: #373225; background:#FCFAF3}

.payment-plan{width: 100%; background: #F3F0E7;}
.payment-plan h2{margin-bottom:20px;}
.payment-plan > p{line-height: 18px}
.payment-plan ul {
  width: 100%;
  max-width: 568px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.payment-plan ul li{width: 100%}
.payment-plan ul li .inner {
  border-radius: 20px;
  background: #FCFAF3;
  box-shadow: 0px -10px 60px 0px #45402B05;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.payment-plan ul li .inner span{
  display:flex; 
  width: 84px;
   height: 76px; 
   flex-shrink: 0; 
   align-items: center; 
   justify-content: center; 
   color: #FCFAF3; 
   font-size: 26px; 
   line-height: 30px; 
   font-family: ClashGrotesk-Medium;
   background: #373225;
   border-radius: 15px;
   box-shadow: 0px -10px 60px 0px #45402B05;
 }

 .payment-plan ul li .inner h6{margin-bottom:5px; color: #3A3526; font-size:12px; line-height:14px; text-transform: uppercase; letter-spacing: 1px; font-family: ClashGrotesk-Medium; }
 .payment-plan ul li .inner h5{margin-bottom:0; color: #3A3526; font-size:22px; line-height:30px; font-family: ClashGrotesk-Medium;}


.consultation{width: 100%;}

.consultation h2{margin-bottom: 20px;}
.consultation .form-box {
  background: #F3F0E7;
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 419px;
  margin-left: auto;
}

.consultation .form-box h5{ margin-bottom:15px; font-family: ClashGrotesk-Medium; margin-bottom: 30px;}
.consultation .form-box input[type="text"], .consultation .form-box input[type="email"], .consultation .form-box select{
  width:100%; 
  height: 50px; 
  border: 1px solid #3A35262E; 
  border-radius: 15px; 
  padding: 18px 22px; 
  color: #3A3526; 
  font-size: 14px; 
  line-height: 16px; 
  background: #FCFAF3;
  font-family: ClashGrotesk-Medium;
  transition: 0.6s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
}
.consultation .form-box select {
	padding: 10px 36px 10px 12px;
	background-image: url("../images/select-arrow.svg");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	height: 50px !important;
	padding: 18px 22px !important;
}

.consultation .form-box button{
  width: 100%; 
  height: 50px; 
  border: 1px solid #FFFFFF2E; 
  border-radius: 15px; 
  font-size: 14px; 
  line-height: 48px; 
  color: #FCFAF3;  
  font-family: ClashGrotesk-Medium;
  background: #3A3526;
  letter-spacing: 1px;
}

.consultation .form-box button img{width: 10px;}

.consultation .form-box .form-group{margin-bottom: 15px;}
.consultation .form-box .common-btn{margin: 30px 0 13px 0;}
.consultation .form-box p{font-size: 12px; line-height: 14px; color: #3A3526; margin: 0;}


.consultation .top{max-width: 419px; border-bottom: 1px solid #3732251A; padding-bottom: 25px;}
.consultation .bottom{padding:55px 0;}
.consultation .bottom ul{width: 100%;}
.consultation .bottom ul li{width: 100%; margin: 3px 0;}
.consultation .bottom ul li a{font-size: 26px; line-height:28px; color: #3A3526;  font-family: ClashGrotesk-Regular;}
.consultation .bottom .sub-text{margin-bottom: 8px}

footer{background:#3A3526; position: relative;}
footer::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/footer-pattern.svg) no-repeat 0 0;
  width: 346px;
  height: 150px;
  object-fit: cover;

}
footer .left .logo{display:inline-block;}
footer .address{margin-top:58px;}
footer .address .sub-text{color:#FCFAF3; font-size: 14px; margin-bottom: 0; letter-spacing: 1px}
footer .address h5{color:#fff; margin-bottom: 0;}
footer .right .sub-text{color:#FCFAF370;}
footer ul.contact {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-bottom: 23px;
}
footer ul.contact li{position: relative;}
footer ul.contact li a{ font-size:16px; line-height:22px; letter-spacing:1px; color:#FCFAF3;}

footer ul.contact li::before {
  position: absolute;
  left: -15px;
  top: 3px;
  width: 1px;
  height: 17px;
  border-left: 1px solid #FCFAF3;
  content: "";
}

footer ul.contact li:first-child:before{content: none;}

footer ul.social-media {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-bottom: 23px;
  border-bottom: 1px solid #FCFAF31A;
  padding-bottom: 20px;
}

footer ul.social-media li a{
  width: 33px; 
  height: 33px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  border: 1px solid #FCFAF31A; 
  border-radius: 100%;
}

footer ul.social-media li a img{max-width: 15px;}

footer ul.privacy{width: 100%; display: flex; gap: 20px; margin-bottom: 10px}
footer ul.privacy li{position: relative;}
footer ul.privacy li::before {
  position: absolute;
  left: -9px;
  top: 9px;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #FCFAF3;
}
footer ul.privacy li:first-child::before{content: none;}
footer ul.privacy li a{font-size: 14px; line-height: 18px; letter-spacing: 1px; color: #FCFAF3;}
footer .right p{margin: 0; font-size: 14px; line-height: 18px; letter-spacing: 1px; color: #FCFAF3; }

.form-box input[type="text"]::placeholder,
.form-box input[type="email"]::placeholder {
  color: #3A3526;
  opacity: 1; /* Firefox fix */
}

.nav li.current-menu-item > a:after,
.nav li.current_page_item > a:after,
.nav li.current-menu-ancestor > a:after,
.nav li.current-menu-parent > a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    left: 0;
    border-bottom: 1px solid #fff;
}

.consultation .form-box button::before {
	right: 88px;
}

.consultation .form-box button:hover::before {
	right:85px;
	transition: 0.5s all ease;
}

.home-banner .desktop{display:none;}
.consultation .text-box.mobile{display:none}