
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Cinzel:wght@400..900&display=swap');

:root {
  --primary-color: #013729;
  --secondary-color: #a78357;
  --secondary-dark-color: #d2a276;
  --secondary-light-color: #dccba8;
  --dark-color: #0d2828;
  --light-color: #f7f6e9;
  --body-color: #231f20;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --serif: 'Cinzel', serif;
  --primary-gradient: var(--primary-color), #00563f, var(--primary-color);
  --secondary-gradient: var(--secondary-color), var(--secondary-light-color), var(--secondary-color);
  --headerGap: 4rem;
  --footer-height: 263px;
  --primary-radius: 10px;
  --swiper-navigation-size: 50px;
}

html{
  scroll-behavior: smooth;
}

body {
  color: #fff;
  background: url(../images/backgrounds/bg-green1.jpg) var(--primary-color);
  font: 400 1rem "Cinzel", serif;
  overflow-x: hidden;
}

svg:not([fill]) {
  fill: currentColor;
  stroke: currentColor;
}

hr{
  border-top-color: var(--secondary-color);
}

p {
  line-height: 1.5;
}

.padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.pb-6 {
  padding-bottom: 6rem;
}
.mb-6 {
  margin-bottom: 6rem;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}
a{
  color: inherit;
  line-height: inherit;
  outline: 0;
  transition: color .25s;
}

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

p a{
  font-style: italic;
  font-weight: 300;
  text-decoration: underline;
}

.bg-primary a,
.bg-dark a {
  color: #fff;
}
.bg-primary a:hover,
.bg-dark a:hover {
  color: var(--light-color);
}

img, video, iframe {
  width: 100%;
  display: block;
}

.gap-row{
  row-gap: 30px;
}

.gap-row-sm{
  row-gap: 10px;
}

.object-cover {
  object-fit: cover;
}

.container-fluid{
    padding-left: 2rem;
    padding-right: 2rem;
}

.rounded {
  border-radius: 5px !important;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0);
}

/*header*/
.header {
  position: fixed;
  inset: calc(var(--headerGap) + 1rem) calc(var(--headerGap) + 1rem) auto;
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.header.fixed{
  inset: 0 0 auto;
  background-image: linear-gradient(45deg, var(--primary-gradient));
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  border-bottom: 1px solid;
  border-image-source: linear-gradient(45deg, var(--secondary-gradient));
  border-image-slice: 1;
}

.header .d-flex{
  justify-content: space-between;
  align-items: center;
}

.logo {
  min-height: 1px;
  transition: all 300ms ease-in-out;
  z-index: 2;
}

.logo a{
  display: block;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--body-color);
  font-weight: 500;
  overflow: hidden;
  width: 150px;
  transition: all 300ms ease-in-out;
}

.header.fixed .logo a{
  width: 120px;
  padding: 8px 0;
}

.header nav{
  column-gap: 20px;
}

.topLinks, .menu {
  display: flex;
  align-items: center;
  position: relative;
}

.topLinks {
  column-gap: .5rem;
  background-color: var(--secondary-color);
  border-radius: 50px;
  background-image: linear-gradient(45deg, var(--primary-color), #f6e27a, var(--primary-color));
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgba(255, 255, 255, 0.5), inset -0.2em -0.2em 0.2em 0 rgba(0, 0, 0, 0.5);
  padding: 10px;
  height: 100%;
    justify-content: center;
}

.topLinks li.topIcons a i{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 0 50px var(--body-color) inset;
  color:#ffffff;
  transition: all 300ms ease-in-out;
}

.topLinks li.topIcons a:hover i{
  color: var(--body-color);
  box-shadow: 0 0 0 1px var(--body-color) inset;
}

.header .menu{
  gap: 1rem;
}

.header .menu a{
  font-weight: 500;
  letter-spacing: 0.5px;
  /* color: var(--body-color); */
  text-transform: uppercase;
}

.header .menu a:hover{
  color: var(--secondary-dark-color);
}

.header .menuBtn {
  width: 40px;
  height: 40px;
  padding: .5rem;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  color: var(--light);
  background-color: transparent;
  box-shadow: 0 0 0 0px var(--primary-color) inset;
  border: 0;
  overflow: hidden;
}

.menuBtn .menuDots {
  width: 100%;
  display: flex;
  justify-content: space-around;
  position: relative;
  transition: all 0.3s linear;
}

.menuBtn .menuDots::before,
.menuBtn .menuDots::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover .menuDots::before,
.menuBtn:hover .menuDots::after {
  background-color: #fff;
}

.menuBtn.closeMenuBtn {
  gap: 2px;
  box-shadow: 0 0 0 50px var(--primary-color) inset;
}

.menuBtn.closeMenuBtn .menuDots::before,
.menuBtn.closeMenuBtn .menuDots::after{
  height: 20px;
  width: 2px;
  border-radius: 0;
  background-color: var(--secondary-color);
}

.menuBtn.closeMenuBtn .menuDots::before {
  transform: translate(6px,1px) rotate(45deg);
}
.menuBtn.closeMenuBtn .menuDots::after {
  transform: translate(-6px,1px) rotate(-45deg);
}

.menuBtn.closeMenuBtn .menuDots#menuDot2 {
  display: none;
}

.menuContainer {
  position: fixed;
  inset: 0;
  z-index: 996;
  background-color: rgba(0, 75, 49, 0.13);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: none;
}

.menuContainer .mainMenu {
  position: relative;
  isolation: isolate;
  margin: 0 50px 0 auto;
  padding: 140px 2rem 30px;
  width: 100%;
  max-width: 350px;
  border-radius: var(--primary-radius);
  overflow-y: auto;
  background-color: var(--primary-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
  transition: all 300ms ease-in-out;
}

.menuContainer .mainMenu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/logo-stroke-icon.svg) center bottom / 100% no-repeat;
  opacity: 0.125;
  z-index: -1;
}

.header.fixed + .menuContainer .mainMenu{
  padding-top: calc(1.5rem + 51px);
}

.menuContainer .navi a{
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mainMenu .navi li:not(:last-child) a{
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu .navi a{
  padding: 10px 0;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 1.25rem;
  display: block;
  border-radius: var(--primary-radius);
  position: relative;
}

.mainMenu .navi li:hover > a{
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
}
/*header*/

.banner {
  /* padding-top: 60px; */
  height: calc(100vh - 0px);
  position: relative;
  z-index: 1;
}

.banner .carousel-item {
  padding: var(--headerGap);
}

.banner .carousel-item::before,
.banner .carousel-item::after {
  content: "";
  position: absolute;
  inset: calc(var(--headerGap) + 10px);
  z-index: 1;
}

.banner .carousel-item::before{
  background: rgb(0 0 0 / 20%);
  background: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 0%) 30%);
}

.banner .carousel-item img {
  padding: 10px;
  background: linear-gradient(45deg, var(--secondary-gradient));
  z-index: 1;
}

.banner .bannerText{
  position: absolute;
  bottom: calc(var(--headerGap) + 2rem);
  left: calc(var(--headerGap) + 2rem);
  z-index: 9;
}

.bannerText .h1 {
  font-size: 1.75rem;
  text-transform: uppercase;
  position: relative;
  padding: 1px 0;
}

.scrollDown{
  margin: 1rem auto 0;
	width:40px;
	height:40px;
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
	cursor:pointer;
  transition: all 300ms ease-in-out;
	z-index:9;
}

.scrollDown:hover{
  background-color: var(--primary-color);
  color: #fff;
}

/*  */
.bottom-art{
  /* position: absolute;
  inset: auto 0 0; */
  width: 100%;
  height: 70px;
  transform: translateY(6rem);
  background: url(../images/bottom-art.svg) center / contain;
  z-index: -1;
}
/*  */

/* Overview */
.iconic-section p
{
    font-family: initial;
}
.leaf{
  position: absolute;
  max-width: 300px;
  mix-blend-mode: darken;
  z-index: -1;
  pointer-events: none;
  max-width: 350px;
  height: 70%;
}

.leaf[data-position="bottom left"]{
  left: 0;
  bottom: 0;
}

.leaf[data-position="bottom right"]{
  right: 0;
  bottom: 0;
  height: 70%
}

.leaf::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(to right, transparent, var(--light-color));
}

.leaf[data-position="bottom right"]::before{
  transform: rotateY(180deg);
}

.leaf img{
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.iconic-tower-image::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, var(--light-color) 5%, transparent 60%);
  pointer-events: none;
}
.iconic-tower-image img{
  margin-top: 4rem;
}

.icons {
  margin-top: 40px;
  width: 100%;
}

.icons .iconBx {
  flex: 1 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border-width: 0 1px 0 0;
}

.icons .iconBx.swiper-slide {
  flex: none;
  padding: 0 1rem;
  height: auto;
}

.icons .iconBx:last-child {
  border-right-color: transparent;
}

.icons .iconBx img {
  width: 70px;
  margin-bottom: 1.25rem;
  filter: hue-rotate(245deg) brightness(1.9);
  border: 1px solid rgb(255 255 255 / 15%);
  padding: 8px;
}

.icons .iconBx p {
  margin-bottom: 0;
}
/* Overview */

/* Stats */
.stats-section{
  background: url(../images/backgrounds/bg-green-leaves.jpg) center / 100px var(--primary-color);
}
/* Stats */


/* floor plans */
.toggleBtn{
  filter: grayscale(1);
  transform: scale(0.675);
  border: 0;
}
.toggleBtn.active{
  filter: grayscale(0);
  transform: scale(1);
}

.toggleContainer:not(.show){
  display: none;
}

.fpContainer .fpBox .inner {
  padding: 1rem;
  border-width: 1px;
  transition: all 300ms ease-in-out;
  isolation: isolate;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.fpContainer .fpBox .inner:hover{
  color: #fff;
}

.fpContainer .fpBox .inner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, var(--primary-gradient));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 300ms ease-in-out;
  z-index: -1;
}

.fpContainer .fpBox .inner:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.planBase{padding-top: 10px;}

.fpDetails {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  padding-bottom: 6px;
}
.fpDetails:last-of-type{
  border-bottom: 0;
  padding-bottom: 0;
}

.fpContainer .fpBox .inner:hover .fpDetails{
  border-bottom-color: rgb(255 255 255 / 15%);
}

.fpContainer .fpBox .inner:hover h6{
  background-image: linear-gradient(45deg, var(--secondary-gradient));
}

.fpContainer .fpBox .img-fluid {
  overflow: hidden;
}
.fpContainer .fpBox .img-fluid img{
  aspect-ratio: 4/3;
  object-fit: contain;
}

.fpContainer .fpBox span {
  display: block;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e4e4e4;
}

.fpContainer .fpBox .inner:hover .readmore .button{
  background-color: var(--secondary-color);
  color: var(--body-color);
}

.fpContainer .fpBox .inner:hover .readmore .button:hover{
  color: var(--secondary-color);
}
/* floor plans */

/* gallery */
.galBox.swiper-slide::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 53%);
  /* background-image: linear-gradient(rgb(0 0 0 / 80%), transparent, transparent, rgb(0 0 0 / 65%)); */
}

.galBox img{
  aspect-ratio: 16/7;
  object-fit: cover;
}

.galBox .box-title{
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  height: 100%;
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: center;
  /* background-image: radial-gradient(circle at 50% 50%, rgb(0 0 0 / 53%), transparent); */
  transition: all 300ms ease-in-out;
}

.galBox.swiper-slide.swiper-slide-active .box-title{
  opacity: 1;
}
/* .galBox .box-title::before,
.galBox .box-title::after{
  content: '';
  position: absolute;
  width: 20px;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, var(--secondary-gradient), var(--secondary-gradient));
  inset: 2rem auto;
  z-index: 5;
} */

.galBox .box-title::before{
  left: 0;
  border-right-width: 0;
}

.galBox .box-title::after{
  right: 0;
  border-left-width: 0;
}

.artistic-impression {
  position: absolute;
  bottom: 2rem;
  right: 10px;
  writing-mode:sideways-lr;
  transition: all 300ms ease-in-out;
  text-shadow: 1px 1px 1px #000;
}
/* gallery */

/* location */
.connectivity.has-golden-border{
  margin-top: 2rem;
  padding: 1rem;
  border-width: 1px;
  background-image: linear-gradient(45deg, var(--primary-gradient));
}

.connectivity-box .in{
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.connectivity-box .in .img-fluid{
  max-width: 40px;
  flex: 0 0 40px;
}
.connectivity-box .in .h5{
  margin-bottom: .25rem;
  font-family: var(--serif);
}

.mapBox{
  position: relative;
  isolation: isolate;
}

.mapBox > img{
  object-position: bottom;
}

.location-map iframe{
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1/1;
}
/* location */

/* Gaurs Group */
.gaurs-logo {
  width: 140px;
  margin: 0 auto 2rem;
}

.group-section .heading h2:not(:last-of-type){
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-width: 0 0 2px;
}

.statsContainer>.inner {
  margin-top: 3rem;
}
.statsBox .inner {
  text-align: center;
  padding: 1.5rem;
  border-width: 1px;
}
.statsBox h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--primary-color);
}
.statsBox p {
  font-size: 13px;
  text-transform: uppercase;
}
/* Gaurs Group */


/* Custom controllers */
.slider-control{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  transition: all 300ms ease-in-out;
}

.carousel-control-prev{
  left: calc(2% - 25px);
}
.carousel-control-next{
  right: calc(2% - 25px);
}

.slider-control::before,
.slider-control::after{
  content: '';
  position: absolute;
  border-radius: 50%;
}

.slider-control::before{
  inset: -8px;
  border: 1px solid rgb(255 255 255 / 50%);
  z-index: -2;
  transition: all 300ms ease-in-out 10ms;
}

.slider-control:hover::before{
  inset: 0px;
  border: 0;
  background-color: var(--primary-color);
}

.slider-control::after{
  inset: 0px;
  transform: scale(0,0);
  transition: all 300ms ease-in-out 10ms;
  z-index: -1;
}
.slider-control:hover::after{
  inset: -8px;
  transform: scale(1,1);
  border: 1px solid rgb(255 255 255 / 50%);
}

.slider-control svg{
  width: 22px;
  color: var(--secondary-color);
}
/* Custom controllers */



/* Amenities */
.amenities-section{
  /* aspect-ratio: 100/45; */
}
.amenities-images{
  position: absolute;
  inset: 0;
  z-index: -1;
}
.amenities-images::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgb(0 0 0 / 15%), rgb(0 0 0 / 90%));
  z-index: 1;
}
.amenities-images.right::before{
  transform: rotateY(180deg);
}

.amenityList > li:not(:last-of-type){
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgb(255 255 255 / 25%);
}

.amenityList h5{}

.amenityList ul li{
  color: rgb(255 255 255 / 75%);
}

.iconsContainer .amenBox.swiper-slide{
  height: auto;
}
.iconsContainer .amenBox figure{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 1rem;
  background-color: var(--light-color);
  border-radius: var(--primary-radius);
  border: 1px solid var(--primary-color);
  transition: all 300ms ease-in-out;
}
.iconsContainer .amenBox figure:hover{
  background-color: #fff;
}

.iconsContainer .amenBox figure .img-fluid{
  max-width: 75px;
  flex: 0 0 75px;
  padding: 10px;
  transition: all 300ms ease-in-out;
}

.iconsContainer .amenBox figure:hover .img-fluid{
  -webkit-filter: brightness(1);
  filter: brightness(1);
}

.iconsContainer .amenBox figure figcaption{
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
}

.iconsContainer .amenBox figure figcaption small{
  color: var(--primary-color);
}
/* Amenities */


/* Enquiry Form */
.anotherForm{
  margin-bottom: 2rem;
}
.anotherForm + small{
  font-size: 75%;
}
/* Enquiry Form */


.viewmore {
  width: 100%;
  margin-top: 1.25rem;
}

.viewmore .button {
  width: max-content;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
}
.viewmore .button:hover{
  gap: 15px;
}

.viewmore .button i {
  width: 30px;
  color: var(--secondary-color);
}

.viewmore .button:hover, .viewmore .button:hover i {
  color: #fff;
}

.viewmore .button.text-primary:hover, .viewmore .button.text-primary:hover i{
  color: #fff !important;
}

.viewmore .button.text-primary i{
  color: var(--primary-color);
}

.watermark{
  position: absolute;
  height: 90%;
  top: 50%;
  z-index: -1;
  pointer-events: none;
}

.watermark[data-position="left"]{
  left: 0;
  transform: translate(25%,10%);
}

.watermark[data-position="right"]{
  right: 0;
  transform: translate(35%,-50%);
}

.watermark[data-position="center"]{
  left: 50%;
  transform: translate(-50%,-50%);
}

.watermark img{
  height: 100%;
  width: auto;
  opacity: 0.15;
  transition: transform 700ms ease-in-out, opacity 700ms ease-in-out, filter 1500ms linear;
}
.watermark img.doneTranslate{
  filter: brightness(1) opacity(1);
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}

.heading.d-flex {
  gap: 10px;
}

.title-logo{
  width: 160px;
  margin-bottom: 1rem;
}

.title-hidden{
  font-size: 12vw;
  text-transform: uppercase;
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-weight: 800;
  color: rgba(125, 125, 125, 0.062);
  line-height: 1;
  z-index: -1;
  pointer-events: none;
}

.heading.border-bottom{
  border-bottom-width: 2px !important;
}

.heading .heading-logo{
  width: 120px;
  margin: 0 auto 1rem;
}

.heading h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5{
  display: block;
  font-family: var(--serif);
}

.heading .h1 {
  color: var(--secondary-color);
  font-size: 2.75rem;
  font-weight: 300;
}

.heading h6 {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

.has-golden-border{
  border: 10px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, var(--secondary-gradient), var(--secondary-gradient));
}

.text-grad{
  background-image: linear-gradient(45deg, var(--primary-gradient));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-grad-secondary{
  background-image: linear-gradient(45deg, var(--secondary-gradient));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-bevel {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--primary-color);
  text-shadow: -2px -2px 0 rgb(249 236 178 / 77%), 2px -2px 0 rgb(252 247 229 / 80%), -2px 2px 0 rgb(0 0 0 / 53%), 2px 2px 0 rgb(0 0 0 / 53%)
}

.text-serif{
  font-family: var(--serif);
}

.text-sans{
  font-family: "Open Sans", sans-serif !important;
}

.text-light{
  color: var(--light-color) !important;
}
.text-primary{
  color: var(--primary-color) !important;
}
.text-secondary{
	color:var(--secondary-color) !important;
}
.text-secondary-dark{
	color:var(--secondary-dark-color) !important;
}

.text-truncate-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.has-bevel{
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgba(255, 255, 255, 0.5), inset -0.2em -0.2em 0.2em 0 rgba(0, 0, 0, 0.5);
}

.bg-primary{
  background-color: var(--primary-color) !important;
  color: var(--light-color);
}

.bg-secondary{
  background-color: var(--secondary-color) !important;
}

.bg-secondary-dark{
  background-color: var(--secondary-dark-color) !important;
}

.bg-secondary-light{
  background-color: var(--secondary-light-color) !important;
  color: var(--light-color);
}

.bg-dark{
  background-color: var(--body-color) !important;
  color: var(--light-color);
}

.bg-light{
  background-color: var(--light-color) !important;
  color: var(--body-color);
}
.bg-gradient{
  background-image: linear-gradient(45deg, var(--primary-gradient)) !important;
}

.bg-leaf{
  background: url(../images/backgrounds/bg-green-leaves.jpg), linear-gradient(45deg, var(--primary-gradient));
  background-blend-mode: lighten;
}
.bg-texture{
  background-image: url(../images/texture.png);
}

.bg-image{
  background: center / cover no-repeat fixed;
}

.bg-image::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 60%);
  z-index: -1;
}

.bg-image.bg-secondary{
  background-attachment: initial;
}

.bg-image.bg-secondary::before{
  background-color: transparent;
}

.scroller{
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--light-color);
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.readmore {
  width: 100%;
  margin-top: 2rem;
}

.readmore.d-flex{
  gap: 10px 1rem;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: table;
  min-width: 180px;
  background-color: transparent;
  letter-spacing: 1px;
  padding: 1rem 1.25rem;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  background-color: var(--primary-color);
  transition: all ease-in-out 0.3s;
  overflow: hidden;
}

.readmore button {
  border: 0;
}

.readmore .button::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--body-color);
  transform: translate(-100%, -100%);
  transition: all ease-in-out .5s;
  z-index: -1;
}

.readmore .button:hover::after {
  transform: translate(-20%, -30%);
}

.readmore .button.reverse,
.bg-dark .readmore .button,
.bg-primary .readmore .button{
  color: var(--primary-color);
  background: radial-gradient(farthest-side, var(--secondary-color), var(--secondary-dark-color));
}

.readmore .button.reverse:hover,
.bg-dark .readmore .button:hover,
.bg-primary .readmore .button:hover{
}

.readmore .button.reverse::after,
.bg-dark .readmore .button::after,
.bg-primary .readmore .button::after{
  background-color: #fff;
}

.readmore .button.mw-auto{
  min-width: 1px;
  padding: 1rem;
}

.readmore .button.text-white{
  border-color: #fff;
  color: #fff;
}

.readmore .button.text-white:hover {
  color: var(--third-color) !important;
  background-color: #fff;
  border-color: transparent;
}
.readmore .button.bg-secondary {
  border: none;
}
.readmore .button.bg-secondary:hover {
  background-color: var(--primary-color) !important;
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus,
.controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply{
  mix-blend-mode: multiply;
}

.position-relative{
  z-index: 1;
}

/* custom swiper controls */
.swiper-middle-controls{
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swiper.has-sm{
  padding: 0 calc(var(--swiper-navigation-size) / 2 - 10px);;
}

div[class^="swiper-button"]{
  background-color: transparent;
  backdrop-filter: blur(20px);
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, var(--secondary-gradient), var(--secondary-gradient));
  color: var(--light-color);
  transition: all 300ms ease-in-out;
}
div[class^="swiper-button"].sm{
  width: calc(var(--swiper-navigation-size) / 2 + 5px);
  height: calc(var(--swiper-navigation-size) / 2 + 5px);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2 - 10px));
}

.swiper-button-next, .swiper-rtl .swiper-button-prev{
  right: 0;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
  left: 0;
}

.swiper-middle-controls .swiper-button-next, .swiper-middle-controls .swiper-rtl .swiper-button-prev{
  transform: translateX(50%);
}
.swiper-middle-controls .swiper-button-prev, .swiper-middle-controls .swiper-rtl .swiper-button-next{
  transform: translateX(-50%);
}

.heading .d-flex{
  gap: 10px;
}

div[class^="swiper-button"]:hover{
  background-image: linear-gradient(45deg, var(--secondary-gradient));
  color: var(--primary-color);
}

div[class^="swiper-button"]::after{
  color: inherit;
  font-size: 1rem;
}

div[class^="swiper-button"].sm::after{
  font-size: .75rem;
}

.swiper-control{
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 10px;
}

.swiper-middle-controls *[class^="swiper-"],
.swiper-control *[class^="swiper-"]{
  position: static;
}

.swiper-control .swiper-pagination{
  transform: none;
}

.swiper-control .swiper-pagination .swiper-pagination-bullet{
  background-color: var(--primary-color);
}

.swiper-middle-controls div[class^="swiper-button"],
.swiper-control div[class^="swiper-button"]{
  margin-top: 0;
}

.swiper-pagination-bullet{
  background-color: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active{
  opacity: 1;
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

.sticky{
  position: fixed;
  right: calc(var(--headerGap) + 2rem);
  bottom: calc(var(--headerGap) + 2rem);
  z-index: 9;
  border-radius: 100px;
  padding: 4px;
  color: var(--body-color);
  background-image: linear-gradient(45deg, var(--secondary-gradient));
  cursor: pointer;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

.sticky.fixed{
    bottom: 4rem;
  right: 10px;
}

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

.sticky > i{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 14px;
  color: #fff;
  background-color: var(--primary-color);
  box-shadow: 0 10px 20px rgb(0 0 0 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

.sticky .socialBtn{
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 4px;
  position: absolute;
  padding-bottom: 10px;
  left: 0;
  bottom: 100%;
  width: 100%;
  pointer-events: none;
}

.sticky:hover .socialBtn{
  pointer-events: auto;
}

.sticky .socialBtn a{
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(10px * var(--i)));
  transition: all calc(150ms * var(--i)) ease-in-out;
}

.sticky:hover a{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}
.sticky .socialBtn a i{
  border: 1px solid var(--secondary-dark-color);
  color: #fff;
}

/*Footer*/
.footer-area {
  padding: 4rem 0;
  background: url(../images/backgrounds/bg-green-leaves.jpg) center / 100px var(--primary-color);
  color: #fff;
  font-size: .875rem;
  z-index: 1;
}
.foot-logo img {
  max-width: 160px;
  /* margin: 0 auto 10px; */
  margin-bottom: 10px;
}
 .foot-logo small {
   text-transform: uppercase;
   display: block;
   justify-content: center;
   padding: 7px 0;
   gap: 5px;
   border-width: 1px 0;
   /* max-width: fit-content; */
  /* text-align: center; */
  /* align-items: center; */
  /* text-align: center; */
  /* margin: 0 auto; */
  /* border: solid rgb(255 255 255 / 50%); */
}
.foot-logo small:nth-child(2) {
  border-bottom: none;
}
.footer-title {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.foot-links li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-area a:hover{
  color: var(--secondary-dark-color);
}
.foot-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot-links li a {
  position: relative;
  display: grid;
  transition: all 300ms ease-in-out;
}
.foot-links li a:hover {
  color: var(--secondary-dark-color);
}
.icon-circular {
  width: 34px;
  flex: 0 0 34px;
  height: 34px;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 15%);
  transition: all 300ms ease-in-out;
}
.icon-circular:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.icon-circular.stroke {
  background-color: transparent;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 20%);
}
.copyrights {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 20%);
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

/*  */
/* .officeBOx .qrImg{
  width: 50px;
}

.officeBOx .qrImg img{
  width: 100%;
} */
/* privacy */
.gaursBox {
  margin-top: 4rem;
}
.button-top {
  background: rgba(0, 0, 0, 0.32);
  position: fixed;
  left: calc(50% - 20px);
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 99;
}
.button-top:hover {
  background: var(--secondary-color);
  color: var(--body-color);
}
/* enquiry_btn */
.enquiry_btn {
  background: var(--primary-color);
  position: fixed;
  right: 2rem;
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 99;
  display: none;
  animation: zoomAni 2s ease 0s infinite normal none;
}
@keyframes zoomAni {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*Footer*/

.flip-x{
  transform: rotateY(180deg);
}

/* forms */
.form-group>div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-group{
  display: flex;
}
.form-group > i{
  max-width: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: color-mix(in srgb, var(--secondary-color) 50%, var(--primary-color) 10%);
  border-right: 1px solid color-mix(in srgb, var(--primary-color), transparent 80%);;
}

.form-control {
  border-radius: 0px;
  padding: 10px;
  border: 0;
    border: 1px solid #c7c6b8;
    border-left: 0;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: color-mix(in srgb, var(--secondary-color) 50%, var(--primary-color) 10%);
}

.form-control.lg{
  padding: 1.25rem 1.5rem;
}
/* forms */

/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgba(0, 2, 12, 0.894);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  border: 0;
  color: #000;
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: #fff;
}

.modal-content {
  background-color: var(--light-color);
  color: var(--body-color);
  border-radius: 0;
  border: none;
}

.modal-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/lines-map-pattern.svg) center / 120px;
  opacity: 0.35;
  pointer-events: none;
}

.modal-content .modal-header {
  padding: 0;
  border: none;
}
.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  color: var(--body-color);
  background-color: var(--secondary-color);
  opacity: 1;
  z-index: 2;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}

.modal-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-logo img{
  max-width: 120px;
  margin: 0 auto;
}

.modal-body {
  padding: 2.5rem;
}
/* customize modal */

/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut{
  transform: scale(0);
  transition: all .5s ease-in-out;
}

.zoomIn{
  transform: scale(1);
}
/*transformation Animation*/

.separator{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: -40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.separator::before,
.separator::after{
  content: '';
  width: 50%;
  border-bottom: 1px solid var(--secondary-color);
}

.list li {
  position: relative;
  padding-left: 20px;
}

.list li:not(:last-of-type) {
  margin-bottom: 8px;
}

.list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, var(--secondary-gradient));
}

.list.last li{
  padding-left: 0;
  padding-right: 20px;
}

.list.last li::before{
  left: auto;
  right: 0;
}
.fixed-form {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 310px;
  background-color:#021f13;
  color: var(--primary-color);
  box-shadow: 0 8px 32px 0 #021f1394;
  z-index: 1000;
  transition: all 300ms ease-in-out;
}

.fixed-form.fixed {
  transform: translateY(0%);
  bottom: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  /* color: #fff; */
}

.fixed-form.fixed .innerform form {
  padding: 5px 20px;
}
.fixed-form.fixed h5
 {
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-bottom: 0;
}
.form-strip {
  background-color: rgb(255 255 255 / 20%);
  color: #fff;
  padding: 10px 10px 7px;
  text-align: center;
  text-transform: uppercase;
  border-top: 4px solid var(--primary-color);
  border-bottom: 1px dashed rgb(255 255 255 / 20%);
}

.form-strip h6 {
  letter-spacing: 1px;
  transform: scale(0, 0);
  transition: transform 500ms linear 200ms;
}

.form-strip .carousel-item.active h6 {
  transform: scale(1, 1);
}

.form-strip h6 span {
  color: var(--primary-color);
  font-size: 125%;
  font-weight: 900;
}

.fixed-form .innerform form {
  padding: 20px 20px;
}

.fixed-form .form-group {
  margin-bottom: 10px;
}

.fixed-form.fixed .form-group {
  margin-bottom: 0;
}

.form-check-label {
  font-size: 18px;
}

.fixed-form .form-control {
  padding: 8px 10px;
  background: #fff !important;
}

.fixed-form .formFooter {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.fixed-form .formFooter button {
    text-align: center;
    border-radius: 0;
    transition: all 300ms ease-in-out;
    outline: none;
    flex-grow: 1;
    background: #cdae58;
    padding: 9px;
    color: #000;
}
.fixed-form .formFooter button:hover {
    color: #ffffff;
}

.fixed-form.fixed .form-strip {
  display: none;
}

.fixed-form.fixed .formFooter {
  margin-top: 0;
  align-self: flex-end;
}

.fixed-form.fixed .col-12 {
  flex: 1 0 0;
}
.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
    gap: 7px;
}