@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: CeraGodrejInterio-Regular;
  src: url("../assets/fonts/CeraGodrejInterio/CeraGodrejInterio-Regular.ttf");
}

@font-face {
  font-family: TheFuture-Regular;
  src: url("../assets/fonts/The-Future/TheFuture-Regular.otf");
}

@font-face {
  font-family: canela;
  src: url("../assets/fonts/FontsFree-Net-Canela-Regular.ttf");
}

@font-face {
  font-family: bodoni-moda;
  src: url("../assets/fonts/BodoniModa-VariableFont_opsz\,wght.ttf");
}

@font-face {
  font-family: montserrat;
  src: url("../assets/fonts/Montserrat-VariableFont_wght.ttf");
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000;
  --Lato: "Lato", sans-serif;
  --Montserrat: "Montserrat", sans-serif;
  --Raleway: "Raleway", sans-serif;
  --CeraGodrejInterio-Regular: CeraGodrejInterio-Regular;
  --TheFuture-Regular: TheFuture-Regular;
  --radius-1: 16px;
  --radius-full: 100px;
  --primary: #a04123;
  --text-color: #312c2b;
}

html {
  font-size: 16px !important;
  overflow-x: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  font-family: "montserrat";
}

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;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

.toggle-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

/* form loader css */

.form-loader-div {
  display: none;
}

.form-loader {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #b5acac;
  border-right-color: var(--light);
  -webkit-animation: l2 0.35s infinite linear;
  animation: l2 0.35s infinite linear;
}

@-webkit-keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem;
}

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

li {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

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

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

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.no-wrap {
  text-wrap: nowrap;
}

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

.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mirror {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.letter-spacing {
  letter-spacing: 1.05px;
}

.text-shadow {
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.primary-bg {
  background-color: #f3f3f3;
}

.custom-container {
  width: 90%;
  margin: auto 0 auto auto;
}

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 11;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: linear-gradient(250deg, transparent, rgba(0, 0, 0, 0.973));
}

header.scrolled {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(transparent),
      to(rgba(0, 0, 0, 0.822)));
  background: -o-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.966));
  background: linear-gradient(250deg, transparent, rgba(0, 0, 0, 0.973));
  display: none;
}

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

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

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

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

.logo-img-2 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 90px;
  max-width: 100%;
  position: relative;
}

.scrolled .logo-img-1 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 50px;
}

.scrolled .logo-img-2 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 90px;
}

.logo img {
  width: 80%;
  height: 100%;
  -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: 3rem;
}

.navLinks .navLink {
  display: block;
  font-size: 1rem;
  color: var(--light);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.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;
}

.flow {
  width: 70px;
}

.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: 100%;
  height: 2px;
  margin: 2rem auto;
  background-color: rgba(188, 32, 49, 0.25);
}

.btnPrimary {
  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);
  background: transparent;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.btnPrimary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  /* background: url("../assets/images/icons/btn-primary.png") no-repeat center
    center/contain; */
  background: #ca6c51;
  border-radius: 2rem;
}

.btnPrimary.custom-size {
  font-size: 0.8rem;

}

.btnPrimary.light {
  color: var(--primary);
}

/* .big-enquire-btn{
    height:60px;
    min-width:220px;
    padding:12px 25px;
    font-size:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    z-index: 8888;
} */
.big-enquire-btn {
  position: fixed;
  left: 20px;
  top: 80%;
  z-index: 999;
  height: 60px;
  min-width: 220px;
  padding: 12px 25px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 8888;
  background: #fff;
}

.plus_effect {
  border: 1px solid #ca6c51;
  border-radius: 50px;
  animation: pulse 1.5s infinite;
}

.pulseDownload{
  animation: pulse 1.5s infinite;
}

/*Namrata*/

/*enquiry now*/

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/*whatsapp btn*/










.btnPrimary.light::after {
  background: url("../assets/images/icons/btn-light.png") no-repeat center center/contain;
}

.offcanvas {
  background: url(../assets/images/overlay/main-overlay.jpg) no-repeat center center/cover;
}

.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;
}

.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: 100px;
  height: 100px;
  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: transparent;
  -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: 2.5rem;
}

.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: 2rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 1rem 0;
}

.offcanvas-links .line {
  margin: auto auto;
}

.offcanvas-link {
  display: block;
  font-size: 3vw;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  width: 100%;
}

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

.section-heading {
  position: relative;
  z-index: 2;
}

.section-heading .section-title {
  font-size: 2.15rem;
  color: var(--dark);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: uppercase;
}

.section-heading .section-subtitle {
  font-size: 2.5vw;
  color: var(--primary);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* font-family: "bodoni-italic" !important; */
}

.section-heading .section-desc {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section.main-banner {
  margin: 0 0 0 0;
  position: relative;
  background: linear-gradient(0deg,
      rgba(33, 0, 0, 0) 83.18%,
      rgba(33, 0, 0, 0.8) 100%),
    linear-gradient(0deg, #000 -1.32%, rgba(0, 0, 0, 0) 40.64%);
}

.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 6px;
  display: block;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #fff;
}

.carousel-indicators .active {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: rgba(233, 29, 60, 1);
}

.banner-overlay-txt {
  position: absolute;
  bottom: 8%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  left: 8%;
  z-index: 1;
}

.banner-overlay-txt .banner-overlay-title {
  font-size: 3.5vw;
  color: var(--light);
  text-transform: uppercase;
}

.banner-overlay-txt .banner-overlay-subtitle {
  font-size: 1.1rem;
  color: var(--light);
  text-transform: lowercase;
  font-weight: 400;
}

section.section-overview {
  padding: 4rem 0rem;
  position: relative;
}

.texture-pattern {
  position: relative;
  padding-bottom: 100px;
  z-index: 2;
}

.texture-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../assets/images/overlay/main.jpg") no-repeat left center/cover;
}

/* .texture-pattern.sun-pattern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  z-index: 1;
  width: 30vw;
  height: 60%;
  background: url("../assets/images/overlay/ICON.png") no-repeat center
    center/cover;
} */

.calc-container {
  width: calc(100% - 25vw);
  margin: auto 8% auto auto;
}

.overview-form {
  padding: 6rem 2.5rem 4rem 2.5rem;
  border-radius: 9px;
  background: url(../assets/images/f1.png) no-repeat center center / cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  position: relative;
  width: auto;
  align-items: end;
  /* height: 80dvh; */
  background-size: 109% 103%;
  transition: all 0.5s ease;
}

.overview-form form {
  width: 75%;
  position: relative;
}

.form-title {
  text-align: center;
  color: var(--primary);
  font-weight: 400;
  margin: auto auto 2rem auto;
  font-size: 1.5vw;
  -webkit-transition: all 0.5s ease;
  line-height: 1.8rem;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form-title span {
  font-family: TheFuture-Regular !important;
}

.form-subtitle {
  color: var(--text-color);
  margin: auto;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #312c2b;
  font-weight: 400;
  font-size: 1rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.custom-input {
  min-width: 250px;
  padding: 0.75rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  letter-spacing: 1.438px;
  border-radius: 4px;
  border: 1px solid rgb(188 110 32 / 50%);
  background-color: transparent;
}

.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background: transparent;
  border: 1px solid rgb(188 110 32 / 50%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 0px 0px 2px var(--primary-pink);
  box-shadow: 0px 0px 0px 2px var(--primary-pink);
}

.custom-input::-webkit-input-placeholder {
  color: var(--text-color-2) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
}

.custom-input::-moz-placeholder {
  color: var(--text-color-2) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.custom-input:-ms-input-placeholder {
  color: var(--text-color-2) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
}

.custom-input::-ms-input-placeholder {
  color: var(--text-color-2) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 0.975rem !important;
}

.custom-input::placeholder {
  color: var(--text-color-2) !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-size: 0.975rem !important;
}

.btn-submit {
  border: none;
  background: var(--primary-pink);
  color: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75rem 3rem;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 5px;
}

/* ----------------------------overview--------------------------------------- */

.element {
  position: absolute;
  left: 2%;
  z-index: 9;
  top: 7%;
  /* transform: rotate(332deg); */
}

.element1 {
  position: absolute;
  right: 3%;
  z-index: 9;
  top: 6%;
  /* transform: rotate(332deg); */
  /* transform: scaleX(-1); */
}

.element1 img {
  width: 135px;
}

.element img {
  width: 135px;
}

.btn-submit-ext {
  border: none;
  background: var(--primary-pink);
  color: var(--light);
  padding: 0.65rem 4rem;
  font-weight: 600;
  margin: 1.25rem 0 0 0;
  font-size: 1rem;
  border-radius: 10px;
}

.form-check-label {
  color: var(--text-color);
  font-weight: 400;
  cursor: pointer;
  font-size: 0.875rem;
}

.form-check-input[type="checkbox"] {
  cursor: pointer;
}

.invalid-feedback {
  margin-top: 0.2rem;
  font-size: 0.8em;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.divider {
  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: 2rem;
}

.divider .line {
  width: 100%;
  position: relative;
  height: 2px;
  background-color: rgba(172, 136, 58, 0.14);
}

.divider .line.line-1::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 0;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: rgb(235 228 208);
  border-radius: var(--radius-full);
}

.divider .line.line-2::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: 0;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: rgb(235 228 208);
  border-radius: var(--radius-full);
}

section.section-config {
  position: relative;
  padding: 5rem 0;
  z-index: 6;
  /* overflow: hidden; */
}

.overlay-tree {
  position: absolute;
}

.overlay-tree img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-tree.overlay-tree-1 {
  width: 22vw;
  height: 45dvh;
  top: 0;
  left: 0;
}

.overlay-tree.overlay-tree-2 {
  width: 25vw;
  height: 44dvh;
  top: 0;
  right: 0;
}

.config-about {
  background: url("../assets/images/f1.png") no-repeat center center;
  background-size: 125% 105%;
  padding: 5rem 0;
}

.config-about-txt {
  width: 85%;
  margin: auto;
}

.config-about-txt .config-title {
  font-size: 1.65vw;
  color: var(--primary);
  font-weight: 400;
  margin: 0 0 1.25rem 0;
}

.config-about-txt .config-subtitle {
  font-size: 0.95rem;
  color: var(--text-color);
  font-weight: 400;
}

.config-more-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.config-more-info .more-info {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.config-more-info .more-info .more-info-icon {
  width: 25px;
  height: 25px;
}

.config-more-info .more-info .more-info-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0) saturate(100%) invert(33%) sepia(94%) saturate(617%) hue-rotate(341deg) brightness(91%) contrast(88%);
}

.config-more-info .more-info .more-info-txt {
  font-size: 1.1rem;
}

.config-about-img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid rgba(86, 86, 86, 0.1);
  background: rgba(255, 255, 255, 0.45);
}

.config-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  border: 1px solid var(--primary);
}

.config-about-img img.sold-out {
  position: absolute;
  width: 10rem;
  height: 10rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.config-about-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  /* background: url("../assets/images/icons/home.svg") no-repeat center center/cover; */
  transform: translate(-50%, -50%);
}

.config-about-img.sold-out::after {
  width: 200px;
  height: 200px;
  /* background: url("../assets/images/gallery/sold-out.png") no-repeat center center/cover; */
}

.config-nav {
  position: relative;
  z-index: 2;
}

.acc-icon img {
  filter: brightness(0) saturate(100%) invert(33%) sepia(94%) saturate(617%) hue-rotate(341deg) brightness(91%) contrast(88%);
}

.config-nav .custom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem auto 1rem auto;
}

.config-nav .custom-nav .nav-item .nav-link {
  border: 1px solid var(--primary);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  font-weight: 500;
  display: flex;
  -webkit-box-align: center;
  padding: 0.6rem 2rem;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
}

.config-nav .custom-nav .nav-item .nav-link.active {
  background: var(--primary);
  color: var(--light);
}

.config-content {
  margin: 2.75rem auto auto auto;
  position: relative;
  z-index: 2;
}

section.section-amenities {
  padding: 8rem 0 4rem 0;
}

.amenities-txt-container {
  position: relative;
  z-index: 1;
}

/* .amenities-txt-container::before {
  content: "";
  position: absolute;
  top: -28%;
  left: -12%;
  width: 12vw;
  z-index: -1;
  height: 15dvh;
  background: url("../assets/images/overlay/ICON.png") no-repeat center
    center/cover;
} */
/* 
.amenities-txt-container::after {
  content: "";
  position: absolute;
  bottom: -5%;
  z-index: -1;
  right: 0%;
  width: 12vw;
  height: 15dvh;
  background: url("../assets/images/overlay/ICON.png") no-repeat center
    center/cover;
} */

.swiper-button-container .swiper-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0 0;
}

.swiper-button-container .swiper-nav .swiper-button {
  width: 60px;
  height: 60px;
}

.swiper-button-container .swiper-nav .swiper-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-swiper-2 .swiper-slide.swiper-slide-active .amenities-img {
  transform: scale(1);
  transition: all 1s ease;
}

.amenities-swiper-2 .swiper-slide.swiper-slide-active .amenities-img::after {
  position: absolute;
  content: "";
  width: 200px;
  /* width: 100%; */
  /* height: 100%; */
  inset: 0;
  opacity: 0;
  transition: all 1s ease;
  background: linear-gradient(0deg,
      rgba(249, 245, 239, 0.75) 0%,
      rgba(249, 245, 239, 0.75) 100%);
}

.amenities-img {
  position: relative;
  width: 100%;
  transform: scale(0.8);
  height: 100%;
  overflow: hidden;
  transition: all 1s ease;
  border-radius: 5.093px;
}

.amenities-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 1;
  transition: all 1s ease;
  background: linear-gradient(0deg,
      rgba(249, 245, 239, 0.75) 0%,
      rgba(249, 245, 239, 0.75) 100%);
}

.amenities-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.amenities-txt {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  align-items: center;
  left: -50%;
  border-radius: 0 0 3px 0;
  background: var(--primary);
  color: var(--light);
  padding: 0.75rem 1rem;
  transition: all 1s ease;
  opacity: 0;
}

.amenities-txt span {
  font-size: 0.85vw;
  text-transform: uppercase;
  font-weight: 500;
}

.amenities-swiper-2 .swiper-slide.swiper-slide-active .amenities-txt {
  left: 0%;
  opacity: 1;
  transition: all 1s ease;
}

/************* vikas css ************/

/* ******************************gallery starts ********/
section.section-gallery {
  position: relative;
  padding: 5rem 0;
}

.custom-nav {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 1.5rem 0rem;
}

.justify-ext {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.custom-nav-tabs {
  border-bottom: none !important;
}

.custom-nav-tabs .custom-nav-link.active {
  position: relative;
}

.custom-nav-tabs .nav-item.show .custom-nav-link,
.custom-nav-tabs .custom-nav-link.active {
  color: var(--light) !important;
  font-size: 1rem;
  background-color: var(--primary);
}

.custom-nav-tabs .custom-nav-link {
  font-size: 1rem;
  color: var(--primary);
  border-radius: 100px !important;
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--primary);
  background: transparent;
  text-transform: uppercase;
}

.gal_image {
  position: relative;
  overflow: visible;

}

.owl-nav button {
  pointer-events: all;
  background: var(--primary) !important;
  width: 40px;
  height: 40px;
  border-radius: 45% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.gal-carousel .owl-item.active.center .gal_image {
  -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;
  position: relative;
}

.gal-carousel .owl-item:not(.active.center) .gal_image {
  position: relative;
}

.gal-carousel .owl-item .gal_image {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  position: relative;
}

.gal-carousel .owl-item.active.center .gal_image::after {
  content: none;
}

.gal-carousel .owl-item:not(.active.center) .gal_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(251, 243, 234, 0.72) 0%,
      rgba(251, 243, 234, 0.72) 100%);
  border-radius: inherit;
  /* if you use rounded images */
  pointer-events: none;
  /* keep carousel clickable */
  z-index: 1;
}

.gal-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
}

.gal-carousel .owl-nav button {
  width: 70px;
  height: 70px;
  border-radius: 100px !important;
  overflow: hidden;
}

.gal-carousel .owl-nav button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gal-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 10%;
}

.gal-carousel .owl-nav .owl-next {
  position: absolute;
  right: 10%;
}

.section-gallery .overtext {
  position: absolute;
  bottom: 6%;
  left: 6%;
  color: #000000;
  font-size: 12px;
  padding: 5px;
  text-transform: uppercase;
}

.gal-carousel .owl-item .gal_image::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  /* background: url(../assets/images/frame4.png) no-repeat center; */
  background-size: 100% 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.gal-carousel .owl-item.active.center .gal_image {
  transform: scale(1);
}

.gal-carousel .owl-item.active.center .gal_image::before {
  opacity: 1;
}

/* ******************************gallery ends ********/

/* ******************************location starts********/

section.section-location {
  padding: 0rem 0rem 3rem 0;
}

.location-container {
  width: 90%;
  margin: auto 0 auto auto;
}

.loc-back {
  padding: 3rem 2.8rem;
  border-radius: 3rem;
}

.location-accordion {
  padding-top: 2rem;
}

.accordion {
  --bs-accordion-bg: transparent !important;
  --bs-accordion-border-color: none !important;
  --bs-accordion-btn-icon-transform: rotate(0deg) !important;
}

.accordion-button:not(.collapsed) {
  background-color: unset !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../assets/images/icons/drop.svg") !important;
  transform: rotate(0deg);
}

.accordion-button::after {
  background-image: url("../assets/images/icons/drop.svg") !important;
  transform: rotate(360deg);
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(33%) sepia(94%) saturate(617%) hue-rotate(341deg) brightness(91%) contrast(88%);
}

.accordion-button img {
  position: absolute;
  left: 0%;
}

/* .icon img {
  filter: brightness(0) saturate(100%) invert(33%) sepia(94%) saturate(617%)
    hue-rotate(341deg) brightness(91%) contrast(88%);
} */

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

.accordion-button {
  font-size: 1.2rem !important;
  padding-left: 2% !important;
  border-bottom: 1px solid !important;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55rem;
  /* 103.333% */
  letter-spacing: 0.02375rem;
}

.accordion-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion-content .acc-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.45rem;
  margin: 0.9rem 0;
}

.accordion-body .distance {
  white-space: nowrap;
  padding-left: 10px;
}

.accordion-body {
  position: relative;
}

.accordion-body span {
  position: absolute;
  right: 22px;
}

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

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--primary) !important;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.location-map {
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.location-map img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

/* ******************************location ends********/

/* ******************************about starts********/

section.section-about {
  padding: 3rem 0 5rem 0;
}

.about-main-content {
  margin: 4.5rem auto auto auto;
}

.about-img {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.gap-title {
  padding-bottom: 2rem;
}

.overview-content {
  margin: auto auto auto 3rem;
}

.moon-img-wrap {
  position: absolute;
  top: -18%;
  right: -19%;
  width: 200px;
}

/* ******************************about ends********/

/* ******************************contact starts********/

section.section-contact {
  padding-top: 3rem;
}

.contact-container {
  z-index: 1;
  position: relative;
  padding: 3rem 0;
  position: relative;
}

.contact-container::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/f3.png") no-repeat center center/ contain;
  z-index: 2;
  pointer-events: none;
  background-size: 100% 100%;
}

.contact-form {
  width: 90%;
  margin: auto;
}

.contact-logo {
  width: 18rem;
  max-width: 90%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: auto;
}

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

.contact-title {
  font-size: 1.5rem;
  color: var(--text-color);
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 4rem auto auto auto;
}

/* ******************************contact ends********/

/* ******************************footer starts********/
footer {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer-qr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5rem;
}

.qr-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 3rem 0;
}

.qr-content .qr-img {
  width: 100%;
  height: 100%;
}

.qr-content .qr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.qr-content .qr-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--primary);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
}

.disc {
  color: var(--text-dark);
  margin: 1rem 0;
  font-size: 0.95rem;
  text-align: center;
  width: 80%;
  margin: auto;
}

.disc strong {
  font-size: 1.035rem;
  color: var(--primary);
  text-transform: uppercase;
}

.footer-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-footer {
  display: none;
}

.created {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.leaf {
  position: absolute;
  z-index: 1;
  width: auto;
  height: auto;
  pointer-events: none;
}

.leaf-bottom-left {
  bottom: 1rem;
  left: -1rem;
  width: 15vw;
}

.leaf-top-right {
  width: 15vw;
  top: -0rem;
  right: 0rem;
}

.divide-line {
  background-color: #a04123;
  width: 3px;
  /* height: 20px; */
}

.policy {
  color: #a04123;
  font-size: 18px;
  text-decoration: underline;
  cursor: pointer;
}

.btn-floor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ******************************footer ends********/

/************* vikas css ************/

.custom-modal-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
  background: url("../assets/images/overlay/main-overlay.jpg") no-repeat center center/cover;
  border: 2px solid var(--primary);
}

.custom-modal-content::before {
  position: absolute;
  content: "";
  width: 35%;
  height: 35%;
  top: 0;
  z-index: -1;
  left: 0;
  /* background: url("../assets/images/overlay/tree1.png") no-repeat center center/cover; */
}

.custom-modal-content::after {
  position: absolute;
  content: "";
  width: 30%;
  z-index: -1;
  height: 20%;
  right: 0;
  bottom: 0;
  /* background: url("../assets/images/overlay/tree2.png") no-repeat center center/cover; */
}

.modal-logo {
  width: 150px;
  max-width: 100%;
  margin: 3rem auto 1rem auto;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  /* filter: invert(1); */
  background: #a04123;
  padding: 5px;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 3%;
  width: 48px;
  height: 48px;
  right: 3%;
  cursor: pointer;
}

.modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.fixed-button {
  position: fixed;
  display: block;
  right: 1.5%;
  bottom: 2%;
  gap: 0.6rem;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

/* thank you css */

section.section-thankyou {
  height: calc(85vh - 75px);
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thankyou-title {
  text-align: center;
  margin: 0.35rem 0 0 0;
  font-weight: 500;
}

.thankyou-subtitle {
  text-align: center;
  font-weight: 400;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

.go_txt {
  font-size: 15px;
  color: #000;
  color: var(--light);
  background-color: var(--primary) !important;
  border-radius: 3.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

/*********** media query *********/

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

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

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

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

  .logo {
    gap: 0.65rem;
  }

  .logo-img-1 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 60px;
  }

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

  .overview-form form {
    width: 85%;
  }

  .form-title {
    font-size: 1.875vw;
    -webkit-transition: all 0.5s ease;
    line-height: 2rem;
    margin: auto auto 2rem 1.5rem;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .amenities-txt-container::before {
    top: -28%;
    left: -12%;
    width: 17vw;
    height: 14dvh;
  }

  .amenities-txt-container::after {
    bottom: -5%;
    right: 0;
    width: 13vw;
    height: 13dvh;
  }

  /* ********about starts******* */
  .moon-img-wrap {
    width: 182px;
    top: -17%;
    right: -19%;
  }

  /* ********about ends******* */
}

@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;
  }

  .element {
    display: none;
  }

  .element1 {
    display: none;
  }

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }

  .custom-visible {
    display: none;
  }

  .calc-container {
    width: calc(100% - 18vw);
    margin: auto 5% auto auto;
  }

  .form-title {
    font-size: 2vw;
    -webkit-transition: all 0.5s ease;
    line-height: 2rem;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-subtitle {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overlay-tree.overlay-tree-1 {
    width: 18vw;
    height: 25dvh;
    top: 8%;
  }

  .overlay-tree.overlay-tree-2 {
    width: 20vw;
    height: 30dvh;
    top: 10%;
  }

  .config-about-txt .config-title {
    font-size: 2.45vw;
  }

  /* ********about starts******* */
  .moon-img-wrap {
    width: 200px;
    top: -18%;
    right: -23%;
  }

  /* ********about ends******* */

  /* **************Footer  starts******/
  .disc {
    width: 100%;
  }

  .leaf {
    height: 18rem;
  }

  /* **************Footer  ends******/
}

@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;
  }

  /* ********about starts******* */
  .moon-img-wrap {
    width: 200px;
    top: -21%;
    right: -19%;
  }

  /* ********about ends******* */
  /* **************Footer  starts******/
  .disc {
    width: 100%;
  }

  .leaf {
    height: 18rem;
  }

  /* **************Footer  ends******/
}

@media only screen and (max-width: 991px) {
  .section-heading .section-title {
    font-size: 1.1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-subtitle {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .form-title {
    font-size: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    line-height: 2.75rem;
  }

  .calc-container {
    width: 90%;
    margin: auto;
  }

  .overview-form {
    padding: 12rem 2rem 2rem 2rem;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-form form {
    width: 70%;
  }

  .overview-content {
    margin: auto auto auto 10rem;
  }

  .texture-pattern.sun-pattern::before {
    top: 22%;
    transform: translate(0%, -50%);
    width: 35vw;
    height: 35%;
  }

  .overlay-tree.overlay-tree-1 {
    width: 14vw;
    height: 14dvh;
  }

  .overlay-tree.overlay-tree-2 {
    width: 15vw;
    height: 18dvh;
  }

  .config-about-txt .config-title {
    font-size: 3.5vw;
  }

  .amenities-txt-container {
    width: 90%;
    margin: auto;
  }

  .custom-container {
    width: 90%;
    margin: auto;
  }

  .amenities-txt span {
    font-size: 2vw;
  }

  .amenities-txt-container::before {
    top: -33%;
    left: -5%;
    width: 19vw;
    height: 12dvh;
  }

  .amenities-txt-container::after {
    bottom: -5%;
    right: 4%;
    width: 16vw;
    height: 11dvh;
  }

  /* ****************location starts********* */
  .location-container {
    width: 100%;
  }

  .location-map {
    width: 90%;
    margin: auto;
  }

  /* *******************location ends****** */

  /* ***********About Starts*********** */
  .overview-content {
    margin: unset;
  }

  .moon-img-wrap {
    width: 202px;
    top: -15%;
    right: -13%;
  }

  /* **************About Ends********* */
  /* **************Footer  starts******/
  .disc {
    width: 100%;
  }

  .leaf {
    height: 15rem;
  }

  /* **************Footer  ends******/

  .contact-container::after {
    background: unset;
  }
}

@media only screen and (max-width: 767px) {
  .menu {
    margin-left: -95%;
  }

  .mobile_viewEqBtn {
    font-size: 15px;
  }

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

  .fixed-button {
    display: none;
  }

  .cta-footer {
    position: fixed;
    bottom: 0;
    z-index: 999;
    width: 100%;
    background: #a04123;
    display: flex;
    justify-content: space-around;
    padding: 8px;
    color: #fff;
    font-weight: 500;
  }

  .cta-icon {
    filter: brightness(0) invert(1);
  }

  .divide-line {
    border-right: 1px solid #ffff;
  }

  .section-heading .section-subtitle {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .contact-title {
    font-size: 1.25rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .texture-pattern.sun-pattern::before {
    top: 22%;
    transform: translate(0%, -50%);
    width: 50%;
    height: 30%;
  }

  .config-about-img {
    width: 100% !important;
    height: 30dvh;
    margin-bottom: 40px;

  }

  .config-about-img::after {
    width: 90px;
    height: 90px;
  }

  .config-about-txt .config-title {
    font-size: 4.25vw;
  }

  .amenities-txt span {
    font-size: 3vw;
  }

  .amenities-txt-container::before {
    top: -20%;
    left: -5%;
    width: 17vw;
    height: 9dvh;
  }

  .amenities-txt-container::after {
    bottom: -5%;
    right: 4%;
    width: 18vw;
    height: 8dvh;
  }

  .gal-carousel .owl-nav {
    position: relative;
    top: unset;
    transform: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
  }

  .gal-carousel .owl-nav .owl-prev {
    position: relative;
    left: unset;
  }

  .gal-carousel .owl-nav .owl-next {
    position: relative;
    right: unset;
  }

  .banner-overlay-txt {
    bottom: 5%;
    left: 4%;
    width: 90%;
  }

  .banner-overlay-txt .banner-overlay-title {
    font-size: 5vw;
  }

  /* *********gallery mobile view starts here****** */
  .custom-nav-tabs .nav-item.show .custom-nav-link,
  .custom-nav-tabs .custom-nav-link.active {
    font-size: 0.9rem;
  }

  .custom-nav-tabs .custom-nav-link {
    font-size: 0.9rem;
  }

  /* ****************location starts********* */
  .location-container {
    width: 100%;
  }

  .location-map {
    width: 90%;
    margin: auto;
  }

  /* *******************location ends****** */

  /* ***********About Starts*********** */
  .overview-content {
    margin: unset;
  }

  .moon-img-wrap {
    width: 202px;
    top: -15%;
    right: -13%;
  }

  /* **************About Ends********* */

  /* **************Footer  starts******/
  .disc {
    width: 100%;
  }

  .leaf {
    height: 10rem;
  }

  /* **************Footer  ends******/

  .offcanvas-link {
    font-size: 4vw;
  }
}

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

  .element {
    right: 17px;
    left: unset;
    top: 1%;
    display: unset;
  }

  .element1 {
    left: 0;
    top: -4%;
    display: unset;
  }

  .element img {
    width: 85px;
  }

  .element1 img {
    width: 85px;
  }

  .logo-img-1 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 55px;
  }

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

  .scrolled .logo-img-1 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 50px;
  }

  .overview-form {
    background-size: 128% 100%;
  }

  .scrolled .logo-img-2 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 50px;
  }

  .banner-overlay-txt .banner-overlay-title {
    font-size: 6.75vw;
  }

  .banner-overlay-txt .banner-overlay-subtitle {
    font-size: 1rem;
  }

  .section-title.pattern::after {
    left: -10%;
    width: 1.5rem;
    height: 1.5rem;
  }

  .section-title.pattern::before {
    right: -10%;
    width: 1.5rem;
    height: 1.5rem;
  }

  .offcanvas-links {
    gap: 1.75rem;
  }

  .offcanvas-link {
    font-size: 4.5vw;
  }

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

  .offcanvas-close {
    width: auto;
    height: auto;
  }

  .section-heading .section-subtitle {
    font-size: 5.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-form {
    padding: 6rem 2rem 4rem 2rem;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-form form {
    width: 90%;
  }

  .config-content {
    width: 90%;
  }

  .overview-subcontent .overview-subcontent-txt {
    font-size: 0.85rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .contact-logo {
    width: 14rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .contact-title {
    font-size: 1.15rem;
    margin: 3rem auto auto auto;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .footer-qr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .qr-content .qr-txt {
    font-size: 0.85rem;
  }

  .form-title {
    margin: auto auto 2rem auto;
    font-size: 4vw;
    font-weight: 500;
    line-height: normal;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .texture-pattern.sun-pattern::before {
    top: 22%;
    transform: translate(0%, -50%);
    width: 35%;
    height: 15%;
  }

  .overlay-tree.overlay-tree-1 {
    width: 18vw;
    height: 14dvh;
    top: 0;
  }

  .overlay-tree.overlay-tree-2 {
    width: 20vw;
    height: 30dvh;
    top: 10%;
  }

  .config-about-txt .config-title {
    font-size: 4vw;
  }

  .config-more-info .more-info .more-info-txt {
    font-size: 0.9rem;
  }

  .amenities-txt span {
    font-size: 3.5vw;
  }

  .amenities-txt-container::before {
    top: -18%;
    left: -5%;
    width: 25vw;
    height: 8dvh;
  }

  .amenities-txt-container::after {
    bottom: -5%;
    right: 4%;
    width: 22vw;
    height: 7dvh;
  }

  .offcanvas-logo .logo-img {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 90px;
  }

  .section-heading .section-title {
    font-size: 2.1rem;
  }
}

@media only screen and (max-width: 450px) {
  .btn-middle {
    width: 55px;
    height: 55px;
  }

  .mobile-fixed-content .btn-fixed {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: -7px;
    font-size: 0.825rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.4rem 0.5rem;
  }

  .mobile-fixed-content {
    width: 88%;
  }

  .btn-middle img {
    width: 32px;
    height: 32px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .btn-middle-content {
    top: 16px;
  }

  .btn-fixed span.icon {
    width: 18px;
    height: 18px;
  }

  .btn-fixed span.icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media only screen and (max-width: 350px) {
  .footer-qr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .qr-content .qr-img {
    width: 60px;
    height: 60px;
  }

  .qr-content .qr-txt {
    font-size: 0.785rem;
  }

  .mobile-fixed-content .btn-fixed {
    font-size: 0.725rem;
  }

  .btn-fixed span.icon {
    width: 15px;
    height: 15px;
  }
}

.leftimg {
  display: none;
}

.info {
  padding: 2px;
}

/* Namrata */
/*award section*/
.section-awards {
  padding: 20px 20px;
  background: #f9f9f9;
}

.headingtrophy {
  width: 70px;
  margin-top: 2%;
  margin-left: 50%;
}

#sectionAward .section-subtitle {
  font-size: 1.5vw;
  font-weight: 550;
  margin: 10px 0;
}

.awards{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 400px;
}
.awardCarousel .owl-item, .awardCarousel .item{
  width: 100%;
  height: 100%;
}

.awardCarousel .owl-stage-outer {
  overflow: unset !important;
}

.award-card {
  background-color: #fff;
  padding: 1.3rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 6, 0.5);
  margin: 2rem 0;
  width: 100%;
  height: 100%;    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  text-align: center;
}

.award-card img {
  width: 50% !important;
  height: 50% !important;
  margin: auto;
  display: block;
  object-fit: contain;
}

.awardCarousel .owl-stage{
  padding: 1rem 0;
  display: flex;
}

.awardCarousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}


.award-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 10px;
  color: #a04123;

}

.award-description {
  font-size: 14px;
  color: #555;
}

.award-category {
  font-size: 14px;
  color: #777;
  margin-top: 15px;
}

.awardCarousel .owl-dots{
  margin-top: 3rem !important;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  /* max-width: 800px;
    margin: auto; */
}

.faq-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary) !important;
}

.faq-question:hover {
  background: #f2f2f2;
}

/* Icon */
.faq-icon {
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  color: #000000;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 590px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {


  .faq-heading {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px;
  }
}

.right-logo img {
  width: 90px;
  height: 80px;

}

.single-video {
  position: relative;
  /* display: inline-block; */
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 45px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whats_btn {
  position: fixed;
  right: 20px;
  top: 40%;
  z-index: 999;

  /*namrata*/

}

.whats_btn img {
  width: 60px;
  height: auto;


}

.whats_btn img {
  position: fixed;
  right: 10px;
  top: 80%;
  z-index: 999;
  height: 64px;
  width: 95px;
  padding: 12px 25px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 8888;

  animation: pulse-cust 2s infinite;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;

}

@keyframes pulse-cust {
  0% {
    -webkit-box-shadow: 0 0 0 0 #a04123;
  }

  70% {
    -webkit-box-shadow: 0 0 0 25px rgba(227, 56, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(227, 56, 56, 0);
  }
}

/* .whats_btn img {
  width: 60px;
  transition: 0.3s;
} */

.whats_btn img:hover {
  transform: scale(1.1);
}



.plan-tabs {
  justify-content: center;
  margin-bottom: 30px;
}

.plan-tabs .nav-link {
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 5px;
}

.plan-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.theme-table {
  width: 100%;
  border-collapse: collapse;
}

.theme-table tr {
  border-bottom: 1px solid #e5e5e5;
}

.theme-table td {
  padding: 18px 10px;
  vertical-align: middle;
}

.theme-table h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.theme-table span {
  font-size: 16px;
  color: #444;
}

.configuration-btn {
  color: #A94A2C;
  text-decoration: none;
  font-weight: 500;
}

.configuration-btn:hover {
  text-decoration: underline;
}

/* new */
.configuration-table {
  max-width: 900px;
  margin: 0 auto;
}

.config-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.config-type {
  font-size: 18px;
  font-weight: 500;
  /* width:30%; */
}

.config-size {
  font-size: 16px;
  color: #555;
  width: 40%;
  text-align: center;
  color: black;
  font-weight: 550;
}

.config-btn {
  width: 30%;
  text-align: right;
}

/* .config-btn a{
color:#A94A2C;
text-decoration:none;
font-weight:500;
} */

.config-btn a {
  background: #a64b2a;
  color: #fff;
  padding: 10px 26px;
  border-radius: 25px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

/* .config-btn a:hover{
text-decoration:underline;
} */
.config-btn a {
  background: #A94A2C;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
}

.config-btn a:hover {
  background: #8e3e25;
  color: #fff;
}

/* Sticky container */

.desktop-sticky-form {
  position: fixed;
  bottom: 0;
  left: 18%;
  width: 70%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  z-index: 9999;
  border: 2px solid #a04123;

}

/* Form layout */

.sticky-form-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Inputs */

.sticky-form-inner input,
.sticky-form-inner select {
  flex: 1;
  height: 45px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Button */

.sticky-form-inner button {
  background: #ca6c51;
  color: #fff;
  border: none;
  padding: 0 30px;
  height: 45px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.sticky-form-inner button:hover {
  background: #ca6c51;
}


@media (max-width:768px) {
  .desktop-sticky-form {
    display: none;
  }

  .config-btn a {
    text-align: center;
  }
}

.sticky-form-inner input,
.sticky-form-inner select,
.sticky-form-inner button {
  font-family: 'CeraGodrejInterio-Regular', sans-serif;
  color: black;
}

.section-config {
  padding: 100px 0;
}

/* Heading */
.section-config .section-title {
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.floor-plan-section {
  padding: 80px 0;
  /* background:#f5f5f5; */
}

.plan-tabs {
  gap: 20px;
  border-bottom: none;
}

.plan-tabs .nav-link {
  border: 1px solid #ca6c51;
  border-radius: 0;
  padding: 14px 35px;
  font-size: 16px;
  font-family: 'CeraGodrejInterio-Regular', sans-serif;
  color: #ca6c51;
  background: #fff;
  letter-spacing: 1px;
}

.plan-tabs .nav-link.active {
  /* background:#d9d9d9; */
  color: #ca6c51;
}

.plan-tabs .nav-link:hover {
  background: #e6e6e6;
}

.plan-image {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.blur-image {
  filter: blur(5px);
}

/* .floor-plan-grid{
display:flex;
justify-content:center;
gap:5px;
flex-wrap:wrap;
} */
.image-container {
  display: flex;
  gap: 20px;
  /* gap between images */
}

.plan-image {
  width: 500px;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#sectionConfiguration .container {
  max-width: 1600px !important;
}

.configuration-table {
  max-width: 1400px;
  margin: auto;
  width: 100%;
}

.image-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.config-about-img {
  position: relative;
  width: 100%;
}

.plan-image {
  width: 100%;
}

.blur-image {
  filter: blur(6px);
}

.btn-floor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background: #caa45f; */
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
}

/* Media Queries for Mobile Devices */
/* @media only screen and (max-width: 350px) {
  .award-card {
    display: none;
  }

  .headingtrophy {
    width: 70px;
    margin-top: 2%;
    margin-left: 40%;
  }

  #sectionAward .section-subtitle {
    font-size: 3vw;
    font-weight: 550;
    margin: 10px 0;
  }

  #sectionAward .award-title {
    font-size: 18px;
    padding: 10px 0px;
    color: black;
  }

  #sectionAward .award-title {
    font-size: 16px;
    padding: 10px 0px;
    color: black;
  }

  #sectionAward .award-title {
    font-size: 14px;
    padding: 10px 0px;
    color: black;
  }
} */

a {
  text-decoration: none !important;
}


.trophyImg {
  width: 80px !important;
  height: 80px !important;
}


.trophyImgWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-left: -40px !important; */
}

.trophyContent {
  text-align: center;
  align-items: center;
  padding: 0.8rem 1.2rem;
}

.awardCardWrap {
  margin: 20px 0;
}




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

  .mobile-award {
    display: block !important;
  }

  /* .desktop-award {
    display: none;
  } */

  #sectionAward .section-subtitle {
    font-size: 15px;
  }

  .headingtrophy {
    width: 70px;
    margin-top: 2%;
    margin-left: 40%;
  }

  .mobile-award .owl-stage-outer {
    /* padding: 10px 30px; */
    box-shadow: -20px 18px 20px 10px rgba(0, 0, 0, 0.05);
  }

  .mobile-award .owl-theme .owl-nav {
    margin-top: 2%;
    display: none !important;
  }

  .mobile-award .owl-dots {
    margin-top: 10% !important;
  }

  .trophyContent .award-title {
    font-size: 0.9rem;
    padding: 10px 0px;
  }

  #secondSection .heading {
    font-size: 18px !important;
  }

  #sectionBrochure .heading {
    font-size: 18px !important;
  }
}

/* .mobile-award {
  display: none;
} */

.awards-container {
  width: 100%;
  max-width: 100%;
  align-items: center;
  justify-content: center;
}

#sectionAward .section-heading {
  /* text-decoration: underline; */
}

#sectionAward .section-subtitle {
  color: #a04123;
}

#secondSection .heading {
  color: black;
  font-weight: 400 !important;
}

#sectionBrochure .heading {
  color: #fff;
  font-weight: 700 !important;

}

#sectionBrochure .subheading {
  color: #A94A2C;

}

#sectionBrochure {
  /* padding: 3rem 0; */
  /* box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; */
}

/* --- new config section start */
.highlight-container {
  margin: 3.5rem auto auto auto;
}

.highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.high-img-container {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.high-img img {
  width: 100%;
  height: auto;
}

.high-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #BA804E;
  text-align: center;
  width: 80%;
}

.high-title {
  margin-bottom: 4rem !important;
  font-size: 1.9rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3rem;
}

.overview-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto auto auto;
}

.btn-primary {
  color: #fff;
  border: none;
  position: relative;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  text-wrap: nowrap;
  font-size: 1rem;
  text-transform: uppercase;
  background: none;
}

.btn-primary span.btn-primary-icon {
  width: 100%;
  height: auto;
}

.btn-primary span {
  display: block;
}

.btn-primary span.btn-primary-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-primary span.btn-primary-price {
  color: #BA804E;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.12444rem;
  letter-spacing: 0.08431rem;
  text-transform: uppercase;
  font-family: avenir;
}
/* --- new config section end */


/* download section  */
.document-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem auto 2rem auto;
}

.document-img {
  width: 75px;
  height: 75px;
}

.document-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: invert(1);
} 

.document-content .document-title {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-weight: 600;
  transition: all 0.5s ease;
  color: #fff;
}

.btn-download {
  border: none;
  display: block;
  margin: 0.25rem 0 0 0;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 1rem;
}

.btn-download span{
  border-radius: 100px !important;
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--primary);
  color: #a04123;
  font-size: 1rem;
  background-color: #fff;
}

#sectionBrochure {
  background: url(../assets/images/gallery/clubhouse.jpg) center;
  background-size: cover;
  background-attachment: fixed;
}

.conf-back {
  padding: 3rem 0;
  background-color: rgba(0, 0, 0, 0.5);
}