@font-face {
  font-family: "fahkwanglight";
  src: url("../fonts/fahkwang-light-webfont.woff2") format("woff2"), url("../fonts/fahkwang-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "fahkwangregular";
  src: url("../fonts/fahkwang-regular-webfont.woff2") format("woff2"), url("../fonts/fahkwang-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gt_super_displaylight";
  src: url("../fonts/gt-super-display-light-webfont.woff2") format("woff2"), url("../fonts/gt-super-display-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "k2dlight";
  src: url("../fonts/k2d-light-webfont.woff2") format("woff2"), url("../fonts/k2d-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "acumin_prothin";
  src: url("../fonts/acumin-thin-webfont.woff2") format("woff2"), url("../fonts/acumin-thin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "camptonlight";
  src: url("../fonts/camptonlight-webfont.woff2") format("woff2"), url("../fonts/camptonlight-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "camptonbook";
  src: url("../fonts/camptonbook-webfont.woff2") format("woff2"), url("../fonts/camptonbook-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.header {
  position: relative;
  z-index: 2;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 0 0;
  position: relative;
}
@media (max-width: 599px) {
  .header__inner {
    flex-direction: row-reverse;
  }
}
.header__inner .menu {
  width: 55px;
  height: 55px;
}
.header__inner .menu img {
  width: 100%;
}
.header__inner .brand {
  width: 146px;
  position: absolute;
  left: 50%;
  margin-left: -73px;
}
@media (max-width: 599px) {
  .header__inner .brand {
    left: 20px;
    margin-left: 0;
  }
}
.header__inner .brand img {
  width: 100%;
}
.header__inner .phone-number {
  font-family: "fahkwangregular";
  color: #E6ffCB;
  font-size: 1rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 768px) {
  .header__inner .phone-number {
    display: none;
  }
}
.header__inner .phone-number .link {
  font-family: "fahkwangregular";
  color: #E6ffCB;
  font-size: 1rem;
  text-decoration: none;
}
.header__inner .phone-number .link:hover {
  opacity: 0.8;
}
.header__inner .call-me {
  display: none;
}
@media (max-width: 768px) {
  .header__inner .call-me {
    display: none;
  }
}
.header__inner .call-me .link {
  font-family: "fahkwangregular";
  color: #E6ffCB;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
}
.header__inner .call-me .link:hover {
  opacity: 0.8;
}
.header #menu {
  background: #20695E;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  text-align: center;
  top: 0;
  transition: all 0.7s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 99;
}
.header #menu.open {
  opacity: 1;
  visibility: visible;
}
.header #menu.open li:nth-child(1) {
  animation-delay: 0.1s;
}
.header #menu.open li:nth-child(2) {
  animation-delay: 0.2s;
}
.header #menu.open li:nth-child(3) {
  animation-delay: 0.3s;
}
.header #menu.open li:nth-child(4) {
  animation-delay: 0.4s;
}
.header #menu.open li:nth-child(5) {
  animation-delay: 0.5s;
}
.header #menu.open li:nth-child(6) {
  animation-delay: 0.6s;
}
.header #menu.open li:nth-child(7) {
  animation-delay: 0.7s;
}
.header #menu.open li:nth-child(8) {
  animation-delay: 0.8s;
}
.header #menu.open li:nth-child(9) {
  animation-delay: 0.9s;
}
.header #menu.open li:nth-child(10) {
  animation-delay: 1s;
}
.header #menu.open li {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.header #menu .close-icon {
  width: 45px;
  height: 45px;
  display: block;
  position: absolute;
  top: 5%;
  right: 5%;
}
.header #menu .close-icon img {
  width: 100%;
}
.header #menu .overlay-menu {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px;
  min-height: 100dvh;
  align-items: center;
}
@media (max-width: 599px) {
  .header #menu .overlay-menu {
    grid-template-columns: 1fr;
  }
}
.header #menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
.header #menu ul:hover a {
  opacity: 0.5;
}
.header #menu ul li.active a {
  color: #FFB395;
}
.header #menu ul a {
  -webkit-transform: translateZ(0);
  transition: opacity 0.3s ease-in-out;
  font-family: "k2dlight";
  font-size: 2rem;
  color: #F9F8EE;
  text-decoration: none;
}
.header #menu ul a:hover {
  opacity: 1;
}
.header #menu .main-nav {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.header #menu .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header #menu .main-nav a {
  color: #E6ffCB;
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 1rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}
.header #menu .main-nav a:first {
  padding-top: 0;
}
.header #menu .menu-footer {
  padding: 2rem;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}
.header #menu .menu-footer ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header #menu .menu-footer ul li {
  display: inline;
  margin: 0 1rem;
}
.header #menu .menu-footer a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}
.header #menu .phone-number {
  font-family: "k2dlight";
  color: #E6ffCB;
  font-size: 1.8rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.header #menu .phone-number .link {
  font-family: "k2dlight";
  color: #E6ffCB;
  font-size: 1.8rem;
  text-decoration: none;
}
.header #menu .phone-number .link:hover {
  opacity: 0.8;
}

.footer {
  background-color: #20695E;
  padding: 50px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 20px;
  }
}
.footer__logo {
  width: 145px;
}
.footer__logo img {
  width: 100%;
}
.footer__links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer__links li a {
  color: #F4F2ED;
  text-decoration: none;
  font-family: "fahkwangregular";
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.footer__text {
  color: #f3c9b9;
  text-align: center;
  font-family: "k2dlight";
  font-size: 2rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer__text {
    font-size: 22px;
  }
}
.footer__srkp-logo {
  width: 150px;
}
.footer__srkp-logo img {
  width: 100%;
}
.footer__copyright-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  border-color: #FAFFDF;
  border-style: solid;
  border-width: 1px 0 0 0;
}
@media (max-width: 768px) {
  .footer__copyright-footer {
    flex-direction: column;
  }
}
.footer__copyright-footer .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer__copyright-footer .links {
    flex-wrap: wrap;
  }
}
.footer__copyright-footer .links a {
  text-decoration: none;
  text-transform: uppercase;
  color: #F4F2ED;
  font-family: "fahkwangregular";
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer__copyright-footer .links a {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer__copyright-footer .links:last-child {
    padding-top: 20px;
  }
}
.footer .floatingbutton {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  background-color: #F29265;
}
@media (max-width: 768px) {
  .footer .floatingbutton {
    display: grid;
  }
}
.footer .floatingbutton a {
  text-align: center;
  width: 100%;
  display: block;
  color: #F9F8EE;
  font-size: 22px;
  font-family: "k2dlight";
  text-transform: uppercase;
  padding: 10px 0;
  border-right: rgba(255, 255, 255, 0.8) solid 1px;
  text-decoration: none;
}
.footer .floatingbutton a:last-child {
  border-right: 0;
}
.footer .floatingbutton a:hover {
  background-color: rgba(32, 105, 94, 0.3);
  text-decoration: none;
}
.footer .social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}
.footer .social-media a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F9F8EE;
  border: #F9F8EE solid 1px;
  text-decoration: none;
  border-radius: 100px;
}
.footer .social-media a:hover {
  text-decoration: none;
  background-color: #F9F8EE;
  color: #20695E;
}

.project-comporntent {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.project-comporntent__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}
.project-comporntent__header .heading-h1 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
}
.project-comporntent__body {
  width: 100%;
}
.project-comporntent__body .product-article {
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
}
.project-comporntent__body .product-article .figure {
  position: absolute;
  left: 0;
  top: 20%;
  width: 400px;
  z-index: 1;
}
@media (max-width: 768px) {
  .project-comporntent__body .product-article .figure {
    width: 60%;
  }
}
.project-comporntent__body .product-article .details {
  position: absolute;
  top: 10%;
  left: 10%;
  background-color: #EBE4DE;
  width: 70%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .project-comporntent__body .product-article .details {
    position: relative;
    width: 100%;
    top: 23%;
    left: 0;
    padding: 0 0 50px 0;
  }
}
.project-comporntent__body .product-article .details__inner {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .project-comporntent__body .product-article .details__inner {
    width: 80%;
  }
}
.project-comporntent__body .product-article .details__inner .heading-h2 {
  font-family: "fahkwangregular";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7B5841;
  text-transform: uppercase;
}
.project-comporntent__body .product-article .details__inner .heading-h1 {
  font-family: "k2dlight";
  font-size: 42px;
  font-weight: 400;
  color: #5C5C5C;
}
.project-comporntent__body .product-article .details__inner .paragraph-text {
  font-family: "acumin_prothin";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
}
.project-comporntent__body .product-article .details__inner .btn-explore {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 18px;
  letter-spacing: 2.4px;
  font-weight: 400;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 30px 13px 30px;
  border: 0;
  border-radius: 100px;
}
.project-comporntent__body .product-article .details__inner .btn-explore:hover {
  opacity: 0.8;
}
.project-comporntent__body .product-article .product-carousel {
  position: absolute;
  right: 5%;
  top: 20%;
  width: 400px;
  height: 500px;
}
@media (max-width: 768px) {
  .project-comporntent__body .product-article .product-carousel {
    width: 35%;
    right: 0;
    top: 10%;
  }
}
.project-comporntent__body .product-article .product-carousel .item {
  width: 400px;
  height: 500px;
}
@media (max-width: 768px) {
  .project-comporntent__body .product-article .product-carousel .item {
    width: auto;
    height: auto;
  }
}
.project-comporntent__body .product-article .product-carousel .item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-comporntent__body .product-article .svg-figure {
  position: absolute;
  top: 3%;
  right: 22%;
  width: 200px;
  height: 200px;
  z-index: 2;
  animation: loading-spinner 100s linear infinite;
}
@media (max-width: 768px) {
  .project-comporntent__body .product-article .svg-figure {
    display: none;
  }
}
@keyframes loading-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .project-comporntent__body .dasktop-view {
    display: none;
    min-height: auto;
  }
}
.project-comporntent__body .mobile-view {
  display: none;
  padding: 150px 0 50px 0;
}
@media (max-width: 768px) {
  .project-comporntent__body .mobile-view {
    display: block;
    padding: 0 20px 50px 20px;
    margin-top: 20px;
  }
}
.project-comporntent__body .mobile-view .ongoing-box figure {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin: 0 0 50px 0;
}
.project-comporntent__body .mobile-view .ongoing-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.project-comporntent__body .mobile-view .ongoing-box .details {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .project-comporntent__body .mobile-view .ongoing-box .details {
    position: relative;
    width: 100%;
    top: 23%;
    left: 0;
    padding: 0 0 50px 0;
  }
}
.project-comporntent__body .mobile-view .ongoing-box .details__inner {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .project-comporntent__body .mobile-view .ongoing-box .details__inner {
    width: 80%;
  }
}
.project-comporntent__body .mobile-view .ongoing-box .details__inner .heading-h2 {
  font-family: "fahkwangregular";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7B5841;
  text-transform: uppercase;
}
.project-comporntent__body .mobile-view .ongoing-box .details__inner .heading-h1 {
  font-family: "gt_super_displaylight";
  font-size: 32px;
  font-weight: 400;
  color: #5C5C5C;
}
.project-comporntent__body .mobile-view .ongoing-box .details__inner .paragraph-text {
  font-family: "gt_super_displaylight";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
}
.project-comporntent__body .mobile-view .ongoing-box .details__inner .btn-explore {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 18px;
  letter-spacing: 2.4px;
  font-weight: 400;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 30px 13px 30px;
  border: 0;
  border-radius: 100px;
}
.project-comporntent__body .mobile-view .ongoing-box .details__inner .btn-explore:hover {
  opacity: 0.8;
}
.project-comporntent__body .mobile-view .other-box {
  background-color: #ebe3de;
  position: relative;
  padding: 10px 0 0 0;
  min-height: 80vh;
}
.project-comporntent__body .mobile-view .other-box figure {
  margin: 0 0 0 10px;
  width: 100%;
  position: relative;
}
@media (max-width: 375px) {
  .project-comporntent__body .mobile-view .other-box figure {
    height: 230px;
  }
}
.project-comporntent__body .mobile-view .other-box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-comporntent__body .mobile-view .other-box figure figcaption {
  background-color: #F37255;
  padding: 14px 20px 12px 20px;
  font-family: "fahkwangregular";
  font-size: 18px;
  color: #EBE4DE;
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 0;
}
.project-comporntent__body .mobile-view .other-box .details {
  height: 40%;
  padding: 20px;
}
.project-comporntent__body .mobile-view .other-box .details .heading-h2 {
  font-family: "k2dlight";
  font-size: 32px;
  font-weight: 400;
  color: #7B5638;
  padding-bottom: 0;
}
.project-comporntent__body .mobile-view .other-box .details .heading-h3 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 1.4rem;
  font-weight: 400;
  padding-bottom: 5px;
}
.project-comporntent__body .mobile-view .other-box .details .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #20695E;
  padding-bottom: 5px;
}
.project-comporntent__body .mobile-view .other-box .details ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.project-comporntent__body .mobile-view .other-box .details ul li {
  font-family: "k2dlight";
  font-size: 18px;
  font-weight: 400;
  color: #20695E;
}
.project-comporntent__body .mobile-view .other-box .details .explore-btn {
  position: relative;
  margin: auto;
  padding: 19px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #20695E;
  font-family: "k2dlight";
  margin-top: 10px;
  display: inline-block;
  border-radius: 100%;
}
.project-comporntent__body .mobile-view .other-box .details .explore-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  border-radius: 28px;
  background: #F37255;
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}
.project-comporntent__body .mobile-view .other-box .details .explore-btn span {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle;
}
.project-comporntent__body .mobile-view .other-box .details .explore-btn svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}
.project-comporntent__body .mobile-view .other-box .details .explore-btn:hover {
  color: #EBE4DE;
  text-decoration: none;
}
.project-comporntent__body .mobile-view .other-box .details .explore-btn:hover::before {
  width: 100%;
  background: #F37255;
}
.project-comporntent__body .mobile-view .other-box .details .explore-btn:hover svg {
  transform: translateX(0);
  stroke: #EBE4DE;
}
.project-comporntent__body .mobile-view .other-box .details .explore-btn:active {
  transform: scale(0.96);
}
.project-comporntent__body .mobile-view .owl-nav {
  width: auto;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: -30px;
  right: 10px;
}
.project-comporntent__body .mobile-view .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.project-comporntent__body .mobile-view .owl-nav .owl-prev:hover {
  opacity: 0.8;
}
.project-comporntent__body .mobile-view .owl-nav .owl-prev.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.project-comporntent__body .mobile-view .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
.project-comporntent__body .mobile-view .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.project-comporntent__body .mobile-view .owl-nav .owl-next:hover {
  opacity: 0.8;
}
.project-comporntent__body .mobile-view .owl-nav .owl-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.project-comporntent__body .mobile-view .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}
.project-comporntent__body #ongoingPRojectOWLDesktop .owl-nav {
  width: auto;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin: 0;
}
.project-comporntent__body #ongoingPRojectOWLDesktop .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.project-comporntent__body #ongoingPRojectOWLDesktop .owl-nav .owl-prev:hover {
  opacity: 0.8;
}
.project-comporntent__body #ongoingPRojectOWLDesktop .owl-nav .owl-prev.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.project-comporntent__body #ongoingPRojectOWLDesktop .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
.project-comporntent__body #ongoingPRojectOWLDesktop .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.project-comporntent__body #ongoingPRojectOWLDesktop .owl-nav .owl-next:hover {
  opacity: 0.8;
}
.project-comporntent__body #ongoingPRojectOWLDesktop .owl-nav .owl-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.project-comporntent__body #ongoingPRojectOWLDesktop .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}

.svam-asset {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  margin-top: -30px;
}
@media (max-width: 768px) {
  .svam-asset {
    padding: 50px 0;
    margin: 0;
  }
}
.svam-asset figure {
  margin: 0;
  width: 200px;
}

.ongoing-project {
  display: flex;
  flex-direction: row;
}
.ongoing-project .scroll-content {
  width: 100%;
  flex: 0 0 100%;
  position: relative;
}

.other-project {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 115px 0;
}
@media (max-width: 768px) {
  .other-project {
    padding: 40px 0 120px 0;
  }
}
.other-project__head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .other-project__head {
    padding-bottom: 10px;
  }
}
.other-project__head .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
}
.other-project__body .other-box {
  background-color: #e3dad4;
  position: relative;
  padding: 10px 0 0 0;
}
.other-project__body .other-box figure {
  margin: 0 0 0 10px;
  width: 100%;
  position: relative;
}
@media (max-width: 375px) {
  .other-project__body .other-box figure {
    height: 230px;
  }
}
.other-project__body .other-box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.other-project__body .other-box figure figcaption {
  background-color: #F37255;
  padding: 14px 20px 12px 20px;
  font-family: "fahkwangregular";
  font-size: 18px;
  color: #EBE4DE;
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 0;
}
.other-project__body .other-box .details {
  padding: 20px;
  min-height: 360px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 768px) {
  .other-project__body .other-box .details {
    min-height: auto;
  }
}
.other-project__body .other-box .details .heading-h2 {
  font-family: "k2dlight";
  font-size: 32px;
  font-weight: 400;
  color: #7B5638;
  padding-bottom: 0;
}
.other-project__body .other-box .details .heading-h3 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 1.4rem;
  font-weight: 400;
  padding-bottom: 5px;
}
.other-project__body .other-box .details .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #20695E;
  padding-bottom: 5px;
}
.other-project__body .other-box .details ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.other-project__body .other-box .details ul li {
  font-family: "k2dlight";
  font-size: 18px;
  font-weight: 400;
  color: #20695E;
}
.other-project__body .other-box .details .explore-btn {
  position: relative;
  margin: 0;
  padding: 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #20695E;
  font-family: "k2dlight";
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.other-project__body .other-box .details .explore-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  border-radius: 28px;
  background: #F37255;
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}
.other-project__body .other-box .details .explore-btn span {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle;
}
.other-project__body .other-box .details .explore-btn svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}
.other-project__body .other-box .details .explore-btn:hover {
  color: #EBE4DE;
  text-decoration: none;
}
.other-project__body .other-box .details .explore-btn:hover::before {
  width: 100%;
  background: #F37255;
}
.other-project__body .other-box .details .explore-btn:hover svg {
  transform: translateX(0);
  stroke: #EBE4DE;
}
.other-project__body .other-box .details .explore-btn:active {
  transform: scale(0.96);
}
@media (max-width: 768px) {
  .other-project__body #otherProjec.owl-carousel {
    display: flex !important;
    flex-direction: column;
    gap: 50px;
  }
}
.other-project__body #otherProjec.owl-carousel .owl-stage-outer {
  overflow: visible;
}
@media (max-width: 768px) {
  .other-project__body #otherProjec.owl-carousel .owl-stage-outer {
    overflow: hidden;
  }
}
.other-project__body #otherProjec.owl-carousel .owl-stage {
  display: flex;
}
.other-project__body #otherProjec .owl-nav {
  width: auto;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: -90px;
  right: 10px;
}
.other-project__body #otherProjec .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.other-project__body #otherProjec .owl-nav .owl-prev:hover {
  opacity: 0.8;
}
.other-project__body #otherProjec .owl-nav .owl-prev.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.other-project__body #otherProjec .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
.other-project__body #otherProjec .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.other-project__body #otherProjec .owl-nav .owl-next:hover {
  opacity: 0.8;
}
.other-project__body #otherProjec .owl-nav .owl-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.other-project__body #otherProjec .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}

.scroll-container {
  overflow: hidden;
  /* Prevent mobile bounce scrolling */
  overscroll-behavior: none;
  /* Improve mobile performance */
  -webkit-overflow-scrolling: touch;
}

.scroll-content {
  /* Use transform3d for hardware acceleration */
  transform: translate3d(0, 0, 0);
  /* Prevent text selection issues on mobile */
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .scroll-container {
    /* Reduce complexity on mobile */
    will-change: transform;
  }
}
.banner-intro {
  padding: 100px 0 50px 0;
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .banner-intro {
    width: 95%;
  }
}
.banner-intro figure {
  margin: 0;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .banner-intro figure {
    width: 75%;
    margin: 0 auto;
  }
}
.banner-intro .heading-h2 {
  color: #3A3A3A;
  font-family: "fahkwangregular";
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 30px;
}
.banner-intro .floorplan-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 50px;
  border: 0;
  border-radius: 100px;
  display: inline-block;
}
@media (max-width: 768px) {
  .banner-intro .floorplan-btn {
    width: 100%;
    padding: 12px 0;
  }
}
.banner-intro .floorplan-btn:hover {
  opacity: 0.8;
}

.our-story .heading-h1 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
}
.our-story .scroll-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  overflow: hidden;
}
.our-story .scroll-container .scroll-content {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
}
.our-story .scroll-container .scroll-content .heading-h2 {
  position: absolute;
  top: 25%;
  left: 2%;
  z-index: 2;
  color: #777777;
  font-size: 72px;
  font-family: "k2dlight";
  font-weight: 400;
}
@media (max-width: 768px) {
  .our-story .scroll-container .scroll-content .heading-h2 {
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .our-story .scroll-container .scroll-content .story-content-one {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 50px;
  }
}
.our-story .scroll-container .scroll-content .story-box-one {
  width: 35%;
  position: absolute;
  z-index: 2;
  top: 19%;
  left: 25%;
}
@media (max-width: 768px) {
  .our-story .scroll-container .scroll-content .story-box-one {
    position: relative;
    top: 0;
    left: 0;
    width: 90%;
    right: 0;
  }
}
.our-story .scroll-container .scroll-content .story-box-one figure {
  width: 100%;
  height: 100%;
}
.our-story .scroll-container .scroll-content .story-box-one .heading-h3 {
  color: #A9A9A9;
  font-family: "k2dlight";
  font-size: 62px;
  font-weight: 400;
}
.our-story .scroll-container .scroll-content .story-box-one .heading-h4 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.our-story .scroll-container .scroll-content .story-box-one .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
}
.our-story .scroll-container .scroll-content .story-box-two {
  width: 35%;
  position: absolute;
  z-index: 2;
  top: 1%;
  right: 0px;
}
@media (max-width: 768px) {
  .our-story .scroll-container .scroll-content .story-box-two {
    position: relative;
    top: 0;
    left: 0;
    width: 90%;
    right: 0;
  }
}
.our-story .scroll-container .scroll-content .story-box-two figure {
  width: 100%;
  height: 100%;
}
.our-story .scroll-container .scroll-content .story-box-two .heading-h3 {
  color: #A9A9A9;
  font-family: "k2dlight";
  font-size: 62px;
  font-weight: 400;
}
.our-story .scroll-container .scroll-content .story-box-two .heading-h4 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.our-story .scroll-container .scroll-content .story-box-two .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
}
.our-story .scroll-container .scroll-content .story-box-three {
  width: 50%;
  height: auto;
  position: absolute;
  top: 15%;
  left: 4%;
  z-index: 9;
}
@media (max-width: 768px) {
  .our-story .scroll-container .scroll-content .story-box-three {
    width: 100%;
    top: 20px;
    left: 0;
  }
}
.our-story .scroll-container .scroll-content .story-box-three__inner {
  width: 100%;
}
.our-story .scroll-container .scroll-content .story-box-three__inner .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.our-story .scroll-container .scroll-content .story-box-three__inner .box .list-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.our-story .scroll-container .scroll-content .story-box-three__inner .box .list-wrap .list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.our-story .scroll-container .scroll-content .story-box-three__inner .box .list-wrap .list li {
  background-color: #20695E;
  font-family: "k2dlight";
  font-size: 1.5rem;
  color: #E6ffCB;
  text-align: center;
  padding: 10px 20px;
}
.our-story .scroll-container .scroll-content .story-box-three__inner .box figure {
  margin: 0;
}
@media (max-width: 768px) {
  .our-story .scroll-container .scroll-content .story-box-three__inner .box figure {
    width: 100%;
  }
}
.our-story .scroll-container .scroll-content .story-box-fore {
  position: absolute;
  right: 12%;
  top: 5%;
  z-index: 9;
  width: 25%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .our-story .scroll-container .scroll-content .story-box-fore {
    top: 320px;
    width: 95%;
    right: 11px;
  }
}
.our-story .scroll-container .scroll-content .story-box-fore figure {
  width: 100%;
  height: 400px;
}
.our-story .scroll-container .scroll-content .story-box-fore figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-story .scroll-container .scroll-content .story-box-fore .heading-h3 {
  color: #A9A9A9;
  font-family: "k2dlight";
  font-size: 62px;
  font-weight: 400;
}
.our-story .scroll-container .scroll-content .story-box-fore .heading-h4 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.our-story .scroll-container .scroll-content .story-box-fore .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
}
.our-story .scroll-container .scroll-content .awarded {
  color: #777777;
  font-family: "gt_super_displaylight";
  font-size: 1.8rem;
  width: 20%;
  text-align: center;
  position: absolute;
  bottom: 20%;
  left: 58%;
  z-index: 2;
}
.our-story .scroll-container .scroll-content .story-background {
  background-color: #EBE4DE;
  position: absolute;
  top: 10%;
  left: 20%;
  width: 100%;
  height: 85%;
  z-index: 1;
}
@media (max-width: 768px) {
  .our-story .scroll-container .scroll-content .story-background {
    left: 0;
    height: 100%;
  }
}
.our-story .scroll-container .scroll-content:first-child .story-background {
  left: 10%;
  width: 110%;
}
@media (max-width: 768px) {
  .our-story .scroll-container .scroll-content:first-child .story-background {
    left: 0;
  }
}
@media (max-width: 768px) {
  .our-story .desktop-view {
    display: none;
    min-height: auto;
  }
}
.our-story .mobile-view {
  display: none;
  padding: 50px 0 100px 0;
  background-color: #EBE4DE;
}
@media (max-width: 768px) {
  .our-story .mobile-view {
    display: block;
  }
}
.our-story .mobile-view .heading-h2 {
  color: #777777;
  font-size: 32px;
  font-family: "k2dlight";
  font-weight: 400;
  text-align: center;
  padding-bottom: 20px;
}
.our-story .mobile-view .story-box figure {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin: 0 0 50px 0;
}
@media (max-width: 375px) {
  .our-story .mobile-view .story-box figure {
    height: 220px;
    margin: 0 0 25px 0;
  }
}
.our-story .mobile-view .story-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.our-story .mobile-view .story-box .details {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 375px) {
  .our-story .mobile-view .story-box .details {
    gap: 5px;
  }
}
.our-story .mobile-view .story-box .details .heading-h3 {
  color: #A9A9A9;
  font-family: "k2dlight";
  font-size: 600;
  font-size: 32px;
  font-weight: 400;
}
.our-story .mobile-view .story-box .details .heading-h4 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.our-story .mobile-view .story-box .details .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
}
.our-story .mobile-view .story-box .details .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.our-story .mobile-view .story-box .details .list li {
  position: relative;
  padding: 0 0 0 30px;
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
}
.our-story .mobile-view .story-box .details .list li::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #20695E;
  position: absolute;
  left: 10px;
  top: 9px;
}
.our-story .mobile-view .owl-nav {
  width: auto;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: -90px;
  right: 10px;
}
.our-story .mobile-view .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.our-story .mobile-view .owl-nav .owl-prev:hover {
  opacity: 0.8;
}
.our-story .mobile-view .owl-nav .owl-prev.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.our-story .mobile-view .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
.our-story .mobile-view .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.our-story .mobile-view .owl-nav .owl-next:hover {
  opacity: 0.8;
}
.our-story .mobile-view .owl-nav .owl-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.our-story .mobile-view .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}

.client {
  min-height: calc(100vh - 150px);
  padding: 50px 0 0 0;
}
.client__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}
.client__header .heading-h1 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
}
.client__body {
  position: relative;
  padding: 0 0 150px 0;
  display: block;
}
.client__body .owl-carousel .owl-stage-outer {
  overflow: visible;
}
@media (max-width: 768px) {
  .client__body .owl-carousel .owl-stage-outer {
    overflow: hidden;
  }
}
.client__body .owl-carousel .owl-stage {
  display: flex;
}
.client__body #testimonial .testimonial-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
@media (max-width: 768px) {
  .client__body #testimonial .testimonial-box {
    flex-direction: column-reverse;
    gap: 50px;
  }
}
.client__body #testimonial .testimonial-box .testimonial-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.client__body #testimonial .testimonial-box .testimonial-details .heading-h3 {
  color: #2E2E2E;
  font-family: "gt_super_displaylight";
  font-size: 2rem;
}
.client__body #testimonial .testimonial-box .testimonial-details .heading-h4 {
  color: #2E2E2E;
  font-family: "gt_super_displaylight";
  font-size: 1.6rem;
  padding-bottom: 10px;
}
.client__body #testimonial .testimonial-box .testimonial-details .paragraph-text {
  color: #2E2E2E;
  font-family: "gt_super_displaylight";
  font-size: 1.2rem;
}
.client__body #testimonial .testimonial-box .testimonial-figure {
  flex: 0 0 40%;
}
.client__body #testimonial .owl-nav {
  position: absolute;
  top: -100px;
  right: 30px;
  width: auto;
  display: none;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .client__body #testimonial .owl-nav {
    display: none;
  }
}
.client__body #testimonial .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  font-size: 0;
  cursor: pointer;
  opacity: 0;
}
.client__body #testimonial .owl-nav .owl-prev:hover {
  opacity: 0;
  background-color: transparent;
  border: 0;
}
.client__body #testimonial .owl-nav .owl-prev.disabled {
  opacity: 0;
}
.client__body #testimonial .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
.client__body #testimonial .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  cursor: pointer;
  font-size: 0;
}
.client__body #testimonial .owl-nav .owl-next:hover {
  opacity: 0.8;
  background-color: transparent;
  border: 0;
}
.client__body #testimonial .owl-nav .owl-next.disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.client__body #testimonial .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}
.client__body #testimonial .owl-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .client__body #testimonial .owl-dots {
    position: relative;
    top: auto;
    right: auto;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 50px 0 0 0;
  }
}
.client__body #testimonial .owl-dots .owl-dot span {
  background-color: #949AA9;
}
.client__body #testimonial .owl-dots .owl-dot.active span {
  background-color: #EF2626;
}
.client__body #testimonial .owl-dots .owl-dot:focus {
  box-shadow: none;
  outline: 0;
}

.number-box {
  padding: 0 0 50px 0;
  background-color: #20695E;
}
.number-box .number-box-inner {
  border-top: rgba(255, 255, 255, 0.2) solid 1px;
  padding-top: 25px;
}
@media (max-width: 599px) {
  .number-box .number-box-inner {
    border-top: rgba(255, 255, 255, 0.2) solid 0px;
  }
}
@media (max-width: 375px) {
  .number-box .number-box-inner {
    border-top: rgba(255, 255, 255, 0.2) solid 0px;
  }
}
.number-box .number-box-inner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.number-box .number-box-inner__item .box-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.number-box .number-box-inner__item .box-number span {
  color: #F9F8EE;
  font-family: "camptonlight";
  font-weight: 400;
  font-size: 42px;
  line-height: 3rem;
  margin: 0;
  padding: 0;
}
.number-box .number-box-inner__item .box-number b {
  color: #F9F8EE;
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.number-box .number-box-inner__item .box-label {
  color: #E6ffCB;
  font-family: "camptonbook";
  font-weight: 400;
  font-size: 22px;
  line-height: 2.2rem;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.thesvam-banner {
  min-height: 90vh;
  padding: 110px 0 100px 0;
  margin-top: -104px;
  position: relative;
  overflow: hidden;
}
.thesvam-banner .banner-figure {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.thesvam-banner .banner-figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.projet-banner {
  background-color: #20695E;
  min-height: 80vh;
  padding: 200px 0 0 0;
  margin-top: -104px;
  position: relative;
  margin-bottom: 200px;
  position: relative;
}
@media (max-width: 768px) {
  .projet-banner {
    margin-bottom: 0px;
    padding: 150px 0 0 0;
    min-height: 60vh;
  }
}
.projet-banner .heading-h1 {
  font-family: "k2dlight";
  font-size: 24px;
  line-height: 30px;
  color: #F9F8EE;
  text-align: center;
  text-transform: none;
  max-width: 65%;
  margin: 0 auto;
  padding: 0 0 20px 0;
}
@media (max-width: 768px) {
  .projet-banner .heading-h1 {
    max-width: 100%;
    padding: 0;
  }
}
.projet-banner ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
  padding-top: 20px;
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .projet-banner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 95%;
    padding: 20px 0;
    margin: 0 auto;
  }
}
.projet-banner ul li {
  flex: 0 1 100%;
  font-family: "k2dlight";
  font-size: 22px;
  font-weight: 400;
  color: #F9F8EE;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .projet-banner ul li {
    text-align: center;
  }
}
.projet-banner ul li span {
  display: block;
  font-size: 24px;
}
.projet-banner ul li::before {
  content: "";
  background-color: #E6ffCB;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .projet-banner ul li::before {
    width: 100%;
    height: 1px;
    top: auto;
    right: auto;
    bottom: -18px;
    left: 0;
  }
}
.projet-banner ul li:last-child::before {
  display: none;
}
.projet-banner .paragraph-text {
  font-family: "gt_super_displaylight";
  font-size: 22px;
  font-weight: 400;
  color: #F9F8EE;
  text-align: center;
}
.projet-banner .projet-banner-figure {
  position: relative;
  width: 70%;
  height: 100%;
  padding: 0 0 510px 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .projet-banner .projet-banner-figure {
    padding: 0 0 240px 0;
    width: 100%;
    position: absolute;
    top: 0;
  }
}
.projet-banner .projet-banner-figure img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 768px;
}
@media (max-width: 768px) {
  .projet-banner .projet-banner-figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 768px) {
  .projet-banner.projet-mobile-banner {
    min-height: calc(100vh - 44px);
  }
}
.projet-banner.projet-mobile-banner .explore-section {
  display: none;
}
@media (max-width: 768px) {
  .projet-banner.projet-mobile-banner .explore-section {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
}
.projet-banner.projet-mobile-banner .explore-section .heading-h3 {
  font-family: "k2dlight";
  font-size: 24px;
  line-height: 2.4rem;
  color: #F9F8EE;
  text-align: center;
  text-transform: none;
  padding-bottom: 15px;
}
.projet-banner.projet-mobile-banner .explore-section .arrow {
  border: #E6ffCB solid 1px;
  border-radius: 100px;
  height: 60px;
  width: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projet-banner.projet-mobile-banner .explore-section .arrow i {
  color: #E6ffCB;
  animation: jumpInfinite 1.5s infinite;
}
@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .projet-banner .banner-info {
    position: absolute;
    top: 240px;
    z-index: 1;
    width: 70%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.thesvamroots-banner {
  min-height: 90vh;
  padding: 110px 0 100px 0;
  margin-top: -104px;
  position: relative;
  overflow: hidden;
}
.thesvamroots-banner .heading-h1 {
  color: #F9F8EE;
  font-family: "k2dlight";
  font-size: 4rem;
  z-index: 1;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
@media (max-width: 768px) {
  .thesvamroots-banner .heading-h1 {
    top: 30%;
  }
}
.thesvamroots-banner .banner-figure {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.thesvamroots-banner .banner-figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.thankyou-section {
  background-color: #20695E;
  background-color: #20695E;
  min-height: 68vh;
  padding: 200px 0 0 0;
  margin-top: -104px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thankyou-section .heading-h1 {
  color: #F9F8EE;
}
.thankyou-section .paragraph-text {
  color: #F9F8EE;
}

.whoweare {
  padding: 50px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  max-width: 75%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .whoweare {
    max-width: 95%;
  }
}
.whoweare .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.whoweare .heading-h1 {
  font-family: "k2dlight";
  font-size: 28px;
  font-weight: 400;
  color: #5C5C5C;
}
.whoweare .paragraph-text {
  font-family: "k2dlight";
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #5C5C5C;
}
.whoweare .figure {
  width: 200px;
  padding: 50px 0 0 0;
}
@media (max-width: 768px) {
  .whoweare .figure {
    width: 50%;
    padding: 0;
  }
}

.ourlegacy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: end;
  max-width: 100%;
  position: relative;
  height: 95vh;
  overflow: hidden;
  margin: 50px 0 0 0;
}
@media (max-width: 768px) {
  .ourlegacy {
    grid-template-columns: repeat(1, 1fr);
    height: auto;
  }
}
.ourlegacy__details {
  display: flex;
  align-content: end;
  justify-content: end;
  text-align: right;
}
@media (max-width: 768px) {
  .ourlegacy__details {
    justify-content: center;
  }
}
.ourlegacy__details .description {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  padding-bottom: 15%;
}
@media (max-width: 768px) {
  .ourlegacy__details .description {
    width: 95%;
    padding-bottom: 0;
    text-align: center;
    align-items: center;
  }
}
.ourlegacy__details .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: right;
  color: #20695E;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.ourlegacy__details .paragraph-text {
  font-family: "k2dlight";
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #5C5C5C;
}
.ourlegacy__details .ourlegacy-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 85px;
  border: 0;
}
.ourlegacy__details .ourlegacy-btn:hover {
  opacity: 0.8;
}
.ourlegacy__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  margin: 0;
}
@media (max-width: 768px) {
  .ourlegacy__figure {
    min-height: auto;
  }
}
.ourlegacy__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ourjourney {
  padding: 50px 0;
}
.ourjourney .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  padding: 0 0 20px 0;
  margin: 0;
}
.ourjourney__slider {
  background-color: #C1C1C1;
  border-radius: 12px;
  padding: 30px;
  overflow: hidden;
}
.ourjourney__slider .heading-h3 {
  font-family: "gt_super_displaylight";
  font-weight: 400;
  font-size: 1.8rem;
  color: #2E2E2E;
  padding: 0 0 20px 0;
  margin: 0;
}
.ourjourney__slider #journeyCarousel {
  position: relative;
}
.ourjourney__slider #journeyCarousel .owl-stage-outer {
  padding: 0 30px;
}
.ourjourney__slider #journeyCarousel .years {
  font-family: "acumin_prothin";
  font-size: 2.2rem;
  font-weight: 400;
  color: #EF2626;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
}
.ourjourney__slider #journeyCarousel .years span {
  display: block;
  color: #636363;
  font-family: "gt_super_displaylight";
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: none;
}
.ourjourney__slider #journeyCarousel .years::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 38%;
  width: 55%;
  height: 7px;
  transform: translateY(-50%);
  background-image: url(../images/dotted-line.png);
  background-position: left;
  background-repeat: repeat-x;
}
@media (max-width: 768px) {
  .ourjourney__slider #journeyCarousel .years::before {
    left: 50%;
    width: 35%;
  }
}
.ourjourney__slider #journeyCarousel .owl-nav {
  position: absolute;
  top: 50%;
  width: auto;
  display: flex;
  justify-content: space-between;
  transform: translateY(-60%);
  right: -20px;
}
.ourjourney__slider #journeyCarousel .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  font-size: 0;
  cursor: pointer;
  opacity: 0;
}
.ourjourney__slider #journeyCarousel .owl-nav .owl-prev:hover {
  opacity: 0;
  background-color: transparent;
  border: 0;
}
.ourjourney__slider #journeyCarousel .owl-nav .owl-prev.disabled {
  opacity: 0;
  cursor: not-allowed;
}
.ourjourney__slider #journeyCarousel .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
  opacity: 0;
}
.ourjourney__slider #journeyCarousel .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  cursor: pointer;
  font-size: 0;
}
.ourjourney__slider #journeyCarousel .owl-nav .owl-next:hover {
  opacity: 0.8;
  background-color: transparent;
  border: 0;
}
.ourjourney__slider #journeyCarousel .owl-nav .owl-next.disabled {
  opacity: 0;
  cursor: not-allowed;
}
.ourjourney__slider #journeyCarousel .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}

.leadership {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 100px 0 50px 0;
}
@media (max-width: 768px) {
  .leadership {
    padding: 50px 0;
  }
}
.leadership__header .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  padding: 0 0 20px 0;
  margin: 0;
}
.leadership .leadership-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 70%;
}
@media (max-width: 768px) {
  .leadership .leadership-box {
    max-width: 90%;
  }
}
.leadership .leadership-box figure {
  flex: 0 0 35%;
}
.leadership .leadership-box .details {
  flex: 0 0 50%;
  display: flex;
  gap: 20px;
}
.leadership .leadership-box .details .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  color: #5C5C5C;
}
.leadership .leadership-box .details .heading-h3 {
  font-family: "acumin_prothin";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #5C5C5C;
}
.leadership .leadership-box .details .paragraph-text {
  font-family: "k2dlight";
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #5C5C5C;
}
.leadership .leadership-box.left-figure {
  flex-direction: row;
}
@media (max-width: 768px) {
  .leadership .leadership-box.left-figure {
    flex-direction: column;
  }
}
.leadership .leadership-box.left-figure .details {
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
}
@media (max-width: 768px) {
  .leadership .leadership-box.left-figure .details {
    text-align: center;
    align-items: center;
  }
}
.leadership .leadership-box.right-figure {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .leadership .leadership-box.right-figure {
    flex-direction: column;
    align-items: center;
  }
}
.leadership .leadership-box.right-figure .details {
  align-items: flex-end;
  flex-direction: column;
  text-align: right;
}
@media (max-width: 768px) {
  .leadership .leadership-box.right-figure .details {
    text-align: center;
    align-items: center;
  }
}

.management {
  background-color: #C1C1C1;
  padding: 50px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.management__header .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
}
.management_body .team-member {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .management_body .team-member {
    align-items: center;
  }
}
.management_body .team-member .member-figure {
  width: 80%;
  height: auto;
}
.management_body .team-member .heading-h3 {
  font-family: "gt_super_displaylight";
  font-weight: 400;
  font-size: 1.8rem;
  color: #5C5C5C;
}
.management_body .team-member .designation {
  font-family: "gt_super_displaylight";
  font-weight: 400;
  font-size: 1.4rem;
  color: #5C5C5C;
}
.management_body .team-member .designation a {
  font-family: "gt_super_displaylight";
  font-weight: 400;
  font-size: 1.4rem;
  color: #484848;
}
.management_body #managementTeam .owl-nav {
  position: absolute;
  top: -110px;
  right: 0;
  width: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .management_body #managementTeam .owl-nav {
    display: none;
  }
}
.management_body #managementTeam .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  font-size: 0;
  cursor: pointer;
  opacity: 0;
}
.management_body #managementTeam .owl-nav .owl-prev:hover {
  opacity: 0;
  background-color: transparent;
  border: 0;
}
.management_body #managementTeam .owl-nav .owl-prev.disabled {
  opacity: 0;
}
.management_body #managementTeam .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
.management_body #managementTeam .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  cursor: pointer;
  font-size: 0;
}
.management_body #managementTeam .owl-nav .owl-next:hover {
  opacity: 0.8;
  background-color: transparent;
  border: 0;
}
.management_body #managementTeam .owl-nav .owl-next.disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.management_body #managementTeam .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}
.management_body #managementTeam .owl-dots {
  position: absolute;
  top: -87px;
  right: 30px;
  width: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .management_body #managementTeam .owl-dots {
    position: relative;
    top: auto;
    right: auto;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 50px 0 0 0;
  }
}
.management_body #managementTeam .owl-dots .owl-dot span {
  background-color: #949AA9;
}
.management_body #managementTeam .owl-dots .owl-dot.active span {
  background-color: #EF2626;
}
.management_body #managementTeam .owl-dots .owl-dot:focus {
  box-shadow: none;
  outline: 0;
}

.growth-projections {
  padding: 100px 0;
  display: flex;
  align-content: center;
  flex-direction: column;
  gap: 100px;
}
.growth-projections__header .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
}
.growth-projections__body .growth-box {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
}
@media (max-width: 768px) {
  .growth-projections__body .growth-box {
    flex-direction: column;
  }
}
.growth-projections__body .growth-box .list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
}
.growth-projections__body .growth-box .list li {
  white-space: nowrap;
  font-family: "gt_super_displaylight";
  font-weight: 400;
  font-size: 1.9rem;
  color: #7B5841;
}
.growth-projections__body #growthProjections .owl-dots .owl-dot span {
  background-color: #949AA9;
}
.growth-projections__body #growthProjections .owl-dots .owl-dot.active span {
  background-color: #EF2626;
}
.growth-projections__body #growthProjections .owl-dots .owl-dot:focus {
  box-shadow: none;
  outline: 0;
}

.promise {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 45%;
  margin: 0 auto;
  padding: 100px 0 200px 0;
}
@media (max-width: 768px) {
  .promise {
    max-width: 100%;
    padding: 50px 0 100px 0;
  }
}
.promise .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
}
.promise .paragraph-text {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #3A3A3A;
}
@media (max-width: 768px) {
  .promise .paragraph-text {
    font-size: 18px;
    line-height: 30px;
  }
}

.team-photos {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photos img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .team-photos img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.corporate-office {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 0;
}
.corporate-office .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  padding-bottom: 25px;
}
.corporate-office .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 22px;
  font-weight: 400;
  color: #5C5C5C;
  text-align: center;
  max-width: 65%;
}
.corporate-office .email {
  font-family: "fahkwangregular";
  font-size: 22px;
  font-weight: 400;
  color: #5C5C5C;
}
.corporate-office .email a {
  font-family: "fahkwangregular";
  font-size: 22px;
  font-weight: 400;
  color: #5C5C5C;
}
.corporate-office .email a:hover {
  text-decoration: none;
}

.content-form {
  background-color: #7B7B7B;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content-form .heading-h2 {
  font-family: "k2dlight";
  font-size: 3rem;
  font-weight: 400;
  color: #dddddd;
  text-align: center;
}
.content-form .heading-h3 {
  font-family: "fahkwangregular";
  font-size: 20px;
  font-weight: 400;
  color: #dddddd;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-form .heading-h3 {
    width: 100%;
  }
}
.content-form .heading-h4 {
  font-family: "fahkwangregular";
  font-size: 22px;
  font-weight: 400;
  color: #dddddd;
  text-align: center;
  padding: 20px 0;
}
.content-form .paragraph-text {
  font-family: "acumin_prothin";
  font-size: 18px;
  font-weight: 400;
  color: #dddddd;
  text-align: center;
  width: 50%;
}
@media (max-width: 768px) {
  .content-form .paragraph-text {
    width: 100%;
  }
}
.content-form .content-form-wrapper {
  width: 100%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .content-form .content-form-wrapper {
    width: 100%;
    max-width: 100%;
  }
}
.content-form .content-form-wrapper .wpcf7-form {
  width: 100%;
}
.content-form .content-form-wrapper .wpcf7-form label {
  width: 100%;
  display: block;
}
.content-form .content-form-wrapper .wpcf7-text {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 0;
  font-family: "fahkwangregular";
  font-size: 1.2rem;
  color: #F9F8EE;
  background-color: #686868;
  resize: none;
  margin-bottom: 10px;
}
.content-form .content-form-wrapper .wpcf7-text:focus {
  outline: none;
  box-shadow: 0 0 5px #20695E;
}
.content-form .content-form-wrapper .wpcf7-text::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #F9F8EE;
}
.content-form .content-form-wrapper .wpcf7-text::-moz-placeholder { /* Firefox 19+ */
  color: #F9F8EE;
}
.content-form .content-form-wrapper .wpcf7-text:-ms-input-placeholder { /* IE 10+ */
  color: #F9F8EE;
}
.content-form .content-form-wrapper .wpcf7-text:-moz-placeholder { /* Firefox 18- */
  color: #F9F8EE;
}
.content-form .content-form-wrapper .wpcf7-textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 0;
  font-family: "fahkwangregular";
  font-size: 1.2rem;
  color: #F9F8EE;
  background-color: #686868;
  resize: none;
  height: 100px;
  margin-bottom: 10px;
}
.content-form .content-form-wrapper .wpcf7-textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #20695E;
}
.content-form .content-form-wrapper .wpcf7-textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #F9F8EE;
}
.content-form .content-form-wrapper .wpcf7-textarea::-moz-placeholder { /* Firefox 19+ */
  color: #F9F8EE;
}
.content-form .content-form-wrapper .wpcf7-textarea:-ms-input-placeholder { /* IE 10+ */
  color: #F9F8EE;
}
.content-form .content-form-wrapper .wpcf7-textarea:-moz-placeholder { /* Firefox 18- */
  color: #F9F8EE;
}
.content-form .content-form-wrapper .wpcf7-checkbox input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.content-form .content-form-wrapper .wpcf7-checkbox .wpcf7-list-item-label {
  font-family: "fahkwangregular";
  font-size: 16px;
  font-weight: 400;
  color: #F9F8EE;
}
.content-form .content-form-wrapper .wpcf7-submit {
  padding: 15px;
  background-color: #20695E;
  color: #F9F8EE;
  font-family: "fahkwangregular";
  font-size: 1.4rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  align-items: center;
  display: flex;
  width: 200px;
  margin: 0 auto;
}
.content-form .content-form-wrapper .wpcf7-submit:hover {
  background-color: #7B5638;
  opacity: 0.8;
}

.benchmarking {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 0;
}
.benchmarking figure {
  padding: 50px 0;
}
.benchmarking .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  padding-bottom: 50px;
}
.benchmarking .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 19px;
  font-weight: 400;
  color: #5C5C5C;
  text-align: center;
}

.privacy-policy__banner {
  background-color: #20695E;
  padding: 200px 0 50px 0;
  margin-top: -140px;
}
.privacy-policy__banner .heading-h1 {
  color: #F9F8EE;
  font-family: "k2dlight";
  font-size: 32px;
  text-align: left;
}
.privacy-policy__details {
  padding: 100px 0;
}
.privacy-policy__details h2 {
  font-family: "k2dlight";
  font-size: 22px;
  color: #20695E;
  padding-top: 15px;
  padding-bottom: 10px;
}
.privacy-policy__details p {
  font-family: "fahkwangregular";
  font-size: 18px;
  line-height: 30px;
  color: #2E2E2E;
  padding-bottom: 10px;
}

.project-gallery {
  padding: 100px 0 0 0;
}
@media (max-width: 768px) {
  .project-gallery {
    padding: 100px 0 50px 0;
  }
}
.project-gallery .project-box-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .project-gallery .project-box-details {
    grid-template-columns: repeat(1, 1fr);
  }
}
.project-gallery .project-box-details figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.project-gallery .project-box-details figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.project-gallery .project-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 50px;
  padding-top: 0;
  position: relative;
}
@media (max-width: 768px) {
  .project-gallery .project-box__head {
    padding-bottom: 25px;
  }
}
.project-gallery .project-box__head::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #EF2626;
  bottom: 66px;
  left: 59%;
}
@media (max-width: 768px) {
  .project-gallery .project-box__head::after {
    display: none;
  }
}
.project-gallery .project-box__head .heading-h3 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  position: relative;
}
.project-gallery .project-box__head .heading-h2 {
  font-family: "k2dlight";
  font-size: 42px;
  font-weight: 400;
  color: #5C5C5C;
  text-align: center;
}
.project-gallery .project-box__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .project-gallery .project-box__content {
    max-width: 80%;
  }
}
.project-gallery .project-box__content .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  position: relative;
}
.project-gallery .project-box__content .heading-h3 {
  font-family: "k2dlight";
  font-size: 34px;
  font-weight: 400;
  color: #5C5C5C;
}
.project-gallery .project-box__content .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
  text-align: center;
}
.project-gallery .project-box__content .explore-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 30px;
  border: 0;
  border-radius: 100px;
}
.project-gallery .project-box__content .explore-btn:hover {
  opacity: 0.8;
}
.project-gallery #projectGallery {
  position: relative;
}
@media (max-width: 768px) {
  .project-gallery #projectGallery {
    display: none;
  }
}
.project-gallery #projectGallery .owl-nav {
  position: absolute;
  bottom: 40px;
  right: 30px;
  width: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .project-gallery #projectGallery .owl-nav {
    bottom: -30px;
  }
}
.project-gallery #projectGallery .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.project-gallery #projectGallery .owl-nav .owl-prev:hover {
  opacity: 0.8;
}
.project-gallery #projectGallery .owl-nav .owl-prev.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.project-gallery #projectGallery .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
.project-gallery #projectGallery .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.project-gallery #projectGallery .owl-nav .owl-next:hover {
  opacity: 0.8;
}
.project-gallery #projectGallery .owl-nav .owl-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.project-gallery #projectGallery .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}
.project-gallery #projectGallery .owl-dots {
  position: absolute;
  top: 82px;
  right: 70px;
  width: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .project-gallery #projectGallery .owl-dots {
    position: relative;
    top: auto;
    right: auto;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 50px 0 0 0;
  }
}
.project-gallery #projectGallery .owl-dots .owl-dot span {
  background-color: #949AA9;
}
.project-gallery #projectGallery .owl-dots .owl-dot.active span {
  background-color: #EF2626;
}
.project-gallery #projectGallery .owl-dots .owl-dot:focus {
  box-shadow: none;
  outline: 0;
}
.project-gallery .mobile-view-ongoing-project {
  display: none;
}
@media (max-width: 768px) {
  .project-gallery .mobile-view-ongoing-project {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 20px;
  }
}
.project-gallery .mobile-view-ongoing-project .other-box {
  background-color: #ebe3de;
  position: relative;
  padding: 10px 0 0 0;
  min-height: 80vh;
}
.project-gallery .mobile-view-ongoing-project .other-box figure {
  margin: 0 0 0 10px;
  width: 100%;
  position: relative;
}
@media (max-width: 375px) {
  .project-gallery .mobile-view-ongoing-project .other-box figure {
    height: 230px;
  }
}
.project-gallery .mobile-view-ongoing-project .other-box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-gallery .mobile-view-ongoing-project .other-box figure figcaption {
  background-color: #F37255;
  padding: 14px 20px 12px 20px;
  font-family: "fahkwangregular";
  font-size: 18px;
  color: #EBE4DE;
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 0;
}
.project-gallery .mobile-view-ongoing-project .other-box .details {
  height: 40%;
  padding: 20px;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .heading-h2 {
  font-family: "k2dlight";
  font-size: 32px;
  font-weight: 400;
  color: #7B5638;
  padding-bottom: 0;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .heading-h3 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 1.4rem;
  font-weight: 400;
  padding-bottom: 5px;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #20695E;
  padding-bottom: 5px;
}
.project-gallery .mobile-view-ongoing-project .other-box .details ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.project-gallery .mobile-view-ongoing-project .other-box .details ul li {
  font-family: "k2dlight";
  font-size: 18px;
  font-weight: 400;
  color: #20695E;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .explore-btn {
  position: relative;
  margin: auto;
  padding: 19px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #20695E;
  font-family: "k2dlight";
  margin-top: 10px;
  display: inline-block;
  border-radius: 100%;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .explore-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  border-radius: 28px;
  background: #F37255;
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .explore-btn span {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .explore-btn svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .explore-btn:hover {
  color: #EBE4DE;
  text-decoration: none;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .explore-btn:hover::before {
  width: 100%;
  background: #F37255;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .explore-btn:hover svg {
  transform: translateX(0);
  stroke: #EBE4DE;
}
.project-gallery .mobile-view-ongoing-project .other-box .details .explore-btn:active {
  transform: scale(0.96);
}

.delivered-projects {
  padding: 100px 0 50px;
  background-color: #EBE4DE;
}
@media (max-width: 768px) {
  .delivered-projects {
    padding: 50px 0 0 0;
  }
}
.delivered-projects__head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .delivered-projects__head {
    padding-bottom: 25px;
  }
}
.delivered-projects__head .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  position: relative;
}
.delivered-projects__content .owl-carousel .owl-stage-outer {
  overflow: visible;
}
@media (max-width: 768px) {
  .delivered-projects__content .owl-carousel .owl-stage-outer {
    overflow: hidden;
  }
}
.delivered-projects__content .owl-carousel .owl-stage {
  display: flex;
}
.delivered-projects__content #deliveredProjects {
  position: relative;
}
.delivered-projects__content #deliveredProjects .owl-nav {
  width: 100%;
  display: flex;
  justify-content: end;
}
.delivered-projects__content #deliveredProjects .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.delivered-projects__content #deliveredProjects .owl-nav .owl-prev:hover {
  opacity: 0.8;
}
.delivered-projects__content #deliveredProjects .owl-nav .owl-prev.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.delivered-projects__content #deliveredProjects .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
.delivered-projects__content #deliveredProjects .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
.delivered-projects__content #deliveredProjects .owl-nav .owl-next:hover {
  opacity: 0.8;
}
.delivered-projects__content #deliveredProjects .owl-nav .owl-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.delivered-projects__content #deliveredProjects .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}
.delivered-projects__content #deliveredProjects .owl-dots {
  position: absolute;
  top: -78px;
  right: 70px;
  width: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .delivered-projects__content #deliveredProjects .owl-dots {
    position: relative;
    top: auto;
    right: auto;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 50px 0 0 0;
  }
}
.delivered-projects__content #deliveredProjects .owl-dots .owl-dot span {
  background-color: #949AA9;
}
.delivered-projects__content #deliveredProjects .owl-dots .owl-dot.active span {
  background-color: #EF2626;
}
.delivered-projects__content #deliveredProjects .owl-dots .owl-dot:focus {
  box-shadow: none;
  outline: 0;
}
.delivered-projects__content .delivered-project-box {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.delivered-projects__content .delivered-project-box .heading-h3 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.delivered-projects__content .delivered-project-box .heading-h2 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.delivered-projects__content .delivered-project-box .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 1.2rem;
  font-weight: 400;
  color: #5C5C5C;
}
.delivered-projects__content .delivered-project-box ul {
  list-style: none;
  margin: 0;
  padding: 15px 0 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 768px) {
  .delivered-projects__content .delivered-project-box ul {
    flex-direction: column;
  }
}
.delivered-projects__content .delivered-project-box ul li {
  position: relative;
  padding: 0 0 0 20px;
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
  flex: 0 0 48%;
}
.delivered-projects__content .delivered-project-box ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #20695E;
  position: absolute;
  top: 8px;
  left: 0px;
  border-radius: 100px;
}
.delivered-projects__content .delivered-project-box .amenity {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 1.2rem;
  text-align: left;
  color: #777777;
  text-transform: uppercase;
  position: relative;
}
.delivered-projects__content .delivered-project-box .explore-btn {
  position: relative;
  margin: auto;
  padding: 19px 22px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #20695E;
  font-family: "k2dlight";
  margin-top: 10px;
  display: inline-block;
  border-radius: 100%;
}
.delivered-projects__content .delivered-project-box .explore-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  border-radius: 28px;
  background: #F9F8EE;
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}
.delivered-projects__content .delivered-project-box .explore-btn span {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle;
}
.delivered-projects__content .delivered-project-box .explore-btn svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}
.delivered-projects__content .delivered-project-box .explore-btn:hover {
  color: #EBE4DE;
  text-decoration: none;
}
.delivered-projects__content .delivered-project-box .explore-btn:hover::before {
  width: 100%;
  background: #20695E;
}
.delivered-projects__content .delivered-project-box .explore-btn:hover svg {
  transform: translateX(0);
  stroke: #EBE4DE;
}
.delivered-projects__content .delivered-project-box .explore-btn:active {
  transform: scale(0.96);
}

.upcoming-project {
  padding: 100px 0 0 0;
}
@media (max-width: 768px) {
  .upcoming-project {
    padding: 50px 0;
  }
}
.upcoming-project__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .upcoming-project__head {
    padding-bottom: 25px;
  }
}
.upcoming-project__head .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: left;
  color: #20695E;
  text-transform: uppercase;
  position: relative;
}
.upcoming-project__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 50px;
}
@media (max-width: 768px) {
  .upcoming-project__content {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.upcoming-project__content figure {
  flex: 0 0 50%;
  margin: 0;
}
@media (max-width: 768px) {
  .upcoming-project__content figure {
    flex: 0 0 100%;
  }
}
.upcoming-project__content .details {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .upcoming-project__content .details {
    flex: 0 0 100%;
    align-items: center;
    text-align: center;
  }
}
.upcoming-project__content .details .heading-h3 {
  font-family: "acumin_prothin";
  font-weight: 400;
  font-size: 42px;
  text-align: left;
  color: #7B7B7B;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .upcoming-project__content .details .heading-h3 {
    text-align: center;
  }
}
.upcoming-project__content .details .heading-h4 {
  font-family: "k2dlight";
  font-size: 1.4rem;
  font-weight: 400;
  color: #7B5638;
  text-transform: uppercase;
}
.upcoming-project__content .details .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 22px;
  line-height: 34px;
  font-weight: 400;
  color: #5C5C5C;
  padding-top: 20px;
}

.project-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 100px 0;
}
.project-details .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  position: relative;
}
.project-details .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 1.4rem;
  font-weight: 400;
  color: #5C5C5C;
  text-align: center;
}
.project-details .heading-h3 {
  font-family: "acumin_prothin";
  font-size: 2rem;
  font-weight: 400;
  color: #5C5C5C;
  text-align: center;
  padding-bottom: 50px;
}
.project-details figure {
  margin: 0;
}
.project-details .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 20px;
  width: 70%;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .project-details .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.project-details .list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.project-details .list li p {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
  color: #ff7353;
  text-transform: uppercase;
}
.project-details .list li label {
  font-family: "k2dlight";
  font-size: 1.4rem;
  font-weight: 400;
  color: #20695E;
  text-align: center;
}
.project-details .master-plan-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 30px;
  border: 0;
  border-radius: 100px;
}
.project-details .master-plan-btn:hover {
  opacity: 0.8;
}

.svam-the-earth-project-gallery {
  margin: 0;
}
.svam-the-earth-project-gallery img {
  width: 100%;
}

.location-map {
  padding: 0;
}
.location-map__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 50px;
}
@media (max-width: 768px) {
  .location-map__content {
    flex-direction: column;
  }
}
.location-map__content figure {
  flex: 0 0 50%;
  margin: 0;
}
@media (max-width: 768px) {
  .location-map__content figure {
    flex: 0 0 100%;
  }
}
.location-map__content .details {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .location-map__content .details {
    flex: 0 0 100%;
    align-items: center;
    text-align: center;
  }
}
.location-map__content .details .paragraph-text {
  font-family: "k2dlight";
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: #5C5C5C;
  padding-top: 20px;
  text-align: center;
}
.location-map__content .details .location-map-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 30px;
  border: 0;
  border-radius: 100px;
}
.location-map__content .details .location-map-btn:hover {
  opacity: 0.8;
}

.floor-plan {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: flex-start;
  gap: 50px;
  margin-top: -200px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .floor-plan {
    flex-direction: column;
  }
}
.floor-plan__figur {
  flex: 0 0 50%;
}
.floor-plan__details {
  flex: 0 0 50%;
  padding-bottom: 10%;
}
@media (max-width: 1367px) {
  .floor-plan__details {
    padding-bottom: 0;
  }
}
.floor-plan__details .heading-h2 {
  color: #3A3A3A;
  font-family: "k2dlight";
  font-size: 22px;
  text-align: center;
  padding-bottom: 20px;
}
.floor-plan__details .floorplan-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .floor-plan__details .floorplan-btn-wrapper {
    flex-direction: column;
  }
}
.floor-plan__details .floorplan-btn-wrapper .floor-plan-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 30px;
  border: 0;
  border-radius: 100px;
}
.floor-plan__details .floorplan-btn-wrapper .floor-plan-btn:hover {
  opacity: 0.8;
}

.amenity-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 100px 0;
}
.amenity-box .list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .amenity-box .list {
    flex-direction: column;
  }
}
.amenity-box .list li {
  color: #5C5C5C;
  font-family: "k2dlight";
  font-size: 1.2rem;
  text-transform: uppercase;
}
.amenity-box .list li.active {
  color: #EF2626;
}
.amenity-box .amenity-box-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
}
@media (max-width: 768px) {
  .amenity-box .amenity-box-content {
    flex-direction: column;
  }
}
.amenity-box .amenity-box-content .roots-amenity-figure {
  flex: 0 0 50%;
}
@media (max-width: 768px) {
  .amenity-box .amenity-box-content .roots-amenity-figure {
    flex: 0 0 100%;
  }
}
.amenity-box .amenity-box-content .details {
  flex: 0 0 30%;
}
@media (max-width: 768px) {
  .amenity-box .amenity-box-content .details {
    flex: 0 0 100%;
    padding: 0 20px;
  }
}
.amenity-box .amenity-box-content .details .heading-h2 {
  color: #20695E;
  font-family: "k2dlight";
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 25px;
}
.amenity-box .amenity-box-content .details .paragraph-text {
  color: #3A3A3A;
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 50px;
}
.amenity-box .amenity-box-content .details .download-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 30px;
  border: 0;
  border-radius: 100px;
  display: inline-block;
}
.amenity-box .amenity-box-content .details .download-btn:hover {
  opacity: 0.8;
}

#rootsAminity {
  position: relative;
}
#rootsAminity .owl-nav {
  position: absolute;
  top: 60px;
  right: 30px;
  width: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #rootsAminity .owl-nav {
    display: none;
  }
}
#rootsAminity .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  font-size: 0;
  cursor: pointer;
  opacity: 0;
}
#rootsAminity .owl-nav .owl-prev:hover {
  opacity: 0;
  background-color: transparent;
  border: 0;
}
#rootsAminity .owl-nav .owl-prev.disabled {
  opacity: 0;
}
#rootsAminity .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
#rootsAminity .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  cursor: pointer;
  font-size: 0;
}
#rootsAminity .owl-nav .owl-next:hover {
  opacity: 0.8;
  background-color: transparent;
  border: 0;
}
#rootsAminity .owl-nav .owl-next.disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
#rootsAminity .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}
#rootsAminity .owl-dots {
  position: absolute;
  top: 83px;
  right: 70px;
  width: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #rootsAminity .owl-dots {
    position: relative;
    top: auto;
    right: auto;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 50px 0 0 0;
  }
}
#rootsAminity .owl-dots .owl-dot span {
  background-color: #949AA9;
}
#rootsAminity .owl-dots .owl-dot.active span {
  background-color: #EF2626;
}
#rootsAminity .owl-dots .owl-dot:focus {
  box-shadow: none;
  outline: 0;
}

.strategic-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
}
@media (max-width: 768px) {
  .strategic-location {
    flex-direction: column-reverse;
    padding: 50px 0;
  }
}
.strategic-location .details {
  flex: 0 0 30%;
  text-align: center;
}
.strategic-location .details .heading-h2 {
  color: #20695E;
  font-family: "k2dlight";
  font-size: 22px;
  text-transform: uppercase;
  padding: 0 0 20px 0;
}
.strategic-location .details .paragraph-text {
  color: #3A3A3A;
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 50px;
}
.strategic-location .details .around-roots-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  line-height: 2rem;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 30px;
  border: 0;
  border-radius: 100px;
  display: inline-block;
}
.strategic-location .details .around-roots-btn:hover {
  opacity: 0.8;
}
.strategic-location .strategic-location-figure {
  flex: 0 0 50%;
}

.roots-project-features {
  background-color: #EBE4DE;
  padding: 100px 0;
}
.roots-project-features__head {
  padding-bottom: 100px;
}
.roots-project-features__head .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
}
.roots-project-features__body #rootsProjectFeatures {
  position: relative;
}
.roots-project-features__body #rootsProjectFeatures.owl-carousel .owl-stage-outer {
  overflow: visible;
}
@media (max-width: 768px) {
  .roots-project-features__body #rootsProjectFeatures.owl-carousel .owl-stage-outer {
    overflow: hidden;
  }
}
.roots-project-features__body #rootsProjectFeatures.owl-carousel .owl-stage {
  display: flex;
}
.roots-project-features__body #rootsProjectFeatures.owl-carousel .owl-stage .owl-item .features-box {
  display: flex;
  flex-direction: column;
}
.roots-project-features__body #rootsProjectFeatures.owl-carousel .owl-stage .owl-item .features-box .features-box-figure {
  margin: 0;
}
.roots-project-features__body #rootsProjectFeatures.owl-carousel .owl-stage .owl-item .features-box .details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 80%;
  padding: 5%;
}
.roots-project-features__body #rootsProjectFeatures.owl-carousel .owl-stage .owl-item .features-box .details .heading-h3 {
  color: #7B5638;
  font-family: "k2dlight";
  font-size: 22px;
  text-transform: uppercase;
}
.roots-project-features__body #rootsProjectFeatures.owl-carousel .owl-stage .owl-item .features-box .details .paragraph-text {
  color: #525252;
  font-family: "fahkwangregular";
  font-size: 18px;
  text-transform: none;
}
.roots-project-features__body #rootsProjectFeatures.owl-carousel .owl-stage .owl-item:nth-child(even) .features-box {
  flex-direction: column-reverse;
}
.roots-project-features__body #rootsProjectFeatures .owl-nav {
  position: absolute;
  top: -150px;
  right: 30px;
  width: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .roots-project-features__body #rootsProjectFeatures .owl-nav {
    display: none;
  }
}
.roots-project-features__body #rootsProjectFeatures .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  font-size: 0;
  cursor: pointer;
  opacity: 0;
}
.roots-project-features__body #rootsProjectFeatures .owl-nav .owl-prev:hover {
  opacity: 0;
  background-color: transparent;
  border: 0;
}
.roots-project-features__body #rootsProjectFeatures .owl-nav .owl-prev.disabled {
  opacity: 0;
}
.roots-project-features__body #rootsProjectFeatures .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
.roots-project-features__body #rootsProjectFeatures .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  width: 21px;
  height: 37px;
  cursor: pointer;
  font-size: 0;
}
.roots-project-features__body #rootsProjectFeatures .owl-nav .owl-next:hover {
  opacity: 0.8;
  background-color: transparent;
  border: 0;
}
.roots-project-features__body #rootsProjectFeatures .owl-nav .owl-next.disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.roots-project-features__body #rootsProjectFeatures .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}
.roots-project-features__body #rootsProjectFeatures .owl-dots {
  position: absolute;
  top: -126px;
  right: 70px;
  width: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .roots-project-features__body #rootsProjectFeatures .owl-dots {
    position: relative;
    top: auto;
    right: auto;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 50px 0 0 0;
  }
}
.roots-project-features__body #rootsProjectFeatures .owl-dots .owl-dot span {
  background-color: #949AA9;
}
.roots-project-features__body #rootsProjectFeatures .owl-dots .owl-dot.active span {
  background-color: #EF2626;
}
.roots-project-features__body #rootsProjectFeatures .owl-dots .owl-dot:focus {
  box-shadow: none;
  outline: 0;
}

.community-inspires {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community-inspires .heading-h2 {
  color: #F9F8EE;
  font-family: "fahkwangregular";
  font-size: 22px;
  line-height: 32px;
  text-transform: none;
  position: relative;
  z-index: 2;
  max-width: 45%;
  text-align: center;
}
@media (max-width: 768px) {
  .community-inspires .heading-h2 {
    font-size: 2.5rem;
    max-width: 90%;
  }
}
.community-inspires figure {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.community-inspires figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  #otherProjectHome.owl-carousel {
    display: flex !important;
    flex-direction: column;
    gap: 50px;
  }
}
#otherProjectHome.owl-carousel .owl-stage-outer {
  overflow: visible;
}
@media (max-width: 768px) {
  #otherProjectHome.owl-carousel .owl-stage-outer {
    overflow: hidden;
  }
}
#otherProjectHome.owl-carousel .owl-stage {
  display: flex;
}
#otherProjectHome .owl-nav {
  width: auto;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: -90px;
  right: 10px;
}
#otherProjectHome .owl-nav .owl-prev {
  background-image: url(../images/angle-left-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
#otherProjectHome .owl-nav .owl-prev:hover {
  opacity: 0.8;
}
#otherProjectHome .owl-nav .owl-prev.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
#otherProjectHome .owl-nav .owl-prev:focus {
  box-shadow: none;
  outline: 0;
}
#otherProjectHome .owl-nav .owl-next {
  background-image: url(../images/angle-right-solid-full-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 55px;
  height: 55px;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: #20695E solid 1px;
  border-radius: 100px;
}
#otherProjectHome .owl-nav .owl-next:hover {
  opacity: 0.8;
}
#otherProjectHome .owl-nav .owl-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
#otherProjectHome .owl-nav .owl-next:focus {
  box-shadow: none;
  outline: 0;
}

.awards {
  background-color: #F9F8EE;
  padding: 50px 0 0 0;
}
.awards .heading-h2 {
  text-align: center;
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .awards .heading-h2 {
    font-size: 28px;
  }
}
@media (max-width: 599px) {
  .awards .heading-h2 {
    font-size: 24px;
    padding-bottom: 30px;
  }
}
@media (max-width: 375px) {
  .awards .heading-h2 {
    font-size: 24px;
    padding-bottom: 30px;
  }
}
.awards .recognition {
  gap: 20px;
  padding: 0 0 50px 0;
}
.awards .recognition__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.awards .recognition__item .icon {
  width: 75px;
  margin: 0;
}
.awards .recognition__item .icon img {
  width: 100%;
}
.awards .recognition__item .details {
  max-width: 80%;
}
.awards .recognition__item .details .heading-h2 {
  color: #F37255;
  font-family: "k2dlight";
  font-size: 22px;
  padding-bottom: 10px;
  min-height: 65px;
}
@media (max-width: 768px) {
  .awards .recognition__item .details .heading-h2 {
    min-height: auto;
    font-size: 20px;
  }
}
.awards .recognition__item .details .heading-h3 {
  color: #2E2E2E;
  font-family: "acumin_prothin";
  font-size: 18px;
  font-weight: 600;
}

.core-values {
  padding: 120px 0 0 0;
}
@media (max-width: 768px) {
  .core-values {
    padding: 0;
  }
}
.core-values__head {
  padding: 0 0 100px 0;
}
.core-values__head .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
  position: relative;
}
.core-values__body .values-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-values__body .values-item.left-figure {
  flex-direction: row;
}
@media (max-width: 768px) {
  .core-values__body .values-item.left-figure {
    flex-direction: column;
  }
}
.core-values__body .values-item.left-figure figcaption {
  right: 50px;
}
.core-values__body .values-item.right-figure {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .core-values__body .values-item.right-figure {
    flex-direction: column;
  }
}
.core-values__body .values-item.right-figure figcaption {
  left: 50px;
}
@media (max-width: 768px) {
  .core-values__body .values-item {
    flex-direction: column;
  }
}
.core-values__body .values-item .core-figure {
  flex: 0 0 50%;
  margin: 0;
  position: relative;
}
.core-values__body .values-item .core-figure figcaption {
  position: absolute;
  bottom: 50px;
  display: block;
  color: #F9F8EE;
  font-family: "k2dlight";
  font-size: 22px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .core-values__body .values-item .core-figure figcaption {
    font-size: 22px;
  }
}
.core-values__body .values-item .details {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-values__body .values-item .details .content {
  width: 50%;
  text-align: center;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (max-width: 768px) {
  .core-values__body .values-item .details .content {
    width: 95%;
    padding: 50px 0;
  }
}
.core-values__body .values-item .details .content .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #20695E;
  text-transform: uppercase;
}
.core-values__body .values-item .details .content .heading-h3 {
  font-family: "fahkwangregular";
  font-size: 22px;
  line-height: 34px;
}
.core-values__body .values-item .details .content .paragraph-text {
  font-family: "acumin_prothin";
  font-size: 18px;
  line-height: 30px;
}

.boutique-villas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .boutique-villas {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 50px;
  }
}
.boutique-villas figure {
  margin: 0;
  height: 100vh;
  width: 100%;
}
@media (max-width: 768px) {
  .boutique-villas figure {
    height: 50vh;
  }
}
.boutique-villas figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.boutique-villas .details .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  width: 75%;
}
@media (max-width: 768px) {
  .boutique-villas .details .content {
    width: 90%;
    margin: 0 auto;
    align-items: center;
  }
}
.boutique-villas .details .content .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: left;
  color: #20695E;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .boutique-villas .details .content .heading-h2 {
    text-align: center;
  }
}
.boutique-villas .details .content .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #5C5C5C;
}
@media (max-width: 768px) {
  .boutique-villas .details .content .paragraph-text {
    text-align: center;
  }
}
.boutique-villas .details .content .buttons {
  display: flex;
  gap: 15px;
  flex-direction: row;
}
@media (max-width: 768px) {
  .boutique-villas .details .content .buttons {
    flex-direction: column;
  }
}
.boutique-villas .details .content .buttons .brochure-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 18px;
  letter-spacing: 2.4px;
  font-weight: 400;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 30px 13px;
  border-radius: 100px;
  border: 0;
}
.boutique-villas .details .content .buttons .brochure-btn:hover {
  opacity: 0.8;
}
.boutique-villas .details .content .buttons .brochure-btn.dasktopview {
  display: block;
}
@media (max-width: 768px) {
  .boutique-villas .details .content .buttons .brochure-btn.dasktopview {
    display: none;
  }
}
.boutique-villas .details .content .buttons .brochure-btn.mofileview {
  display: none;
}
@media (max-width: 768px) {
  .boutique-villas .details .content .buttons .brochure-btn.mofileview {
    display: block;
  }
}

.location-earthhomes {
  display: grid;
  grid-template-areas: "details figure";
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .location-earthhomes {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "figure" "details";
    padding-bottom: 50px;
    padding: 0;
  }
}
.location-earthhomes figure {
  margin: 0;
  height: 100vh;
  width: 100%;
  grid-area: figure;
}
@media (max-width: 768px) {
  .location-earthhomes figure {
    height: 50vh;
  }
}
.location-earthhomes figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.location-earthhomes .details {
  grid-area: details;
  display: flex;
  justify-content: end;
}
.location-earthhomes .details .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  width: 75%;
}
@media (max-width: 768px) {
  .location-earthhomes .details .content {
    width: 90%;
    margin: 0 auto;
    align-items: center;
  }
}
.location-earthhomes .details .content .heading-h2 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: left;
  color: #20695E;
  text-transform: uppercase;
}
.location-earthhomes .details .content .paragraph-text {
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
}
.location-earthhomes .details .content ul {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px;
  width: 100%;
}
@media (max-width: 768px) {
  .location-earthhomes .details .content ul {
    grid-template-columns: repeat(1, auto);
    padding-bottom: 50px;
  }
}
.location-earthhomes .details .content ul li {
  position: relative;
  padding: 0 0 0 25px;
  font-family: "fahkwangregular";
  font-size: 18px;
  font-weight: 400;
  color: #5C5C5C;
}
.location-earthhomes .details .content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #20695E;
  border-radius: 100px;
  position: absolute;
  top: 8px;
  left: 5px;
}

.environment-figure {
  position: relative;
  width: 80%;
  height: auto;
  overflow: hidden;
  margin: 50px auto 50px auto;
}
@media (max-width: 768px) {
  .environment-figure {
    width: 100%;
  }
}
.environment-figure figure {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
}
@media (max-width: 768px) {
  .environment-figure figure {
    width: 100%;
    height: 300px;
  }
}
.environment-figure figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.environment-figure figure figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #F9F8EE;
  font-family: "k2dlight";
  font-size: 32px;
}
.environment-figure .heading-h2 {
  margin: 50px auto 0 auto;
  width: 55%;
  z-index: 1;
  text-align: center;
  color: #20695E;
  font-family: "k2dlight";
  font-size: 22px;
  line-height: 34px;
}
@media (max-width: 768px) {
  .environment-figure .heading-h2 {
    width: 100%;
  }
}
.environment-figure .brochure-btn {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 18px;
  letter-spacing: 2.4px;
  font-weight: 400;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 30px 13px 30px;
  border: 0;
  display: inline-block;
  border-radius: 100px;
}
.environment-figure .brochure-btn:hover {
  opacity: 0.8;
}
.environment-figure #earthHomesCarousel .owl-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .environment-figure #earthHomesCarousel .owl-dots {
    position: relative;
    top: auto;
    right: auto;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 50px 0 0 0;
  }
}
.environment-figure #earthHomesCarousel .owl-dots .owl-dot span {
  background-color: #949AA9;
}
.environment-figure #earthHomesCarousel .owl-dots .owl-dot.active span {
  background-color: #EF2626;
}
.environment-figure #earthHomesCarousel .owl-dots .owl-dot:focus {
  box-shadow: none;
  outline: 0;
}

.rera-number {
  background-color: #E6ffCB;
}
.rera-number .paragraph-text {
  text-align: center;
  padding: 30px 0;
  color: #20695E;
  font-family: "k2dlight";
  word-break: break-word;
}
.rera-number .paragraph-text a {
  color: #20695E;
}

.roots-accordion {
  border: 0px;
  border-radius: 0;
  width: 80%;
}
@media (max-width: 768px) {
  .roots-accordion {
    width: 95%;
    margin-bottom: 50px;
  }
}
.roots-accordion .accordion-item {
  border: 0;
  background-color: transparent;
}
.roots-accordion .accordion-item .accordion-header {
  background-color: transparent;
  border-radius: 0;
}
.roots-accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  border-radius: 0;
  font-family: "k2dlight";
  font-size: 20px;
  font-weight: 600;
  box-shadow: none;
  color: #F37255;
  border-bottom: 0;
  position: relative;
}
.roots-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border: 0;
}
.roots-accordion .accordion-item .accordion-header .accordion-button.collapsed {
  color: #20695E;
  border-radius: 0;
}
.roots-accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
  content: "+";
  background-color: #20695E;
}
.roots-accordion .accordion-item .accordion-header .accordion-button.collapsed::before {
  background-color: #20695E;
}
.roots-accordion .accordion-item .accordion-header .accordion-button::after {
  background-color: #F37255;
  color: #E6ffCB;
  background-image: none;
  content: "-";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.roots-accordion .accordion-item .accordion-header .accordion-button::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F37255;
  position: absolute;
  bottom: 0;
  left: 0;
}
.roots-accordion .accordion-item .accordion-body {
  font-family: "fahkwangregular";
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #5C5C5C;
}

.hero-banner {
  background-color: #20695E;
  padding: 110px 0 100px 0;
  margin-top: -104px;
}
@media (max-width: 1367px) {
  .hero-banner {
    padding: 110px 0 50px 0;
  }
}
@media (max-width: 1280px) {
  .hero-banner {
    padding: 110px 0 50px 0;
  }
}
@media (max-width: 1024px) {
  .hero-banner {
    padding: 110px 0 50px 0;
  }
}
@media (max-width: 599px) {
  .hero-banner {
    padding: 0 0 50px 0;
    margin-top: -144px;
  }
}
@media (max-width: 375px) {
  .hero-banner {
    padding: 0 0 50px 0;
    margin-top: -144px;
  }
}
.hero-banner__inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 50px 0 0 0;
}
@media (max-width: 768px) {
  .hero-banner__inner {
    max-width: 100%;
  }
}
.hero-banner__inner .video-container {
  position: relative;
  width: 100%;
  min-height: 610px;
}
@media (max-width: 1367px) {
  .hero-banner__inner .video-container {
    min-height: 440px;
  }
}
@media (max-width: 1280px) {
  .hero-banner__inner .video-container {
    min-height: 400px;
  }
}
@media (max-width: 1024px) {
  .hero-banner__inner .video-container {
    min-height: 370px;
  }
}
@media (max-width: 599px) {
  .hero-banner__inner .video-container {
    min-height: 410px;
  }
}
@media (max-width: 375px) {
  .hero-banner__inner .video-container {
    min-height: 410px;
  }
}
.hero-banner__inner .video-container .dasktop-video-figure {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 1367px) {
  .hero-banner__inner .video-container .dasktop-video-figure {
    display: block;
  }
}
@media (max-width: 1280px) {
  .hero-banner__inner .video-container .dasktop-video-figure {
    display: block;
  }
}
@media (max-width: 1024px) {
  .hero-banner__inner .video-container .dasktop-video-figure {
    display: none;
  }
}
@media (max-width: 599px) {
  .hero-banner__inner .video-container .dasktop-video-figure {
    display: none;
  }
}
@media (max-width: 375px) {
  .hero-banner__inner .video-container .dasktop-video-figure {
    display: none;
  }
}
.hero-banner__inner .video-container .dasktop-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 565px;
  border: none;
}
.hero-banner__inner .video-container .mobile-video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border: none;
}
@media (max-width: 768px) {
  .hero-banner__inner .video-container .mobile-video {
    display: block;
  }
}
.hero-banner__inner .video-container .mobile-video-figure {
  display: none;
  margin: 0;
}
@media (max-width: 1367px) {
  .hero-banner__inner .video-container .mobile-video-figure {
    display: none;
  }
}
@media (max-width: 1280px) {
  .hero-banner__inner .video-container .mobile-video-figure {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hero-banner__inner .video-container .mobile-video-figure {
    display: block;
  }
}
@media (max-width: 599px) {
  .hero-banner__inner .video-container .mobile-video-figure {
    display: block;
    height: calc(100vh - 55px);
  }
}
@media (max-width: 375px) {
  .hero-banner__inner .video-container .mobile-video-figure {
    display: block;
    height: calc(100vh - 55px);
  }
}
.hero-banner__inner .video-container .mobile-video-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 599px) {
  .hero-banner__inner .hero-banner-details {
    position: absolute;
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    width: 100%;
    z-index: 1;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 0;
  }
}
@media (max-width: 375px) {
  .hero-banner__inner .hero-banner-details {
    position: absolute;
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    width: 100%;
    z-index: 2;
    padding: 0 15px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 0;
  }
}
.hero-banner__inner .heading-h1 {
  font-family: "k2dlight";
  font-size: 24px;
  line-height: 2.4rem;
  color: #F9F8EE;
  text-align: center;
  text-transform: none;
  max-width: 45%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero-banner__inner .heading-h1 {
    max-width: 100%;
    padding-top: 0;
    font-size: 22px;
    line-height: 34px;
    width: 90%;
  }
}
.hero-banner__inner .heading-h1 span {
  color: #FFB395;
}
.hero-banner__inner .paragraph-text {
  color: #E6ffCB;
  font-family: "acumin_prothin";
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding-bottom: 20px;
}
.hero-banner__inner .arrow {
  border: #E6ffCB solid 1px;
  border-radius: 100px;
  height: 60px;
  width: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner__inner .arrow i {
  color: #E6ffCB;
  animation: jumpInfinite 1.5s infinite;
}
@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0;
  }
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

body {
  background-color: #F9F8EE;
  font-family: "gt_super_displaylight";
  font-size: 18px;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
span,
article,
section {
  margin: 0;
  padding: 0;
}

.body-text {
  font-family: "gt_super_displaylight";
  font-size: 18px;
  font-weight: 400;
}

.container {
  max-width: 80%;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .container {
    max-width: 95%;
    width: 95%;
  }
}

.scroll-container section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.scroll-container section h1 {
  font-size: 52px;
}
.scroll-container section h2 {
  font-size: 52px;
}
.scroll-container section p {
  font-size: 22px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #7B5638;
  border-radius: 100px;
}

.enquire-form-popup-head {
  padding: 50px 40px;
  background-color: #20695E;
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
}
.enquire-form-popup-head h1 {
  font-family: "k2dlight";
  font-weight: 400;
  font-size: 22px;
  text-align: center;
  color: #FAFFDF;
  text-transform: none;
}

.enquire-form-popup {
  padding: 50px 50px 10px 50px;
}
.enquire-form-popup .wpcf7-form-control-wrap {
  width: 100%;
  border: red solid 0px;
  padding: 0;
  margin-bottom: 10px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enquire-form-popup .wpcf7-form-control-wrap .wpcf7-text {
  width: 100%;
  border: green solid 1px;
  padding: 10px;
}
.enquire-form-popup .wpcf7-form-control-wrap .wpcf7-textarea {
  width: 100%;
  border: green solid 1px;
  padding: 10px;
  height: 100px;
  resize: none;
  display: none;
}
.enquire-form-popup .wpcf7-submit {
  background-color: #20695E;
  font-family: "fahkwangregular";
  font-size: 18px;
  letter-spacing: 2.4px;
  font-weight: 400;
  color: #FAFFDF;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 30px 13px 30px;
  border: 0;
  width: 100%;
}/*# sourceMappingURL=master.css.map */