@font-face {
  font-family: CeraPro;
  src: url(../fonts/CeraPro/cerapro-medium.otf);
}

/* common css format */

* {
  padding: 0;
  margin: 0;

  --primary-color: #3b3b3b;
  --secondary-color: #000722;
  --white-color: #fff;
}

html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
  font-family: CeraPro;
}

ul,
p {
  padding: 0 !important;
}

a {
  text-decoration: none !important;
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.sectionpad {
  padding: 70px 0;
}

.sectionpadtop {
  padding-top: 70px;
}

.sectionpadbottom {
  padding-bottom: 70px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0 !important;
  margin: 0 !important;
}

.borderBox {
  border: 2px solid var(--primary-color);
}

.text-balance {
  text-wrap: balance;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield; /* Standard property for future compatibility */
}

/* new navbar css */

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  padding: 3px 0;
  background: transparent;
  /* -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; */
  z-index: 11;
}

.header-container.scrolled {
  background: #fff;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-box-shadow: rgb(160 144 110 / 34%) 0px 6px 12px -2px,
    rgb(160 144 110 / 11%) 0px 3px 7px -3px;
  box-shadow: rgb(160 144 110 / 34%) 0px 6px 12px -2px,
    rgb(160 144 110 / 11%) 0px 3px 7px -3px;
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 8rem;
  background: var(--white-color);
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 27px;
  cursor: pointer;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 70px;
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offCanvasLogoWrap {
  display: flex;
  justify-content: start;
  align-items: center;
}

.navLogoImg.navImg1 {
  width: 48px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLogoImg.navImg2 {
  width: 120px !important;
  height: 100% !important;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 1.25rem;
}

.navLinks .navLink {
  display: block;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
  font-family: CeraPro;
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: capitalize;
  padding: 10px;
}

.navIcon {
  width: 35px;
  height: 35px;
}

.navLinks .navLink::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  bottom: -5px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  border-radius: var(--radius-full);
  background-color: var(--primary-pink);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navLinks .navLink:hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.line {
  width: 1px;
  height: 20px;
  background-color: rgba(88, 89, 91, 0.18);
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--light);
  padding: 0.5rem 1rem;
  font-family: var(--TT_Neoris_Medium);
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0 1rem;
  border-radius: 9px;
  background-color: var(--primary-pink);
}

.offcanvas {
  background-color: var(--light);
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.offcanvas.offcanvas-end .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  /* background-color: var(--primary-color); */
}

.offcanvas-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.offcanvas-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offcanvas-close {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--light);
  -webkit-transform: translateY(4px) scale(0.95);
  -ms-transform: translateY(4px) scale(0.95);
  transform: translateY(4px) scale(0.95);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.offcanvas-close i {
  font-size: 1.1rem;
}

.offcanvas-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 1rem 0;
}

.offcanvas-link {
  display: block;
  font-size: 1.35rem;
  font-family: var(--Tartuffo-Regular);
  font-weight: 400;
  color: var(--primary-blue);
  text-transform: capitalize;
  position: relative;
  width: 100%;
}

.offcanvas-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #0000001a;
  left: 0;
  bottom: -15px;
}

.offcanvas-link:last-child:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: transparent;
  left: 0;
  bottom: -15px;
}

.offcanvas-logo .logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 250px;
  max-width: 100%;
}

@media only screen and (max-width: 1400px) {
  .navbar-container {
    padding: 1rem 4rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container {
    padding: 1rem 2rem;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 1rem;
  }
}

@media only screen and (max-width: 1080px) {
  .navbar-container {
    padding: 1rem 2rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }
}

/* banner section */

.bannerSection {
  margin-top: 60px;
}

.bannerSection .container-fluid {
  padding: 0 0 !important;
}

/* overview Section */

#overview {
  background: url(../images/overviewBg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sectionHead {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-style: normal;
  /* font-weight: 700; */
  color: var(--primary-color);
}

p {
  font-size: 14px;
}

.sectionSubhead {
  color: var(--primary-color);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.overviewCardWrap {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.overviewCardIcon {
  width: 40px;
  height: 40px;
}

.clickBtn {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 33px;
}

.overviewFormWrap {
  background-color: var(--primary-color);
  width: 70%;
  padding: 20px;
  border-radius: 10px;
}

.contactFormWrap {
  /* background-color: var(--primary-color); */
  width: 100%;
  padding: 20px;
  border-radius: 0px;
}

.contactFormWrap .inputField {
  background-color: transparent;
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 0px !important;
}

.formHead {
  color: var(--white-color);
}

.contactFormWrap ::placeholder {
  color: var(--primary-color);
  opacity: 1; /* Firefox */
}

.contactFormWrap .submitBtn {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 13px;
  text-align: center;
  width: 100%;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
}

/* form  css */

.inputField {
  padding: 10px 13px;
  color: #fff;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 100%;
  font-size: 18px;
}

::placeholder {
  color: var(--white-color);
  opacity: 1; /* Firefox */
}

.submitBtn {
  background-color: var(--white-color);
  color: #3b3b3b;
  padding: 10px 13px;
  text-align: center;
  width: 100%;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  text-transform: uppercase;
}

.error {
  color: red;
  font-size: 14px;
  /* height: 15px; */
}

/* configuration */

.priceReqBtn {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
}

.table-dark {
  background: var(--primary-color) !important;
}

/* floor plan section */

.floorTabBtnWrap {
  display: flex;
  justify-content: end;
  align-items: center;
}

.floorNavLink {
  border-radius: 44px !important;
  border: 1px solid var(--primary-color) !important;
  backdrop-filter: blur(25px) !important;
  color: var(--primary-color) !important;
  margin: 0 10px;
  padding: 10px 30px !important;
  font-weight: 500;
}

.floorNavLink.active {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.floorNavLink.active img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(0%)
    hue-rotate(163deg) brightness(105%) contrast(105%);
}

.floorCardTextWrap {
  margin-left: 20px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  display: none;
}

.floorCardWrap,
.masterCardWrap {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  position: relative;
}

.masterCardWrap img,
.floorCardWrap img {
  filter: blur(4px);
}

.floorCardText {
  display: inline-block;
  border: 2px solid var(--primary-color);
  padding: 10px 20px !important;
  border-radius: 44px;
  margin-right: 10px !important;
}

.quoteTextWrap {
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  padding: 10px 15px;
  transform: translate(-50%, -50%);
}

.floorArrowIconWrap {
  width: 40px;
  height: 40px;
}

#configuration .owl-prev {
  position: absolute;
  top: 50%;
  left: -50px;
}

#configuration .owl-next {
  position: absolute;
  top: 50%;
  right: -50px;
}

.owl-prev:hover,
.owl-next:hover {
  background: transparent !important;
}

/* gallery section */

.gallery-section {
  width: 100%;
  height: 95dvh;
  overflow: hidden;
  position: relative;
}

/* #gallery .sectionHead {
  font-size: 3rem;
} */

.galleryTextContent {
  padding-left: 4% !important;
  background: url(../images/galleryBg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#gallery .customPrevBtn {
  position: absolute;
  bottom: 10% !important;
  left: -93% !important;
  z-index: 900;
}

#gallery .customNextBtn {
  position: absolute;
  bottom: 10% !important;
  left: -82% !important;
  z-index: 900;
}

#gallery .floorArrowIconWrap {
  width: 60px;
  height: 60px;
}

.imgGuideText {
  /* background-color: var(--white-color); */
  color: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 15px;
}

.constructionText {
  background: rgba(59, 59, 59, 0.8);
  color: var(--white-color);
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
  padding: 10px 0;
}

.constructionText p {
  font-size: 20px;
}

/* location section */

.locationContentWrap {
  padding-left: 5%;
}

.locationTitle {
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.8rem;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: unset !important;
}

.accordion-button:not(.collapsed) {
  color: var(--white-color) !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
  border: 1px solid #58595b !important;
  background: var(--primary-color) !important;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.accordion-item:first-of-type {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-button {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
  filter: brightness(0) saturate(100%) invert(97%) sepia(3%) saturate(12%)
    hue-rotate(64deg) brightness(102%) contrast(106%);
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  background-color: var(--primary-color);
  color: var(--white-color);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(97%) sepia(3%) saturate(12%)
    hue-rotate(64deg) brightness(102%) contrast(106%);
}

.list-style-none {
  list-style: none !important;
}

.locationIcon {
  width: 30px;
  height: 30px;
}

/* partner section */

#partner {
  background: url(../images/partnerBg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* margin-bottom: 10rem; */
}

.partnerHead {
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.devlopByText {
  font-weight: 500;
  font-size: 20px;
  /* border-bottom: 1px solid #9b7532; */
}

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

.partnerImg {
  width: 135px;
  height: auto;
}

.partnerText {
  text-align: justify;
  font-size: 14px;
  margin-top: 15px !important;
}

/* contact section */

#contact .formHead {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* modal */

.modal-body {
  /* background-color: var(--primary-color); */
  padding: 20px !important;
}

.modal-body .contactFormWrap {
  width: 100% !important;
}

.modal-body .contactFormWrap .formHead {
  font-size: 25px;
  text-align: center;
  /* font-weight: 600; */
}

.modal-body .formInput {
  width: 100%;
  font-size: 20px;
  padding: 10px 15px;
}

/* desktop cta */

.rightWhiteBorder {
  border-right: 2px solid var(--white-color);
}

.desktopCtaSection {
  display: block;
}

.mobileCTASection {
  display: none;
}

.ctaIcon {
  width: 25px;
  height: 25px;
}

.brochureCTABtnWrap {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.enquireCTABtnWrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.brochureCTABtnWrap a,
.enquireCTABtnWrap a {
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--primary-color);
  font-weight: 600;
  color: var(--white-color);
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  border: 2px solid var(--white-color);
}

/* page loader */

.loading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

#pageloader {
  background: rgba(255, 255, 255, 0.9);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999999;
  top: 0;
}

#pageloader img {
  /* left: 50%; */
  /* width: 100%; */
  /* margin-left: -32px; */
  /* margin-top: -32px; */
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otploding_wrap {
  display: none;
  margin-bottom: 0 !important;
}

.otp_box {
  display: none;
}

/* footer */
.footerSection {
  background-color: var(--primary-color);
  padding-top: 40px;
}

.privacyText {
  text-decoration: underline !important;
}

.callTextInfo {
  font-size: 25px;
  font-weight: 600;
}

/* thankyou page */

.thankyouHeader {
  background-color: #f5f5f5;
}

.thankyouHeader .navIcon {
  filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(7471%)
    hue-rotate(143deg) brightness(99%) contrast(99%);
}

.thankyourwrap {
  margin-top: 80px;
}

/* media query */

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 992px) {
  .desktopMenuWrap {
    display: none;
  }

  .mobileMenuWrap {
    display: block;
  }

  .menuToggleBtn {
    border: none;
    width: 50px;
    height: 50px;
    padding: 8px;
    border-radius: 8px;
    background-color: var(--primary-color);
  }

  .sectionHead h2 {
    font-size: 2.8rem;
    line-height: 3.5rem !important;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .sectionpad {
    padding: 40px 0;
  }

  .sectionpadtop {
    padding-top: 40px;
  }

  .sectionpadbottom {
    padding-bottom: 40px;
  }

  .navCallBtn {
    display: none;
  }

  .bannerSection {
    margin-top: 60px;
  }

  #overview .row.rowContent {
    flex-direction: column-reverse;
  }

  .overviewFormWrap {
    width: 100%;
    margin-bottom: 20px;
  }

  .sectionHead {
    font-size: 3rem;
  }

  .sectionSubhead {
    font-size: 1.5rem;
  }

  p {
    font-size: 15px;
  }

  .floorTabPills {
    display: flex;
    justify-content: center;
  }

  .floorNavLink {
    margin: 10px;
  }

  .floorCardWrap {
    padding: 13px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
  }

  .floorCardText {
    margin: 5px !important;
    /* font-size: 13px; */
    /* padding: 10px !important; */
  }

  /* .floorCardTextWrap {
    display: flex;
    justify-content: center;
    margin-left: 0 !important;
  } */

  #configuration .owl-prev,
  #configuration .owl-next {
    position: relative;
    bottom: 0;
    left: 0;
  }

  /* #gallery .customPrevBtn,
  #gallery .customNextBtn {
    position: relative;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 900;
  } */

  #gallery .customNextBtn {
    position: absolute;
    bottom: 10% !important;
    left: 53% !important;
    z-index: 900;
  }

  #gallery .customPrevBtn {
    position: absolute;
    bottom: 10% !important;
    left: 38% !important;
    z-index: 900;
  }

  #gallery .floorArrowIconWrap {
    width: 45px;
    height: 45px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
  }

  .galleryTabPills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .locationContentWrap {
    padding-left: 0 !important;
  }

  .accordion-body li span {
    font-size: 13px;
  }

  .gallery-section {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
  }

  .desktopCtaSection {
    display: none;
  }

  .mobileCTASection {
    padding: 10px 0;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    margin: 0 10px 10px 10px;
    border-radius: 10px;
    z-index: 100;
    border: 1px solid var(--white-color);
  }

  .contactFormWrap {
    width: 100%;
  }

  .constructionText {
    position: absolute;
    bottom: 18%;
  }

  .constructionText p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 576px) {
  #overview .sectionHead {
    font-size: 2rem;
    margin-bottom: 0 !important;
  }

  .sectionSubhead {
    text-align: center;
  }

  .btnWrap {
    display: flex;
    justify-content: center;
  }

  .sectionHead {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px !important;
  }

  #gallery .sectionHead {
    font-size: 2rem;
  }

  .partnerText {
    font-size: 12px;
  }
}
