/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/app.scss ***!
  \**********************************************************************************************************/
:root {
  --color-bg-primary: rgba(173, 135, 79, 0.16);
  --color-bg-light: #fff;
  --color-primary: #AD874F;
  --color-dark-gray: #222222;
  --color-dark-50: #4D4D4D;
  --color-black: #000;
  --color-white: #fff;
  --font-base: "Montserrat", sans-serif;
  --font-tenor-sans: "Tenor Sans", sans-serif;
}

body {
  font-family: var(--font-base);
  background: linear-gradient(0deg, rgba(173, 135, 79, 0.08), rgba(173, 135, 79, 0.08)), var(--color-bg-light);
}

.container {
  max-width: 1280px;
}

.hide-desktop {
  display: none !important;
}
@media (max-width: 767px) {
  .hide-desktop {
    display: block !important;
  }
}

.hide-mobile {
  display: block !important;
}
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

/* ======================================= COLORS ======================================== */
.text-brown {
  color: var(--color-primary) !important;
}

.text-dark-gray {
  color: var(--color-dark-gray) !important;
}

.text-dark-50 {
  color: var(--color-dark-50) !important;
}

/* ======================================= TYPOGRAPHY ======================================== */
.large-text {
  font-family: var(--font-tenor-sans);
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .large-text {
    font-size: 32px;
    line-height: 40px;
  }
}

.medium-text {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .medium-text {
    font-size: 14px;
    line-height: 28px;
  }
}

.paragraph-text {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-dark-50);
  text-align: justify;
}
@media (max-width: 767px) {
  .paragraph-text {
    font-size: 14px;
    line-height: 28px;
  }
}

/* ======================================= BUTTON ======================================== */
.btn {
  border-radius: 0px;
  outline: none;
  box-shadow: none;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  padding: 12px 24px;
  width: fit-content;
  height: 46px;
}
@media (max-width: 767px) {
  .btn {
    font-size: 14px;
    line-height: 17px;
    padding: 6px 14px;
    height: 35px;
  }
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-white {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--color-bg-light) !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary);
  opacity: 1 !important;
}
.btn-border-primary {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-border-primary:hover, .btn-border-primary:focus {
  background-color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-white);
  opacity: 1 !important;
}
.btn:hover, .btn:focus, .btn:active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  opacity: 0.8;
}

/* ======================================= NAVBAR ======================================== */
.custom-nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: transparent !important;
  transition: background-color 0.3s ease;
  padding: 16px 0px;
}
.custom-nav.scrolled {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .custom-nav.navbar-light {
    position: relative;
  }
}
.custom-nav.navbar-light .navbar-toggler .hamburger-box span {
  background-color: var(--color-dark-gray);
}
.custom-nav .navbar-toggler {
  padding: 0;
  width: 30px;
  height: 25px;
  cursor: pointer;
  outline: none;
  border: none !important;
  box-shadow: none;
}
.custom-nav .navbar-toggler .hamburger-box {
  position: relative;
  width: 30px;
  height: 25px;
}
.custom-nav .navbar-toggler .hamburger-box span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--color-bg-light);
  transition: all 0.3s ease-in-out;
}
.custom-nav .navbar-toggler .hamburger-box span:nth-child(1) {
  top: 0;
}
.custom-nav .navbar-toggler .hamburger-box span:nth-child(2) {
  top: 9px;
}
.custom-nav .navbar-toggler .hamburger-box span:nth-child(3) {
  top: 18px;
}
.custom-nav .navbar-toggler.active .hamburger-box span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.custom-nav .navbar-toggler.active .hamburger-box span:nth-child(2) {
  opacity: 0;
}
.custom-nav .navbar-toggler.active .hamburger-box span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.nav-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(173, 135, 79, 0.08), rgba(173, 135, 79, 0.08)), var(--color-bg-light);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav-popup.active {
  opacity: 1;
  visibility: visible;
}
.nav-popup .popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0px;
  height: 80px;
}
.nav-popup .popup-header .logo-placeholder {
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-popup .popup-header .close-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}
.nav-popup .popup-header .close-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-black);
  position: absolute;
  top: 14px;
}
.nav-popup .popup-header .close-btn span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-popup .popup-header .close-btn span:nth-child(2) {
  transform: rotate(-45deg);
}
.nav-popup .nav-popup-content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 80px);
  padding-top: 100px;
}
@media (max-width: 767px) {
  .nav-popup .nav-popup-content-container {
    padding-top: 20px;
  }
}
.nav-popup .nav-item {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .nav-popup .nav-item {
    margin-bottom: 20px;
  }
}
.nav-popup .nav-item:last-child {
  margin-bottom: 0px;
}
.nav-popup .nav-link {
  font-family: var(--font-tenor-sans);
  font-size: 28px;
  font-weight: 400;
  line-height: 45px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  color: var(--color-dark-gray);
  margin-bottom: 0px;
  padding: 0px;
}
@media (max-width: 767px) {
  .nav-popup .nav-link {
    font-size: 20px;
    line-height: 25px;
  }
}
.nav-popup .nav-link.active, .nav-popup .nav-link:hover {
  color: var(--color-primary);
}

/* ======================================= HERO BANNER ======================================== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.hero-banner .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  margin-left: -1px;
}
.hero-banner.hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-banner.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-banner.hero-image .hero-content {
  position: relative;
  z-index: 2;
}
.hero-banner .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.hero-banner .scroll-down-wrapper {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  z-index: 10;
}
.hero-banner .scroll-down-wrapper .scroll-text {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--color-white);
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero-banner .scroll-down-wrapper .scroll-text {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 15px;
  }
}
.hero-banner .scroll-down-wrapper .scroll-line {
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-banner .scroll-down-wrapper .scroll-line {
    height: 50px;
  }
}
.hero-banner .scroll-down-wrapper .scroll-line::after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: #fff;
  animation: scrollLineAnimation 2.5s infinite;
  transform-origin: top;
}

/* ======================================= TWO COLUMNS ======================================== */
.two-column-section {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .two-column-section {
    padding: 20px 0px;
  }
}
.two-column-section .column-text {
  max-width: 488px;
}
@media (max-width: 767px) {
  .two-column-section .column-text {
    max-width: 100%;
    margin-top: 30px;
  }
}
.two-column-section .column-text h2 {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .two-column-section .column-text h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .two-column-section img {
    width: 100%;
  }
}
.two-column-section .tab-headers {
  display: flex;
  gap: 30px;
  margin-bottom: 32px;
}
.two-column-section .tab-headers .tab-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  color: var(--color-dark-gray);
  text-transform: uppercase;
  padding: 0px;
}
.two-column-section .tab-headers .tab-link.active {
  color: var(--color-primary);
}
.two-column-section .tab-headers .tab-link.active:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-dark-gray);
}
.two-column-section .tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.two-column-section .tab-content.active-content {
  display: block;
  opacity: 1;
}
.two-column-section .tab-content h2 {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .two-column-section .tab-content h2 {
    margin-bottom: 15px;
  }
}
.two-column-section .tab-content .btn {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .two-column-section .tab-content .btn {
    margin-top: 15px;
  }
}
.two-column-section .image-gallery {
  position: relative;
}
@media (max-width: 767px) {
  .two-column-section .image-gallery {
    margin-bottom: 20px;
  }
}
.two-column-section .image-gallery .tab-image {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.two-column-section .image-gallery .tab-image.active-image {
  display: block;
  opacity: 1;
}

/* ======================================= SLIDER ======================================== */
.slider-section {
  position: relative;
}
.slider-section.slide-2 .swiper-container {
  width: 100%;
  overflow: hidden;
  height: 400px;
  margin-top: 80px;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .slider-section.slide-2 .swiper-container {
    height: 300px;
    margin-top: 20px;
  }
}
.slider-section.slide-2 .swiper-container .swiper-slide {
  width: 60%;
  max-height: 400px;
}
@media (max-width: 767px) {
  .slider-section.slide-2 .swiper-container .swiper-slide {
    width: 100%;
    max-height: 400px;
    transform: none;
  }
}
.slider-section.slide-2 .swiper-container .swiper-slide.swiper-slide-active {
  max-height: 400px;
}
.slider-section.slide-2 .swiper-container .swiper-slide.swiper-slide-active .text-overlay {
  opacity: 1;
  transform: translateY(0);
}
.slider-section .content-slide-header .swiper-control {
  margin: 0 0 0 auto;
  height: 100%;
  align-items: end;
}
@media (max-width: 767px) {
  .slider-section .content-slide-header .swiper-control {
    margin: 20px 0px 0px 0px;
    width: fit-content;
    align-items: start;
  }
}
.slider-section .content-slide-header .swiper-control .swiper-control-arrow {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0px;
}
.slider-section .swiper-wrapper {
  align-items: center;
}
.slider-section .swiper-container {
  width: 100%;
  overflow: hidden;
  height: 340px;
  margin-bottom: 78px;
}
@media (max-width: 767px) {
  .slider-section .swiper-container {
    margin-bottom: 20px;
    height: 300px;
  }
}
.slider-section .swiper-slide {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  text-align: center;
  font-size: 18px;
  width: 50%;
  transform: scale(0.85);
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in;
  transition: transform 0.6s ease-out, opacity 0.6s ease;
  max-height: 240px;
}
@media (max-width: 767px) {
  .slider-section .swiper-slide {
    width: 100%;
    max-height: 250px;
    transform: none;
  }
}
.slider-section .swiper-slide.swiper-slide-active {
  max-height: 340px;
}
@media (max-width: 767px) {
  .slider-section .swiper-slide.swiper-slide-active {
    max-height: 250px;
  }
}
.slider-section .swiper-slide.swiper-slide-active .text-overlay {
  opacity: 1;
  transform: translateY(0);
}
.slider-section .swiper-slide .text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 18px 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.8s ease-out 0.4s, opacity 0.8s ease 0.4s;
}
@media (max-width: 767px) {
  .slider-section .swiper-slide .text-overlay {
    padding: 10px 20px;
  }
}
.slider-section .swiper-slide .text-overlay p {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color-white);
  margin-bottom: 0px;
  text-transform: uppercase;
  text-align: left;
}
@media (max-width: 767px) {
  .slider-section .swiper-slide .text-overlay p {
    font-size: 18px;
    line-height: 28px;
  }
}
.slider-section .swiper-control {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100px;
  margin: 0 auto;
  gap: 16px;
}
.slider-section .swiper-control .swiper-control-arrow {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 0.8px solid #111827;
}
.slider-section .swiper-control .swiper-control-arrow::after {
  width: 100%;
  height: 100%;
  font-size: 18px;
  text-align: center;
}
.slider-section .swiper-button-next::after {
  content: url("data:image/svg+xml,<svg width=\"7\" height=\"11\" viewBox=\"0 0 7 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.12482 5.30332L0 1.17851L1.17852 0L6.48182 5.30332L1.17852 10.6066L0 9.42807L4.12482 5.30332Z\" fill=\"%23111827\"/></svg>");
  position: relative;
  left: 1px;
}
.slider-section .swiper-button-prev::after {
  content: url("data:image/svg+xml,<svg width=\"7\" height=\"11\" viewBox=\"0 0 7 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.357 5.30332L6.48183 9.42807L5.30333 10.6066L0 5.30332L5.30333 0L6.48183 1.17851L2.357 5.30332Z\" fill=\"%23111827\"/></svg>");
  position: relative;
  left: -1px;
}

.blog-list {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-list {
    margin-bottom: 0px;
  }
}

.card-blog-img img {
  width: 100%;
  height: 280px !important;
  object-fit: cover;
}
@media (max-width: 767px) {
  .card-blog-img img {
    height: auto !important;
  }
}
.card-blog-img a:hover {
  opacity: 0.9;
}
.card-blog-text {
  margin-top: 24px;
}
.card-blog-text h3 {
  font-family: var(--font-tenor-sans);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-dark-gray);
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .card-blog-text h3 {
    font-size: 18px;
  }
}
.card-blog-text a {
  color: var(--color-dark-gray);
}
.card-blog-text .btn-readmore {
  margin-top: 8px;
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  text-decoration: none;
  margin: 0 auto;
  text-align: center;
  display: block;
  width: fit-content;
  position: relative;
  padding: 8px 0px;
}
@media (max-width: 767px) {
  .card-blog-text .btn-readmore {
    font-size: 16px;
    padding: 4px 0px;
  }
}
.card-blog-text .btn-readmore::after {
  content: "";
  background-color: var(--color-primary);
  width: 100%;
  height: 1px;
  margin-top: 12px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 767px) {
  .card-blog-text .btn-readmore::after {
    margin-top: 6px;
  }
}
.card-blog-text .btn-readmore:hover::after {
  transform: translateY(-4px);
  opacity: 0.5;
}

.connect-with-us {
  background-image: url(../23be7d63518e63584641.png);
  background-repeat: repeat;
  width: 100%;
  height: auto;
  padding: 62px 0px;
}
.connect-with-us.dark {
  background: linear-gradient(0deg, rgba(41, 56, 86, 0.7), rgba(41, 56, 86, 0.7)), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../0549edb51fbd7db7a3c2.png);
}
@media (max-width: 767px) {
  .connect-with-us {
    padding: 40px 0px;
  }
}
.connect-with-us .contact-list {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .connect-with-us .contact-list {
    flex-direction: column;
    padding: 0px;
    gap: 10px;
  }
}
.connect-with-us .contact-list li {
  list-style: none;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .connect-with-us .contact-list li {
    flex-direction: column;
    gap: 10px;
  }
}
.connect-with-us .contact-list li:first-child::before {
  display: none;
}
.connect-with-us .contact-list li::before {
  content: "";
  background-color: var(--color-white);
  width: 4px;
  height: 4px;
  border-radius: 50px;
  display: block;
  margin: 0px 32px;
}
@media (max-width: 767px) {
  .connect-with-us .contact-list li::before {
    display: none;
  }
}
.connect-with-us .contact-list li a {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  text-decoration: none;
}
.connect-with-us .contact-list li a svg {
  margin-right: 10px;
}
.connect-with-us .btn {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .connect-with-us .btn {
    margin-top: 10px;
  }
}

.footer {
  padding: 76px 0px 0px 0px;
}
@media (max-width: 767px) {
  .footer {
    padding: 20px 0px 0px 0px;
  }
}
.footer .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.footer-address p {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-dark-50);
  margin-bottom: 0px;
}
.footer-socmed ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer-socmed ul li {
  list-style: none;
}
.footer-socmed ul li a svg {
  transition: transform 0.3s ease;
}
.footer-socmed ul li a:hover svg {
  transform: translateY(-5px);
}
.footer-copyright {
  background-color: var(--color-bg-light);
  padding: 22px;
  margin-top: 96px;
}
@media (max-width: 767px) {
  .footer-copyright {
    margin-top: 20px;
  }
}
.footer-copyright p {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-dark-50);
  line-height: 20px;
  margin-bottom: 0px;
}

/* ======================================= MODAL POPUP ======================================== */
#kontakModal,
#downloadBrosurModal {
  z-index: 9999;
}
#kontakModal .modal-dialog,
#downloadBrosurModal .modal-dialog {
  max-width: 480px;
}
#kontakModal .modal-dialog .modal-content,
#downloadBrosurModal .modal-dialog .modal-content {
  border-radius: 0px;
}
#kontakModal .modal-dialog .modal-content .modal-header,
#downloadBrosurModal .modal-dialog .modal-content .modal-header {
  padding: 27px 27px 7px 27px;
  border: none;
}
#kontakModal .modal-dialog .modal-content .modal-header .btn-close-popup,
#downloadBrosurModal .modal-dialog .modal-content .modal-header .btn-close-popup {
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
#kontakModal .modal-dialog .modal-content .modal-body,
#downloadBrosurModal .modal-dialog .modal-content .modal-body {
  padding: 0px 32px 0px 32px;
}
#kontakModal .modal-dialog .modal-content .modal-body .heading,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .heading {
  font-family: var(--font-tenor-sans);
  font-size: 28px;
  line-height: 35px;
  font-weight: 400;
  color: var(--color-dark-gray);
  margin-bottom: 20px;
  text-transform: uppercase;
}
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group {
  margin-bottom: 16px;
}
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group:last-child,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group:last-child {
  margin-bottom: 0px;
}
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group p,
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group label,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group p,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group label {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  margin-bottom: 6px;
  color: var(--color-dark-gray);
  text-align: left !important;
}
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group input,
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group select,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group input,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group select {
  width: 100%;
  height: 44px;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-primary);
  padding: 8px 16px;
  outline: none;
  box-shadow: none;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: var(--color-dark-gray);
}
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group select,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width=%2715%27 height=%278%27 viewBox=%270 0 15 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M13.95 0.75L8.51667 6.18333C7.875 6.825 6.825 6.825 6.18333 6.18333L0.75 0.75%27 stroke=%27%236B7280%27 stroke-width=%271.5%27 stroke-miterlimit=%2710%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group input[type=submit],
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group input[type=submit] {
  margin-top: 32px;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group input[type=submit]:hover,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .form-group input[type=submit]:hover {
  opacity: 0.9;
}
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .wpcf7-not-valid-tip,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-family: var(--font-base);
}
#kontakModal .modal-dialog .modal-content .modal-body .wpcf7-form .wpcf7-response-output,
#downloadBrosurModal .modal-dialog .modal-content .modal-body .wpcf7-form .wpcf7-response-output {
  margin: 0px 0px 32px 0px;
}

/* ======================================= ABOUT US PAGE ======================================== */
#features-2 {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  #features-2 {
    padding-bottom: 20px;
  }
}
#features-2 hr {
  margin: 80px 0px 0px 0px;
  border-color: var(--color-primary);
}
@media (max-width: 767px) {
  #features-2 hr {
    margin: 20px 0px 0px 0px;
  }
}

#business {
  padding: 85px 0px;
}
@media (max-width: 767px) {
  #business {
    padding: 20px 0px;
  }
}
#business .our-business-content {
  margin-top: 56px;
}
@media (max-width: 991px) {
  #business .our-business-content {
    margin-top: 20px;
  }
}
#business .timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  #business .timeline {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
#business .timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  #business .timeline-item {
    margin-bottom: 30px;
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  #business .timeline-item {
    margin-bottom: 30px;
    flex: 1 1 calc(100% - 20px);
  }
}
#business .timeline-item:last-child::before {
  display: none;
}
#business .timeline-item:last-child .line {
  display: none;
}
#business .timeline-item .img-wrapper {
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  #business .timeline-item .img-wrapper {
    margin-bottom: 20px;
  }
}
#business .timeline-item .label {
  margin-top: 32px;
  font-family: var(--font-tenor-sans);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-dark-gray);
  text-align: center;
}
@media (max-width: 991px) {
  #business .timeline-item .label {
    margin-top: 0px;
    font-size: 18px;
  }
}
#business .dot-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
@media (max-width: 991px) {
  #business .dot-wrapper {
    display: none;
  }
}
#business .line-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  #business .line-dot {
    display: none;
  }
}
#business .dot {
  width: 16px;
  height: 16px;
  background: #c5a059;
  border-radius: 50%;
  z-index: 2;
}
#business .line {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #c5a059;
  z-index: 1;
}

#vision .our-vision-header .paragraph-text {
  margin-top: 16px;
}
#vision .our-vision-content {
  margin-top: 80px;
}
@media (max-width: 991px) {
  #vision .our-vision-content {
    margin-top: 20px;
  }
}
#vision .our-vision-content img {
  width: 100%;
}

.consultants-section {
  padding: 156px 0;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .consultants-section {
    padding: 20px 0px;
  }
}
.consultants-section .container-wrapper {
  display: flex;
  align-items: center;
  gap: 120px;
  padding-left: calc((100vw - 1280px) / 2);
}
@media (max-width: 991px) {
  .consultants-section .container-wrapper {
    gap: 20px;
    padding-left: 0px;
    align-items: start;
    padding: 0px 20px;
    flex-direction: column;
  }
}
.consultants-section .col-left {
  flex: 0 0 438px;
}
@media (max-width: 991px) {
  .consultants-section .col-left {
    flex: 0 0 100%;
  }
}
.consultants-section .col-left h2 {
  margin-bottom: 54px;
}
@media (max-width: 991px) {
  .consultants-section .col-left h2 {
    margin-bottom: 20px;
  }
}
.consultants-section .col-right {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .consultants-section .col-right {
    min-width: 100% !important;
  }
}
.consultants-section .col-right .swiper-container-consultants {
  overflow: visible;
}
.consultants-section .swiper-slide {
  width: 361px;
  height: 400px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
@media (max-width: 991px) {
  .consultants-section .swiper-slide {
    width: 100% !important;
    height: 350px !important;
  }
}
.consultants-section .swiper-slide.swiper-slide-active .text-overlay {
  opacity: 1;
  transform: translateY(0);
}
.consultants-section .swiper-slide .text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  transition: transform 0.8s ease-out 0.4s, opacity 0.8s ease 0.4s;
}
@media (max-width: 767px) {
  .consultants-section .swiper-slide .text-overlay {
    padding: 10px 20px;
  }
}
.consultants-section .swiper-slide .text-overlay p {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color-white);
  margin-bottom: 0px;
  text-transform: uppercase;
  text-align: left;
}
.consultants-section .swiper-control {
  position: relative;
  display: flex;
  width: 100px;
  gap: 16px;
}
.consultants-section .swiper-control .swiper-control-arrow {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 0.8px solid #111827;
  position: relative;
  top: 0px;
  left: 0;
  right: 0;
  margin-top: 54px;
}
@media (max-width: 991px) {
  .consultants-section .swiper-control .swiper-control-arrow {
    margin-top: 20px;
  }
}
.consultants-section .swiper-control .swiper-control-arrow::after {
  width: 100%;
  height: 100%;
  font-size: 18px;
  text-align: center;
}
.consultants-section .swiper-button-next::after {
  content: url("data:image/svg+xml,<svg width=\"7\" height=\"11\" viewBox=\"0 0 7 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.12482 5.30332L0 1.17851L1.17852 0L6.48182 5.30332L1.17852 10.6066L0 9.42807L4.12482 5.30332Z\" fill=\"%23111827\"/></svg>");
  position: relative;
  left: 1px;
}
.consultants-section .swiper-button-prev::after {
  content: url("data:image/svg+xml,<svg width=\"7\" height=\"11\" viewBox=\"0 0 7 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.357 5.30332L6.48183 9.42807L5.30333 10.6066L0 5.30332L5.30333 0L6.48183 1.17851L2.357 5.30332Z\" fill=\"%23111827\"/></svg>");
  position: relative;
  left: -1px;
}

.our-partners-header {
  margin-bottom: 54px;
}
@media (max-width: 991px) {
  .our-partners-header {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .our-partners-header {
    text-align: center;
  }
}
.our-partners-header .medium-text {
  font-size: 22px !important;
  line-height: 26px !important;
}
.our-partners .partnerSwiper {
  width: 100%;
}
.our-partners .partnerSwiper .swiper-control {
  position: relative;
  display: flex;
  width: 100px;
  gap: 16px;
  margin: 0 auto;
}
.our-partners .partnerSwiper .swiper-control .swiper-control-arrow {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 0.8px solid #111827;
  position: relative;
  top: 0px;
  left: 0;
  right: 0;
  margin-top: 54px;
}
@media (max-width: 991px) {
  .our-partners .partnerSwiper .swiper-control .swiper-control-arrow {
    margin-top: 20px;
  }
}
.our-partners .partnerSwiper .swiper-control .swiper-control-arrow::after {
  width: 100%;
  height: 100%;
  font-size: 18px;
  text-align: center;
}
.our-partners .partnerSwiper .swiper-button-next::after {
  content: url("data:image/svg+xml,<svg width=\"7\" height=\"11\" viewBox=\"0 0 7 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.12482 5.30332L0 1.17851L1.17852 0L6.48182 5.30332L1.17852 10.6066L0 9.42807L4.12482 5.30332Z\" fill=\"%23111827\"/></svg>");
  position: relative;
  left: 1px;
}
.our-partners .partnerSwiper .swiper-button-prev::after {
  content: url("data:image/svg+xml,<svg width=\"7\" height=\"11\" viewBox=\"0 0 7 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.357 5.30332L6.48183 9.42807L5.30333 10.6066L0 5.30332L5.30333 0L6.48183 1.17851L2.357 5.30332Z\" fill=\"%23111827\"/></svg>");
  position: relative;
  left: -1px;
}
.our-partners .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.our-partners .swiper-slide img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.our-partners .partner-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  height: 50px;
  position: relative;
}
.our-partners .partner-nav .swiper-button-next,
.our-partners .partner-nav .swiper-button-prev {
  position: static;
  width: 44px;
  height: 44px;
  color: #333;
}
@media (max-width: 768px) {
  .our-partners .partnerSwiper {
    height: auto;
    margin-bottom: 20px;
  }
}
.our-partners .category-group {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .our-partners .category-group {
    margin-bottom: 20px;
  }
}
.our-partners .category-group .category-name {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .our-partners .category-group .category-name {
    text-align: center;
  }
}
.our-partners .category-group .items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 767px) {
  .our-partners .category-group .items-container {
    justify-content: center;
    flex-direction: column;
  }
}
.our-partners .category-group .item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .our-partners .category-group .item {
    flex-direction: column;
    gap: 5px;
  }
}
.our-partners .category-group .item span {
  font-family: var(--font-tenor-sans);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark-gray);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .our-partners .category-group .item span {
    font-size: 18px;
  }
}
.our-partners .category-group .logo-placeholder {
  width: auto;
  height: 80px;
  display: inline-block;
}

#maps {
  background-color: linear-gradient(0deg, rgba(173, 135, 79, 0.08), rgba(173, 135, 79, 0.08)), var(--color-bg-light);
}
#maps .location-image {
  position: relative;
  overflow: hidden;
}
#maps .location-image img:not(.map-pin) {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  #maps .location-image img:not(.map-pin) {
    min-height: auto;
  }
}
#maps .location-image img.map-pin {
  width: auto;
  min-height: auto;
  object-fit: initial;
}
@media (max-width: 767px) {
  #maps .location-image img.map-pin {
    width: 120px;
    height: 128px;
  }
}
#maps .location-image .map-pin-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-left: -40px;
}
@media (max-width: 767px) {
  #maps .location-image .map-pin-wrapper {
    margin-top: 0px;
    margin-left: 0px;
  }
}
#maps .location-image .map-pin-wrapper .map-pin-link:hover {
  animation: melayang 1s ease-in-out infinite;
}

.location-overview .timeline-nodes {
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-overview .timeline-nodes .node {
  width: 64px;
  height: 64px;
  background: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 767px) {
  .location-overview .timeline-nodes .node {
    width: 32px;
    height: 32px;
  }
}
.location-overview .timeline-nodes .node svg {
  width: 38px;
  height: 38px;
}
@media (max-width: 767px) {
  .location-overview .timeline-nodes .node svg {
    width: 19px;
    height: 19px;
  }
}
.location-overview .timeline-nodes .node svg path {
  fill: var(--color-primary);
}
.location-overview .timeline-nodes .node.active {
  width: 100px;
  height: 100px;
  background: var(--color-primary);
  color: var(--color-white);
}
@media (max-width: 767px) {
  .location-overview .timeline-nodes .node.active {
    width: 50px;
    height: 50px;
  }
}
.location-overview .timeline-nodes .node.active svg {
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .location-overview .timeline-nodes .node.active svg {
    width: 25px;
    height: 25px;
  }
}
.location-overview .timeline-nodes .node.active svg path {
  fill: var(--color-white);
}
.location-overview .timeline-nodes .connector {
  height: 0.7px;
  width: 100px;
  background: var(--color-primary);
  z-index: 1;
}
@media (max-width: 767px) {
  .location-overview .timeline-nodes .connector {
    width: 70px;
  }
}
.location-overview .content-display {
  max-width: 400px;
  margin: 64px auto 0px;
}
@media (max-width: 767px) {
  .location-overview .content-display {
    margin: 25px auto 0px;
    padding: 0px 15px;
  }
}
.location-overview .content-display h3 {
  font-family: var(--font-tenor-sans);
  font-size: 24px;
  line-height: 38px;
  color: var(--color-dark-gray);
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .location-overview .content-display h3 {
    font-size: 20px;
    line-height: 34px;
  }
}
.location-overview .content-display ul {
  padding: 0px;
  margin: 0px;
  text-align: center;
}
.location-overview .content-display ul li {
  list-style: none;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-dark-50);
  margin-bottom: 15px;
}
.location-overview .content-display .btn {
  margin-top: 49px;
}
@media (max-width: 767px) {
  .location-overview .content-display .btn {
    margin-top: 20px;
  }
}
.location-overview .info-box {
  display: none;
  margin: 0 auto;
  text-align: center;
}
.location-overview .info-box.active {
  display: block;
}

#features-4 .column-text {
  max-width: 528px;
}
#features-4 .column-text .btn {
  margin-top: 32px;
}
@media (max-width: 767px) {
  #features-4 .column-text .btn {
    margin-top: 0px;
  }
}

#bg-mall .mall-slider {
  width: 100%;
  height: 740px;
}
@media (max-width: 767px) {
  #bg-mall .mall-slider {
    height: auto;
  }
}
#bg-mall .mall-slider .swiper-slide {
  position: relative;
}
#bg-mall .mall-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carstensz-residence-towers-content .card-blog {
  max-width: 440px;
  margin: 0 auto 80px;
}
@media (max-width: 767px) {
  .carstensz-residence-towers-content .card-blog {
    margin: 0 auto 20px;
  }
}
.carstensz-residence-towers-content .card-blog-text h3 {
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .carstensz-residence-towers-content .card-blog-text h3 {
    font-size: 20px;
    line-height: 34px;
  }
}

.our-tenants .col-left {
  max-width: 493px;
}
.our-tenants .paragraph-text {
  margin-top: 16px;
}
.our-tenants .swiper-control {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100px;
  margin: 0 auto;
  gap: 16px;
  height: 50px;
  margin-top: 40px;
}
.our-tenants .swiper-control .swiper-control-arrow {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 0.8px solid #111827;
}
.our-tenants .swiper-control .swiper-control-arrow::after {
  width: 100%;
  height: 100%;
  font-size: 18px;
  text-align: center;
}
.our-tenants .swiper-button-next::after {
  content: url("data:image/svg+xml,<svg width=\"7\" height=\"11\" viewBox=\"0 0 7 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.12482 5.30332L0 1.17851L1.17852 0L6.48182 5.30332L1.17852 10.6066L0 9.42807L4.12482 5.30332Z\" fill=\"%23111827\"/></svg>");
  position: relative;
  left: 1px;
}
.our-tenants .swiper-button-prev::after {
  content: url("data:image/svg+xml,<svg width=\"7\" height=\"11\" viewBox=\"0 0 7 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.357 5.30332L6.48183 9.42807L5.30333 10.6066L0 5.30332L5.30333 0L6.48183 1.17851L2.357 5.30332Z\" fill=\"%23111827\"/></svg>");
  position: relative;
  left: -1px;
}
.our-tenants .tenant-swiper-mobile {
  display: none;
}
@media (max-width: 767px) {
  .our-tenants .tenant-swiper-desktop {
    display: none;
  }
  .our-tenants .tenant-swiper-mobile {
    display: block;
  }
}
.our-tenants .grid-container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 64px;
  justify-content: center;
  justify-items: center;
}
@media (max-width: 767px) {
  .our-tenants .grid-container {
    gap: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.our-tenants .grid-box {
  width: 280px;
  height: 200px;
  background: rgba(173, 135, 79, 0.06);
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .our-tenants .grid-box {
    width: 100%;
  }
}
.our-tenants .grid-box img {
  max-width: 100%;
  height: 180px;
  display: block;
}

.post-detail {
  padding: 160px 0px 80px 0px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .post-detail {
    padding: 40px 0px 40px 0px;
  }
}
.post-detail.tenant-detail .post-detail-content .post-thumbnail {
  background: rgba(173, 135, 79, 0.06);
  height: 395px;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .post-detail.tenant-detail .post-detail-content .post-thumbnail {
    height: auto;
  }
}
.post-detail.tenant-detail .post-detail-content .post-thumbnail img {
  width: 452px;
  height: 452px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .post-detail.tenant-detail .post-detail-content .post-thumbnail img {
    width: 100%;
    height: auto;
  }
}
.post-detail.tenant-detail .post-detail-content .heading {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .post-detail.tenant-detail .post-detail-content .heading {
    margin-bottom: 20px;
  }
}
.post-detail.tenant-detail .post-detail-content .heading .medium-text {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .post-detail.tenant-detail .post-detail-content .heading .medium-text {
    font-size: 18px;
    line-height: 18px;
  }
}
.post-detail.tenant-detail .post-detail-content p {
  font-size: 24px;
  line-height: 34px;
}
@media (max-width: 767px) {
  .post-detail.tenant-detail .post-detail-content p {
    font-size: 20px;
    line-height: 30px;
  }
}
.post-detail.tenant-detail .post-detail-content-footer {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .post-detail.tenant-detail .post-detail-content-footer {
    margin-top: 30px;
  }
}
.post-detail-header {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .post-detail-header {
    margin-bottom: 20px;
  }
}
.post-detail-header .medium-text {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .post-detail-header .medium-text {
    font-size: 18px;
    line-height: 26px;
  }
}
.post-detail-content.blog-detail {
  text-align: justify;
}
.post-detail-content.blog-detail h1,
.post-detail-content.blog-detail h2,
.post-detail-content.blog-detail h3,
.post-detail-content.blog-detail h4,
.post-detail-content.blog-detail h5,
.post-detail-content.blog-detail h6 {
  margin-bottom: 15px;
}
.post-detail-content.blog-detail p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .post-detail-content.blog-detail p {
    margin-bottom: 20px;
  }
}
.post-detail-content {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-dark-50);
}
@media (max-width: 767px) {
  .post-detail-content {
    font-size: 14px;
  }
}
.post-detail-content h1 {
  font-family: var(--font-tenor-sans);
  font-size: 40px;
  line-height: 45px;
}
@media (max-width: 767px) {
  .post-detail-content h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
.post-detail-content h2 {
  font-family: var(--font-tenor-sans);
  font-size: 32px;
  line-height: 42px;
}
@media (max-width: 767px) {
  .post-detail-content h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.post-detail-content h3 {
  font-family: var(--font-tenor-sans);
  font-size: 24px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .post-detail-content h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.post-detail-content p {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-dark-50);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .post-detail-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.post-detail-content p:last-child {
  margin-bottom: 0px;
}
.post-detail-content .post-thumbnail {
  margin-bottom: 80px;
  min-height: 562px;
}
@media (max-width: 767px) {
  .post-detail-content .post-thumbnail {
    min-height: 350px;
    margin-bottom: 20px;
  }
}
.post-detail-v2 {
  padding: 160px 0px 138px 0px;
}
@media (max-width: 767px) {
  .post-detail-v2 {
    padding: 40px 0px 40px 0px;
  }
}
.post-detail-v2 .content .wp-block-image {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .post-detail-v2 .content .wp-block-image {
    margin-bottom: 20px;
  }
}
.post-detail-v2 .content h1 {
  font-family: var(--font-tenor-sans);
  font-size: 40px;
  line-height: 45px;
}
@media (max-width: 767px) {
  .post-detail-v2 .content h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
.post-detail-v2 .content h2 {
  font-family: var(--font-tenor-sans);
  font-size: 32px;
  line-height: 42px;
}
@media (max-width: 767px) {
  .post-detail-v2 .content h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.post-detail-v2 .content h3 {
  font-family: var(--font-tenor-sans);
  font-size: 24px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .post-detail-v2 .content h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.post-detail-v2 .content p {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-dark-50);
  margin-bottom: 64px;
  text-align: justify;
}
@media (max-width: 767px) {
  .post-detail-v2 .content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.post-detail-v2 .content p:last-child {
  margin-bottom: 0px;
}

#founder {
  padding-top: 160px;
}
@media (max-width: 767px) {
  #founder {
    padding-top: 40px;
  }
}
#founder.about-founder .frame {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 377px;
  width: 100%;
  height: 480px;
  padding: 0 18px;
  display: flex;
  justify-content: end;
  flex-direction: column;
}
#founder.about-founder .frame-box {
  background-color: var(--color-white);
  text-align: center;
  padding: 12px 0px;
  margin-bottom: 20px;
}
#founder.about-founder .frame-box-name {
  font-family: var(--font-tenor-sans);
  font-weight: 400;
  color: var(--color-dark-gray);
  margin-bottom: 0px;
}
#founder.about-founder img {
  max-width: 100%;
  width: 100%;
  height: 480px;
  object-fit: cover;
}
@media (max-width: 767px) {
  #founder.about-founder img {
    height: auto;
  }
}

.our-awards {
  margin-bottom: 115px;
}
@media (max-width: 767px) {
  .our-awards {
    margin-bottom: 40px;
  }
}
.our-awards-header {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .our-awards-header {
    margin-bottom: 20px;
  }
}
.our-awards-content .award-box {
  padding: 10px;
  display: block;
  margin: 0 auto;
  text-align: center;
  height: 200px;
}
@media (max-width: 767px) {
  .our-awards-content .award-box {
    height: auto;
  }
}
.our-awards-content h4 {
  font-family: var(--font-tenor-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-dark-gray);
  margin-bottom: 0px;
  padding: 0px 30px;
  text-align: center;
}

/* ======================================= CSS ANIMATION ======================================== */
@keyframes scrollLineAnimation {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
  }
  60% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes melayang {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bg-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.unit-type-section {
  padding: 68px 0 112px 0px;
}
@media (max-width: 767px) {
  .unit-type-section {
    padding: 40px 0px;
  }
}
.unit-type-section .main-heading {
  font-family: var(--font-tenor-sans);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .unit-type-section .main-heading {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
.unit-type-section .tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 66px;
}
@media (max-width: 767px) {
  .unit-type-section .tabs-nav {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.unit-type-section .tabs-nav .tab-btn {
  padding: 8px 24px;
  border: 1px solid var(--color-primary);
  background: transparent;
  border-radius: 50px;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}
.unit-type-section .tabs-nav .tab-btn.active, .unit-type-section .tabs-nav .tab-btn:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.unit-type-section .unit-detail-info {
  max-width: 533px;
}
@media (max-width: 991px) {
  .unit-type-section .unit-detail-info {
    max-width: 100%;
  }
}
.unit-type-section .unit-detail-info .unit-title {
  font-family: var(--font-tenor-sans);
  font-size: 40px;
  line-height: 54px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .unit-type-section .unit-detail-info .unit-title {
    font-size: 35px;
    line-height: 45px;
  }
}
.unit-type-section .unit-detail-info .unit-size {
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
}
.unit-type-section .unit-detail-info .detail-list {
  list-style: none;
  padding: 0;
  margin-top: 58px;
  margin-bottom: 58px;
}
@media (max-width: 767px) {
  .unit-type-section .unit-detail-info .detail-list {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.unit-type-section .unit-detail-info .detail-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(3, 7, 18, 0.0784313725);
  font-family: var(--font-base);
  font-size: 13px;
  line-height: 28px;
  font-weight: 400;
  color: #4B5563;
}
.unit-type-section .unit-detail-info .detail-list li span:last-child {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-primary);
}
.unit-type-section .unit-detail-info .btn-download {
  display: block;
  text-align: center;
  background-color: var(--color-primary);
  font-family: var(--font-tenor-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  border-radius: 0px;
  transition: opacity 0.3s;
}
.unit-type-section .unit-detail-info .btn-download:hover {
  opacity: 0.9;
}
.unit-type-section .unit-gallery .main-image-container {
  width: 100%;
  height: 440px;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 0px;
}
.unit-type-section .unit-gallery .main-image-container .main-display-img {
  background-size: cover;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.unit-type-section .unit-gallery .main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.unit-type-section .unit-gallery .thumbnail-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.unit-type-section .unit-gallery .thumbnail-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.unit-type-section .unit-gallery .thumbnail-row::-webkit-scrollbar {
  display: none;
}
.unit-type-section .unit-gallery .thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.6;
  transition: 0.3s;
}
.unit-type-section .unit-gallery .thumb.active,
.unit-type-section .unit-gallery .thumb:hover {
  opacity: 1;
}
.unit-type-section .unit-gallery .nav-prev,
.unit-type-section .unit-gallery .nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 5px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}
.unit-type-section .unit-gallery .nav-prev {
  left: 0;
}
.unit-type-section .unit-gallery .nav-next {
  right: 0;
}
.unit-type-section .unit-gallery .nav-prev:hover,
.unit-type-section .unit-gallery .nav-next:hover {
  background: rgba(0, 0, 0, 0.8);
}
.unit-type-section .unit-gallery .thumbnail-row {
  display: flex;
  overflow: hidden;
}
.unit-type-section .unit-gallery .thumbnail-row .thumb {
  background-color: rgba(255, 255, 255, 0.6392156863);
  width: 110px;
  height: 110px;
  object-fit: cover;
  cursor: pointer;
  transition: border-color 0.3s;
  opacity: 0.64;
}
.unit-type-section .unit-gallery .thumbnail-row .thumb.active {
  border-color: #b08d57;
  opacity: 1;
}
.unit-type-section .unit-gallery .thumbnail-row .thumb:hover {
  opacity: 0.8;
}
.unit-type-section .unit-gallery .thumbnail-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.unit-type-section .tab-panel {
  display: none;
}
.unit-type-section .tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sticky-col {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
@media (max-width: 991px) {
  .sticky-col {
    position: relative;
    top: 0;
  }
}

.archive-page {
  padding: 120px 0px;
}
@media (max-width: 991px) {
  .archive-page {
    padding: 40px 0px;
  }
}
.archive-page .archive-content {
  margin-top: 40px;
}
.archive-page .card-blog-text a {
  text-decoration: none !important;
}
.archive-page .blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.archive-page .blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  margin: 0 6px;
  border: 1px solid var(--color-primary) !important;
  border-radius: 8px;
  color: var(--color-dark-gray);
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.archive-page .blog-pagination .page-numbers:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.archive-page .blog-pagination .page-numbers.current {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary) !important;
}
.archive-page .blog-pagination .page-numbers.prev,
.archive-page .blog-pagination .page-numbers.next {
  padding: 0 18px;
}

/*# sourceMappingURL=appStyle.css.map*/