/* Sticky CTA */
.enquiryWrapper {
  --width: 40px;
  position: fixed;
  isolation: isolate;
  left: 50px;
  bottom: 20px;
  padding: 4px;
  background-color: var(--secondary-color);
  overflow: hidden;
  border-radius: 100px;
  z-index: 4;
  transition: all 300ms ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* animation: hithere 1s ease infinite; */
}

.enquiryWrapper.hide {
  opacity: 0;
  transform: translateX(-100%);
}

/* @keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-10deg) scale(1.2); }
  50% { transform: rotate(10deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
} */

.enquiryWrapper:hover {
  animation: none;
}

.enquiryWrapper .inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 100px;
}

.enquiryWrapper a i {
  width: var(--width);
  height: var(--width);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.enquiryWrapper .inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background-color: var(--primary-color);
  transition: all 300ms ease-in-out;
}

.enquiryWrapper .inner a:not(:last-child) {
  border-right: 1px solid rgb(0 0 0 / 12%);
}

.enquiryWrapper .inner a:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}
/* Sticky CTA */

/*header*/

/*header*/
.header {
  position: relative;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 997;
  transition: all 300ms ease-in-out;
}

.header.fixed {
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.header .d-flex {
  display: flex;
  justify-content: space-between;
}

.header .logo {
  width: 200px;
  /* height: 75px; */
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
}

.header .logo a {
  position: absolute;
  top: 0;
  padding: 10px;
  background-color: #fff;
}

.header .logo img {
  /* background: #fff; */
  padding: 5px;
}

.menu-section {
}

.navi {
  display: flex;
  gap: 30px;
}

.navi ul {
  gap: 0 10px;
}

.navi li a {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: all 300ms ease-in-out;
}

.header.fixed .navi li a {
  font-size: 12px;
}

.navi li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/logo-icon.svg) center / contain no-repeat;
  transform: scale(0, 0);
  transition: all 300ms ease-in-out;
}

.navi li:hover > a::before {
  transform: scale(1, 1);
}

.navi li a i {
  font-size: 11px;
  color: var(--primary-color);
}

.menuBtn {
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  width: 30px;
  height: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  z-index: 99999;
  padding: 5px;
  right: 0;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--body-color);
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(5px, 5px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
  transform: rotate(-45deg) translate(5px, -5px);
}

.menuContainer {
  position: fixed;
  top: 100px;
  width: 100%;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: auto;
  /* background-color: #fff; */
  background-color: #f7f0e1;
  padding: 80px 20px 20px;
  display: none;
  z-index: 995;
}

.menuContainer ul li {
  line-height: 2;
}

.menuContainer ul li a {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--body-color);
  padding: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.menuContainer ul li a:hover {
  color: var(--primary-color);
}

/* Mobile Menu */
.menuContainer {
  display: none;
  /* transition: all 5s ease;  */
}

.menuContainer.open {
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* .menuHead{
  margin-top: 2rem;
} */

.socialBtn ul i {
  width: 36px;
  height: 36px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

.cta-box ul {
  display: flex;
  gap: 10px;
  padding: 5px 0;
}

.cta-box .whatsappBtn {
  background-color: #cfa76d;
  color: #fff;
  padding: 4px;
  border-radius: 40px;
  flex-direction: row;
}

.cta-box .whatsappBtn i {
  box-shadow: 0 0 0 50px #fff inset;
  color: var(--whatsapp);
}

.cta-box .clbtn {
  padding: 4px 1.5rem 4px 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 40px;
  border: 0;
}

.cta-box i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border-radius: 50%;
  color: var(--secondary-color);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  transition: all 300ms ease-in-out;
}

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

.cta-box .clbtni {
  color: #000;
}

.whatsappcolor i {
  background: #25d366;
  color: #fff;
  padding: 10px;
  width: 44px;
  height: 44px;
}
/*header*/

/* Hero Banner */
.banner {
  /* height: 100vh; */
  /* background-color: #000; */
  /* overflow: hidden; */
  /* z-index: 1; */
  position: relative;
  /* margin-top: 80px; */
  /* height: 100vh; */
}

/* .banner::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 25%);
  background: linear-gradient(rgba(0, 0, 0, 0.4) 40%, transparent 50%, transparent 80%, rgba(0, 0, 0, 0.75));
  z-index: 1;
  pointer-events: none;
} */

.banner picture,
.banner img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: calc(100vh - 80px);
}

/* .banner .carousel-item{
    transition: transform 2.5s ease-in-out;
} */

/* .banner.carousel-fade .carousel-item{
    transition: opacity 2.5s ease-in-out;
} */

/* .heroTitle{
  font-size: clamp(3.3rem,7.5vw,180px);
  line-height: 1;
  font-family: var(--midsun);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
} */

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  z-index: 20;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.45);
  background-size: 22px;
}

/* Fade Smooth */

/* .carousel-fade .carousel-item{
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active{
    opacity:1;
} */

.scrollDown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.scrollDown:before {
  content: "";
  position: relative;
  top: 0;
  height: 70px;
  margin-bottom: 20px;
  transform: scaleY(0);
  transform-origin: top;
  border-right: 1px solid #fff;
  animation: hidden 3s ease infinite;
}

@keyframes hidden {
  50% {
    transform: scaleY(1);
  }
}
/* Hero Banner */

/* rera box */
/* Rera */
.raraBox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  color: #fff;
  text-align: right;
  /* padding: 1rem; */
}

.raraBox p {
  font-size: 0.875rem;
}

.raraBox .reraImg {
  max-width: 50px;
}
.overviewRerabox .reraImg {
  max-width: 80px;
}

.overviewRerabox .raraInnerbox {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
}

.raraInnerbox span,
.accountbox {
  text-transform: uppercase;
  font-size: 11px;
}

.raraInnerbox .reraContent p {
  font-size: 11px;
}

.raraBox .accountbox {
  text-align: end;
  font-size: 11px;
  line-height: 1.6;
  text-transform: uppercase;
}

.raraBox .accountbox strong {
  color: var(--secondary-color);
}

.raraBox .bnkNmaebox {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.raraBox .bnkNmaebox strong {
  padding-right: 5px;
}

/* Rera */
/*end mobile rerabox */

/* ------------------------------------------------
overConfiguration
------------------------------------------------ */
.overConfiContainer {
  margin-top: 3rem;
  /* border: 1px solid red; */
}

.overConfiguration .logo {
  margin: 0 auto;
  max-width: 200px;
}

.overConfiContainer .overConfiBox {
  padding: 0 4rem;
  display: flex;
  justify-content: center;
  /* border: 1px solid red; */
  flex-direction: column;
}

/* rera box */
.overConfiguration .raraBox{
  position: static;
  color: var(--body-color);
}

.overConfiguration .overConfiBox .reraImg {
  width: 120px;
  display: block;
}

.overConfiContainer .overConfiBox:first-child {
  border-right: 1px solid var(--primary-color);
}

.overConfiguration .reraBox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overConfiguration .reraBox .svgIcon {
  width: 80px;
  margin-right: 10px;
  padding: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--secondary-color);
}

.overConfiguration .reraBox .reraContentBox {
  border-radius: 50px;
  padding: 15px 25px;
  background: var(--primary-color);
  line-height: 100%;
  color: #fff;
  line-height: 1.5;
}

/* --------------------------------------------
hm overview
-------------------------------------------- */
.hm-overview-container {
  /* border: 1px solid red; */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.textureImgbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;

  /* border: 1px solid red; */
}

.textureImgbox .texture-img {
  width: 100%;
  height: 100%;
}

.hm-overview-container .container-xxl,
.hm-overview-container .hidden-title {
  position: relative;
  z-index: 2;
}

.hm-overview-container .hidden-title {
  text-align: center;
  margin-left: 10%;
}

.overview-images .carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to left,
    rgb(255 248 244 / 60%),
    transparent 60%
  );
  z-index: 2;
  pointer-events: none;
}

.heading.overview-heading {
  transform: translateX(-8vw);
}

.ovrviewMaintextContener {
  padding-left: 24px;
}

/*  */
/* .heroText{ */
/* z-index: 1; */
/* background: rgba(15,15,15,.55); */
/* backdrop-filter: blur(12px); */
/* border-left:4px solid var(--secondary-color); */
/* } */

.ovrviewMaintextContener .locaBox {
  /* color: var(--secondary-color); */
  font-size: 13px;
  text-transform: uppercase;
}

.ovrviewMaintextContener .overviewText {
  padding: 3rem 0;
}

.heroText .Pricebox {
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  font-size: 13px;
  /* border: 1px solid red; */
}

.heroText .Pricebox:nth-child(1) {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* .heroText .rate{
    font-size:1.2rem;
    font-weight:700;
    color:var(--secondary-color);
} */

.statsBox .inner {
  text-align: center;
  text-transform: uppercase;
}

.statsBox h2 {
  font-weight: 200;
  font-size: 1.5rem;
}

.statsBox p {
  font-size: 13px;
}
/* hm overview */

.stats-box-wrapper .inner {
  padding: 2.3rem;
  height: 100%;
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.statsContainer .stat {
  position: relative;
  /* padding-bottom: 2rem; */
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.statsContainer .stat:nth-child(1) {
  border-top: none;
}

.statsContainer .stat h4 {
  line-height: 1.3;
}

.stat::before {
  background-image: linear-gradient(#0000, #0000004d, #0000);
  border-radius: 50%;
  content: "";
  inset: -1rem 0rem -1rem auto;
  position: absolute;
  width: 1px;
  display: none;
}

.stat:last-child::before {
  display: none;
}

/* scroll section */
.scroll-section {
  padding: 2rem;
  position: relative;
}

.scroll-section .scrollSwiper {
  width: 100%;
  height: calc(100vh - (var(--header-height) + 4rem));
}

.scroll-section .swiper-wrapper {
  height: 100%;
}

.scroll-section .swiper-slide {
  height: 100%;
}

.scroll-section .block {
  width: 100%;
  height: 100%;
  border: 1px solid rgb(255 255 255 / 35%);
  position: relative;
}

.scroll-section .img-fluid {
  height: 100%;
}

.scroll-section .img-fluid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-section .img-fluid::before,
.scroll-section .img-fluid::after {
  content: "";
  position: absolute;
  z-index: 1;
  transition: all 0.4s;
}

.scroll-section .img-fluid::before {
  width: 100px;
  height: 100px;
  transform: scale(15);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
}

.scroll-section .img-fluid::after {
  inset: 0;
  opacity: 0;
}

.scroll-section .block:hover .img-fluid::after {
  opacity: 1;
  background-image: linear-gradient(to right, rgb(0 0 0 / 50%), transparent);
}

.scroll-section .block:hover .img-fluid::before {
  transform: scale(0);
}

.scroll-section .block:hover .img-fluid img {
  filter: grayscale(0) blur(0px) !important;
}

.scroll-section .block-text {
  max-width: 600px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 3rem;
  color: #fff;
  z-index: 2;
}

/* Optional Pagination Styling */

.scroll-section .swiper-pagination {
  bottom: 20px !important;
}

.scroll-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
}

.scroll-section .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--secondary-color);
}

/* slider */

.scrollSwiper {
  width: 100%;
  height: calc(100vh - (var(--header-height) + 4rem));
}

.scrollSwiper .swiper-wrapper {
  height: 100%;
}

.scrollSwiper .swiper-slide {
  height: 100%;
}

.scrollSwiper .block {
  height: 100%;
  border: 1px solid rgb(255 255 255 / 35%);
}

.scrollSwiper .img-fluid {
  height: 100%;
}

.scrollSwiper .img-fluid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* scroll section */

.scroll-section .block .textureImgbox {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  width: 300px;
  height: 300px;
  object-fit: contain;
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

.scroll-section .container-xxl,
.scroll-section .hidden-title {
  position: relative;
  z-index: 2;
}

/* ------------------------------------
 mobile scroll-section
 ------------------------------------ */
.mobileSlider-section {
  display: none;
  background-color: var(--primary-color);
  /* padding:2rem 0; */
}

/*.scrollMobileSwiper{
    padding-bottom:40px;
} */

.mobileSlider-section .sliderCard {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  text-align: center;
}

/* .mobileSlider-section .sliderCard img{
  height: auto;
} */

.mobileSlider-section .sliderCard .content {
  padding: 18px;
  height: 100%;
}

.mobileSlider-section .sliderCard h4 {
  color: var(--secondary-color);
  margin-bottom: 0;
}

.mobileSlider-section .sliderCard p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}

/* -------------------------------------------
 mobile scroll-section
 ------------------------------------------- */

/* Products section  */
/* A SYMPHONY UNFOLDS
 */
.productGrid {
  align-items: flex-start;
  border-top: 1px solid var(--primary-color);
  display: grid;
  grid-template-columns: auto auto auto;
  position: relative;
}

.media-wrapper {
  border-right: 1px solid var(--primary-color);
  height: calc(100vh - var(--header-height));
  position: sticky;
  top: var(--header-height);
  width: calc(50vw - 0.5px);
}

.media-wrapper figure {
  padding: 32px 32px 32px 5vw;
  position: absolute;
}

.media-wrapper figure:nth-child(1) {
  z-index: 9;
}
.media-wrapper figure:nth-child(2) {
  z-index: 8;
}
.media-wrapper figure:nth-child(3) {
  z-index: 7;
}
.media-wrapper figure:nth-child(4) {
  z-index: 6;
}
.media-wrapper figure:nth-child(5) {
  z-index: 5;
}

.text-wrapper {
  width: calc(45vw - 0.5px);
}

.text-wrapper .slide-item {
  align-items: center;
  display: grid;
  height: 75vh;
  min-height: 700px;
  padding-left: 4rem;
  padding-right: 4rem;
}

.text-wrapper .slide-item:first-child {
  margin-top: 25vh;
}

/* .amenity-list {
  display: flex;
  flex-wrap: wrap;

  & li {
    flex-grow: 1;
    width: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 10px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    font-size: 12px;
    text-transform: uppercase;

    & .imgBox {
      max-width: 24px;
      }
      }
      } */

.amenityBox .iconBox .inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  padding: 1rem;
  border: none;
}

.amenityBox .imgBox {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 1.2rem;
  background: var(--white);
}

.amenityBox .imgBox img {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenityBox span {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
}

.amenity-text .heading {
  margin-left: 2rem;
}

.productGrid .lines {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--header-height));
  justify-content: center;
  position: sticky;
  right: 0;
  row-gap: 8px;
  top: var(--header-height);
  width: 5vw;
}

.productGrid .lines .line {
  background-color: rgb(0 0 0 / 25%);
  height: 2px;
  transition:
    background-color 0.45s cubic-bezier(0.33, 1, 0.68, 1) 0s,
    width 0.45s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  width: 28px;
}

.productGrid .lines .line.active-line {
  background-color: var(--body-color);
  width: 40px;
}
/* Products section */

/* floor plans */
.fpImgBox img {
  /* aspect-ratio: 16/9; */
  /* object-fit: contain; */
  object-fit: cover;
  background-color: var(--light);
}

.fpBox .inner {
  padding-bottom: 1rem;
}
.enter-points ul {
  margin-bottom: 2rem;
}
.enter-points ul li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.enter-points ul li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.enter-points ul li i {
  flex: 0 0 30px;
  color: var(--secondary-color);
}
.enter-points ul li h6 {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.fp-section .swiper-controls {
  position: absolute;
  right: 0;
}
/* floor plans */

/* =========================================
   designExperts-section
========================================= */
.designExperts-section {
  overflow: hidden;
  padding: 6rem 4rem;
}

.designExperts-section .design-intro {
  display: flex;
  flex-direction: column;
}

.designExperts-section .design-intro .intro-line {
  width: 45px;
  height: 1px;
  background: var(--secondary-color);
  margin-bottom: 25px;
}

/* .designExperts-section .expert-card{
  padding: 0 0.5rem;
} */

/* img */
.designExperts-section .expert-image {
  width: 100%;
    /* aspect-ratio: 1 / 1; */
  height: 400px;
  overflow: hidden;
}

.designExperts-section .expert-image img {
  width: 100%;
  height: 100%;
  /* display: block; */
  object-fit: cover;
  object-position: center;
}

/* CONTENT */
.designExperts-section .designExpertsContentBox {
  margin-top: 3rem;
}

.designExperts-section .expert-content h5 {
  font-size: 18px !important;
  font-weight: 600;
  line-height: 1.3;
  color: var(--secondary-color);
}

.designExperts-section .expert-content p {
  font-size: 0.9rem;
}

.designExperts-section .expert-designation {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.7rem;
}

.designExperts-section .expert-content .list li {
  margin-left: 1rem;
  font-size: 0.9rem;
}

/* designExperts-section */

/* Master Plan */
.master-plan-text.scroller {
  height: 400px;
}

.master-plan-text ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 15px;
  gap: 5px;
}
.master-plan-text li {
  flex-grow: 1;
  width: 45%;
  font-size: 12px;
  font-weight: 500;
  list-style: decimal-leading-zero;
  padding: 0 10px;
  margin-left: 15px;
}

/* club House */
.clubhouse-section {
  width: 100%;
  height: 100vh;
  background-image: url("../images/clubhouseImg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  /* display: flex; */
  /* align-items: center; */
}

/* .clubhouse-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.671);
  z-index: -1;
} */

.clubhouse-content {
  color: #fff;
  padding: 2rem;
  font-weight: 300;
  max-width: 60%;
}

.clubhouse-content h2 {
  font-size: 1.6rem;
  text-transform: uppercase;
}

.clubhouse-content .clubSubhead {
  text-transform: capitalize;
}

.clubhouse-content p {
  max-width: 60%;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.8;
}

/*  */

/* Journey Section */
.journey-slide {
  width: 75%;
}
.journey-slide .inner {
  transform: scale(0.9, 0.9);
  transition: all 500ms linear;
  position: relative;
  isolation: isolate;
  background-color: #000;
}
.journey-slide.swiper-slide-active .inner {
  transform: scale(1, 1);
}

.journey-slide .inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 45%);
  background: linear-gradient(to left, transparent, rgb(0 0 0 / 50%));
  z-index: 1;
}

.journey-slide .inner > picture img {
  opacity: 0.75;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.journey-slide .inner .journey-year {
  writing-mode: sideways-lr;
  font-size: clamp(2rem, 6.5vw, 10rem);
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(255 255 255 / 35%);
  letter-spacing: 2vw;
  line-height: 1;
  z-index: 1;
  opacity: 0;
  transition: all 1s linear 100ms;
}

.journey-slide.swiper-slide-active .inner .journey-year {
  opacity: 1;
}

.journey-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  opacity: 0;
  color: #fff;
  max-width: 650px;
  width: 100%;
  padding: 2rem;
  transition: all 1s linear 100ms;
  z-index: 1;
}

.journey-slide.swiper-slide-active .journey-text {
  transform: translate(-50%, -50%) scale(1, 1);
  opacity: 1;
}

.journey-text.d-flex {
  gap: 1rem;
}

.journey-text .timeline-logo {
  width: 180px;
}

.journey-text :is(p, ul) {
  font-size: 1.25rem;
  font-weight: 200;
  letter-spacing: 1px;
}
.journey-text b {
  font-weight: 700;
}

.journey-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  bottom: 0;
}

.journey-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid rgb(0 0 0 / 30%);
  opacity: 1;
  position: relative;
  margin: 0;
  transition: all 300ms ease-in-out;
}
.journey-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: rgb(0 0 0 / 50%);
}

.journey-slider .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  border-bottom: 2px dotted rgb(0 0 0 / 30%);
  transition: all 300ms ease-in-out;
  width: calc(2.5rem * 1);
  top: calc(50% - 1px);
  right: 100%;
}

.journey-slider
  .swiper-pagination
  .swiper-pagination-bullet:first-child::before {
  display: none;
}

.journey-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.journey-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-bottom-color: var(--primary-color);
}
/* Journey Section */

/* logos */
.brand-logos {
  z-index: 1;
  position: relative;
}

.brand-logos .swiper-wrapper {
  transition-timing-function: linear !important;
}

.brand-logos .swiper-slide {
  width: auto;
  height: auto;
  margin: 0 2px;
}

.brand-logos .swiper-slide .inside {
  display: block;
  padding: 10px;
  background-color: #fff;
}

.brand-logos img {
  height: 80px;
  width: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}
/* logos */

/* Walkthrough */
.overlay-title {
  text-transform: uppercase;
  font-size: clamp(1.75rem, 1.1666666667rem + 2.5925925926vw, 4rem);
  color: #fff;
  font-weight: 700;
  line-height: 0.6;
  letter-spacing: 6px;
}
/* Walkthrough */

.toggleHeader {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2.5rem;
  margin-bottom: 2rem;
}

.toggleHeader li button {
  background: none;
  text-align: center;
  font-size: 87.5%;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 0;
  color: var(--primary-color);
  filter: grayscale(1);
  border-width: 0 0 1px !important;
  transition: all 300ms ease-in-out;
  outline: none;
}

.toggleHeader li button.sm {
  font-size: 1rem;
  border-top: 1px solid #ececec;
}

.toggleHeader li button:hover,
.toggleHeader li button.active {
  filter: grayscale(0);
}
.toggleHeader li button.active {
  font-size: 100%;
}

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

/* ---------------------------------------
locationImg 
---------------------------------------*/
.locationImg {
  width: 100%;
  height: 100%;
}

/* location */
.connectivity-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* .connectivity-section .connectivity{
   
} */

.connectivity-section::before {
  content: "";
  position: absolute;
  inset: 8rem 1rem 0rem 0;
  background: url("../images/locationMap.png") right bottom / contain no-repeat;
  opacity: 0.1;
  z-index: -1;
}


.connectivity-section .connectivity-box .in {
  text-align: center;
}

.connectivity-section .connectivity-box .in .img {
  max-width: 30px;
  flex: 0 0 30px;
  margin: 0 auto;
}

.connectivity-section .connectivity-box .location-text {
  margin-top: 1rem;
  color: var(--primary-color);
}

.connectivity-section .connectivity-box .location-text p {
  text-transform: capitalize;
}

.connectivity-section .imgbox img {
  border: 1px solid #c3953f47;
  box-shadow: rgba(99, 99, 99, 0.089) 0px 2px 8px 0px;
}

/* ------------------------------------------
 sloballySection 
 ------------------------------------------*/
.sloballySection{
  overflow: hidden;
}

.sloballySection .title{
  max-width: 500px;
  height: 100%;
  background-color: var(--primary-color);
  left: 0;
  bottom: 0;
  /* top: 15rem; */
}
.sloballySection .img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sloballySection .img img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.575), transparent);
}

.sloballySection .title {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 2rem;
  color: var(--white);
}

.sloballySection .title h3 {
  font-weight: 300;
  font-family: var(--midsun);
}

.sloballySection .title .list{
  padding: 1rem 0;
}

.sloballySection .title .list li{
  list-style: none;
  font-weight: 300;
}

/* ---------------------------------------
ImgSection
---------------------------------------*/
.ImgSection {
  padding: 2rem;
  overflow: hidden;
}

.ImgSection .img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ImgSection .img img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.575), transparent);
}

.ImgSection .title {
  position: absolute;
  left: 4rem;
  bottom: 3rem;
  z-index: 2;
  color: var(--white);
}

.ImgSection .title h3 {
  font-weight: 300;
  font-family: var(--midsun);
}

/* ---------------------------------------
zoneContentBox
---------------------------------------*/
.zoneImgSection {
  background-image: url("../images/zoneBackground.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  /* padding: 2rem; */
}

.zoneContentBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zoneContentBox img {
  max-width: 100%;
  height: auto;
  display: block;
}

.zoneContentBox .contentBox h2 {
  font-weight: 300;
  font-family: var(--midsun);
  text-align: center;
  color: var(--secondary-color);
}

/*  */
.zoneImgSection .zoneTextBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.zoneImgSection .textureImgbox {
  position: inherit;
  text-align: center;
  width: 100%;
  max-height: 300px;
}

.zoneImgSection .textureImgbox:nth-child(1) {
  transform: rotate(180deg);
}

.zoneImgSection .texture-img {
  max-width: 100%;
  /* display: inline-block; */
}

/* ---------------------------------------
Spreads Its Wings
---------------------------------------*/
.spreads-its-wings {
  background-image: url("../images/spreads-its-wings.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 90vh;
  /* padding: 2rem; */
}

/* ---------------------------------------
airport-section
---------------------------------------*/
.airportContainerBox .inner {
  display: flex;
  gap: 1rem;
}

.airportContainerBox .inner .iconbox {
  margin-bottom: 1.1rem;
  display: flex;
  gap: 1rem;
}

.airportContainerBox .inner .iconbox .img {
  width: 30px;
  flex: 0 0 30px;
}

.airportContentBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.airportContentBox .list li{
  list-style: none;
}

.airportContentBox p {
  font-size: 0.9rem;
}

.airportContentBox .list {
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.airportContentBox .list li {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.airport-section .airportImg {
  margin-top: 1rem;
}


 .airport-section .airportSwiperBtn .swiper-button-prev,
 .airport-section .airportSwiperBtn .swiper-button-next{
  position: absolute;
  bottom: 30%;
  top: auto;
}

/* ---------------------------------------
gaurs-upersection 
---------------------------------------*/
.gaurs-upersection .gaurs-logo {
  width: 140px;
  margin-bottom: 1rem;
}

.gaurs-upersection .gaurs-logo img {
  width: 100%;
}

.gaurs-upersection .statsBox {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gaurs-upersection .statsBox:not(:last-of-type) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--secondary-color);
}

.gaurs-upersection .statsBox h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0;
}

.gaurs-upersection .statsBox p {
  margin-bottom: 0;
}

.gaurs-upersection .gaursBox p {
  text-align: justify;
}
/* gaurs */

/*Footer*/
/* Footer */
.footer {
  padding-top: 5rem;

  padding-bottom: 5rem;

  background-color: var(--primary-color);

  font-size: 14px;

  overflow: hidden;
}

.footer .footer-about .footerlogo {
  width: 140px;
}

.footer .footer-about .footerlogo img {
  width: 100%;
}

.footer .footer-about .inner {
  padding-right: 4rem;
}

.footer .footer-about p {
  margin-top: 3rem;

  font-size: 14px;

  color: color-mix(in srgb, #fff, transparent 30%);
}

.footer h4 {
  font-size: 16px;

  font-weight: 600;

  position: relative;

  padding-bottom: 12px;

  margin-bottom: 15px;

  color: #fff;
}

.footer h4::after {
  content: "";

  position: absolute;

  display: block;

  width: 20px;

  height: 2px;

  background: #fff;

  bottom: 0;

  left: 0;
}

.footer .footer-links ul {
  /* display: flex; */

  /* flex-wrap: wrap; */

  list-style: none;

  padding: 0;

  margin-top: 2rem;
}

.footer .footer-links ul li {
  width: 50%;

  padding: 10px 0;

  display: flex;

  align-items: center;

  color: color-mix(in srgb, #fff, transparent 30%);
}

/* 
.footer .footer-links ul li:first-child {

  padding-top: 0;

} */

.footer .footer-links ul a {
  color: color-mix(in srgb, #fff, transparent 30%);

  display: inline-block;

  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-links .inner {
  margin-top: 2rem;

  color: #fff;
}

.footer .footer-links .inner p {
  color: color-mix(in srgb, #fff, transparent 30%);
}

.footer .footer-links .inner p a {
  margin-left: 0.5rem;
  color: color-mix(in srgb, #fff, transparent 30%);
}

.footer .footer-links .inner p a:hover {
  color: #fff;
}

.footer .footer-links .inner p i {
  color: var(--secondary-color);
}

/* social link */
.footer-links .social-links {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

/* footer social icons */
.footer .social-links a i {
  font-size: 1.5rem;
  background-color: transparent;
  color: var(--white);
}

/* copyright */

.footer .copyright {
  margin-top: 2rem;

  padding: 1.25rem 0;

  border-top: 1px solid #c0c0c01f;

  border-bottom: 1px solid #c0c0c01f;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #fff;
}

/* rera */
.reraMainbox .raraInnerbox {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
}

.reraMainbox .raraInnerbox span,
.accountbox {
  text-transform: uppercase;
  font-size: 12px;
}

.reraMainbox .raraInnerbox .reraContent p {
  font-size: 12px;
}

.reraMainbox .reraImg {
  max-width: 80px;
}

.reraMainbox .accountbox {
  text-align: end;
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
}

.reraMainbox .accountbox strong {
  color: var(--secondary-color);
}

.reraMainbox.bnkNmaebox {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.reraMainbox.bnkNmaebox strong {
  padding-right: 5px;
}
/* Rera */

/*end mobile rerabox */
/* rera */

/* .footer */

.footer .capsulbox {
  text-align: center;
}

.footer .capsulbox a {
  margin: 0.5rem;
  display: block;
  padding: 0.4rem;
  width: auto;
  background-color: var(--white);
  border-radius: 20px;
  transition: all 300ms ease-in-out;
}

.footer .capsulbox a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* privacybox */

.footer .privacybox {
  display: flex;

  list-style: none;

  padding: 0;

  margin: 0;

  justify-content: flex-end;
}

.footer .privacybox li {
  display: flex;

  align-items: center;
}

.footer .privacybox li a {
  color: #fff;

  display: inline-block;

  line-height: 1;

  padding: 0 1rem;

  border-right: 1px solid #a792772e;
}

.footer .privacybox li:nth-child(1) a {
  padding-left: 0;
}

.footer .privacybox li:nth-child(2) a {
  border: none;
}

/* Footer */

/* footer-enquiryBtn */
.footer-enquiryBtn {
  position: fixed;
  bottom: 2px;
  left: 2px;
  right: 2px;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  background-image: linear-gradient(to right, #f2d297, #ad8955);
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  text-align: center;
}

.footer-enquiryBtn a {
  color: var(--primary-color);
  /* color:#fff; */
  text-align: center;
  display: block;
  width: calc(100% / 2);
  padding: 8px 5px;
  border: 1px solid rgb(0 0 0 / 15%);
  border-left: 0;
}

.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg, #0db634, #015c16);
  border: 0;
  color: #fff;
}

/* footer-enquiryBtn */

.button-top {
  background: var(--secondary-color);
  position: fixed;
  /* left: calc(50% - 20px); */
  bottom: 10px;
  right: 10px;
  color: var(--white);
  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(--primary-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*/

/* Inside page */
.emptyBox {
  background-color: var(--secondary-color);
  height: var(--header-height);
}

.emptyBox + .header {
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

.inside-banner {
  height: 400px;
  /* margin-top: var(--header-height); */
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #0003;
}

.inside-banner.project-banner {
  height: calc(100vh - var(--header-height));
}

.inside-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.inside-banner img {
  mix-blend-mode: multiply;
}

.inside-banner .container-lg.position-absolute {
  top: 0;
  bottom: 0;
  z-index: 1;
}

.insideBannerText {
  height: 100%;
  padding: calc(var(--header-height) + 2rem) 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insideBannerText .title {
  font-size: 4rem;
  font-family: var(--midsun);
  letter-spacing: 3px;
  text-align: left;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--bs-breadcrumb-item-padding-x);
}

.breadcrumb li a {
  color: rgb(255 255 255 / 50%);
  font-weight: 600;
}

.breadcrumb li a:hover {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  background-color: #bfbfbd;
  height: 0.125rem;
  width: 0.125rem;
  padding-right: 0;
}

.breadcrumb li.active {
  color: #fff;
}

.project-title-container ul {
  margin-top: 2rem;
  font-size: 0.875rem;
  display: flex;
  gap: 10px;
}

.project-title-container ul li:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid rgb(255 255 255 / 50%);
}

.bannerText-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.bannerText-footer .banner-tagline {
  max-width: 700px;
}

.bannerText-footer .banner-tagline .h2 {
  /* font-weight: 700; */
  font-family: var(--midsun);
  letter-spacing: 2px;
}

/* Brands */
.brand-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.brand-slider .brandLogo {
  width: 145px;
}

.brandLogo .img-fluid {
  height: 100%;
  /* filter: grayscale(1) opacity(0.5); */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Brands */

.project-text-img {
  aspect-ratio: 3/2;
  background: center 0 / 100% no-repeat;
}

/* gallery */
.gallery-slider .swiper-controls {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: auto;
  gap: 5px;
  z-index: 1;
}

.gallery-slide img {
  aspect-ratio: 3/1;
  object-fit: cover;
}

.gallery-slide .gallery-caption {
  position: absolute;
  left: 0;
  bottom: 10px;
  background-color: var(--secondary-color);
  padding: 10px 1rem 10px 2rem;
  border-radius: 0 20px 20px 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery-thumb-slider {
  padding-top: 10px;
}

.gallery-thumb-slider .swiper-slide {
  opacity: 0.4;
  filter: grayscale(1);
  transition: all 400ms ease-in-out;
}

.gallery-thumb-slider .swiper-slide:hover {
  filter: grayscale(0);
}

.gallery-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  filter: grayscale(0);
}

/* gallery */

/* Amenities */
.amenity-wrapper {
  max-width: 1100px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.amenity-wrapper::before {
  content: "";
  position: absolute;
  width: 100vw;
  inset: 0 auto 0 0;
  background: var(--primary-color);
  background:
    radial-gradient(circle at 120% -30%, #ffdac2, transparent),
    linear-gradient(45deg, #fff4ed, #fffdfc, var(--secondary-color));
  z-index: -1;
  transition: all 500ms linear;
  transform: scaleX(0);
  transform-origin: right;
}

.amenity-wrapper.active::before {
  transform: scaleX(1);
}

.amenity-wrapper .animate {
  transform: translateX(-200px);
  opacity: 0;
  pointer-events: none;
  transition: all 500ms linear;
}

.amenity-wrapper .animate.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.amenity-text > .inner {
  padding: 3rem 4rem;
  /* color: var(--secondary-color); */
}

.amenityIconSlider {
  padding-right: 1px;
}

.amenity-slider {
  height: 500px !important;
}

.amenity-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-box.swiper-slide {
  opacity: 0;
  transition: all 400ms linear;
}

.amenity-box.swiper-slide.swiper-slide-active {
  opacity: 1;
}

.amenity-box .img-fluid {
  width: 380px;
  overflow: hidden;
  border-radius: 50%;
  margin: auto;
  text-align: center;
  position: relative;
}

.amenity-box .img-fluid img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.amenity-box .img-fluid .caption {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 20px 20px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
}

/* Amenities */

/* Floorwise */
.floorwise-listing {
  position: absolute;
  inset: 0 auto 0 0;
  width: 420px;
  padding: 2rem;
  z-index: 2;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  /* background-color: color-mix(in srgb, var(--primary-color), transparent 00%); */
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 12%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.floorwise-listing .list li {
  padding-bottom: 10px;
  border-bottom: 1px dashed rgb(0 0 0 / 20%);
}

.floorwise-imgContainer {
  counter-reset: floors;
}

.floorwise-imgContainer > img {
  opacity: 0.6;
}

.floorwise-count {
  position: absolute;
  width: 130px;
  height: 130px;
  transform: scale(0.2, 0.2);
  z-index: 1;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgb(0 0 0 / 25%);
  transition: all 300ms ease-in-out;
}

.floorwise-count.active {
  transform: scale(1, 1);
  box-shadow:
    0 0px 20px rgb(0 0 0 / 65%),
    0 0 0 12px rgb(255 255 255 / 90%);
}

.floorwise-count[data-count="1"] {
  bottom: 3%;
  right: 40%;
}

.floorwise-count[data-count="2"] {
  bottom: 8%;
  right: 35%;
}

.floorwise-count[data-count="3"] {
  bottom: 14%;
  right: 30%;
}

.floorwise-count[data-count="4"] {
  bottom: 20%;
  right: 37%;
}

.floorwise-count[data-count="5"] {
  bottom: 24%;
  right: 27%;
}

.floorwise-count[data-count="6"] {
  bottom: 32%;
  right: 33%;
}

.floorwise-count[data-count="7"] {
  bottom: 38%;
  right: 42%;
}

.floorwise-count[data-count="8"] {
  bottom: 35%;
  right: 15%;
}

.floorwise-count[data-count="9"] {
  top: 25%;
  right: 15%;
}

.floorwise-count::before {
  content: counter(floors);
  counter-increment: floors;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--body-color);
  font-size: 4.5rem;
  line-height: 0.1;
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  animation: breathe 1s infinite alternate var(--delay);
}

@keyframes breathe {
  25% {
    transform: scale(1.25, 1.125);
  }

  50% {
    transform: scale(1.125, 1.25);
  }

  75% {
    transform: scale(1.25, 1.25);
  }
}

.floorwise-count.active::before {
  width: 30px;
  height: 30px;
  font-size: 100%;
  content: "X";
  background-color: maroon;
  color: var(--secondary-color);
  animation: none;
}

.floorwise-count span {
  position: absolute;
  top: 100%;
  width: max-content;
  padding: 8px 10px 6px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--secondary-color);
  color: var(--darkgray);
  border: 1px solid;
  box-shadow: 0 10px 30px rgb(0 0 0 / 45%);
  display: none;
}

.floorwise-count.active span {
  display: block;
}

/* Floorwise */

/* Location */
.map-hld {
  position: relative;
  width: 100%;
  padding-bottom: 49.48%;
}

.circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: color-mix(in srgb, var(--primary-color), transparent 50%) 1.5px solid;
  border-radius: 100%;
}

.circle-1 {
  width: 7%;
  padding-bottom: 7%;
}

.circle-2 {
  width: 18%;
  padding-bottom: 18%;
}

.circle-3 {
  width: 30%;
  padding-bottom: 30%;
}

.circle-4 {
  width: 42%;
  padding-bottom: 42%;
}

.circle-5 {
  width: 54%;
  padding-bottom: 54%;
}

.circle-6 {
  width: 66%;
  padding-bottom: 66%;
}

.circle-7 {
  width: 78%;
  padding-bottom: 78%;
}

.distance-count {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 100%;
  z-index: 1;
}

.distance-count span {
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
}

.loc-pointer {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.loc-pointer .loc-icon {
  position: relative;
  max-width: 49px;
  flex: 0 0 49px;
  height: 49px;
}

.loc-pointer .loc-icon img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: #fff 1px solid;
  box-shadow: 0 4px 61px -17px rgba(0, 0, 0, 0.9);
  object-fit: cover;
}

.loc-pointer p {
  font-size: 0.75rem;
  color: #000;
  line-height: 100%;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 0 0 5px;
  text-align: left;
  margin: 0;
}

.loc-pointer i {
  font-size: 25px;
  color: var(--primary-color);
}

.row-reverse {
  flex-direction: row-reverse;
}

.row-reverse p {
  text-align: right;
  padding: 0 5px 0 0;
}

.loc-pointer .loc-icon img.no-shadow {
  box-shadow: none;
  border: 0;
}

@keyframes growProgressBar {
  0%,
  33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@property --pgPercentage {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

div[role="progressbar"] {
  --size: 12rem;
  --fg: var(--primary-color);
  --bg: transparent;
  --pgPercentage: var(--value);
  animation: growProgressBar 3s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
}

div[role="progressbar"]::before {
  display: none;
  counter-reset: percentage var(--value);
  content: counter(percentage) "%";
}

.loc-nh44 {
  right: 33%;
  bottom: 40%;
}

.loc-ecm {
  right: 39%;
  bottom: 29%;
}

.loc-kgAirport {
  right: 26%;
  top: 54%;
}

.loc-crossingRepublik {
  right: 29%;
  top: 31%;
}

.loc-techPark {
  left: 25%;
  top: 41%;
}

.loc-clarksExotica {
  left: 25%;
  bottom: 28%;
}

.loc-collinsAerospace {
  left: 16%;
  top: 30%;
}

.bkcomplex {
  left: 32%;
  top: 24%;
}

.bandrasealink {
  right: 40%;
  top: 17%;
}

.loc-narimanpoint {
  right: 22%;
  top: 8%;
}

.loc-weh {
  right: 20%;
  top: 65%;
}

.loc-Eeh {
  right: 45%;
  top: 82%;
}

.loc-shipra {
  right: 43%;
  top: 27%;
}
.loc-nh24 {
  right: 29%;
  top: 42%;
}
.loc-school {
  right: 59%;
  top: 44%;
}
.loc-emc {
  right: 50%;
  top: 35%;
}
.loc-jewar {
  right: 60%;
  bottom: 25%;
}
.loc-gc {
  right: 40%;
  bottom: 10%;
}
/* Location */

/* Project enquiry form */
.enquiry-container .inner {
  padding: 2rem;
  background-color: var(--secondary-color);
}
/* Project enquiry form */

/* contact */
.contact-card .inner {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.contact-card .inner > i {
  max-width: 50px;
  flex: 0 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  border: 1px solid;
}

.contact-card .card-title {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-family: var(--midsun);
  letter-spacing: 2px;
  color: var(--primary-color);
}

.contact-card ul li:not(:last-child) {
  margin-bottom: 7px;
}

.contact-form .inner {
  padding: 2rem;
  background-color: var(--body-bg);
}

/* contact */

/* Career page */
.career-card .inside {
  border-radius: 0px;
  height: 100%;
  padding: 20px;
  border: 0;
  transition: all 300ms ease-in-out;
}

.career-card .inside:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 30px -40px rgb(0 0 0 / 10%);
}

.career-card .card-header {
  background-color: transparent;
  text-align: left;
}

.career-card .card-header .job-role {
  font-family: var(--midsun);
  color: var(--primary-color);
  letter-spacing: 1.5px;
  font-weight: 600;
}

.career-card p {
  line-height: normal;
}

.career-card .list-group .list-group-item {
  font-size: 14px;
  line-height: normal;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
}

.career-card .list-group .list-group-item strong {
  max-width: 100px;
  flex: 0 0 100px;
}

.career-card .list-group .list-group-item span {
  max-width: calc(100% - 100px);
  flex: 0 0 calc(100% - 100px);
}

/* Career page */
/* Blogs */
.playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  border: 0;
  background-color: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  z-index: 1;
}
.playBtn:hover {
  background-color: var(--body-color);
}

.inside-blogs-aside .inner {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.blog-asideBox:not(:last-of-type) {
  margin-bottom: 1rem;
}

.blog-asideBox {
  padding: 2rem;
  background-color: var(--secondary-color);
}

.blog-asideBox .inlineBtn {
  border: 0;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 13px;
  padding: 5px 8px;
  min-width: 80px;
}

.blog-asideBox .inlineBtn:hover {
  background-color: var(--body-color);
}

.blogsPage-control {
  margin-top: 2.5rem;
}

.blogsPage-control a {
  color: initial;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blogsPage-control a span {
  color: var(--secondary-color-dark);
}

.blogsPage-control a:hover p {
  color: var(--body-color);
}

.main-blog-body :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--serif);
  color: var(--primary-color);
}

.main-blog-body :is(ul, ol),
.main-blog-body .list {
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

.main-blog-body :is(ul, ol) li:not(:last-of-type) {
  margin-bottom: 10px;
}

.main-blog-body :is(ul, ol) li::marker {
  color: var(--primary-color);
}
/* Blogs */

/*--faqs-css--*/
.faqs-box {
  position: relative;
  z-index: 2;
}
.faqs-box .faqs_question {
  width: 100%;
  display: block;
  padding: 1rem 2.5rem 1rem 1rem;
  border: 1px solid rgb(0 0 0 / 8%);
  cursor: pointer;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}
.faqs-box .faqs_question:hover,
.faqs-box .faqs_question.active {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem 1rem 1rem;
}
.faqs-box .faqs_question.active {
  border-bottom-color: transparent;
}

.faqs-box .faqs_question span {
  position: absolute;
  right: 15px;
  top: 15px;
  transition: transform 300ms ease-in-out;
}

.faqs-box .faqs_question.active span {
  transform: rotate(180deg);
}

.faqs-box .faqs_answer {
  width: 100%;
  display: block;
  background-color: var(--secondary-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faqs-box .faqs_question.active + .faqs_answer {
  margin-bottom: 10px;
  border: solid rgb(0 0 0 / 8%);
  border-width: 0 1px 1px;
}

.faqs-box .faqs_answer article {
  width: 100%;
  padding: 1.25rem;
}

.faqs-box > h4 {
  font-family: var(--midsun);
  margin: 2.5rem 0 1rem;
  padding-left: 10px;
  color: var(--primary-color);
  letter-spacing: 2px;
  border-left: 2px solid var(--primary-color);
}
/*--faqs--*/
/* Media */
.printMedia-container:not(.show),
.digital-container:not(.show) {
  display: none;
}

.blogBox.newsBox .inner {
  border-bottom: 1px solid var(--primary-color);
}

.blogBox.newsBox article {
  padding: 1rem 0;
}

.blogBox.newsBox .blog-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* Media */

/* About Page */
.vmBox .inner {
  padding: 2rem;
}
.vmBox .inner article:not(:last-child) {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgb(0 0 0 / 15%);
}

/* Founder */
.chairman-textarea .inner {
  height: 100%;
  padding: 2rem 1rem 2rem 2rem;
  background-color: #fff;
}

.chairman-textarea .chairman-text {
  height: 340px;
  padding-right: 2rem;
}
/* Founder */
/* Customer Relationship */
.relationBox.swiper-slide .inner {
  padding: 2.5rem;
}

.relationBox.swiper-slide .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(0.25, 0.25);
  background-color: rgb(255 255 255 / 70%);
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.relationBox.swiper-slide.swiper-slide-active .inner::before {
  background-color: #fff;
  transform: scale(1, 1);
  border-radius: 0;
}

.relationBox .img-fluid {
  width: 60px;
  margin-bottom: 1rem;
}

.partners-container:not(.show) {
  display: none;
}

.partners-container {
  text-align: center;
}

.partners-container .inner {
  margin-bottom: 2rem;
}

.brandLogo .img-fluid {
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brandLogo .img-fluid img {
  height: 100%;
  object-fit: contain;
}
/* Customer Relationship */

.appreciation-video video {
  padding: 1rem;
}

.appreciation-letter-box > .inner {
  height: 100%;
  padding: 1rem;
  background-color: var(--secondary-color-dark);
}

.blogBox.appreciation-slide .img-fluid img {
  aspect-ratio: unset;
}

.blogBox.appreciation-slide .img-fluid::before {
  display: none;
}
/* About Page */
/* CSR */
.csrBox {
  transition: all 300ms ease-in-out;
}
.csrBox:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
}
.csrBox:not(:last-of-type) {
  margin-bottom: 2rem;
}
.csr-details .inner {
  height: 100%;
  padding: 2rem;
  background-color: var(--secondary-color);
  border-right: 2px solid var(--primary-color);
}

.csr-details .csr-date {
  padding: 10px;
  display: table;
  margin-bottom: 1rem;
  font-size: 13px;
  background-color: var(--secondary-color-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.csr-details .csr-date span {
  font-size: 150%;
  font-weight: 700;
}
/* CSR */
/* Inside page */
