@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Semibold";
  src: url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #aac054;
  --secondary-color: #ccf334;
  --ternary-color: #50474a;
  --ternary-dark-color: #000000;
  --primary-background-color: #aac054;
  --secondary-background-color: #f7f9ee;
  --ternary-background-color: #f8fde3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  line-height: 1.1;
  color: black;
  font-family: "Gilroy-Regular";
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilroy-Semibold";
  color: var(--ternary-color);
}

h1 {
  font-size: 40px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}

p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ternary-color);
}

img {
  max-width: 100%;
  height: auto;
}

img,
iframe {
  display: block;
}

a {
  text-decoration: none;
  color: var(--ternary-color);
}

input[type="text"],
input[type="tel"],
input[type="submit"],
button.submit-btn,
select {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 18px 20px;
  font-weight: 500;
  font-size: 18px;
  display: block;
  border-radius: 20px;
  background-color: #f0f0f0;
  outline: none;
}
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="submit"]::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
input[type="submit"],
button.submit-btn {
  cursor: pointer;
  border-radius: 12px;
}

.container {
  width: 1170px;
  max-width: 95%;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
.container-slider {
  padding-left: 15px;
  padding-right: 15px;
}
.ct-dark {
  color: #353535 !important;
}
.text-center {
  text-align: center;
}
.btn {
  padding: 16px 14px;
  border-radius: 2px;
  font-weight: 500;
  border-radius: 12px;
}
.btn-center {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.btn-spacer {
  margin: 30px auto;
}
.btn-spacer-t {
  margin-top: 30px;
}
.btn-spacer-b {
  margin-bottom: 30px;
}
.btn-outline,
.btn-filled:hover {
  background-color: transparent;
  border: 1px solid var(--primary-background-color);
  color: var(--primary-color);
}
.btn-filled,
.btn-outline:hover {
  background-color: var(--primary-background-color);
  border: 1px solid var(--primary-background-color);
  color: white;
}
.btn-filled-filled {
  background-color: var(--primary-light-color);
  color: var(--primary-color);
}

.no-pad {
  padding: 0 !important;
}

/* .pad-spacer {
  padding: 0 30px;
} */

.text-light {
  font-family: "Gilroy-Regular";
  font-weight: 400;
}

/* POPUP */

.popup-active {
  overflow: hidden;
}
.modal-popup {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  inset: 0;
  z-index: 99999;
  display: none !important;
}
.popup-active .modal-popup {
  display: block;
}
.modal-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: auto;
}
.modal-inner {
  padding: 14px;
  position: relative;
  max-width: 480px;
  width: 100%;
}
.modal-popup .enquiry-form {
  background-color: white;
}
#modal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #222;
  box-shadow: none;
  border: 0;
  cursor: pointer;
}
#modal-close svg {
  fill: #fff;
}
#openModal,
.enquire-now {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
  background-color: #333;
  border: 0;
  padding: 13px;
  color: white;
  font-family: "Gilroy Semibold";
  cursor: pointer;
  display: none;
}
.section {
  padding: 50px 0;
}
.section-heading {
  margin-bottom: 25px;
}
.special-heading {
  margin-bottom: 45px;
}

/* HEADER */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}
header {
  padding: 5px 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo {
  height: 85px;
  width: auto;
}
.menu {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li a {
  font-size: 18px;
  text-transform: capitalize;
  font-family: "Gilroy-Semibold";
  color: white;
  padding: 5px 10px;
}
.menu li a:hover {
  color: black;
  color: var(--secondary-color);
}
.menu li.active a,
.menu li a.active {
  color: var(--secondary-color);
}
#hamburgerMenu {
  display: none;
}
.hamburger {
  position: relative;
  top: 0;
  left: 0;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 2px;
}
/* Animate to X when active */
.hamburger .bar:nth-child(1) {
  transform: rotate(0deg) translate(0, -11px);
}
.hamburger .bar:nth-child(3) {
  transform: rotate(0deg) translate(0, 11px);
}
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, -5px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, 6px);
}

/* HEADER TWO */

.header-two {
  background-color: white;
  padding: 0;
}
.header-two .menu li a {
  color: #50474a;
}

/* FOOTER */

footer {
  background-color: var(--primary-background-color);
  padding: 50px 0;
  text-align: center;
}
footer .container {
  padding-left: 15px;
  padding-right: 15px;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.f-head-top {
  margin-bottom: 6px;
}
.f-head-middle {
  margin-top: 16px;
  font-size: 22px;
}
footer p,
footer h4 {
  color: white;
}
.footer-top {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}
.footer-top p {
  font-size: 18px;
}

.footer-bottom-bar {
  border-top: 1px solid #ccc;
  padding: 15px 0;
  margin-top: 30px;
  font-size: 14px;
}

.footer-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-bar .powered-by a {
  color: #000;
  text-decoration: none;
}

.footer-bottom-bar .powered-by a:hover {
  text-decoration: underline;
}

.footer-bottom-bar .social-icons {
  display: flex;
  gap: 15px;
}

.footer-bottom-bar .social-icons img,
.footer-bottom-bar .social-icons svg {
  height: 25px;
  width: 25px;
  object-fit: contain;
}

/* ENQUIRY FORM */

.enquiry-form {
  padding: 45px 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  overflow: hidden;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.enquiry-form h3 {
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary-color);
  font-size: 30px;
}
.form-control label {
  font-size: 14px;
  display: block;
  line-height: 20px;
}
.form-control label input {
  margin-right: 8px;
}
.form-submit-btn {
  margin-top: 16px;
}
.submit-btn[type="submit"],
button.submit-btn {
  border: 0;
  max-width: 220px;
  margin: 0 auto;
  display: block;
  background-color: var(--primary-background-color);
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 14px;
}

form label.error,
.text-error {
  color: #ff6000;
  font-size: 16px;
  display: block;
}

.sticky-desktop {
  position: fixed;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 10;
  background-color: var(--primary-background-color);
  padding: 16px 10px;
  border-radius: 10px 0 0 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  box-shadow: 0px 0px 13.67px 0px rgba(0, 0, 0, 0.1607843137);
}
.sticky-desktop a,
.sticky-desktop svg {
  display: block;
  color: white;
}
.sticky-desktop a {
  padding: 26px 12px;
}
.sticky-desktop a:first-child {
  border-bottom: 1px solid #fff;
}
.sticky-desktop svg {
  width: 32px;
  height: 32px;
}
.mobile-sticky {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 32px;
  background-color: var(--primary-background-color);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  box-shadow: 0px 0px 13.67px 0px rgba(0, 0, 0, 0.1607843137);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: none;
}
.mobile-sticky::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  translate: 0 -50%;
  margin: 0 auto;
  height: 50%;
  width: 1px;
  background-color: white;
}
.mob-connect a {
  display: flex;
  align-items: center;
  color: white;
  gap: 6px;
  font-size: 16px;
}
.mob-connect svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* NEW SECTION */

.about-new-mobile {
  display: none;
}
.about-new {
  background-color: var(--secondary-background-color);
}
.about-new-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.about-new-lft {
  width: 55%;
}
.about-new-rgt {
  max-width: 40%;
}
.about-new-top {
  max-width: 520px;
  padding-top: 55px;
  background: transparent url("../assets/images/icons/quote-icon.webp")
    no-repeat;
  background-position: left 32px center;
  background-size: 180px;
}
.about-new-top h4 {
  color: #6e7f44;
  font-family: "Gilroy-SemiBold";
  line-height: 1.2;
  margin-bottom: 12px;
}
.about-new-top h5 {
  color: #95ad36;
  font-family: "Gilroy-Bold";
}
.about-new-bottom {
  margin-top: 40px;
  max-width: 500px;
}
.about-new-bottom p {
  font-size: 28px;
  color: #757575;
}
.about-new-desktop .about-new-rgt img {
  border-radius: 80px;
}

/* CARD SLIDER */

.count-slider {
  counter-reset: slide-counter;
}
.slide-card {
  position: relative;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  counter-increment: slide-counter;
  transition: translate 0.5s;
}
.slide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: RGBA(255, 255, 255, 0);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.58) 67%
  );
  pointer-events: none;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 32px 35px 35px;
  margin-left: auto;
}
.count-slider .card-content {
  padding: 10px 32px 35px 72px;
}
.card-content h4 {
  position: relative;
  color: var(--secondary-color);
  margin-bottom: 20px;
  max-width: none;
}
.count-slider .slide-card h4::before {
  position: absolute;
  top: 0;
  left: -50px;
  content: counter(slide-counter, decimal-leading-zero) ". ";
  font-weight: bold;
}
.card-content p {
  color: white;
  font-size: 20px;
  line-height: 1.2;
}
.card-content p strong {
  font-family: "Gilroy-SemiBold";
  font-weight: 600;
}
.card-heading {
  color: white;
}
.slider-theme-bg {
  background-color: var(--ternary-background-color);
  border-radius: 24px;
  padding: 26px 0;
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 0;
  width: 100%;
}
.smart-slider .slider-theme-bg {
  background-color: #f6f5f3;
}
.container-inner {
  position: relative;
  padding: 26px 0;
}
.special {
  position: relative;
}
.special .card-heading {
  margin-bottom: 20px;
}

.container-slider .owl-stage {
  padding-top: 10px;
  padding-bottom: 10px;
}
.owl-dots.disabled:empty {
  display: none !important;
}
.container-slider .owl-theme .owl-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.container-slider .owl-theme .owl-dots .owl-dot span {
  background-color: #c0b7a6;
  margin: 0;
}
.container-slider .owl-theme .owl-dots .active span {
  background-color: #50474a;
}
.custom-arrows .owl-nav {
  margin-top: 0;
}
.custom-arrows .owl-nav button {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: white !important;
  border-radius: 50% !important;
  margin-top: -40px !important;
}
.custom-arrows .owl-nav button.owl-prev {
  left: 0;
}
.custom-arrows .owl-nav button.owl-next {
  left: unset;
  right: 0;
}
.align-arrows .owl-nav button {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.align-arrows .owl-nav button.owl-prev {
  left: -20px;
}
.align-arrows .owl-nav button.owl-next,
.align-arrows-v2 .owl-nav button.owl-next {
  right: -20px;
}
.align-arrows-v2 .owl-nav button {
  margin-top: 0 !important;
}
.custom-arrows .owl-nav button svg {
  width: 18px;
  height: 18px;
}

.reasons-sec {
  background-color: var(--secondary-background-color);
}

.enquire-form .enquiry-form {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
}

.typical-days .card-content {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.slide-label {
  margin-bottom: 15px;
}
.slide-label h5 {
  background-color: var(--primary-background-color);
  color: white;
  padding: 7px 12px;
  border-radius: 8px;
  display: inline-block;
  vertical-align: top;
  font-size: 22px;
}
.typical-days .card-content p {
  font-size: 24px;
}

.community .card-content {
  /* max-width: 250px; */
  margin-left: 0;
}
.community .card-heading {
  font-size: 22px;
}

.container-inner > h4,
.container-inner > .container > h4 {
  color: var(--primary-color);
  margin-bottom: 14px;
}
.container-inner > p,
.container-inner > .container > p {
  font-size: 24px;
  color: #8a8a8a;
}
.container-inner .owl-carousel {
  margin-top: 20px;
}
.smart-slider .owl-stage {
  display: flex;
}
.smart-slider .slide-card::before {
  display: none;
}
.smart-slider .slide-card {
  background-color: white;
  border-radius: 30px;
  padding: 30px;
  height: 100%;
}
.smart-slider .slide-card:hover {
  translate: unset;
}
.smart-slider .slide-card img {
  width: auto !important;
  max-height: 100px;
  height: auto;
}
.smart-slider .card-content {
  position: static;
  margin: 30px 0 0;
  padding: 0;
  max-width: 200px;
}
.smart-slider .card-caption {
  color: black;
}
.smart-slider .owl-theme .owl-dots {
  margin-top: 20px;
}

.slider-spacer {
  background-color: white;
  height: 20px;
  position: relative;
  z-index: 1;
}

.tabulation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto 30px auto;
}
.tabulation button {
  background-color: white;
  border: 0;
  font-size: 24px;
  color: #c0b7a6;
  cursor: pointer;
  border-bottom: 2px solid white;
  padding-bottom: 10px;
  font-weight: bold;
}
.tabulation button.current {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.tab-content img,
.tab-content iframe {
  display: block;
  margin: 0 auto;
}
.tab-content iframe {
  width: 100%;
  height: 450px;
}

.living-experts {
  background-color: var(--ternary-background-color);
}
.living-experts .developer-para {
  margin-bottom: 50px;
}

.floor-plan-card {
  text-align: center;
}
.floor-plan-card h5 {
  margin-top: 30px;
  font-family: "Gilroy-Regular";
  font-weight: 400;
}

#floor-plan-slider .owl-nav button {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
#floor-plan-slider .owl-nav button.owl-prev {
  left: -45px;
}
#floor-plan-slider .owl-nav button.owl-next {
  right: -45px;
}

#floor-plans a.btn {
  width: auto;
  max-width: 310px;
  text-align: center;
}

.acc-container {
  border-top: 1px solid #8a8a8a;
  margin-top: 20px;
}
.acc {
  position: relative;
}
.acc.active {
  border-bottom: 1px solid #8a8a8a;
  padding-bottom: 20px;
}
.acc-head {
  padding: 25px 35px 20px 0;
  cursor: pointer;
  border-bottom: 1px solid #8a8a8a;
}
.acc-head.active {
  border-color: transparent;
  margin-bottom: 0;
}
.acc-head::before,
.acc-f-head::before {
  content: "";
  position: absolute;
  bottom: -13px;
  right: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='29' height='19' viewBox='0 0 29 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3L14.5 14.5L26 3' stroke='%23AAC054' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: white;
}
.acc-head.active::before,
.acc-f-head.active::before {
  bottom: -13px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='29' height='20' viewBox='0 0 29 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 16.5L14.5 5L3 16.5' stroke='%23AAC054' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.acc-head button {
  font-weight: bold;
  border: 0;
  background-color: transparent;
  color: #50474a;
  font-size: 22px;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
.acc-content {
  display: none;
}
#faq a.btn {
  width: auto;
  max-width: 180px;
  text-align: center;
}

.sf-lft img {
  border-radius: 30px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.acc-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.acc-f {
  position: relative;
}
.acc-f-head {
  background-color: #f6f5f3;
  border-radius: 30px;
  padding: 30px;
  cursor: pointer;
}
.acc-f-head.active {
  border-radius: 30px 30px 0 0;
}
.acc-f-head button {
  border: 0;
  width: 100%;
  text-align: left;
  background-color: transparent;
  color: var(--primary-color);
  font-size: 26px;
  font-family: "Gilroy-Semibold";
  cursor: pointer;
}
.acc-f-content {
  display: none;
  background-color: #f6f5f3;
  border-radius: 0 0 30px 30px;
  padding: 20px 60px 30px 30px;
}
.acc-f-head.active::before,
.acc-f-head::before {
  bottom: 20px;
  right: 20px;
}
.acc-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.acc-col {
  display: flex;
  align-items: center;
  gap: 40px;
}
.acc-col > img {
  max-width: 46px;
}
.acc-col h6 {
  font-size: 18px;
  color: black;
}

.developer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
.developer-logo {
  max-width: 240px;
}
.developer-top > h3 {
  max-width: 250px;
}
.developer-para {
  margin-bottom: 30px;
}
.developer-para p {
  margin-bottom: 15px;
}
#developer-slider .owl-stage {
  display: flex;
}
#developer-slider .owl-item {
  padding: 5px;
}
.developer-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
}
.developer-card .card-img {
  height: 200px;
  object-fit: cover;
}
.owl-carousel .owl-item .dev-card-inner .logo-img {
  width: auto;
  margin-bottom: 30px;
}
.dev-card-inner {
  padding: 30px 20px;
}
.dev-card-inner h5 {
  font-family: "Gilroy-Regular";
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
}
div#developer-slider .owl-nav button {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.more-developer-para {
  margin-top: 30px;
}

/* FLOOR PLAN - PAGE */

section.first {
  margin-top: 95px;
}
.apartment {
  background-color: #f9ffde;
  padding: 100px 0 60px 0;
}
.appt-header {
  border-bottom: 1px solid #a8a8a8;
  padding-bottom: 30px;
}
.appt-header h3 {
  margin-bottom: 12px;
}

.appt-features {
  margin-top: 50px;
}
.appt-features ul {
  list-style: none;
  display: flex;
  gap: 30px 0;
}
.appt-features h6 {
  font-family: "Gilroy-Regular";
  font-weight: 400;
  color: #343434;
  font-size: 24px;
  margin-bottom: 8px;
}
.appt-features p {
  font-family: "Gilroy-Semibold";
  font-weight: 600;
  color: #343434;
  font-size: 22px;
}
.appt-features li {
  padding: 0 35px;
  border-left: 1px solid #aac054;
}
.appt-features li:first-child {
  padding-left: 0;
  border-left: 0;
}
.appt-features li:last-child {
  padding-right: 0;
}
.f-plan {
  padding: 60px 0;
}
.f-plan-inner {
  overflow: hidden;
}
.f-plan-wrapper {
  display: flex;
  width: 200%;
}
.f-plan-div {
  width: 100%;
}
.f-plan-div img {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
}

/* FAQ PAGE */

.faq-section {
  margin-top: 120px;
}
.faq-row h3 {
  color: #3a3a3a;
  line-height: 1.2;
  margin-bottom: 22px;
}
.faq-row p {
  color: #828282;
  font-size: 22px;
  line-height: 1.3;
}
.faq-row {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 25px;
  margin-bottom: 35px;
}
.faq-row ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}
.faq-row ul li {
  position: relative;
  padding-left: 25px;
  font-size: 20px;
  line-height: 1.3;
  color: #828282;
}
.faq-row ul li:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 12px;
}
.faq-row ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #aac054;
  border-radius: 50%;
}
.faq-spacer p:not(:last-child) {
  margin-bottom: 22px;
}
.faq-row strong {
  color: #515151;
}
.faq-row.no-border {
  border-color: transparent;
}

main.cms-pg section .content-area {
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

main.cms-pg section .content-area a.btn {
  width: auto;
  max-width: 123px;
}

@media (max-width: 1024px) {
  .f-plan-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 991.98px) {
  /* Styles for medium devices (tablets) */
  .site-logo {
    max-height: 100px;
  }
  #hamburgerMenu {
    display: block;
  }
  header nav {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 99;
    display: none;
    max-width: 95%;
    margin: 0 auto;
  }
  .menu {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
  .menu li a {
    text-align: center;
    color: #000;
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .header-two nav {
    position: static;
    display: block !important;
    margin: 0;
  }
  .header-two .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 30px;
  }
  .section-heading {
    padding-inline: 15px;
  }
  .sticky-desktop {
    display: none;
  }
  .mobile-sticky {
    display: flex;
  }
  .about-new-mobile {
    display: block;
    padding-bottom: 0;
  }
  .about-new-desktop {
    display: none;
  }
  .about-new-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-new-top {
    max-width: 460px;
    background-position: center;
    margin: 0 auto;
  }
  .about-new-rgt > img {
    margin-top: 30px;
  }
  .about-new-wrapper > div,
  .about-new-rgt {
    width: 100%;
    max-width: 100%;
  }
  .about-new-rgt {
    background-color: white;
    padding-bottom: 50px;
    border-bottom: 1px solid #b5b6ae;
  }
  .about-new-bottom {
    text-align: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-new-bottom p {
    font-size: 24px;
    line-height: 1.2;
  }
  .sf-lft {
    margin-bottom: 30px;
  }
  .appt-features h6 {
    font-size: 20px;
  }
  .appt-features p {
    font-size: 18px;
  }
  section.first {
    margin-top: 110px;
  }
  body .ct-club-title {
    max-width: 645px;
    margin: 0 auto;
    text-align: right;
    line-height: 0.96;
    background: transparent
      url(../assets/images/icons/rounded-arrow-vector.webp) no-repeat;
    padding-bottom: 90px;
    background-position: right 350px bottom 48px;
    background-size: 110px;
  }
  .ct-club-title span {
    font-size: 55px;
  }
}

@media (max-width: 767px) {
  .ct-mobile {
    display: block;
  }
  .ct-desktop {
    display: none;
  }
  .sticky-desktop {
    display: none;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .developer-container {
    padding: 0;
    max-width: 100%;
    width: 100%;
  }
  .smart-slider .slider-theme-bg {
    top: 0;
    bottom: 0;
  }
  .tabulation {
    max-width: 500px;
    justify-content: flex-start;
  }
  .acc-grid,
  .acc-col {
    gap: 24px;
  }
  .acc-f-head button {
    font-size: 24px;
    max-width: 190px;
  }
  .acc-col > img {
    max-width: 42px;
  }
  .appt-features li {
    padding: 0 25px;
  }
  .appt-features h6 {
    font-size: 18px;
  }
  .appt-features p {
    font-size: 20px;
  }
  .appt-features .v2 {
    flex-wrap: wrap;
  }
  .appt-features .v2 li {
    padding-left: 40px;
    width: 230px;
  }
  .appt-features .v2 li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
    width: 180px;
  }
  .smart-slider .align-arrows-v2 .card-content {
    max-width: 100%;
  }
  .dev-vector {
    display: none;
  }
}

@media (max-width: 478px) {
  .appt-features li {
    padding: 0 20px;
  }
  .appt-features h6 {
    font-size: 15px;
  }
  .appt-features p {
    font-size: 16px;
  }
  .appt-features .v2 li {
    width: 50%;
  }
  .appt-features .v2 li:nth-child(odd) {
    width: 48%;
  }
}

@media (max-width: 399px) {
  .appt-features li {
    padding: 0 16px;
  }
  .appt-features h6 {
    font-size: 14px;
  }
  .appt-features p {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .sticky-desktop {
    display: block;
  }
  .ct-mobile {
    display: none;
  }
  .ct-desktop {
    display: block;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .pad-spacer {
    padding: 0 0;
  }
  .container-slider {
    width: 100%;
    max-width: 100%;
    padding: 0 0 0 30px;
  }
  .container-slider .owl-stage {
    padding-left: 20px !important;
  }
  .container-slider .no-pad-slider .owl-stage {
    padding: 0 !important;
  }
  .f-head-middle {
    font-size: 25px;
  }
  .slide-card {
    height: 500px;
  }
  .custom-arrows .owl-nav button {
    width: 50px;
    height: 50px;
  }
  .align-arrows:not(.align-arrows-v2) .owl-nav button.owl-next {
    right: 0;
  }
  .custom-arrows .owl-nav button svg {
    width: 24px;
    height: 24px;
  }
  .card-content h4 {
    max-width: 250px;
  }

  .enquire-form .form-wrapper {
    flex-direction: row;
  }
  .enquire-form .form-wrapper .form-control:not(.form-submit-btn) {
    flex: 1;
  }
  .enquire-form .form-wrapper .form-submit-btn {
    margin-top: 0;
  }

  .tabulation button {
    font-size: 30px;
  }

  #floor-plan-slider .owl-nav button.owl-prev {
    left: -20px;
  }
  #floor-plan-slider .owl-nav button.owl-next {
    right: -20px;
  }

  #experts-slider .card-content h4 {
    max-width: 380px;
  }

  div#developer-slider {
    margin: 0 -10px;
  }
  .dev-card-inner {
    padding: 40px;
  }
  .developer-top {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-bottom: 50px;
  }
  .developer-top > h3 {
    max-width: none;
    flex: 1;
  }
  .developer-card .card-img {
    height: 250px;
  }
  .developer-logo {
    max-width: 240px;
  }
  .dev-card-inner h5 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .container-inner .container h4,
  .container-inner .container p {
    padding: 0 15px;
  }

  .ct-faq-title,
  .ct-fp-title,
  .ct-design-title,
  .ct-spaces-title,
  .ct-club-title,
  .ct-reason-title,
  .ct-day-title,
  .ct-healthcare-title {
    font-size: 70px;
    color: var(--primary-color);
  }

  .ct-club-title,
  .ct-healthcare-title,
  .ct-dev-title {
    color: #94a841;
  }

  .ct-spaces-title {
    line-height: 0.9;
  }

  .ct-faq-title,
  .ct-spaces-title,
  .ct-day-title,
  .ct-healthcare-title {
    font-family: "Gilroy-Regular";
  }

  .ct-healthcare-title {
    font-weight: 400;
  }

  .ct-fp-title,
  .ct-spaces-title,
  .ct-club-title,
  .ct-reason-title,
  .ct-dev-title span {
    font-family: "Gilroy-Bold";
    color: #94a841;
  }
  .ct-fp-title span,
  .ct-spaces-title span,
  .ct-club-title span,
  .ct-club-title span,
  .ct-reason-title span {
    font-family: "Gilroy-Regular";
  }
  .ct-club-title {
    font-family: "Gilroy-SemiBold";
  }
  .ct-spaces-title span,
  .ct-dev-title {
    font-size: 60px;
    font-family: "Gilroy-Bold";
  }
  .ct-healthcare-title span {
    font-family: "Gilroy-Bold";
  }
  .ct-reason-title span,
  .ct-day-title {
    font-weight: 400;
  }
  .ct-day-title {
    line-height: 0.9;
    color: #94a841;
  }
  .ct-day-title strong {
    position: relative;
  }
  .ct-day-title strong::before {
    content: "";
    position: absolute;
    top: -7px;
    right: -32px;
    background: transparent
      url("../assets/images/icons/bright-line-vector.webp") no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
  }
  .ct-design-title {
    font-family: "Gilroy-Semibold";
    font-weight: 600;
    line-height: 0.9;
    padding-bottom: 50px;
  }
  .ct-design-title span {
    font-family: "Gilroy-Bold";
    font-weight: bold;
    background: transparent
      url("../assets/images/icons/green-bend-line-2-vector.webp") no-repeat;
    background-position: right 10px bottom 20px;
    background-size: 160px;
    padding-bottom: 40px;
  }
  .ct-reason-title strong,
  .ct-day-title strong {
    font-family: "Gilroy-Bold";
  }

  .ct-dev-title {
    font-family: "Gilroy-Regular";
    font-weight: 400;
    line-height: 0.95;
  }

  .ct-healthcare-title {
    line-height: 0.8;
  }

  .ct-reason-title {
    line-height: 0.8;
  }
  .ct-reason-title span {
    font-size: 40px;
  }

  .ct-club-title {
    max-width: 730px;
    margin: 0 auto;
    text-align: right;
    line-height: 0.96;
    background: transparent
      url("../assets/images/icons/rounded-arrow-vector.webp") no-repeat;
    padding-bottom: 40px;
  }
  .stay-fit-wrapper {
    margin-top: -20px;
  }
  .ct-reason-title {
    margin-bottom: 20px;
  }
  .ct-reason-title strong {
    display: inline-block;
    background: transparent
      url("../assets/images/icons/green-bend-line-vector.webp") no-repeat;
    padding-bottom: 40px;
    background-size: 200px;
    background-position: left 20px bottom 0px;
  }

  .ct-healthcare-title span {
    font-size: 50px;
  }

  .ct-healthcare-title strong {
    position: relative;
    display: inline-block;
    padding-bottom: 40px;
  }
  .ct-healthcare-title img {
    position: absolute;
    top: -18px;
    bottom: 0;
    left: -26px;
    right: 0;
    max-width: 120%;
  }

  .ct-elixir-title {
    line-height: 1.1;
  }
  .ex-top {
    font-size: 50px;
  }
  .ex-mid {
    position: relative;
    font-size: 40px;
    color: var(--primary-color);
  }
  .ex-bottom {
    font-family: "Gilroy-Bold";
    font-size: 25px;
  }

  .ct-elixir-title {
    line-height: 1;
    display: flex;
    flex-direction: column;
  }
  .ex-mid {
    font-size: 60px;
    color: var(--primary-color);
    display: block;
    width: calc(300px + 200px);
  }
  .ex-vector {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  .ct-elixir-title br {
    display: none;
  }
}

@media (min-width: 992px) {
  /* Styles for large devices and up */
  .menu li a:hover {
    color: var(--secondary-color);
  }
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 54px;
  }
  h3 {
    font-size: 44px;
  }
  h4 {
    font-size: 36px;
  }
  h5 {
    font-size: 30px;
  }
  h6 {
    font-size: 25px;
  }
  p {
    font-size: 16px;
    line-height: 1.1;
  }
  .footer-top p {
    font-size: 24px;
    line-height: 1.3;
  }
  .section-heading {
    margin-bottom: 50px;
  }
  .stay-fit-wrapper {
    display: flex;
    gap: 30px;
  }
  .sf-lft,
  .sf-rgt {
    width: 49%;
  }
  div#developer-slider .owl-nav button.owl-prev {
    left: -20px;
  }
  div#developer-slider .owl-nav button.owl-next {
    right: -20px;
  }
  .appt-header h3 {
    font-size: 80px;
  }
  .appt-header h4 {
    font-family: "Gilroy-Regular";
    font-weight: 400;
    color: #393939;
    font-size: 55px;
  }
  .appt-features h6 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .appt-features p {
    font-size: 24px;
  }
  .developer-para h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .developer-logo {
    max-width: 300px;
  }
}

@media (min-width: 1024px) {
  /* Styles for extra large devices and up */
  .menu li a {
    font-size: 17px;
  }
  .card-content h4 {
    font-size: 30px;
  }
  .slide-card:hover {
    translate: 0 -10px;
  }
  .slide-label h5 {
    font-size: 25px;
  }
  .slider-theme-bg,
  .smart-slider {
    border-radius: 0;
  }
  .acc-head button {
    font-size: 24px;
  }
  .ct-design-title span {
    padding-bottom: 20px;
    background-position: right 14px bottom;
    background-size: 160px;
  }
  .ct-club-title {
    background-position: right 345px bottom 10px;
    background-size: 100px;
  }

  .ct-reason-title {
    margin-bottom: 20px;
  }
  .ct-reason-title span {
    font-size: 50px;
  }
  .ct-reason-title strong {
    padding-bottom: 50px;
    background-size: 240px;
    background-position: left 20px bottom 0px;
  }
  .ct-day-title strong::before {
    top: -4px;
    right: -32px;
  }

  .ct-healthcare-title img {
    top: -28px;
    left: -36px;
  }

  .developer-top {
    margin-bottom: 20px;
  }

  .ex-top {
    font-size: 70px;
  }
  .ex-mid {
    font-size: 60px;
    color: var(--primary-color);
  }
  .ex-bottom {
    font-family: "Gilroy-Bold";
    font-size: 35px;
  }
}

@media (min-width: 1280px) {
  #floor-plan-slider .owl-nav button.owl-prev {
    left: -62px;
  }
  #floor-plan-slider .owl-nav button.owl-next {
    right: -62px;
  }
  .acc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ct-faq-title,
  .ct-fp-title,
  .ct-design-title,
  .ct-spaces-title,
  .ct-club-title,
  .ct-reason-title,
  .ct-day-title,
  .ct-healthcare-title {
    font-size: 100px;
  }

  .ct-club-titl {
    font-size: 102px;
  }

  .ct-healthcare-title span {
    font-size: 80px;
  }

  .ct-club-title span {
    font-size: 70px;
  }

  .ct-design-title span {
    padding-bottom: 25px;
    background-position: right 24px bottom;
    background-size: 240px;
  }
  .ct-club-title {
    background-position: left 118px bottom 0px;
    background-size: 130px;
  }

  .ct-reason-title {
    line-height: 0.6;
    margin-bottom: 20px;
  }
  .ct-reason-title span {
    font-size: 60px;
  }

  .ct-reason-title strong {
    padding-bottom: 60px;
    background-size: 290px;
    background-position: left 20px bottom 0px;
  }
  .ct-day-title strong::before {
    top: 10px;
    right: -32px;
  }

  .ct-healthcare-title {
    line-height: 0.7;
  }
}

@media (min-width: 1366px) {
  /* Styles for extra large devices and up */
  #floor-plan-slider .owl-nav button.owl-prev {
    left: -90px;
  }
  #floor-plan-slider .owl-nav button.owl-next {
    right: -90px;
  }
}

@media (min-width: 1400px) {
  /* Styles for very large screens and up */
  p {
    font-size: 20px;
    line-height: 1.2;
  }
}
