@font-face {
  font-family: MrEavesXLSanOT;
  src: url("../assets/fonts/MrEavesXLSanOT-Reg.woff2");
}

@font-face {
  font-family: MrEavesregular;
  src: url("../assets/fonts/MrEavesXLSanOT-RegItalic.woff2");
}

@font-face {
  font-family: MrEavesbold;
  src: url("../assets/fonts/MrEavesXLSanOT-Bold.woff2");
}

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

:root {
  --light: #ffffff;
  --dark: #000;
  --MrEavesXLSanOT: MrEavesXLSanOT;
  --radius-1: 16px;
  --radius-full: 100px;
  --primary: #ac883a;
  --primary-pink: #42743e;
  --text-color: #000;
  --text-color-2: #727272;
}

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: var(--MrEavesXLSanOT);
}

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

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  /* -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;
  transition: background-color 0.3s ease;
}

.header-container.scrolled {
  background-color: var(--primary-pink);
}

.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(--light); */
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 21px;
  cursor: pointer;
  filter: invert(1);
}

.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: 170px;
  max-width: 100%;
  position: relative;
}

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

.navLinks .navLink {
  display: block;
  font-family: var(--MrEavesXLSanOT);
  font-size: 1.25rem;
  color: var(--light);
  font-weight: 600;
  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(--light);
  -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(--MrEavesXLSanOT);
  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;
}

.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(--MrEavesXLSanOT);
  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%;
}

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

.btn-visit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  outline: none;
  border: none;
  background: var(--primary-blue);
  gap: 0.25rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--MrEavesXLSanOT);
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--light);
}

.btn-visit span {
  display: block;
}

.btn-visit.light {
  background: var(--light);
  gap: 0.45rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--MrEavesXLSanOT);
  color: rgba(37, 88, 131, 1);
}

.section-heading .new-head {
  font-size: 2vw;
  font-family: var(--MrEavesXLSanOT);
  color: var(--light);
  font-weight: 400;
  /* letter-spacing: 0.8px; */
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .new-sub-head {
  font-size: 1.3vw;
  font-family: var(--MrEavesXLSanOT);
  color: var(--light);
  font-weight: 400;
  letter-spacing: 0.8px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-bottom: 1rem;
}

.section-heading .section-title {
  font-size: 1.8vw;
  font-family: var(--MrEavesXLSanOT);
  color: var(--light);
  background: var(--primary-pink);
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 10px 50px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .location-title {
  font-size: 1.8vw;
  font-family: var(--MrEavesXLSanOT);
  color: var(--light);
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-title.pattern {
  position: relative;
}

.section-title.pattern::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 50%;
  left: -8%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: url(../assets/images/icons/flower.svg) no-repeat center center / contain;
}

.section-title.pattern::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: -8%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: url(../assets/images/icons/flower.svg) no-repeat center center / contain;
}

.section-heading .section-desc {
  font-size: 1.15rem;
  font-family: var(--MrEavesXLSanOT);
  color: var(--text-color);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  line-height: 25px;
}

section.main-banner {
  /* margin: 5.25rem 0 0 0; */
}

.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: var(--primary-pink);
}

section.section-overview {
  padding: 4rem 0rem;
  background: url(../assets/images/overview/overview.webp) no-repeat center center / cover;
  min-height: 100vh;
  display: flex;
  align-items: end;
  padding-bottom: 100px;
  position: relative;
}

.small-image-text {
  left: 6%;
  color: #f2f2f2;
  font-size: 10px;
  position: absolute;
  top: 95%;
  z-index: 99;
  font-style: italic;
}

.map-image-text {
  left: 6%;
  color: #f2f2f2;
  font-size: 10px;
  position: absolute;
  top: 95%;
  z-index: 99;
  font-style: italic;
}

.pool-image-text {
  left: 0%;
  color: #f2f2f2;
  font-size: 10px;
  position: absolute;
  top: unset;
  z-index: 99;
  font-style: italic;
}

.overview-main-content {
  margin: 4rem auto auto auto;
}

.pool-main-content {
  top: 3rem;
  position: relative;
}

.overview-subcontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.overview-subcontent .overview-subcontent-txt {
  font-size: 1.4vw;
  color: var(--primary);
  font-weight: 400;
  font-family: var(--MrEavesXLSanOT);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.overview-form {
  padding: 2rem 2.5rem;
  border-radius: 9px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: hsla(0, 0%, 100%, .35);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form-title {
  color: var(--primary-pink);
  font-weight: 500;
  font-size: 1.175rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: var(--MrEavesXLSanOT);
}

.custom-input {
  padding: 0.9rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: var(--MrEavesXLSanOT);
  outline: unset;
  border: none;
  border-radius: 5px;
  background-color: rgba(86, 86, 86, 0.1);
}

.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  -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;
  font-family: var(--MrEavesXLSanOT);
}

.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;
  font-family: var(--MrEavesXLSanOT);
}

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

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

.custom-input::placeholder {
  color: var(--text-color-2) !important;
  font-weight: 400 !important;
  text-transform: capitalize !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;
}

.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: #727272;
  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-pink);
  border-color: var(--primary-pink);
}

.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 forest starts****** */
section.section-forest {
  padding: 4rem 0rem;
  background: url(../assets/images/overview/overview1.webp) no-repeat center center / cover;
  min-height: 100vh;
  display: flex;
  align-items: end;
  padding-bottom: 100px;
  position: relative;
}

.forest-image-text {
  left: 87%;
  color: #f2f2f2;
  font-size: 10px;
  position: absolute;
  top: 87%;
  z-index: 99;
  font-style: italic;
}

/* ...........Section forest ends****** */
section.section-config {
  position: relative;
  padding: 4rem 0;
}

.cust-container {
  width: 85%;
  margin: auto;
}

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

.config-swiper-content .config-img {
  width: 100%;
  aspect-ratio: 4 / 4;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  background-color: #f8f8f8;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-small-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 10px;
  font-style: italic;
  color: #f2f2f2;
  margin: 0px;
}

.config-swiper-content .config-img img.plan {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

/* Hover overlay */
.config-img .hover-text {
  position: absolute;
  inset: 0;
  background: var(--primary-pink);
  color: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 14px;
}

.config-img .hover-text h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.config-img .hover-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 90%;
}

/* Hover effects */
.config-swiper-content .config-img:hover img.plan {
  opacity: 0.2;
}

.config-swiper-content .config-img:hover .hover-text {
  opacity: 1;
}

.config-swiper-content .config-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ...........Section pools starts****** */
section.section-pools {
  padding: 4rem 0;
  background: url(../assets/images/overview/pool.webp) no-repeat center center / cover;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  color: #fff;
}

.section-pools::before {
  content: "";
  position: absolute;
  inset: 0;
}

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

.pool-textbox {
  max-width: 500px;
  margin-left: auto;
  /* push text to the right */
  text-align: left;
  padding: 2rem 1rem;
}

.pool-textbox h2 {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.pool-textbox p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ...........Section pools ends****** */

/* ******gird work section starts******* */
section.walk-to-work {
  padding: 4rem 6%;
}

.cust-container1 {
  width: 92%;
  margin: auto;
}

.grid-images-box {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.grid-content {
  grid-area: 1 / 1 / 7 / 7;
}


.grid-content h2 {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: normal;
}

.grid-content p {
  font-size: 18px;
  line-height: 24px;
  padding-top: 1rem;
}

.for-image {
  position: relative;
}

.grid-images1 {
  grid-area: 7 / 1 / 13 / 4;
}

.grid-images-box img {
  height: 100% !important;
  object-fit: cover;
  width: 100%;
}

.for-image p {
  bottom: 5px;
  color: #f2f2f2;
  font-size: 8px;
  font-style: italic;
  font-weight: 300;
  left: 16px;
  position: absolute;
}

.grid-images2 {
  grid-area: 7 / 4 / 13 / 7;
}

.grid-images3 {
  grid-area: 1 / 7 / 7 / 9;
}

.grid-images4 {
  grid-area: 1 / 9 / 5 / 12;
}

.grid-images5 {
  grid-area: 7 / 7 / 9 / 9;
}

.grid-images6 {
  grid-area: 5 / 9 / 9 / 13;
}

.grid-images7 {
  grid-area: 9 / 7 / 13 / 10;
}

.grid-images8 {
  grid-area: 9 / 10 / 13 / 13;
}

/* ******gird work section ends******** */


section.section-amenities {
  padding: 3.5rem 0;
}

.amens-txt {
  text-align: center;
}

.amenities-contents .amenities-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.amenities-contents .amenities-content .amens-details {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.amenities-contents {
  margin: 3rem auto auto auto;
  width: 90%;
  position: relative;
}

.amenities-carousel-desktop .owl-nav button {
  position: absolute;
  top: 45%;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 50px;
  height: 50px;
  z-index: 1;
}

.amens-details .amens-icon {
  width: 80px;
  height: 80px;
}

.amenities-carousel-desktop .owl-nav button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.amenities-carousel-desktop .owl-nav .owl-prev {
  left: -70px;
}

.amenities-carousel-desktop .owl-nav .owl-next {
  right: -70px;
}

.amenities-carousel-desktop .owl-dots,
.amenities-carousel-mobile .owl-dots {
  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: 0.25rem;
  margin: 2rem auto 1rem auto;
}

.amenities-carousel-desktop .owl-dots button,
.amenities-carousel-mobile .owl-dots button {
  width: 15px;
  height: 4px;
  border-radius: 100px;
  -webkit-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  transition: all 1.1s ease;
  background-color: #dfdfdf !important;
}

.amenities-carousel-desktop .owl-dots button.active,
.amenities-carousel-mobile .owl-dots button.active {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 25px;
  background-color: var(--primary-pink) !important;
}

/* *******Config section starts*******/
.config-title {
  background: #2f5b2e;
  color: #fff;
  display: inline-block;
  padding: 0.6rem 3rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.config-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 1.5rem; */
  gap: 2rem;
}

.header-col {
  flex: 1;
  text-align: center;
  padding: 0.8rem 0;
  border: 1px solid #2f5b2e;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: #2f5b2e;
}

.config-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0.8rem 0;
  /* margin-bottom: 1.2rem; */
}

.config-colum {
  flex: 1;
  font-size: 1.25rem;
  color: var(--primary-pink);
  position: relative;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--primary-pink);
  padding: 0.5rem 1.8rem;
}

.config-col {
  flex: 1;
  font-size: 1.25rem;
  color: #000;
  position: relative;
}

.config-line {
  width: 80%;
  height: 2px;
  margin: 1rem auto 0 auto;
  background: url('../assets/images/icons/line.webp') no-repeat center;
  background-size: contain;
  opacity: 1;
}

.btn-download {
  background: var(--primary-pink);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.8rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: #20461f;
}

.config-table {
  margin-top: 2rem;
}

/* *********8config section ends***** */

section.section-gallery {
  padding: 1rem 0 4rem 0;
}

.gallery-nav .custom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.gallery-nav .custom-nav .nav-item .nav-link:not(.active) .icon img.active {
  display: none;
}

.gallery-nav .custom-nav .nav-item:has(.nav-link.active) .icon img {
  display: none;
}

.gallery-nav .custom-nav .nav-item:has(.nav-link.active) .icon img.active {
  display: block;
}

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

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

.gallery-content {
  width: 90%;
  margin: auto 0 auto auto;
}

.gallery-swiper-container {
  position: relative;
  margin: 3.5rem auto auto auto;
}

.gallery-swiper-container .swiper-nav .swiper-button {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

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

.gallery-swiper-container .swiper-nav .swiper-button.swiper-button-disabled {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-swiper-container .gallery-swiper {
  width: 100%;
  height: 350px;
}

.gallery-swiper-container .swiper-nav .swiper-button {
  position: absolute;
  top: 50%;
  z-index: 1;
}

.gallery-swiper-container .swiper-nav .swiper-button.swiper-button-prev-2 {
  left: -36px;
}

.gallery-swiper-container .swiper-nav .swiper-button.swiper-button-next-2 {
  right: -36px;
}

.gallery-swiper-container .gallery-swiper .swiper-slide .gallery-img {
  border-radius: 9px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.gallery-swiper-container .gallery-swiper .swiper-slide .gallery-img img {
  border-radius: 9px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-swiper .swiper-wrapper {
  margin: 0 0 2.5rem 0;
}

.gallery-img {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
}

.gallery-img .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  z-index: 2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-img .play-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.gallery-img:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 0.9;
}



section.section-location {
  padding: 4rem 0;
  background: url(../assets/images/map/map.webp) no-repeat center center / cover;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-bottom: 0;
  position: relative;
}

/* **********Right section */
.section-connections {
  padding: 3rem 0rem;
}

.section-connections .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
  /* green shade */
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.connections-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  margin-bottom: 3rem;
}

.icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.connection-item h4 {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 0.3rem;
  text-align: center;
}

.connection-item p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0;
  text-align: center;
}

.connection-description {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.connection-description p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
}

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

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

.about-text {
  color: var(--primary-pink) !important;
  font-weight: 600 !important;
}

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

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

section.section-contact {
  padding: 2em 0;
}

.contact-logo {
  width: 13rem;
  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-family: var(--MrEavesXLSanOT);
  font-size: 1.5rem;
  color: var(--light);
  text-align: center;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* margin: 4rem auto auto auto; */
}

.contact-form {
  margin: 1rem auto auto auto;
}

footer {
  padding: 2rem 0;
}

.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(--text-color);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.disc {
  color: #414042;
  margin: 2rem 0;
  font-size: 0.76rem;
}

.disc strong {
  font-size: 0.76rem;
  font-weight: 600;
  color: #414042;
}

.footer-copyright {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.custom-modal-content {
  position: relative;
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
}

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

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

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

.mobile-fixed-button {
  display: none;
}

.fixed-button {
  position: fixed;
  display: block;
  right: 1.5%;
  bottom: 2.5%;
  gap: 1rem;
  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;
}

.btn-fixed {
  border: none;
  outline: none;
  border-radius: 100px;
  color: var(--light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--MrEavesXLSanOT);
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  padding: 0.55rem 1.15rem;
}

.btn-fixed.primary {
  background: var(--primary-pink);
}

.btn-fixed.primary-pink {
  background: var(--primary-pink);
}



/* Modal styles */
.custom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.custom-modal.active {
  display: flex;
}

.custom-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 550px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 26px;
  cursor: pointer;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

#hubspotFormContainer .actions {
  display: flex;
  justify-content: center;
}

/* Make form look clean */
#hubspotFormContainer form {
  font-family: var(--MrEavesXLSanOT);
}

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

#hubspotFormContainer input,
#hubspotFormContainer select,
#hubspotFormContainer textarea {
  border-radius: 6px !important;
  height: 45px;
  border: 2px solid var(--primary-pink);
  padding: 10px !important;
  font-size: 15px !important;
  background: transparent;
}

#hubspotFormContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 14px;
  position: relative;
}

.legal-consent-container .field.hs-form-field {
  margin-bottom: 8px;
  margin-top: 15px;
}

#modalTitle {
  text-align: center;
}

.legal-consent-container .hs-form-booleancheckbox-display>span {
  display: block;
  margin-left: 20px;
  font-size: 12px;
}

#hubspotFormContainer .hs-button {
  background: #2f6d3a !important;
  border-radius: 5px !important;
  padding: 10px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff;
}

#hubspotFormContainer .hs-button:hover {
  background: #24592e !important;
}

#hubspotContactForm form {
  font-family: var(--MrEavesXLSanOT);
}

.actions {
  display: flex;
  justify-content: start;
}

#hubspotContactForm input,
#hubspotContactForm select,
#hubspotContactForm textarea {
  border-radius: 6px !important;
  height: 45px;
  border: 2px solid var(--primary-pink);
  padding: 10px !important;
  font-size: 15px !important;
  background: transparent;
}

.legal-consent-container .field.hs-form-field {
  margin-bottom: 8px;
  margin-top: 15px;
}

#modalTitle {
  text-align: center;
}

.legal-consent-container .hs-form-booleancheckbox-display>span {
  display: block;
  margin-left: 20px;
  font-size: 12px;
}

#hubspotContactForm .hs-button {
  background: #2f6d3a !important;
  border-radius: 5px !important;
  padding: 10px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff;
}

#hubspotContactForm .hs-button:hover {
  background: #24592e !important;
}

#hubspotContactForm {
  display: flex;
  justify-content: center;
}

.download-floorplan {
  background: var(--primary-pink);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.8rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

#hubspotOverviewForm form {
  font-family: var(--MrEavesXLSanOT);
}

#hubspotOverviewForm input,
#hubspotOverviewForm select,
#hubspotOverviewForm textarea {
  border-radius: 0px !important;
  height: 45px;
  border: 0 solid #638b54;
  padding: 10px !important;
  font-size: 15px !important;
  background: #fff;
}

#hubspotOverviewForm textarea {
  height: 100px !important;
  resize: vertical;
}

.legal-consent-container .field.hs-form-field {
  margin-bottom: 8px;
  margin-top: 15px;
}

#hubspotOverviewForm .legal-consent-container .hs-form-booleancheckbox-display p {
  margin: 0;
  display: inline;
  color: #fff;
}

#modalTitle {
  text-align: center;
}

.legal-consent-container .hs-form-booleancheckbox-display>span {
  display: block;
  margin-left: 20px;
  font-size: 12px;
}

#hubspotOverviewForm .hs-button {
  background: #2f6d3a !important;
  border-radius: 5px !important;
  padding: 10px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff;
}

#hubspotOverviewForm .hs-button:hover {
  background: #24592e !important;
}

#hubspotContactForm .actions {
  justify-content: center;
  display: flex;
}

#hubspotOverviewForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 14px;
  position: relative;
}

#hubspotOverviewForm .form-header {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

#modalTitle {
  font-size: 1.25rem;
}

/* thank you css */

section.section-thankyou {
  height: calc(100vh - 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;
  font-family: var(--MrEavesXLSanOT);
  margin: 0.35rem 0 0 0;
  font-weight: 500;
}

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

.go_txt {
  font-size: 15px;
  color: #000;
  background-color: #fff !important;
  border-radius: 3.125rem;
  border: 1px solid #000;
  font-family: var(--MrEavesXLSanOT);
  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: 1400px) {
  .navbar-container {
    padding: 1rem 4rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .pool-textbox h2 {
    margin-bottom: 0.5rem;
  }

  .section-heading .section-desc {
    font-size: 13px;
    line-height: 1.4;
  }

  .pool-textbox p {
    font-size: 13px;
    line-height: 1.4;
  }
}


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

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

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

  .pool-main-content {
    margin: 3rem auto auto auto;
  }

  .overview-subcontent {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

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

  .gallery-swiper-container {
    width: 90%;
    margin: 2.75rem auto auto auto;
  }

  .gallery-content {
    width: 90%;
    margin: auto;
  }

  .gallery-swiper-container .swiper-nav .swiper-button {
    top: 45%;
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .gallery-swiper-container .swiper-nav .swiper-button.swiper-button-prev-2 {
    left: -25px;
  }

  .gallery-swiper-container .swiper-nav .swiper-button.swiper-button-next-2 {
    right: -25px;
  }

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

  .location-accordion .accordion-button .acc-txt {
    font-size: 1.05rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .grid-images-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    grid-gap: 5px;
  }

  .grid-content {
    grid-area: 1 / 1 / 2 / 5;
  }

  .grid-images1 {
    grid-area: 2 / 1 / 3 / 2;
  }

  .grid-images2 {
    grid-area: 2 / 2 / 3 / 3;
  }

  .grid-images3 {
    grid-area: 2 / 3 / 3 / 4;
  }

  .grid-images4 {
    grid-area: 2 / 4 / 3 / 5;
  }

  .grid-images5 {
    grid-area: 3 / 1 / 4 / 2;
  }

  .grid-images6 {
    grid-area: 3 / 2 / 4 / 3;
  }

  .grid-images7 {
    grid-area: 3 / 3 / 4 / 4;
  }

  .grid-images8 {
    grid-area: 3 / 4 / 4 / 5;
  }

  .copy-right {
    text-align: center;
  }

  .footer-copyright {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .logo-img {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 150px;
    max-width: 100%;
    position: relative;
  }

  section.main-banner {
    /* margin: 4.5rem 0 0 0; */
  }

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

  .section-heading .new-head {
    font-size: 8vw;
    text-align: start;
  }

  .section-heading .new-sub-head {
    font-size: 6vw;
    text-align: start;
  }

  section.section-about {
    padding: 2rem 0rem;
  }

  .pool-textbox .new-head {
    font-size: 8vw;
  }

  .config-colum {
    font-size: 1rem;
  }

  .config-col {
    font-size: 1rem;
  }

  .small-image-text {
    left: 6%;
    color: #f2f2f2;
    font-size: 10px;
    position: absolute;
    top: 95%;
    z-index: 99;
    font-style: italic;
  }

  .map-image-text {
    left: 6%;
    color: #f2f2f2;
    font-size: 10px;
    position: absolute;
    top: 85%;
    z-index: 99;
    font-style: italic;
  }


  .pool-image-text {
    left: 6%;
    color: #f2f2f2;
    font-size: 10px;
    position: absolute;
    bottom: -12%;
    top: unset;
    z-index: 99;
    font-style: italic;
  }

  .forest-image-text {
    color: #f2f2f2;
    font-size: 10px;
    font-style: italic;
    left: 4% !important;
    position: absolute;
    top: 93% !important;
  }

  section.section-location {
    padding: 4rem 0;
    background: url(../assets/images/map/map.webp) no-repeat center center / cover;
    height: 43dvh;
    min-height: unset;
    background-size: 100% 80%;
  }

  .over-text {
    text-align: start !important;
  }

  .cust-container {
    width: 95%;
  }

  .config-swiper-content .config-img {
    aspect-ratio: 1 / 1;
  }

  .config-img .hover-text {
    padding: 1.5rem;
  }

  .pool-textbox h2 {
    font-size: 8vw;
  }


  .config-line {
    width: 90%;
  }

  .section-heading .location-title {
    font-size: 8vw;
  }

  .config-header {
    gap: 0.5rem;
  }

  .config-colum {
    padding: 0.5rem 0.8rem;
  }

  .section-heading .location-title {
    font-size: 6vw;
  }

  .amens-details {
    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.25rem;
  }

  .amens-details .amens-icon {
    width: 60px;
    height: 60px;
  }

  .amens-details .amens-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .amens-details .amens-txt {
    text-align: center;
    font-size: 0.75rem;
  }

  .amenities-carousel-mobile .owl-nav {
    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: 1.5rem auto auto auto;
  }

  .amenities-carousel-mobile .owl-nav button {
    width: 45px;
    height: 45px;
  }

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

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

  .amenities-contents {
    width: 100%;
  }

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

  .grid-content h2 {
    font-size: 8vw;
  }

  .cust-container1 {
    width: 100%;
  }

  .grid-images-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto auto;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .grid-content {
    grid-area: 1 / 1 / 2 / 3;
  }

  .grid-images1 {
    grid-area: 2 / 1 / 3 / 2;
  }

  .grid-images2 {
    grid-area: 2 / 2 / 3 / 3;
  }

  .grid-images3 {
    grid-area: 3 / 1 / 4 / 2;
  }

  .grid-images4 {
    grid-area: 3 / 2 / 4 / 3;
  }

  .grid-images5 {
    grid-area: 4 / 1 / 5 / 2;
  }

  .grid-images6 {
    grid-area: 4 / 2 / 5 / 3;
  }

  .grid-images7 {
    grid-area: 5 / 1 / 6 / 2;
  }

  .grid-images8 {
    grid-area: 5 / 2 / 6 / 3;
  }

  .fixed-button {
    display: none;
  }

  /* mobile toggle bar */

  .mobile-fixed-button {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 2%;
    left: 50%;
    z-index: 999;
    padding: 2rem 1rem 1rem 1rem;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    fill: rgba(255, 255, 255, 0.84);
    -webkit-filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
    /* backdrop-filter: blur(5px); */
  }

  .mobile-fixed-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    z-index: -1;
    left: 50%;
    /* background-color: #fff; */
    background: url(../assets/images/icons/toggle.svg) no-repeat center center / cover;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .mobile-fixed-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 85%;
    margin: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
  }

  .btn-middle-content {
    padding: 1rem;
    background-color: transparent;
    position: absolute;
    top: 10px;
    left: 50%;
    border-radius: var(--radius-full);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .btn-middle {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    border: none;
    outline: none;
    background-color: #ac883a;
  }

  .mobile-fixed-content .btn-fixed {
    width: 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: -7px;
    font-size: 1.1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 0.85rem;
  }

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

  /* mobile toggle bar */
}

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

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

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

  .overview-form {
    padding: 1.25rem 1.5rem 1.85rem 1.5rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

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


  .config-swiper-content .config-txt {
    gap: 0.75rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .config-swiper-content .config-txt span {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

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

  .gallery-swiper-container .swiper-nav .swiper-button {
    width: 45px;
    height: 45px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s 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;
  }

  /* mobile toggle bar */

  .btn-middle {
    width: 70px;
    height: 70px;
  }

  .mobile-fixed-content .btn-fixed {
    /* width: auto; */
    top: -7px;
    font-size: 0.9rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
  }

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

  /* mobile toggle bar */
}

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

label {
  display: inline-block;
  color: red;
}

#hubspotFormContainer .legal-consent-container .hs-form-booleancheckbox-display p {
  margin: 0;
  display: inline;
  color: #000;
  font-size: 18px;
}

#hubspotContactForm .legal-consent-container .hs-form-booleancheckbox-display p {
  margin: 0;
  display: inline;
  color: #000;
}