/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
@charset "UTF-8";

:root {
  /* کوچک‌ترین عرض طراحی‌شده (Mobile) */
  --vw-min: 390;
  /* کوچک‌ترین ارتفاع طراحی‌شده (Mobile) */
  --vh-min: 844;
  /* بزرگ‌ترین عرض طراحی‌شده (Desktop) */
  --vw-max: 1440;
  /* بزرگ‌ترین ارتفاع طراحی‌شده (Desktop) */
  --vh-max: 816;
  /* حداکثر عرض هدف */
  --screen-vw-max: 1920;
  /* حداکثر ارتفاع هدف */
  --screen-vh-max: 1080;

  /* تفاوت بازه طراحی */
  --vw-range: calc(var(--vw-max) - var(--vw-min));
  --vh-range: calc(var(--vh-max) - var(--vh-min));
  /* نسبت اسکیل تا بزرگ‌ترین اسکرین */
  --vw-scale-to-screen: calc(var(--screen-vw-max) / var(--vw-max));
  --vh-scale-to-screen: calc(var(--screen-vh-max) / var(--vh-max));
  /* شیب تغییرات برای فونت/ابعاد بین موبایل ↔ دسکتاپ */
  --vw-slope: calc(1 / var(--vw-range));
  --vh-slope: calc(1 / var(--vh-range));
  /* واحدهای کمکی */
  --vw-unit: calc(100vw - var(--vw-min) * 1px);
  --vh-unit: calc(100vh - var(--vh-min) * 1px);

  --color-white: #fff;
  --color-light: #ddd;
  --color-dark: #222;
  --color-black: #000;

  --animate-duration: 1000ms;
  --animate-delay: 150ms;

  --gutter-x: 20px;
  --gutter-y: 20px;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 1 1000;
}

:focus {
  outline: 0 !important;
}

::selection {
  background: var(--color-black);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-black);
  color: var(--color-white);
}

a {
  color: var(--color-black);
  text-decoration: none !important;
}

a:hover {
  color: var(--color-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

html {
  background: var(--color-light);
}

html,
body {
  width: 100vw;
  min-height: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

* {
  cursor: none !important;
}

body {
  font-family: "Inter", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  direction: ltr;
  background-color: var(--color-black);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

body::before {
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  content: '';
  z-index: 0;
  pointer-events: none;
}

.overlay-link {
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.body-overlay {
  position: fixed !important;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(10, 61, 42, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 100;
  cursor: pointer;
}

.body-overflow {
  overflow: hidden;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --gutter-x: 40px;
  --gutter-y: 40px;
}

.row:not(.gy-3):not(.gy-4):not(.gy-5) {
  --gutter-y: 20px;
}

.row:not(.g-3):not(.g-4):not(.g-5) {
  --gutter-x: 20px;
}

.row.g-0 {
  --gutter-x: 0 !important;
  --gutter-y: 0 !important;
}

.container-fluid {
  max-width: 1960px;
}

*>p:last-child {
  margin-bottom: 0;
}

/*Custom*/
.button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 10px;
  background: var(--color-black);
  border: none;
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  font: normal 500 20px/1.30 'Inter';
  z-index: 1;
}

.button-block {
  width: 100%;
  display: flex;
}

.button::after,
.button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(0, 100%, 0);
  z-index: -1;
  pointer-events: none
}

.button::before {
  background-color: #aaa;
  transition: transform .8s cubic-bezier(.52, .08, .18, 1);
}

.button::after {
  background-color: #8e8e8e;
  transition: transform .7s cubic-bezier(.37, .16, .12, 1), background .3s ease-in-out;
}

.button:hover {
  color: #fff
}

.button:hover::before {
  transform: translate3d(0, 0, 0);
  transition: transform .6s cubic-bezier(.37, .16, .12, 1);
}

.button:hover::after {
  transform: translate3d(0, 0, 0);
  transition: transform .8s cubic-bezier(.52, .08, .18, 1), background .3s ease-in-out;
}

.button-capsule {
  font: normal 300 16px/1.50 'Inter';
  color: #FFF6EA;
  border-radius: 9999px;
  padding: 8px 20px;
  gap: 10px;
}

.button.is-sending {
  background-color: #000;
  color: #fff;
  pointer-events: none
}

.button.is-sending span {
  opacity: .5
}

.button span {
  font: inherit;
  position: relative;
  transition: opacity .35s cubic-bezier(.52, .08, .18, 1);
  z-index: 1
}

.button-outline {
  background: transparent;
  border: 1px solid var(--color-white);
}

.button-outline:hover {
  color: var(--color-black);
}

.button-outline::before {
  background-color: var(--color-light);
}

.button-outline::after {
  background-color: var(--color-white);
}

.section {
  position: relative;
  z-index: 1;
}

.section-wrapper {
  position: relative;
  z-index: 1;
}

.section-full {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.section-cover {
  position: relative;
  line-height: 0;
}

.section-cover img,
.section-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title,
.section-subtitle {
  margin: 0;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  background: transparent;
  will-change: transform;
  transition: transform 220ms ease, background 220ms ease;
  backface-visibility: hidden;
}

#header>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(13px, 0.29vw + 11.89px, 25px);
  padding-bottom: clamp(13px, 0.29vw + 11.89px, 25px);
}

.footer-logo>img,
.logo>img {
  height: clamp(28px, 2.10vw + 19.83px, 46px);
}

.footer-logo>img {
  filter: brightness(0) invert(1);
}

#header.is-sticky.has-shadow {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

#header.is-hidden {
  transform: translateY(-100%);
}

#header.is-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .smart-header {
    transition: none;
  }
}

#navigation>ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 24px;
}

#navigation>ul>li>a {
  color: var(--color-white);
  font: normal 400 16px/1.38 'Inter';
  font-size: clamp(16px, 0.52vw + 13.96px, 24px);
  position: relative;
  z-index: 1;
  display: inline-flex;
  transition: transform .25s cubic-bezier(.55, .055, .675, .19), opacity .25s cubic-bezier(.55, .055, .675, .19), color .8s cubic-bezier(.52, .08, .18, 1);
}

#navigation>ul>li>a:hover {
  color: var(--color-light);
  transition: transform .25s cubic-bezier(.55, .055, .675, .19), opacity .25s cubic-bezier(.55, .055, .675, .19), color .4s cubic-bezier(.37, .16, .12, 1);
}

.user-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 15px;
}

.user-nav>li>a>img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

body.nav-opened .user-nav>li.nav-toggle>a>img:first-child {
  display: none;
}

body:not(.nav-opened) .user-nav>li.nav-toggle>a>img:last-child {
  display: none;
}

.slide-card {
  position: relative;
}

.slide-card-header {
  line-height: 0;
  position: relative;
}

.slide-card-header::after {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.slide-card-header>img,
.slide-card-header>video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.slide-card-header:has(video)::before {
  background: var(--color-black);
  pointer-events: none;
  opacity: 1;
  transition: opacity .2s ease, visibility .2s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.slide-card-header:has(video.active)::before {
  opacity: 0;
  visibility: hidden;
}

.slide-card-img::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

.slide-card-img::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.slide-card-img::-webkit-media-controls,
.slide-card-img::-webkit-media-controls-enclosure {
  display: none !important;
}


.slide-card-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slide-card-body>div {
  max-width: 100%;
}

.slide-card-title {
  font: normal 500 clamp(50px, 8vw, 8vw)/1 'Inter';
  color: var(--color-black);
  margin: 0;
}

.slide-card-title .animate-title[data-parallax="parallax"] .elem-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.slide-card-title {
  filter: brightness(0) invert(1);
}

.slide-card-title {
  display: flex;
  flex-direction: column;
}

.slide-card-subtitle {
  font: normal 500 24px/1.33 'Inter';
  color: var(--color-white);
  margin: clamp(24px, 2.38vw + 14.71px, 49px) 0 0;
}

.slide-card-desc {
  font: normal 450 12px/1.33 'Inter';
  color: var(--color-white);
  margin: 8px 0 0;
}

main {
  background: var(--color-black);
  position: relative;
  z-index: 2;
}

.section-contact {
  background: var(--color-black);
}

.section-contact .section-wrapper {
  padding: 100px 0 0;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-contact>div>div::after {
  margin: 140px 0 0;
  width: 100%;
  height: 1px;
  background: var(--color-white);
  opacity: .2;
  display: block;
  content: '';
}

.section-contact .section-subtitle {
  font: normal 600 clamp(28px, 1.14vw + 23.54px, 40px)/1.1 'Inter';
}

.footer-top {
  padding-top: 40px;
  padding-bottom: 206px;
}

.footer-bottom {
  text-align: center;
  padding-bottom: 32px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact {
  gap: 32px;
}

.footer-contact>li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact>li>strong {
  font: normal 400 clamp(24px, 0.38vw + 22.51px, 28px)/1.14 'Inter';
}

.footer-contact>li>div {
  font: normal 400 clamp(16px, 0.38vw + 14.51px, 20px)/1.30 'Inter';
  opacity: 0.7;
}

.section-title {
  font: normal 600 clamp(36px, 2.67vw + 25.60px, 64px)/1.06 'Inter';
  transition: color .4s cubic-bezier(.37, .16, .12, 1);
  text-transform: uppercase;
}

.section-title>span {
  display: block !important;
}

.section-desc {
  color: rgba(255, 255, 255, .6);
  font: normal 400 16px/1.62 'Inter';
  margin: 0;
}

.powered,
.copyright {
  color: var(--color-white);
  font: normal 400 16px/1.50 'Inter';
  opacity: 0.6;
}

.section-inner {
  position: relative;
}

.section-testimonial .section-wrapper,
.section-page-intro .section-wrapper {
  padding-top: clamp(122px, 1.05vw + 117.91px, 133px);
  padding-bottom: clamp(100px, 1.90vw + 92.57px, 120px);
}

.section-page-intro .section-cover::after {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.section-page-intro .section-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  height: 100%;
}

.section-page-intro .section-header {
  margin-bottom: auto;
}

.section-page-intro .section-button {
  color: var(--color-white);
}

.section-page-intro .section-button:hover {
  color: var(--color-black) !important;
}

.section-page-intro .section-desc {
  color: var(--color-white);
  font: normal 300 16px/1.50 'Inter';
}

.section-page-intro .section-cover>img,
.section-page-intro .section-cover>video {
  aspect-ratio: 1 / 0.849557522;
}

.section-project .section-header,
.section-project .section-footer {
  width: 100%;
  position: absolute;
  z-index: 100;
}

.section-project .section-footer {
  bottom: clamp(50px, 2.86vw + 38.86px, 80px);
}

.section-project .section-body {
  position: relative;
}

.section-project .section-body::after {
  background: var(--color-black);
  opacity: .3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 1;
}

.section-project .section-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.section-project .section-title {
  color: var(--color-white);
}

.gradient-top::before,
.gradient-bottom::after {
  position: absolute;
  width: 100%;
  height: 29.5202952%;
  max-height: 240px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  left: 0;
  content: '';
  z-index: 2;
}

.gradient-top::before {
  top: -1px;
}

.gradient-bottom::after {
  bottom: -1px;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.pslide-card-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.pslide-card-title {
  color: var(--color-white);
  font: normal 400 clamp(16px, 0.76vw + 13.03px, 24px)/1 'Inter';
  text-transform: uppercase;
  margin: 0;
}

.pslide-caption {
  overflow: hidden;
}

.pslide-caption .swiper-wrapper {
  align-items: end;
  will-change: transform;
}

.pslide-caption .swiper-slide-thumb-active .pslide-card-title {
  text-decoration: underline !important;
}

.section-project .section-footer {
  overflow: visible;
}

.pslide-caption {
  overflow: visible;
}

.pslide-caption .swiper-slide {
  width: auto;
}

.pslide-card-title {
  cursor: pointer;
}

.section-quote {
  padding: 144px 0 109px;
}

.quote-card {
  background: var(--color-dark);
}

.quote-card-body {
  padding: clamp(30px, 2.86vw + 18.86px, 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
  height: 100%;
}

.quote-card-header {
  padding: 0 clamp(30px, 2.86vw + 18.86px, 60px) 0 0;
}

.quote-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.19594595;
  object-position: center top;
}

.quote-card-subheader {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-card-title {
  color: var(--color-white);
  font: normal 600 18px/1.33 'Inter';
  margin: 0;
}

.quote-card-subtitle {
  color: var(--color-white);
  font: normal 400 16px/1.38 'Inter';
  opacity: 0.5;
  margin: 0;
}

.quote-card-desc {
  color: var(--color-white);
  font: normal 400 clamp(16px, 1.52vw + 10.06px, 32px)/1.38 'Inter';
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-card-desc::before {
  width: 40px;
  height: 40px;
  background: url(../img/icon-quote.svg) no-repeat center/cover;
  content: '';
}

.section-instagram .section-wrapper {
  padding-top: clamp(60px, 3.81vw + 45.14px, 100px);
  padding-bottom: clamp(100px, 1.90vw + 92.57px, 120px);
}

.section-testimonial .section-body,
.section-instagram .section-body {
  padding-top: clamp(35px, 0.48vw + 33.14px, 40px);
}

.section-testimonial .section-title,
.section-instagram .section-title {
  color: var(--color-black);
}

.instagram-card {
  position: relative;
  overflow: hidden;
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.666666667;
  aspect-ratio: 1 / 1.2;
}

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card.featured {
  padding-top: clamp(41px, 13.52vw - 11.74px, 183px);
  margin-top: clamp(60px, 8.57vw + 26.57px, 150px);
}

.project-card-header {
  overflow: hidden;
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.773286467;
  transform: scale(1);
  transition: transform .8s cubic-bezier(.41, .12, .26, .97), opacity .4s cubic-bezier(.25, .25, .75, .75);
}

.project-card:hover .project-card-img {
  transform: scale(1.04);
}

.project-card-body {
  width: 100%;
  position: absolute;
  top: 0;
}

.project-card-title {
  color: var(--color-white);
  font: normal 500 20px/1.40 'Inter';
  margin: 0;
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  z-index: 1;
}

.section-project-archive .section-inner {
  margin-top: 40px !important;
}

.project-card-footer {
  padding-left: calc(20% + 3px);
  transform: translateY(-50%);
}

.project-card-meta {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-card-meta>li {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.95vw - 1.71px, 12px);
}

.project-card-meta>li>strong {
  color: var(--color-white);
  font: normal 400 clamp(10px, 0.19vw + 9.26px, 12px)/1 'Inter';
  text-transform: uppercase;
}

.project-card-meta>li>span {
  color: var(--color-white);
  font: normal 300 12px/1 'Inter';
  opacity: 0.6;
}

.project-card-body {
  padding-top: 16px;
  position: static;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-card-meta>li {
  min-width: 80px;
  gap: 4px;
}

.section-project-archive .project-card-meta>li>strong {
  font: normal 400 8px/1 'Inter';
  color: var(--color-white);
  opacity: .6;
}

.section-project-archive .project-card-meta>li>span {
  font: normal 400 12px/1 'Inter';
  color: var(--color-light);
  opacity: 1;
}

.workflow-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5.71vw + 17.71px, 100px);
}

.workflow-card {
  position: relative;
  display: flex;
  gap: 20px;
  transition: opacity .5s cubic-bezier(.215, .61, .355, 1);
}

.workflow-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-card-counter {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  padding-right: 18px;
  padding-top: 10px;
  margin-left: -10px;
  margin-top: -10px;
  overflow: hidden;
}

.workflow-card-counter-number {
  font: normal 500 clamp(60px, 5.71vw + 37.71px, 120px)/1 'Inter';
  color: var(--color-white);
  opacity: .2;
}

.workflow-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workflow-card-title {
  font: normal 500 32px/1.28 'Inter';
  margin: 0;
}

.workflow-card-desc {
  font: normal 450 16px/1.25 'Inter';
}

.section-page-intro .section-header {
  padding: clamp(100px, 8.57vw + 66.57px, 190px) 0 clamp(40px, 1.90vw + 32.57px, 60px);
}

.section-page-intro .section-title .elem-text {
  color: inherit;
}

.video-card,
.section-subheader-cover {
  position: relative;
  line-height: 0;
}

.video-card::after,
.section-cover::after,
.section-subheader-cover::after {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.section-subheader-cover {
  margin-top: clamp(60px, 3.81vw + 45.14px, 100px);
}

.video-card>img,
.video-card>video,
.section-subheader-cover>img,
.section-subheader-cover>video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.557127312;
}

.video-card .section-cover-button,
.section-page-intro .section-cover-button {
  color: var(--color-white);
  font: normal 500 clamp(32px, 2.29vw + 23.09px, 56px)/1.29 'Inter';
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 0.76vw + 9.03px, 20px);
  position: absolute;
  bottom: clamp(24px, 1.90vw + 16.57px, 44px);
  right: clamp(24px, 1.90vw + 16.57px, 44px);
  background: none;
  border: none;
  padding: 0;
  z-index: 1;
}

.video-card .section-cover-button::before,
.section-page-intro .section-cover-button::before {
  min-width: clamp(32px, 3.05vw + 20.11px, 64px);
  max-width: clamp(32px, 3.05vw + 20.11px, 64px);
  height: clamp(32px, 3.05vw + 20.11px, 64px);
  background: url(../img/icon-play.svg) no-repeat center/cover;
  content: '';
}

.section-subheader {
  position: relative;
}

.section-subheader-title {
  font: normal 500 clamp(32px, 2.29vw + 23.09px, 56px)/1.29 'Inter';
  margin: 15px 0 0;
}

.section-page-intro .section-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-page-intro .section-inner-title {
  font: normal 500 16px/1.25 'Inter';
  margin: 0;
}

.section-page-intro .section-inner-subtitle {
  font: normal 500 32px/1.28 'Inter';
  margin: 0;
}

.section-page-intro .section-inner-footer {
  margin-top: 40px;
}

.section-page-intro .section-inner-desc {
  font: normal 450 20px/1.60 'Inter';
}

.career-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.career-accordion-header {
  padding: clamp(20px, 1.14vw + 15.54px, 32px);
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.38vw + 6.51px, 12px);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.career-accordion-header::after,
.career-accordion-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(0, 100%, 0);
  z-index: 0;
  pointer-events: none
}

.career-accordion-header::before {
  background-color: #aaa;
  transition: transform .8s cubic-bezier(.52, .08, .18, 1);
}

.career-accordion-header::after {
  background-color: #8e8e8e;
  transition: transform .7s cubic-bezier(.37, .16, .12, 1), background .3s ease-in-out;
}

.career-accordion-header:hover {
  color: #fff
}

.career-accordion-header:hover::before {
  transform: translate3d(0, 0, 0);
  transition: transform .6s cubic-bezier(.37, .16, .12, 1);
}

.career-accordion-header:hover::after {
  transform: translate3d(0, 0, 0);
  transition: transform .8s cubic-bezier(.52, .08, .18, 1), background .3s ease-in-out;
}

.career-accordion-title::before {
  background: url(../img/icon-add.svg) no-repeat center/cover;
  width: clamp(20px, 0.38vw + 18.51px, 24px);
  height: clamp(20px, 0.38vw + 18.51px, 24px);
  position: absolute;
  top: 50%;
  right: clamp(20px, 1.14vw + 15.54px, 32px);
  transform: translateY(-50%);
  content: '';
  z-index: 2;
}

.career-accordion-card.active .career-accordion-title::before {
  background-image: url(../img/icon-remove.svg);
}

.career-accordion-title {
  color: var(--color-white);
  font: normal 500 clamp(20px, 2.29vw + 11.09px, 44px)/1.27 'Inter';
  margin: 0;
  position: relative;
  z-index: 1;
}

.career-accordion-subtitle {
  color: var(--color-white);
  font: normal 450 clamp(16px, 0.38vw + 14.51px, 20px)/1.30 'Inter';
  opacity: 0.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.career-accordion-body {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: clamp(20px, 1.90vw + 12.57px, 40px);
  display: none;
}

.tablelist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tablelist>li {
  width: 100%;
}

.tablelist>li>.tablelist-title {
  margin: 0;
}

.tablelist>li>.tablelist-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tablelist>li>.tablelist-title,
.tablelist>li>.tablelist-body {
  border-top: 1px solid var(--color-black);
  padding: 20px 0;
}

.tablelist>li>.tablelist-title {
  color: rgba(0, 0, 0, 0.4);
  font: normal 400 16px/1.19 'Inter';
}

.tablelist>li>.tablelist-body {
  color: rgba(0, 0, 0, 0.8);
  font: normal 400 16px/1.19 'Inter';
}

.tablelist>li:last-child>.tablelist-title,
.tablelist>li:last-child>.tablelist-body {
  border-bottom: 1px solid var(--color-black);
}

.tablelist-body>ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tablelist-body>ul>li {
  display: flex;
  gap: 10px;
}

.tablelist-body>ul>li::before {
  min-width: 10px;
  max-width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  background: #1C1B1F;
  content: '';
}

.career-accordion-action {
  text-align: center;
  margin-top: 80px;
}

.career-accordion-button {
  color: var(--color-black);
  font: normal 500 clamp(40px, 3.81vw + 25.14px, 80px)/1.27 'Inter';
}

.contact-box {
  padding: clamp(24px, 1.52vw + 18.06px, 40px);
  gap: 40px;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
}

.contact-box-header {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.14vw + 15.54px, 32px);
}

.contact-box-title {
  color: var(--color-white);
  font: normal 500 clamp(28px, 0.38vw + 26.51px, 32px)/1.28 'Inter';
}

.contact-box-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
}

.contact-box-nav>li>a {
  color: var(--color-white);
  font: normal 450 24px/1 'Inter';
  text-decoration: underline !important;
  opacity: 0.5;
}

.contact-box-nav>li.active>a {
  opacity: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form .form-caption {
  color: var(--color-white);
  font: normal 450 16px/1.25 'Inter';
  opacity: 0.8;
}

.contact-form .form-fieldset {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.contact-form .form-label {
  color: var(--color-white);
  font: normal 450 20px/1.30 'Inter';
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.contact-form .form-label.required::after {
  content: '*';
  color: var(--color-white);
}

.contact-form .form-helper {
  color: var(--color-white);
  font: normal 450 16px/1.25 'Inter';
  margin-top: -12px;
}

.contact-form .form-control {
  background: none;
  min-height: 50px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: var(--color-white);
  font: normal 450 20px/1.30 'Inter';
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font: normal 450 20px/1.30 'Inter';
}

.contact-form .form-control:focus {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.contact-form .form-control[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.whatsapp-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: clamp(100px, -1.90vw + 107.43px, 80px);
}

.whatsapp-box-title {
  font: normal 500 clamp(20px, 0.38vw + 18.51px, 24px)/1.29 'Inter';
  color: var(--color-white);
  margin: 0;
}

.whatsapp-box-title>a {
  text-decoration: underline !important;
  color: inherit;
}

.whatsapp-box-title>a:hover {
  opacity: .4;
}

.whatsapp-box-inner {
  background: var(--color-white);
  padding: 40px;
  display: flex;
  gap: clamp(32px, -1.14vw + 36.46px, 20px);
}

.whatsapp-box-phone {
  color: var(--color-black);
  font: normal 500 32px/1.28 'Inter';
}

.whatsapp-box-username {
  color: var(--color-black);
  font: normal 500 20px/1.30 'Inter';
}

.whatsapp-box-phone {
  color: var(--color-black);
  font: normal 500 32px/1.28 'Inter';
}

.whatsapp-box-desc {
  color: var(--color-black);
  font: normal 450 12px/1.25 'Inter';
  opacity: 0.8;
}

.whatsapp-box-qrcode {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
}

.whatsapp-box-body,
.whatsapp-box-footer>div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-page-intro .section-wrapper {
  padding-top: clamp(50px, 4.76vw + 31.43px, 100px);
  padding-bottom: clamp(50px, 4.76vw + 31.43px, 100px);
}

.section-banner .section-wrapper {
  padding-bottom: 32px;
}

.section-banner .section-inner {
  position: relative;
}

.section-banner .section-cover {
  height: 88.2352941vh;
}

.section-banner .section-cover::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.section-banner .section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.section-tab-toggle {
  color: var(--color-white);
  font: normal 500 20px/1.20 'Inter';
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-tab-toggle::after {
  background: url(../img/icon-chevron.svg) no-repeat center/cover;
  filter: brightness(0) invert(1);
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  content: '';
}

.section-tab-toggle.active::after {
  transform: scaleY(-1);
}

.section-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: end;
  gap: 32px;
  white-space: nowrap;
}

.section-tab>li>a {
  color: var(--color-white);
  font: normal 400 20px/1 'Inter';
  text-transform: uppercase;
}

.section-tab>li.active>a {
  color: var(--color-light);
  text-decoration: underline !important;
}

.section-project-archive .section-nav {
  margin-top: clamp(40px, 2.86vw + 28.86px, 70px);
}

.section-project-single .section-cover {
  height: 100dvh;
}

.project-gallery-card {
  height: 100%;
}

.project-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.social-share>li>a {
  color: rgba(0, 0, 0, 0.8);
  font: normal 400 16px/1.19 'Inter';
  text-decoration: underline !important;
}

.section-contact a.section-subtitle {
  display: inline-flex;
  font: normal 500 32px/1.28 'Inter';
  position: relative;
}

.animate-title {
  position: relative;
  overflow: hidden;
}

.elem-text,
.elem-outer,
.elem-inner {
  position: relative;
  display: inline-flex;
}

/* .animate-title:has(.elem-inner) {
  margin-left: -20px;
} */

.filter-grid>.disabled {
  display: none;
}

.slide-card-title {
  display: block;
}

.subsection-title {
  font: normal 600 clamp(36px, 2.67vw + 25.60px, 64px)/1.06 'Inter';
  margin: 0;
}

.subsection-more {
  display: flex;
  align-items: center;
  gap: 12px;
}

.subsection-more::after {
  min-width: calc(clamp(48px, 1.52vw + 42.06px, 64px) * 1.4);
  max-width: calc(clamp(48px, 1.52vw + 42.06px, 64px) * 1.4);
  height: calc(clamp(48px, 1.52vw + 42.06px, 64px) * 1.4);
  background: url(../img/icon-arrow-long.svg) no-repeat center/cover;
  content: '';
}

.subsection-subtitle {
  font: normal 500 clamp(32px, 0.76vw + 29.03px, 40px)/1.20 'Inter';
  margin: 0;
}

.subsection+.subsection {
  margin-top: clamp(100px, 6.86vw + 73.26px, 172px);
}

.subsection-header {
  margin-bottom: clamp(30px, 2.86vw + 18.86px, 60px);
}

.subsection-header .subsection-desc {
  color: #000000;
  font: normal 400 16px/1.38 'Inter';
  opacity: 0.6;
}

.subsection-body {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 1.90vw + 32.57px, 60px);
}

.subsection-desc {
  font: normal 450 clamp(16px, 0.38vw + 14.51px, 20px)/1.38 'Inter';
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ptech-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ptech-card+.ptech-card {
  margin-top: 32px;
}

.ptech-card-title {
  color: var(--color-black);
  font: normal 500 clamp(20px, 0.38vw + 18.51px, 24px)/1.33 'Inter';
  margin: 0;
}

.ptech-card-desc {
  color: var(--color-black);
  font: normal 400 clamp(14px, 0.38vw + 12.51px, 18px)/1.33 'Inter';
  opacity: 0.6;
}

.ptech-card-info {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 0.38vw + 18.51px, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ptech-card-info>li {
  gap: 4px;
  display: flex;
  flex-direction: column;
  width: calc(50% - 24px);
}

.ptech-card-info>li>strong {
  color: var(--color-white);
  font: normal 400 clamp(14px, 0.38vw + 12.51px, 18px)/1.33 'Inter';
  opacity: 0.6;
}

.ptech-card-info>li>span {
  color: var(--color-white);
  font: normal 450 clamp(14px, 0.38vw + 12.51px, 18px)/1.33 'Inter';
  display: block;
}

.ptech-card-color {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.ptech-card-color>li {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
}

.pfeature-card {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.29vw + 15.09px, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pfeature-card>li {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pfeature-card>li>strong {
  color: var(--color-black);
  font: normal 500 20px/1.20 'Inter';
}

.pfeature-card>li>span {
  color: var(--color-black);
  font: normal 400 16px/1.19 'Inter';
  opacity: 0.6;
}

.pfigure {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pfigure>img {
  width: 100%;
}

.pfigure>figcaption {
  color: var(--color-black);
  font: normal 500 24px/1.25 'Inter';
}

.section-project-single .section-cover {
  transform: none !important;
}

.project-subheader {
  flex-direction: row !important;
  justify-content: space-between;
  margin-top: 0 !important;
}

.project-subheader .section-inner-desc {
  padding-top: clamp(100px, 1.90vw + 92.57px, 120px);
}

/*Motions*/

.parallax-content[data-parallax="parallax"] {
  opacity: 0;
  transform: translate3d(0, 120px, 0);
  transition: transform .3s cubic-bezier(.55, .055, .675, .19) 0s, opacity .3s cubic-bezier(.55, .055, .675, .19) 0s;
}

body.page-loaded .parallax-content[data-parallax="parallax"].is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 1.5s cubic-bezier(.22, .94, .44, 1) .1s, opacity .4s cubic-bezier(.22, .94, .44, 1) .1s;
}

.section-page-intro .section-subtitle[data-parallax="parallax"] {
  opacity: 0;
  transform: translate3d(0, 120px, 0);
  transition: transform .3s cubic-bezier(.55, .055, .675, .19) 0s, opacity .3s cubic-bezier(.55, .055, .675, .19) 0s;
}

body.page-loaded .section-page-intro .section-subtitle[data-parallax="parallax"].is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 1.5s cubic-bezier(.22, .94, .44, 1), opacity .8s cubic-bezier(.215, .61, .355, 1);
}

.section-page-intro .section-desc[data-parallax="parallax"] {
  opacity: 0;
  transform: translate3d(0, 120px, 0);
  transition: transform .3s cubic-bezier(.55, .055, .675, .19), opacity .3s cubic-bezier(.55, .055, .675, .19);
}

body.page-loaded .section-page-intro .section-desc[data-parallax="parallax"].is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 1.5s cubic-bezier(.22, .94, .44, 1), opacity .8s cubic-bezier(.215, .61, .355, 1);
}

.section-page-intro .animate-title[data-parallax="parallax"] {
  opacity: 0;
  transform: translate3d(0, 120px, 0);
  transition: transform .3s cubic-bezier(.55, .055, .675, .19), opacity .3s cubic-bezier(.55, .055, .675, .19), color .4s cubic-bezier(.37, .16, .12, 1);
}

body.page-loaded .section-page-intro .animate-title[data-parallax="parallax"].is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 1.5s cubic-bezier(.22, .94, .44, 1), opacity .8s cubic-bezier(.215, .61, .355, 1), color .4s cubic-bezier(.37, .16, .12, 1);
}

.project-card-img {
  transform-origin: center center;
  will-change: transform;
  background: var(--color-dark);
}

.project-card-footer-inner[data-parallax="parallax"] {
  opacity: 0;
  transform: translateY(120px);
  transition: transform .3s cubic-bezier(.55, .055, .675, .19) 0s, opacity .3s cubic-bezier(.55, .055, .675, .19) 0s;
}

body.page-loaded .project-card-footer-inner[data-parallax="parallax"].is-show {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(.22, .94, .44, 1) 0s, opacity .4s cubic-bezier(.22, .94, .44, 1) 0s;
}

.project-card-footer-inner[data-parallax="parallax"]::after,
.project-card-footer-inner[data-parallax="parallax"]::before {
  display: block;
  position: absolute;
  content: "";
  background-color: var(--color-white);
  opacity: .5;
  z-index: 1;
  transition: transform 0s cubic-bezier(.55, .055, .675, .19) 0s;
}

.project-card-footer-inner[data-parallax="parallax"]::before {
  width: 110%;
  height: 1px;
  left: -10%;
  top: 0;
  transform: translate3d(-100%, 0, 0);
}

body.page-loaded .project-card-footer-inner[data-parallax="parallax"].is-show::before {
  transform: translate3d(100%, 0, 0);
  transition: transform 1.8s cubic-bezier(.7, 0, .3, 1);
}

.project-card-footer-inner[data-parallax="parallax"]::after {
  width: 1px;
  height: 110%;
  left: 0;
  top: -10%;
  transform: translate3d(0, -100%, 0);
}

body.page-loaded .project-card-footer-inner[data-parallax="parallax"].is-show::after {
  transform: translate3d(0, 100%, 0);
  transition: transform 1.6s cubic-bezier(.7, 0, .3, 1);
}

.project-card-footer-inner[data-parallax="parallax"] .project-card-meta::after,
.project-card-footer-inner[data-parallax="parallax"] .project-card-meta::before {
  display: block;
  position: absolute;
  content: "";
  background-color: #fff;
  opacity: .2;
  z-index: 1;
  transition: transform 0s cubic-bezier(.55, .055, .675, .19) 0s, opacity 0s cubic-bezier(.55, .055, .675, .19) 0s;
  width: 110%;
  height: 1px;
  left: -20%;
  transform: translateX(-100%)
}

.project-card-footer-inner[data-parallax="parallax"] .project-card-meta::before {
  top: -5px;
}

body.page-loaded .project-card-footer-inner[data-parallax="parallax"].is-show .project-card-meta::before {
  transition: transform 2.2s cubic-bezier(.7, 0, .3, 1) .2s, opacity .6s cubic-bezier(.215, .61, .355, 1) .2s;
  transform: translate3d(150%, 0, 0);
}

.project-card-footer-inner[data-parallax="parallax"] .project-card-meta::after {
  bottom: -3px;
}

body.page-loaded .project-card-footer-inner[data-parallax="parallax"].is-show .project-card-meta::after {
  transition: transform 2.2s cubic-bezier(.7, 0, .3, 1) .12s, opacity .6s cubic-bezier(.215, .61, .355, 1) .12s;
  transform: translate3d(150%, 0, 0);
}

.instagram-card[data-parallax="parallax"]::after {
  background: var(--color-dark);
  transform: translate(0);
  transition: transform 1.5s cubic-bezier(.22, .94, .44, 1) 0s, opacity .4s cubic-bezier(.22, .94, .44, 1) 0s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

body.page-loaded .instagram-grid>div:nth-child(odd) .instagram-card[data-parallax="parallax"].is-show::after {
  transform: translateY(100%);
}

body.page-loaded .instagram-grid>div:nth-child(even) .instagram-card[data-parallax="parallax"].is-show::after {
  transform: translateY(-100%);
}

/** Page-Career **/
.section-career-wanted .section-wrapper {
  padding-top: clamp(100px, 6.86vw + 73.26px, 172px);
  padding-bottom: clamp(100px, 1.90vw + 92.57px, 120px);
}

.section-career-wanted .section-body {
  margin-top: clamp(40px, 1.90vw + 32.57px, 60px);
}

/** Page-Workflow **/
.section-workflow .section-wrapper {
  padding-top: clamp(40px, 1.90vw + 32.57px, 60px);
  padding-bottom: clamp(100px, 1.90vw + 92.57px, 120px);
}

.workflow-card[data-parallax="parallax"] {
  opacity: 0;
  transform: translate3d(0, 120px, 0);
  transition: transform .3s cubic-bezier(.55, .055, .675, .19) 0s, opacity .3s cubic-bezier(.55, .055, .675, .19) 0s;
}

body.page-loaded .workflow-card[data-parallax="parallax"].is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 1.5s cubic-bezier(.22, .94, .44, 1) .1s, opacity .4s cubic-bezier(.22, .94, .44, 1) .1s;
}

.workflow-card[data-parallax="parallax"] .workflow-card-counter-number {
  opacity: 0;
  transform: translate3d(0, 120px, 0);
  transition: transform .3s cubic-bezier(.55, .055, .675, .19) 0s, opacity .3s cubic-bezier(.55, .055, .675, .19) 0s, color .4s cubic-bezier(.37, .16, .12, 1) 0s;
}

body.page-loaded .workflow-card[data-parallax="parallax"].is-show .workflow-card-counter-number {
  opacity: .2;
  transform: translate3d(0, 0, 0);
  transition: transform 1.5s cubic-bezier(.22, .94, .44, 1) 0s, opacity .4s cubic-bezier(.22, .94, .44, 1) 0s, color .4s cubic-bezier(.37, .16, .12, 1) 0s;
}

.workflow-card[data-parallax="parallax"] .workflow-card-counter::before,
.workflow-card[data-parallax="parallax"] .workflow-card-counter::after {
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  background-color: var(--color-light);
  transition: transform 0s cubic-bezier(.55, .055, .675, .19) 0s, opacity 0s cubic-bezier(.55, .055, .675, .19) 0s;
  transform: translate3d(0, -100%, 0);
  z-index: 1;
  opacity: .4;
  content: '';
}

.workflow-card[data-parallax="parallax"] .workflow-card-counter::before {
  left: 10px;
}

body.page-loaded .workflow-card[data-parallax="parallax"].is-show .workflow-card-counter::before {
  transform: translate3d(0, 100%, 0);
  transition: transform 1.4s cubic-bezier(.7, 0, .3, 1);
}

.workflow-card[data-parallax="parallax"] .workflow-card-counter::after {
  right: 15px;
}

body.page-loaded .workflow-card[data-parallax="parallax"].is-show .workflow-card-counter::after {
  transform: translate3d(0, 100%, 0);
  transition: transform 1.8s cubic-bezier(.7, 0, .3, 1) .1s;
}

.workflow-card[data-parallax="parallax"] .workflow-card-counter-inner::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  background-color: var(--color-light);
  transition: transform 0s cubic-bezier(.55, .055, .675, .19) 0s, opacity 0s cubic-bezier(.55, .055, .675, .19) 0s;
  transform: translate3d(-100%, 0, 0);
  z-index: 1;
  opacity: .3;
  top: 11px;
}

body.page-loaded .workflow-card[data-parallax="parallax"].is-show .workflow-card-counter-inner::before {
  transform: translate3d(100%, 0, 0);
  transition: transform 1.5s cubic-bezier(.7, 0, .3, 1);
}

/** Page-About **/
.page-template-page-about .section-page-intro .section-header {
  padding-top: 0;
}

.page-template-page-about .section-page-intro .section-inner-desc {
  opacity: .6;
}

.section-about-join .section-inner {
  background: #B6B2A0;
  overflow: hidden;
}

.section-about-join .section-header {
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  text-align: start;
  align-items: start;
  position: relative;
  z-index: 1;
}

.section-about-join .section-header>div {
  padding: 32px;
  height: 50%;
  display: flex;
  align-items: center;
}

.section-about-join .section-button,
.section-about-join .section-title {
  filter: invert(1);
}

.section-about-join .section-cover {
  position: relative;
  z-index: 1;
}

.joinus-shape-top {
  width: 100%;
  aspect-ratio: 1 / 0.470134875;
  position: relative;
  overflow: hidden;
}

.joinus-shape-top>span {
  width: 130%;
  height: 1px;
  top: 0;
  transform-origin: 100% 50%;
}

.joinus-shape-top>span:nth-child(1) {
  transform: rotate(-43.2deg) scaleX(0);
  right: 0;
}

.joinus-shape-top>span:nth-child(2) {
  transform: rotate(-136.9deg) scaleX(0);
  right: 100%;
}

.section-active .joinus-shape-top>span:nth-child(1) {
  transform: rotate(-43.2deg) scaleX(1);
}

.section-active .joinus-shape-top>span:nth-child(2) {
  transform: rotate(-136.9deg) scaleX(1);
}

.section-about-join .section-header>div,
.joinus-grid-header,
.joinus-grid-header>div,
.joinus-grid-body,
.joinus-grid-body>div {
  position: relative;
}

.joinus-grid-header>div::before,
.joinus-grid-header>div::after {
  width: 1px;
  height: 300vh;
  content: '';
  top: 0;
  left: -1px;
  transform: scaleY(0);
  transform-origin: 50% 0;
}

.joinus-grid-header>div::after {
  left: auto;
  right: -1px;
}

.section-active .joinus-grid-header>div::before,
.section-active .joinus-grid-header>div::after {
  transform: scaleX(1);
}


.section-about-join .section-header>div:first-child::after,
.joinus-grid-header::after,
.joinus-grid-body::after {
  width: 100vw;
  height: 1px;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  content: '';
}

.section-active .joinus-grid-header::after,
.section-active .joinus-grid-body::after {
  transform: scaleX(1);
}

.section-about-join .section-header>div:first-child::after {
  transform: translateX(-8.33333333%) scaleX(0);
}

.section-active.section-about-join .section-header>div:first-child::after {
  transform: translateX(-8.33333333%) scaleX(1);
}

.joinus-grid-body>div:nth-child(1)::after {
  width: 42%;
  height: 1px;
  content: '';
  bottom: 0;
  right: 0;
  transform: rotate(37.3deg) translate(-100%, -100%) scaleX(0);
  transform-origin: right center;
}

.section-active .joinus-grid-body>div:nth-child(1)::after {
  transform: rotate(37.3deg) translate(-100%, -100%) scaleX(-1);
}

.joinus-grid-body>div:nth-child(1)::after,
.section-about-join .section-header>div:first-child::after,
.joinus-grid-header::after,
.joinus-grid-body::after,
.joinus-grid-header>div::before,
.joinus-grid-header>div::after,
.joinus-shape-top>span {
  transition: all 1700ms linear;
  position: absolute;
  background: #3B3B3B;
}

.joinus-grid-footer>div {
  height: 116px;
}

.section-about-feature .section-body {
  padding-bottom: clamp(60px, 3.81vw + 45.14px, 100px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.fslide-pagination {
  display: flex;
  align-items: end;
  gap: clamp(24px, 0.76vw + 21.03px, 32px);
  margin: 0 0 32px;
  counter-reset: pagination;
}

.fslide-pagination .swiper-pagination-bullet {
  color: var(--color-white);
  font: normal 400 clamp(16px, 0.76vw + 13.03px, 24px)/1 'Inter';
  text-transform: uppercase;
  margin: 0 !important;
  opacity: 1;
  background: none;
  width: auto;
  height: auto;
  counter-increment: pagination;
}

.fslide-pagination .swiper-pagination-bullet::before {
  content: counter(pagination, decimal-leading-zero) " ";

}

.fslide-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  font-size: clamp(30px, 1.71vw + 23.31px, 48px);
  text-decoration: underline;
}

.fslide-card-desc {
  color: var(--color-white);
  font: normal 400 16px/1.62 'Inter';
  opacity: 0.6;
  top: 2139.6px;
  left: 32px;
}

/** Page-contact **/
.section-contact-form .section-wrapper {
  padding-top: clamp(100px, 1.90vw + 92.57px, 120px);
  padding-bottom: clamp(100px, 1.90vw + 92.57px, 120px);
}

.contact-card-title {
  color: var(--color-white);
  font: normal 500 40px/1.20 'Inter';
  margin: 0;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card-info>li {
  color: var(--color-white);
  font: normal 400 20px/1.20 'Inter';
  letter-spacing: -0.02em;
  opacity: 0.8;
}

.contact-card-info>li>a {
  color: inherits;
}

.contact-card-img {
  width: 100%;
  aspect-ratio: 1 / 0.516014235;
  object-fit: cover;
}

.contact-card+.contact-card::before {
  width: 100%;
  height: 1px;
  margin: 40px 0;
  background: var(--color-white);
  opacity: .2;
  display: block;
  content: '';
}

.contact-card-body {
  margin: 24px 0;
}

#contact-map {
  width: 100%;
  aspect-ratio: 1 / 1.11356932;
}

/** Global **/
.section-workflow .section-wrapper {
  padding-top: clamp(40px, 1.90vw + 32.57px, 60px);
  padding-bottom: clamp(100px, 1.90vw + 92.57px, 120px);
}

.animate-title[data-parallax="parallax"] .elem-outer {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.animate-title[data-parallax="parallax"] .elem-outer::before,
.animate-title[data-parallax="parallax"] .elem-outer::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  background-color: var(--color-light);
  transition: transform 2s cubic-bezier(.7, 0, .3, 1);
  transform: translate3d(-100%, 0, 0);
  opacity: .6;
}

body.page-loaded .animate-title[data-parallax="parallax"].is-show .elem-inner::before,
body.page-loaded .animate-title[data-parallax="parallax"].is-show .elem-outer::before,
body.page-loaded .animate-title[data-parallax="parallax"].is-show .elem-outer::after {
  transform: translate3d(100%, 0, 0);
}

body.page-loaded .animate-title[data-parallax="parallax"].is-show .elem-outer::after {
  top: 84%;
}

.animate-title[data-parallax="parallax"]+.elem-inner {
  padding: 5px 10px 25px 20px;
}

.animate-title[data-parallax="parallax"]+.animate-title[data-parallax="parallax"] .elem-inner {
  padding-bottom: 5px;
}

.animate-title[data-parallax="parallax"] .elem-inner::before,
.animate-title[data-parallax="parallax"] .elem-inner::after {
  display: block;
  position: absolute;
  content: "";
  background-color: var(--color-light);
}

.animate-title[data-parallax="parallax"] .elem-inner::before {
  width: 100%;
  height: 1px;
  left: 5px;
  top: 33%;
  transition: transform 2.2s cubic-bezier(.7, 0, .3, 1);
  transform: translate3d(-110%, 0, 0);
  opacity: .6;
}

.animate-title[data-parallax="parallax"] .elem-inner::after {
  width: 1px;
  height: 100%;
  left: 9px;
  top: 0;
  transition: transform 1.6s cubic-bezier(.7, 0, .3, 1);
  transform: translate3d(0, -100%, 0);
  opacity: .6;
}

body.page-loaded .animate-title[data-parallax="parallax"].is-show .elem-inner::after {
  transform: translate3d(0, 100%, 0);
}

.animate-title[data-parallax="parallax"] .elem-text {
  transition: transform 1.5s cubic-bezier(.2, .36, .12, 1), opacity 1.3s cubic-bezier(.2, .36, .12, 1);
  transition-delay: .85s;
  transform: translate3d(.65em, 0, 0);
  opacity: 0;
}

body.page-loaded .animate-title[data-parallax="parallax"].is-show .elem-text {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.text-hover {
  overflow: hidden;
  cursor: pointer;
}

.text-hover:hover {
  color: var(--color-white);
}

.text-hover.invert:hover {
  color: var(--color-black);
}

.text-hover::after {
  content: "";
  display: block;
  position: absolute;
  width: 200%;
  height: 5%;
  bottom: 11%;
  pointer-events: none;
  background-color: var(--color-white);
  background: linear-gradient(to right, #fff 0%, #fff 50%, #000 50%, #000 100%);
  transform: translateX(-50%);
  transition: transform .3s cubic-bezier(.37, .16, .12, 1);
  z-index: -1;
}

.text-hover.invert::after {
  background: linear-gradient(to right, #000 0%, #000 50%, #fff 50%, #fff 100%);
}

.text-hover:hover::after {
  transform: translateX(0);
  transition: transform .7s cubic-bezier(.37, .16, .12, 1);
}

.slide-card-title,
.slide-card-subtitle,
.slide-card-desc {
  display: flex;
}

body:not(.page-loaded) {
  overflow: hidden;
}

.page-bg,
.page-transition {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
}

.page-bg {
  z-index: 0;
}

.page-bg>div>svg {
  fill: none;
  width: 100%;
  stroke: var(--color-white);
}

.page-transition-motion>div>svg:first-child,
.page-bg>div>svg:first-child {
  position: absolute;
  top: 0;
  left: 0;
}

.page-transition-motion>div>svg:last-child,
.page-bg>div>svg:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
}

.page-bg>div:first-child>svg {
  stroke-width: 2px;
}

.page-bg>div:last-child>svg {
  stroke-width: 1px;
}

.page-transition-motion>div>svg {
  fill: none;
  width: 100%;
  stroke: var(--color-black);
}

.page-transition-motion>div:first-child>svg {
  stroke-width: 120px;
}

.page-transition-motion>div:last-child>svg {
  stroke-width: 60px;
}

.page-transition {
  z-index: 1010;
  -webkit-transform: perspective(1000px);
  transform: perspective(1000px);
}

.page-transition-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: translateY(100%);
  background-color: #222;
  transition: transform 1500ms cubic-bezier(.72, .04, .5, 1.07);
}

body:not(.page-loaded) .page-transition-bg {
  transform: translateY(0);
}

.page-transition.page-loaded .page-transition-bg {
  transform: translateY(100%);
}

.page-transition-motion:not(.active) {
  display: none;
}

.page-transition.active .page-transition-bg {
  transform: translateY(0);
}

.page-transition-motion {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.page-transition.active .page-transition-motion.active svg path {
  animation: draw 1500ms ease forwards;
  animation-delay: 1000ms;
}


@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.page-transition-motion.reverse path {
  stroke-dashoffset: 0;
  animation: erase 1500ms ease forwards;
  animation-delay: 1500ms;
}

@keyframes erase {
  to {
    stroke-dashoffset: var(--length);
  }
}

.cta-whatsapp {
  min-width: 257px;
  height: 64px;
  padding: 0 20px 0 7px;
  border-radius: 44px;
  background: linear-gradient(251.65deg, #60FC7C -100.66%, #4AB161 89.47%);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 100;
}

.cta-whatsapp.floating {
  position: fixed;
}

.cta-whatsapp>span>img {
  min-width: 50px;
  width: 50px;
  height: 50px;
}

.cta-whatsapp>strong {
  flex: none;
  width: 173px;
  height: 24px;
  color: #FFFFFF;
  font: normal 500 16px/1.50 'Inter';
  flex-grow: 0;
  order: 1;
}

.newsbar-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsbar-date {
  color: var(--color-white);
  font: normal 450 14px/1.29 'Inter';
}

.newsbar-title {
  color: var(--color-white);
  font: normal 450 14px/1.29 'Inter';
  margin: 0;
}

.newsbar-pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 22px;
}

.newsbar-pagination .swiper-pagination-bullet {
  width: 22px;
  height: 2px;
  background: #A6A6A6;
  border-radius: 0;
  opacity: 1;
  position: relative;
}

.newsbar-pagination .swiper-pagination-bullet::after {
  width: 0;
  height: 100%;
  background-color: var(--color-white);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  transition: all 0 linear;
}

.newsbar-pagination .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 3s linear;
}

.section-404 {
  text-align: center;
  background: url(../img/404.svg) no-repeat center/cover;
}

.section-404 .section-button {
  color: var(--color-black);
  font: normal 500 clamp(28px, 0.38vw + 26.51px, 32px)/1.28 'Inter';
  position: relative;
  display: inline-flex;
}

.section-404 .section-button:hover {
  color: var(--color-white);
}

.page-template-page-map {
  background: #1C1B1F;
}

.map-sidebar {
  background: #DDD;
  position: fixed;
}

.map-sidebar-header {
  display: flex;
  flex-direction: column;
  gap: max(16px, calc((16 / var(--vw-max)) * 100vw));
  padding: max(24px, calc((24 / var(--vw-max)) * 100vw));
}

.map-sidebar .project-card-img {
  aspect-ratio: 1 / 0.57217848;
}

.map-sidebar-title {
  color: var(--color-black);
  font: normal 500 24px/1.17 'Inter';
  /* font-size: max(24px, calc((24 / var(--vw-max)) * 100vw)); */
  margin: 0;
}

.map-guide {
  padding: max(12px, calc((12 / var(--vw-max)) * 100vw));
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: max(4px, calc((4 / var(--vw-max)) * 100vw));
}

.map-guide>strong {
  color: var(--color-black);
  font: normal 450 12px/1.67 'Inter';
  font-size: max(12px, calc((12 / var(--vw-max)) * 100vw));
}

.map-guide-filter {
  gap: max(8px, calc((8 / var(--vw-max)) * 100vw));
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-guide-filter>label {
  padding: 4px 8px;
  padding-top: max(4px, calc((4 / var(--vw-max)) * 100vw));
  padding-bottom: max(4px, calc((4 / var(--vw-max)) * 100vw));
  padding-left: max(8px, calc((8 / var(--vw-max)) * 100vw));
  padding-right: max(8px, calc((8 / var(--vw-max)) * 100vw));
  display: flex;
  align-items: center;
  gap: max(4px, calc((4 / var(--vw-max)) * 100vw));
  opacity: 0.7;
  position: relative;
  cursor: pointer;
}

.map-guide-filter>label:has(input:checked) {
  opacity: 1;
}

.map-guide-filter>label>img {
  min-width: max(18px, calc((18 / var(--vw-max)) * 100vw));
  max-width: max(18px, calc((18 / var(--vw-max)) * 100vw));
  height: max(18px, calc((18 / var(--vw-max)) * 100vw));
}

.map-guide-filter>label>span {
  color: #2A2A2A;
  font: normal 450 12px/1.50 'Inter';
  font-size: max(12px, calc((12 / var(--vw-max)) * 100vw));
  text-transform: uppercase;
}

.map-guide-filter>label>input {
  position: absolute;
  opacity: 0;
}

.map-sidebar-header .filter-checkboxes {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: max(4px, calc((4 / var(--vw-max)) * 100vw));
}

.map-sidebar-header .filter-checkbox {
  position: relative;
  cursor: pointer;
}

.map-sidebar-header .filter-checkbox>input {
  position: absolute;
  opacity: 0;
}

.map-sidebar-header .filter-checkbox>span {
  padding: 4px 12px;
  padding-left: max(12px, calc((12 / var(--vw-max)) * 100vw));
  padding-right: max(12px, calc((12 / var(--vw-max)) * 100vw));
  padding-top: max(4px, calc((4 / var(--vw-max)) * 100vw));
  padding-bottom: max(4px, calc((4 / var(--vw-max)) * 100vw));
  border-radius: 9999px;
  background: rgba(0, 0, 0, .1);
  color: rgba(0, 0, 0, 0.8);
  font: normal 450 14px / 1.29 'Inter';
  font-size: max(14px, calc((14 / var(--vw-max)) * 100vw));
  display: flex;
  align-items: center;
  gap: max(4px, calc((4 / var(--vw-max)) * 100vw));
  cursor: pointer;
  border: none;
}

.map-sidebar-header .filter-checkbox:has(input:checked)>span {
  background: rgba(0, 0, 0, 0.8);
  color: rgba(255, 255, 255, .7);
}

.map-wrapper>.map-guide {
  background: #C2C2C2;
  position: absolute;
  left: max(24px, calc((24 / var(--vw-max)) * 100vw));
  bottom: max(24px, calc((24 / var(--vw-max)) * 100vw));
}

.map-sidebar-subheader {
  display: flex;
  justify-content: space-between;
  gap: max(16px, calc((16 / var(--vw-max)) * 100vw));
}

.map-sidebar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: max(20px, calc((20 / var(--vw-max)) * 100vw));
}

.map-sidebar-nav>button {
  display: inline-flex;
  align-items: center;
  gap: max(8px, calc((8 / var(--vw-max)) * 100vw));
  background: none;
  border: none;
  padding: 0;
}

.map-sidebar-nav>button>img {
  min-width: max(24px, calc((24 / var(--vw-max)) * 100vw));
  width: max(24px, calc((24 / var(--vw-max)) * 100vw));
  height: max(24px, calc((24 / var(--vw-max)) * 100vw));
  min-width: 24px;
  width: 24px;
  height: 24px;
}

.map-sidebar-nav>button>span {
  color: var(--color-black);
  font: normal 450 16px/1.50 'Inter';
  /* font-size: max(16px, calc((16 / var(--vw-max)) * 100vw)); */
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: max(12px, calc((12 / var(--vw-max)) * 100vw));
  padding: max(12px, calc((12 / var(--vw-max)) * 100vw));
  background: #C2C2C2;
}

.filter-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-group-header>strong {
  color: var(--color-black);
  font: normal 450 14px/1.29 'Inter';
  font-size: max(14px, calc((14 / var(--vw-max)) * 100vw));
  opacity: 0.8;
}

.filter-group-header>button {
  color: var(--color-black);
  font: normal 450 14px/1.29 'Inter';
  font-size: max(14px, calc((14 / var(--vw-max)) * 100vw));
  opacity: 0.5;
  background: none;
  border: none;
  padding: 0;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: max(4px, calc((4 / var(--vw-max)) * 100vw));
}

.filter-tags>button {
  padding: 4px 4px 4px 12px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: max(4px, calc((4 / var(--vw-max)) * 100vw));
  cursor: pointer;
  border: none;
}

.filter-tags>button>strong {
  color: var(--color-white) !important;
  font: normal 450 14px/1.29 'Inter';
  font-size: max(14px, calc((14 / var(--vw-max)) * 100vw));
  opacity: 0.7;
}

.filter-tags>button>span {
  font-size: 0;
  min-width: max(20px, calc((20 / var(--vw-max)) * 100vw));
  max-width: max(20px, calc((20 / var(--vw-max)) * 100vw));
  height: max(20px, calc((20 / var(--vw-max)) * 100vw));
  background: url(../img/icon-close_small.svg) no-repeat center/cover;
  font-style: 0;
}

.map-sidebar-body .filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: max(12px, calc((12 / var(--vw-max)) * 100vw));
  padding: max(24px, calc((24 / var(--vw-max)) * 100vw));
  padding-top: 0;
}

.map-sidebar-body .filter-checkbox {
  display: flex;
  align-items: center;
  gap: clamp(12px, 0.76vw + 9.03px, 20px);
  position: relative;
  cursor: pointer;
}

.map-sidebar-body .filter-checkbox>input {
  position: absolute;
  opacity: 0;
}

.map-sidebar-body .filter-checkbox>span {
  color: var(--color-black);
  font: normal 450 clamp(32px, 1.14vw + 23.54px, 40px)/1.10 'Inter';
  font-size: max(32px, calc((32 / var(--vw-max)) * 100vw));
}

.map-sidebar-body .filter-checkbox::before {
  min-width: clamp(26px, 0.57vw + 23.77px, 32px);
  max-width: clamp(26px, 0.57vw + 23.77px, 32px);
  height: clamp(26px, 0.57vw + 23.77px, 32px);
  border: 2px solid var(--color-black);
  border-radius: 50%;
  content: '';
}

.map-sidebar-body .filter-checkbox:has(input:checked)::before {
  background: var(--color-black);
}

#map-sidebar-main .map-sidebar-body:not(:has(button.chip)) {
  display: none;
}

.map-sidebar {
  opacity: 0;
  visibility: hidden;
  transition: all 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.map-sidebar.open {
  opacity: 1;
  visibility: visible;
  transition: all 500ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

#map-list {
  display: flex;
  flex-direction: column;
  gap: max(20px, calc((20 / var(--vw-max)) * 100vw));
  padding: 0 24px 24px;
  padding: max(24px, calc((24 / var(--vw-max)) * 100vw));
  padding-top: 0;
  max-height: 50vh;
  overflow-y: scroll;
}

.map-toggle-back {
  display: inline-flex;
  align-items: center;
  gap: max(4px, calc((4 / var(--vw-max)) * 100vw));
}

.map-toggle-back::before {
  min-width: max(24px, calc((24 / var(--vw-max)) * 100vw));
  max-width: max(24px, calc((24 / var(--vw-max)) * 100vw));
  height: max(24px, calc((24 / var(--vw-max)) * 100vw));
  background: url(../img/icon-back.svg) no-repeat center/cover;
  content: '';
}

.project-filter-card {
  display: flex;
  gap: max(12px, calc((12 / var(--vw-max)) * 100vw));
}

.project-filter-card-img {
  width: max(96px, calc((96 / var(--vw-max)) * 100vw));
  height: max(96px, calc((96 / var(--vw-max)) * 100vw));
  object-fit: cover;
  aspect-ratio: 1/1;
}

.project-filter-card-body {
  display: flex;
  flex-direction: column;
  gap: max(12px, calc((12 / var(--vw-max)) * 100vw));
}

.project-filter-card-title {
  color: var(--color-black);
  font: normal 500 20px/1.40 'Inter';
  font-size: max(20px, calc((20 / var(--vw-max)) * 100vw));
  margin: 0;
}

.project-filter-card-status {
  display: flex;
  align-items: center;
  gap: max(8px, calc((8 / var(--vw-max)) * 100vw));
}

.project-filter-card-status>img {
  min-width: max(18px, calc((18 / var(--vw-max)) * 100vw));
  max-width: max(18px, calc((18 / var(--vw-max)) * 100vw));
  height: max(18px, calc((18 / var(--vw-max)) * 100vw));
}

.project-filter-card-status>strong {
  color: var(--color-black);
  font: normal 450 14px/1.43 'Inter';
  font-size: max(14px, calc((14 / var(--vw-max)) * 100vw));
}

html:has(body.page-template-page-map),
body.page-template-page-map {
  overflow: hidden;
  min-height: unset;
  max-height: 100svh;
}

.map-wrapper,
#map {
  width: 100vw;
  height: 100svh;
  max-height: 100svh;
}

.map-sidebar .project-card {
  padding: max(24px, calc((24 / var(--vw-max)) * 100vw));
  /* margin-top: max(24px, calc((24 / var(--vw-max)) * 100vw)); */
}

.map-sidebar .project-card-footer {
  padding: 0;
  padding-top: max(16px, calc((16 / var(--vw-max)) * 100vw));
  transform: unset;
  color: var(--color-black);
  font: normal 450 16px/1.50 'Inter';
  font-size: max(15px, calc((15 / var(--vw-max)) * 100vw));
  opacity: 0.6;
}

.map-sidebar .project-card-status {
  display: flex;
  align-items: center;
  gap: max(4px, calc((4 / var(--vw-max)) * 100vw));
  margin: 32px 0 0;
  margin-top: max(32px, calc((32 / var(--vw-max)) * 100vw));
}

.map-sidebar .project-card-status>img {
  min-width: max(20px, calc((20 / var(--vw-max)) * 100vw));
  max-width: max(20px, calc((20 / var(--vw-max)) * 100vw));
  height: max(20px, calc((20 / var(--vw-max)) * 100vw));
  filter: brightness(0) saturate(100%) invert(0%) sepia(99%) saturate(6%) hue-rotate(27deg) brightness(100%) contrast(102%);
}

.map-sidebar .project-card-status>strong {
  color: var(--color-black);
  font: normal 450 16px/1.25 'Inter';
  font-size: max(16px, calc((16 / var(--vw-max)) * 100vw));
}

.map-sidebar .project-card-title {
  color: var(--color-black);
  font-size: max(20px, calc((20 / var(--vw-max)) * 100vw));
}

.map-sidebar .project-card-body {
  padding-bottom: max(16px, calc((16 / var(--vw-max)) * 100vw));
  padding-top: 0;
  gap: max(12px, calc((12 / var(--vw-max)) * 100vw));
}

.map-sidebar .map-sidebar-project-close {
  position: absolute;
  top: max(24px, calc((24 / var(--vw-max)) * 100vw));
  right: max(24px, calc((24 / var(--vw-max)) * 100vw));
  margin: 0;
  z-index: 11;
}

.map-sidebar-project-close {
  width: max(24px, calc((24 / var(--vw-max)) * 100vw));
  height: max(24px, calc((24 / var(--vw-max)) * 100vw));
  background: url(../img/icon-close.svg) no-repeat center / cover;
  filter: brightness(0) invert(0);
  display: block;
  margin-left: auto;
  margin-top: max(24px, calc((24 / var(--vw-max)) * 100vw));
  margin-right: max(24px, calc((24 / var(--vw-max)) * 100vw));
  font-size: 0;
  border: none;
  padding: 0;
}

.clear-filter {
  color: var(--color-black);
  font: normal 450 14px/1.29 'Inter';
  font-size: max(14px, calc((14 / var(--vw-max)) * 100vw));
  opacity: 0.5;
  display: inline-flex;
  border: none;
  background: none;
  padding: 0;
}

body.page-template-page-map:has(#map-sidebar-filter.open) #header,
body.page-template-page-map:has(#map-sidebar-list.open) #header,
body.page-template-page-map:has(#map-sidebar-project.open) #header {
  transform: translateY(-100%);
}

body.page-template-page-map #header>div,
body.page-template-page-map .sidebar-nav,
body.page-template-page-map .sidebar-social>li>a>span {
  filter: brightness(0) invert(1) !important;
}

.gm-style-moc,
div[style="margin: 0px 5px; z-index: 1000000; position: absolute; left: 0px; bottom: 0px;"],
div[style="display: inline-flex; position: absolute; right: 0px; bottom: 0px;"] {
  display: none !important;
}

.map-card .gm-style>div,
.progress-card-map .gm-style>div {
  cursor: zoom-in !important;
}

.map-card {
  display: block;
  width: 100%;
  height: 300px;
  /* aspect-ratio: 1/ 0.317787419; */
}

.image-card {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}

.image-card-cover {
  width: 100%;
}

.image-card-title {
  color: var(--color-black);
  font: normal 500 48px/1 'Inter';
  margin: 0;
  padding-bottom: 10px;
}

.testimonial-carousel,
.gallery-carousel {
  overflow: visible;
}

.gallery-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 /0.475;
  object-fit: cover;
}

.section-project-single .section-header {
  padding: 0;
}

.section-project-single .section-title {
  font: normal 500 clamp(56px, 4.95vw + 36.69px, 108px)/1 'Inter';
}

.section-project-single .section-body {
  padding: clamp(60px, 3.81vw + 45.14px, 100px) 0;
}

.section-project-single .section-title {
  font: normal 500 clamp(52px, 4.57vw + 34.17px, 100px)/1.20 'Inter';
  text-transform: uppercase;
}

.section-project-single .section-subtitle {
  font: normal 400 clamp(36px, 4.57vw + 34.17px, 66px)/1.20 'Inter';
  text-transform: uppercase;
}

.section-project-single .section-desc {
  font: Normal 450 20px/1.60 'Inter';
}

.section-project-single .section-footer {
  background-color: var(--color-light);
  padding: clamp(50px, 4.76vw + 31.43px, 100px) 0;
}

.section-subbody {
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid var(--color-light);
  border-bottom: 1px solid var(--color-light);
}

.section-project-single .section-footer .subsection-title {
  color: var(--color-black);
  text-transform: uppercase;
}

.section-project-single .section-inner-desc {
  color: var(--color-black);
}

.section-service .section-wrapper {
  padding: 45px 0 80px;
}

.section-service .section-body {
  margin-top: clamp(40px, 1.90vw + 32.57px, 60px);
}

.section-service .section-desc {
  font: normal 450 20px/1.60 'Inter';
  color: rgba(255, 255, 255, .6);
  margin-top: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.service-card:not(:last-child)::after {
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
  content: '';
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.service-card-title {
  color: var(--color-white);
  font: normal 400 clamp(28px, 1.14vw + 23.54px, 40px)/1.20 'Inter';
  margin: 0;
}

.service-card-count {
  color: var(--color-white);
  font: normal 400 16px/1.12 'Inter';
  text-transform: uppercase;
  opacity: 0.5;
}

.service-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.561666667;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 1.90vw + 32.57px, 60px);
  height: 100%;
}

.service-card-desc {
  color: var(--color-white);
  font: normal 400 16px/1.38 'Inter';
  opacity: 0.6;
}

.service-card-action {
  margin-top: auto;
}

.service-card-button {
  background: url(../img/icon-plus.svg) no-repeat center/cover;
  filter: brightness(0) invert(1);
  width: clamp(32px, 2.29vw + 23.09px, 56px);
  height: clamp(32px, 2.29vw + 23.09px, 56px);
  font-size: 0;
  display: inline-flex;
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-nav>div {
  width: clamp(36px, 1.14vw + 31.54px, 48px);
  height: clamp(36px, 1.14vw + 31.54px, 48px);
  border: 1px solid var(--color-black);
  border-radius: 50%;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.carousel-nav>div::after {
  width: clamp(18px, 0.57vw + 15.77px, 24px);
  height: clamp(18px, 0.57vw + 15.77px, 24px);
  background: url(../img/icon-arrow.svg) no-repeat center/cover;
  content: '';
}

.carousel-nav .button-prev::after {
  transform: scaleX(-1);
}

.carousel-nav>div::before {
  background-color: var(--color-black);
  transition: height .3s linear;
  height: 0;
  content: '';
  z-index: -1;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.bg-dark .carousel-nav {
  filter: invert(1);
}

.carousel-nav>div:hover::before {
  height: 100%;
}

.carousel-nav>div:hover::after {
  filter: brightness(0) invert(1);
}

.testimonial-card {
  background: var(--color-black);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 369px;
}

.testimonial-card-desc {
  font: normal 400 20px/1.30 'Inter';
  opacity: 0.8;
}

.testimonial-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.testimonial-card-logo {
  border: 1px solid var(--color-white);
  opacity: .6;
  padding: 8px 16px;
  border-radius: 9999px;
}

.testimonial-card-logo>img {
  filter: brightness(0) invert(1);
  height: 20px;
}

.testimonial-card-body {
  margin-top: 40px;
}

.testimonial-card-footer {
  margin-top: 72px;
}

.testimonial-card-profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-card-profile>img {
  min-width: 56px;
  max-width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card-profile>span {
  font: normal 400 20px/1.30 'Inter';
  opacity: 0.6;
}

.subsection-header:has(.carousel-nav),
.section-header:has(.carousel-nav),
.section-instagram .section-header {
  display: flex;
  gap: 32px;
}

.section-instagram .section-header .section-button {
  filter: invert(1);
}

.section-project-single .section-body .subsection>div:not(:last-child) {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
}

.section-project-single .section-body .map-card {
  aspect-ratio: 1 / 0.5899705;
  height: auto;
}

.ptech-card-info+.map-card {
  margin-top: 40px;
}

.section-project-single .section-footer .project-card-title {
  color: var(--color-black);
}

.gallery-carousel .swiper-slide>span {
  color: #000000;
  font: normal 500 20px/1.30 'Inter';
  margin-top: 16px;
  display: block;
}

.home-bg {
  position: relative;
  z-index: 1;
}

.home-bg::after {
  background: url(../img/bg-home.svg) no-repeat left top;
  background-size: 100% auto;
  z-index: 2;
  position: absolute;
  top: 200px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 136.041667vw;
  content: '';
  z-index: 2;
}

.section-intro,
.section-cta,
.section-award,
.section-partner,
.section-quote,
.section-teamboard,
.section-instagram,
.section-review {
  z-index: unset;
}

.section-intro .section-wrapper,
.section-cta .section-wrapper,
.section-award .section-wrapper,
.section-partner .section-wrapper,
.section-quote .section-wrapper,
.section-teamboard .section-wrapper,
.section-instagram .section-wrapper,
.section-review .section-wrapper {
  z-index: 3;
}

.testimonial-carousel .swiper-slide {
  margin-right: clamp(12px, 0.76vw + 9.03px, 20px);
}


.instagram-grid {
  --gutter-x: clamp(12px, 0.76vw + 9.03px, 20px) !important;
  --gutter-y: clamp(12px, 0.76vw + 9.03px, 20px) !important;
}

.section-project-single .section-footer {
  padding: clamp(100px, 6.86vw + 73.26px, 172px) 0;
}

.section-project-single .section-body .subsection-title {
  font: normal 600 clamp(42px, 4.38vw + 24.91px, 88px)/1.06 'Inter';
  text-transform: uppercase;
}

.section-award .section-wrapper {
  padding-top: clamp(50px, 4.76vw + 31.43px, 100px);
  padding-bottom: clamp(50px, 4.76vw + 31.43px, 100px);
}

.section-award .section-body {
  padding-top: clamp(35px, 0.48vw + 33.14px, 40px);
}

.award-carousel {
  overflow: visible;
}

.award-card {
  width: 364px;
  max-width: 85vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.award-card-img {
  width: 100%;
}

.award-card-title {
  color: var(--color-white);
  font: normal 600 16px/1.25 'Inter';
  margin: 0;
  margin: 0;
}

.section-partner .section-wrapper {
  padding-top: clamp(50px, 4.76vw + 31.43px, 100px);
  padding-bottom: clamp(50px, 4.76vw + 31.43px, 100px);
}

.section-partner .section-body {
  padding-top: clamp(35px, 0.48vw + 33.14px, 40px);
}

.partner-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-card-header {
  width: 300px;
  max-width: 85vw;
  padding: 15px 45px;
}

.partner-card-img {
  width: 100%;
}

.swiper-slide {
  width: fit-content !important;
}

.fblock {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fblock-title {
  color: var(--color-white);
  font: normal 400 24px/1.33 'Inter';
  margin: 0;
}

.footer-nav,
.footer-contact-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav>li>a,
.footer-contact-nav>li>a {
  color: var(--color-white);
  font: normal 400 16px/1.38 'Inter';
  opacity: 0.7;
}

.footer-nav>li>a:hover,
.footer-contact-nav>li>a:hover {
  opacity: 1;
}

.bg-light {
  background-color: var(--color-light);
}

.bg-dark {
  background-color: var(--color-black);
}

.section-cta .section-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-cta .section-cover {
  aspect-ratio: 1 / 0.436363636;
  width: 100%;
  min-height: 600px;
}

.section-cta .section-cover::after {
  display: none;
}

.section-cta .section-cover>img {
  object-position: center bottom;
}

.section-cta .section-header {
  padding-top: 5.71428571%;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: absolute;
  top: 0;
  left: 0;
}

.section-cta .section-title {
  color: var(--color-black);
}

.section-cta .section-title>span {
  opacity: .3;
}

.section-cta .section-nav {
  filter: invert(1);
}

.section-page-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-page-hero::after {
  background: url(../img/bg-01.svg) no-repeat top -23.6519608vh left 0 /136.111111% auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
}

.section-page-hero .section-header {
  position: relative;
}

.section-page-hero .section-cover::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32));
}

.section-page-hero .section-cover {
  height: 62.745098vh;
}

.section-page-hero .section-cover>img {
  object-position: 50% 75%;
}

.section-page-hero .section-title {
  font: normal 500 clamp(60px, 5.71vw + 37.71px, 120px)/1.2 'Inter';
  text-transform: capitalize;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.form-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.form-action>div {
  width: 100%;
}

.form-action>a {
  color: var(--color-white);
  font: normal 400 16px/1.19 'Inter';
  text-decoration: underline !important;
}

/** page-progress **/
body.archive-progress .section-page-hero {
  height: 80vh;
}

.section-project-archive .section-wrapper,
.section-progress-archive .section-wrapper {
  padding-bottom: clamp(100px, 6.86vw + 73.26px, 172px);
}

.section-project-archive .section-tab,
.section-progress-archive .section-tab {
  justify-content: center;
}

.section-project-archive .section-body {
  margin-top: clamp(40px, 1.90vw + 32.57px, 60px);
}

.section-progress-archive .section-body {
  margin-top: clamp(60px, 1.90vw + 52.57px, 80px)
}

.progress-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 6.86vw + 73.26px, 172px);
}

.progress-card {
  position: relative;
}

.progress-card-cover {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.536873156;
  aspect-ratio: 1/0.5;
  object-fit: cover;
}

.progress-card-inner {
  background: rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.progress-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 5.71vw + 37.71px, 120px);
  gap: clamp(40px, 3.81vw + 25.14px, 80px);
  gap: clamp(30px, 2.86vw + 18.86px, 60px);
  height: 100%;
}

.progress-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
}

.progress-card-title {
  color: var(--color-white);
  font: normal 500 40px/1.20 'Inter';
  margin: 0;
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  z-index: 1;
  max-width: 340px;
}

.progress-card-info {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.progress-card-info>li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

.progress-card-info>li:last-child {
  padding-bottom: 0;
}

.progress-card-info>li+li {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.progress-card-info>li>strong,
.progress-card-info>li>span {
  color: var(--color-white);
  font: normal 400 16px/1.19 'Inter';
  letter-spacing: -1px;
}

.progress-card-info>li>strong {
  min-width: fit-content;
  width: 30%;
  max-width: 170px;
  opacity: 0.4;
}

.progress-card-info>li>div>span {
  opacity: 0.8;
}

.progress-card-info>li>div:has(.progress)>span {
  opacity: 1;
}

.progress-card-info>li>div {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress {
  width: 100%;
  height: 12px;
  position: relative;
  background: rgba(255, 255, 255, .1);
}

.progress>span {
  background: rgba(255, 255, 255, .4);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-card-footer {
  width: 100%;
  height: 100%;
}

.progress-card-map {
  width: 100%;
  min-height: 200px;
  height: 100%;
  background: #212121;
  z-index: 11;
  cursor: pointer !important;
}

.section-intro .section-wrapper {
  padding-top: clamp(100px, 1.90vw + 92.57px, 120px);
  padding-bottom: clamp(50px, 2.86vw + 38.86px, 80px);
}

.section-stat {
  padding-top: clamp(50px, 2.86vw + 38.86px, 80px);
}

.section-stat .section-footer {
  padding-top: clamp(100px, 1.90vw + 92.57px, 120px);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.stat-card-value {
  display: flex;
  align-items: end;
}

.stat-card-value>strong,
.stat-card-value>span {
  color: var(--color-white);
  font: normal 200 72px/1 'Inter';
  text-transform: uppercase;
}


.stat-card-title {
  color: var(--color-white);
  font: normal 400 32px/1.3 'Inter';
  opacity: 0.6;
  margin: 0;
}

.section-intro .section-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
}

.section-intro .section-header {
  margin-bottom: auto;
}

body.page-template-page-team:not(.nav-opened) #header:not(.is-sticky) {
  filter: invert(1);
}

body.page-template-page-about .section-page-hero,
body.page-template-page-team .section-page-hero {
  height: 100vh;
  justify-content: end;
}

body.page-template-page-team .section-page-hero {
  background-color: #e1e1e1;
}

body.page-template-page-about .section-page-hero .section-header,
body.page-template-page-team .section-page-hero .section-header {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

body.page-template-page-about .section-page-hero .section-cover,
body.page-template-page-team .section-page-hero .section-cover {
  background-color: #e1e1e1;
  height: unset;
}

body.page-template-page-about .section-page-hero .section-cover>img {
  height: 100vh;
}

body.page-template-page-team .section-page-hero .section-cover>img {
  height: unset;
  object-position: unset;
  mix-blend-mode: darken;
}

body.page-template-page-about .section-page-hero .section-title {
  height: 100%;
}

body.page-template-page-team .section-page-hero .section-title {
  filter: invert(1);
  height: auto;
}

body.page-template-page-team .section-page-hero .section-cover::after,
body.page-template-page-team .section-page-hero::after {
  display: none;
}

.senior-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.31021195;
  object-fit: cover;
  object-position: center top;
}

.senior-card-title {
  color: var(--color-white);
  font: normal 500 clamp(32px, 1.52vw + 26.06px, 48px)/1 'Inter';
  margin: 0;
}

.senior-card-subtitle {
  color: var(--color-white);
  font: normal 400 16px/1.12 'Inter';
  opacity: 0.8;
  margin: 0;
}

.senior-card-body {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.senior-card-social {
  color: var(--color-white);
  font: normal 400 14px/1.29 'Inter';
  text-transform: uppercase;
  text-decoration: underline !important;
  display: inline-flex;
}

.section-team-leader {
  background: #DDDDDD;
  height: 100vh;
}

.section-team-leader .section-wrapper,
.section-team-leader .section-wrapper>div {
  height: 100%;
}

.section-team-leader .section-wrapper>div {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-team-leader .section-header {
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-team-leader .section-desc {
  color: var(--color-black);
  font: normal 500 clamp(20px, 0.38vw + 18.51px, 24px)/1.33 'Inter';
  text-align: center;
}

.leader-carousel {
  overflow: visible;
}

.leader-carousel .swiper-slide {
  min-width: 220px;
  width: 20vw;
  max-width: 80vw;
  z-index: 0;
}

.leader-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.leader-carousel:has(.leader-card:hover) .leader-card:not(:hover)>.leader-card-header {
  opacity: .3;
}

.leader-card-header {
  transition: all 200ms linear;
}

.leader-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.3;
  object-position: center top;
}

.leader-card-body {
  background: var(--color-black);
  padding: 24px 0 60px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: -30px 0 0 0 var(--color-black), 30px 0 0 0 var(--color-black);
}

.leader-carousel .swiper-wrapper>div:first-child .leader-card-body::before,
.leader-carousel .swiper-wrapper>div:last-child .leader-card-body::after {
  background: var(--color-black);
  width: 100vw;
  height: 100%;
  top: 0;
  content: '';
  position: absolute;
  z-index: -1;
}

.leader-carousel .swiper-wrapper>div:first-child .leader-card-body::before {
  right: 100%;
}

.leader-carousel .swiper-wrapper>div:last-child .leader-card-body::after {
  left: 100%;
}

.leader-card-title {
  color: var(--color-white);
  font: normal 600 16px/1.62 'Inter';
  margin: 0;
}

.leader-card-subtitle {
  color: var(--color-white);
  font: normal 400 14px/1.29 'Inter';
  opacity: 0.8;
  margin: 0;
}

.section-team-member .section-wrapper {
  padding-top: 85px;
  padding-bottom: clamp(100px, 6.86vw + 73.26px, 172px);
}

.member-card {
  background: #B6B2A0;
  height: 100%;
}

.member-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
}

.member-card-body {
  padding: clamp(16px, 0.76vw + 13.03px, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-card-title {
  color: var(--color-black);
  font: normal 500 clamp(16px, 0.38vw + 14.51px, 20px)/1.20 'Inter';
  margin: 0;
}

.member-card-subtitle {
  color: var(--color-black);
  font: normal 400 14px/1.29 'Inter';
  opacity: 0.8;
  margin: 0;
}

.member-card-action {
  text-align: end;
  padding-top: clamp(68px, -1.90vw + 75.43px, 48px);
}

.member-card-social {
  color: var(--color-black);
  font: normal 400 14px/1.29 'Inter';
  text-transform: uppercase;
  text-decoration: underline !important;
  display: inline-flex;
}

.section-team-senior {
  overflow: hidden;
}

.senior-shape-top {
  width: 100%;
  aspect-ratio: 1 / 0.470134875;
  position: relative;
}

.senior-shape-top>span {
  width: 130%;
  height: 1px;
  top: 0;
  transform-origin: 100% 50%;
}

.senior-shape-top>span:nth-child(1) {
  transform: rotate(-43.2deg) scaleX(0);
  right: 0;
}

.senior-shape-top>span:nth-child(2) {
  transform: rotate(-136.9deg) scaleX(0);
  right: 100%;
}

.section-active .senior-shape-top>span:nth-child(1) {
  transform: rotate(-43.2deg) scaleX(1);
}

.section-active .senior-shape-top>span:nth-child(2) {
  transform: rotate(-136.9deg) scaleX(1);
}

.senior-grid>div:nth-child(2) {
  padding-top: 60px;
  padding-bottom: clamp(64px, 12vw + 17.20px, 190px);
}

.senior-grid,
.senior-grid>div {
  position: relative;
}

.senior-grid>div:not(:last-child)::after,
.senior-grid::before {
  width: 100vw;
  height: 1px;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: 0 50%;
  content: '';
}

.section-active .senior-grid>div:not(:last-child)::after,
.section-active .senior-grid::before {
  transform: translateX(-50%) scaleX(1);
}

.senior-grid>div:not(:last-child)::after {
  top: auto;
  bottom: -60px;
}

.senior-grid::after,
.senior-grid>div::before,
.senior-grid>div:last-child:after {
  width: 1px;
  height: 150%;
  content: '';
  top: 0;
  left: 0;
  transform: translateY(-25%) scaleY(0);
  transform-origin: 50% 0;
}

.senior-grid::after {
  left: auto;
  right: 8.33333333%;
}

.senior-grid>div:last-child::after {
  left: auto;
  right: 0;
}

.section-active .senior-grid::after,
.section-active .senior-grid>div::before,
.section-active .senior-grid>div:last-child:after {
  transform: translateY(-25%) scaleY(1);
}

.section-active .senior-grid>div:not(:last-child)::after,
.senior-grid::after,
.senior-grid>div::before,
.senior-grid>div:last-child:after,
.senior-shape-top>span,
.senior-grid::before {
  transition: all 1700ms linear;
  position: absolute;
  background: #3B3B3B;
}

.teamboard-card .teamboard-card-desc,
.member-card .member-card-desc,
.senior-card .senior-card-desc,
.leader-card .leader-card-desc {
  display: none;
}

#team-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
}


#team-modal:not(.active) .modal-bg {
  opacity: 0;
  transition: opacity 300ms linear;
}


body.modal-opened {
  overflow: hidden;
}

#team-modal .modal-bg {
  background: var(--color-black);
  opacity: .6;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#team-modal {
  display: block;
  opacity: 0;
  visibility: hidden;
}

#team-modal.active {
  opacity: 1;
  visibility: visible;
}

#team-modal .modal-body {
  padding: 0;
}

#team-modal .modal-content {
  position: absolute;
  max-width: 566px;
  min-height: 100%;
  background: var(--color-black);
  top: 0px;
  right: 0;
  border-left: 1px solid #353535;
  transform: translateX(100%);
  transition: all 300ms linear;
}

#team-modal.active .modal-content {
  transform: translateX(0);
  transition: all 300ms linear;
}

#team-modal .modal-close {
  background: url(../img/icon-close.svg) no-repeat center/cover;
  opacity: .5;
  width: 20px;
  height: 20px;
  font-size: 0;
  border: none;
  padding: 0;
  position: absolute;
  top: clamp(12px, 3.05vw + 0.11px, 44px);
  right: clamp(12px, 3.05vw + 0.11px, 44px);
  z-index: 1;
}

.team-card,
.team-card-body,
.team-card-footer {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 0.76vw + 21.03px, 32px);
}

.team-card-body {
  gap: 8px;
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 1 / 1.07142857;
}

.team-card-title {
  color: var(--color-white);
  font: normal 600 20px/1.20 'Inter';
  margin: 0;
}

.team-card-subtitle {
  color: var(--color-white);
  font: normal 400 18px/1.33 'Inter';
  opacity: 0.5;
  margin: 0;
}

.team-card-desc {
  color: var(--color-white);
  font: normal 400 18px/1.56 'Inter';
  opacity: 0.7;
  letter-spacing: -0.05em;
}

.team-card-social {
  color: var(--color-white);
  font: normal 400 14px/1.29 'Inter';
  text-decoration: underline !important;
  text-transform: uppercase;
}

.form-action>div>.button-cta,
.form-action>div>.button {
  width: 100%;
}

.form-action>div>.button-cta {
  height: 42px;
  padding: 0 6px;
  text-align: center;
}

.form-action>div>.button-cta>span>img {
  min-width: 30px;
  width: 30px;
  height: 30px;
}

.form-action>div>.button-cta>strong {
  width: 100%;
  text-align: center;
  margin-left: -30px;
}

.contact-office-cover>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.666666667;
}

.contact-office-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-office-info>strong {
  color: var(--color-white);
  font: normal 500 40px/1.20 'Inter';
}

.contact-office-info>ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-white);
  font: normal 400 20px/1.20 'Inter';
  opacity: 0.8;
  letter-spacing: -0.02em;
}

.section-contact .section-footer {
  padding-top: 100px;
}

.section-contact .section-footer>.contact-office:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.section-contact:has(.section-footer)>div>div::after {
  margin-top: 32px;
}

.section-career-apply .section-wrapper {
  padding: 170px 0 60px;
}

.section-career-apply .section-header {
  padding: 0 0 60px;
  text-align: center;
}

.section-career-apply .section-desc {
  margin-top: 24px;
}

.apply-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.apply-card-header {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-card-title {
  color: var(--color-white);
  font: normal 500 24px/1.21 'Inter';
  margin: 0;
}

.apply-card-subtitle {
  color: var(--color-white);
  font: normal 500 16px/1.19 'Inter';
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.apply-card-subtitle::before {
  min-width: 24px;
  width: 24px;
  height: 24px;
  background: url(../img/icon-location.svg) no-repeat center/cover;
  content: '';
}

.form-file {
  width: 100%;
  height: 195px;
  padding: 12px 16px;
  border: 1px dashed var(--color-white);
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.form-file>input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.form-file>div {
  color: rgba(255, 255, 255, 0.6);
  font: normal 300 16px/1.50 'Inter';
  letter-spacing: -0.5px;
}

.form-file>div::before {
  width: 40px;
  height: 40px;
  background: url(../img/icon-upload.svg) no-repeat center/cover;
  filter: brightness(0) invert(1);
  display: block;
  margin: 0 auto 20px;
  content: '';
}

.form-file>div>strong {
  color: var(--color-white);
  font: normal 500 16px/1.50 'Inter';
}

.file-preview {
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.file-preview>li {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
  background: #E6E3E0;
  margin-top: 4px;
}

.file-preview-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-preview-progressbar {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, .1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.file-preview-progressbar>span {
  background: var(--color-black);
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: width 300ms;
  will-change: width;
}

.file-preview-percent {
  color: #757575;
  font: normal 400 14px/1.43 'Inter';
  letter-spacing: -0.5px;
  flex-grow: 0;
}

.file-preview-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-preview-title {
  color: var(--color-black);
  font: normal 400 14px/1.43 'Inter';
  letter-spacing: -0.5px;
}

.file-preview-size {
  color: var(--color-black);
  font: normal 300 14px/1.43 'Inter';
  opacity: 0.23;
  letter-spacing: -0.5px;
}

.file-preview-remove {
  min-width: 24px;
  width: 24px;
  height: 24px;
  background: url(../img/icon-delete.svg) no-repeat center/cover;
  opacity: .5;
  font-size: 0;
  padding: 0;
  border: none;
  margin-left: auto;
}

.file-preview-remove:hover {
  opacity: 1;
}

.section-about-vision .section-wrapper {
  padding-top: clamp(100px, 1.90vw + 92.57px, 120px);
  padding-bottom: clamp(100px, 6.86vw + 73.26px, 172px);
}

.vision-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.vision-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vision-list>li:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
}

.vision-card-title {
  color: var(--color-white);
  font: normal 400 clamp(28px, 1.14vw + 23.54px, 40px)/1.20 'Inter';
  text-transform: uppercase;
  margin: 0;
}

.vision-card-desc {
  color: var(--color-white);
  font: normal 500 16px/1.19 'Inter';
  opacity: 0.6;
}

.section-teamboard .section-wrapper {
  padding-top: clamp(50px, 2.86vw + 38.86px, 80px);
  padding-bottom: clamp(50px, 2.86vw + 38.86px, 80px);
}

.section-teamboard .section-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-teamboard .section-body {
  margin-top: auto;
  padding-top: 32px;
}

.teamboard-card {
  position: relative;
}

.teamboard-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1.27659574;
  object-fit: cover;
  object-position: top center;
}

.teamboard-card-body {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  gap: 8px;
}

.teamboard-card-title {
  color: var(--color-white);
  font: normal 500 24px/1.21 'Inter';
  letter-spacing: -0.01em;
  margin: 0;
}

.teamboard-card-subtitle {
  color: var(--color-white);
  font: normal 400 16px/1.12 'Inter';
  opacity: 0.7;
  margin: 0;
}

.section-review .section-wrapper {
  padding-top: clamp(50px, 2.86vw + 38.86px, 80px);
}

.section-review .section-body {
  margin-top: clamp(40px, 1.90vw + 32.57px, 60px);
}

.review-card {
  background: rgba(255, 255, 255, .1);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 360px;
}

.review-card-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-avatar>img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.review-card-author {
  color: var(--color-white);
  font: normal 400 16px/1.38 'Inter';
  margin: 0;
}

.review-card-stat {
  color: var(--color-white);
  font: normal 400 14px/1.57 'Inter';
  opacity: .7;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.review-card-stat>li:not(:last-child)::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-white);
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  content: '';
}

.review-card-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.star-rating {
  width: calc(16px * 5);
  height: 16px;
  background: url(../img/icon-star-empty.svg) repeat-x left center;
  background-size: 16px;
  backdrop-filter: opacity(.25);
  position: relative;
}

.star-rating::after {
  background: inherit;
  background-image: url(../img/icon-star-full.svg);
  background-size: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.star-rating.star-1::after {
  width: calc(16px * 1);
}

.star-rating.star-2::after {
  width: calc(16px * 2);
}

.star-rating.star-3::after {
  width: calc(16px * 3);
}

.star-rating.star-4::after {
  width: calc(16px * 4);
}

.star-rating.star-5::after {
  width: calc(16px * 5);
}

.review-card-time {
  color: var(--color-white);
  font: normal 400 14px/1.57 'Inter';
  opacity: 0.7;
}

.review-card-body {
  margin-top: 12px;
}

.review-card-desc {
  color: var(--color-white);
  font: normal 400 16px/1.38 'Inter';
}

.review-card-footer {
  margin-top: 40px;
}

.review-card-logo>img {
  height: 16px;
}


.form-radio-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-radio {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-radio>input {
  position: absolute;
  opacity: 0;
}

.form-radio>.form-radio-label {
  color: var(--color-white);
  font: normal 450 20px/1.30 'Inter';
}

.form-radio::before {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  content: '';
}

.form-radio:has(input:checked)::before {
  background: var(--color-white);
}

/*Plugins*/

[data-animate^="fade"] {
  position: relative;
  transition-duration: 500ms;
  transition-delay: 0s;
  transition-timing-function: ease-out;
  transition-property: all;
}

[data-animate^="fadeOut"],
[data-animate^="flipOut"] {
  opacity: 1;
  visibility: visible;
}

[data-animate^="fadeOut"].is-show,
[data-animate^="flipOut"].is-show {
  opacity: 0;
  visibility: hidden;
}

[data-parallax],
[data-animate^="fadeIn"],
[data-animate^="flipIn"] {
  opacity: 0;
  visibility: hidden;
}

[data-parallax].is-show,
[data-animate^="fadeIn"].is-show,
[data-animate^="flipIn"].is-show {
  opacity: 1;
  visibility: visible;
}

[data-animate^="fadeInDown"] {
  transform: translate3d(0, -50px, 0);
}

[data-animate^="fadeInDown"].is-show {
  transform: translate3d(0, 0, 0);
}

[data-animate^="fadeInUp"] {
  transform: translate3d(0, 50px, 0);
}

[data-animate^="fadeInUp"].is-show {
  transform: translate3d(0, 0, 0);
}

[data-animate^="fadeOutDown"] {
  transform: translate3d(0, 0, 0);
}

[data-animate^="fadeOutDown"].animated {
  transform: translate3d(0, 50px, 0);
}

[data-animate^="fadeOutUp"] {
  transform: translate3d(0, 0, 0);
}

[data-animate^="fadeOutUp"].is-show {
  transform: translate3d(0, -50px, 0);
}

[data-animate="flipInX"] {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
    opacity: 1;
  }
}

[data-animate="flipInY"] {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

[data-animate="flipOutX"] {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

[data-animate="flipOutY"] {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

[data-duration] {
  transition-duration: calc(var(--animate-duration) * attr(data-duration, number) / 1000);
}

[data-delay] {
  transition-delay: calc(var(--animate-delay) * attr(data-delay, number) / 1000);
}

[data-easing="linear"] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-easing="ease"] {
  transition-timing-function: ease;
}

[data-easing="ease-in"] {
  transition-timing-function: ease-in;
}

[data-easing="ease-out"] {
  transition-timing-function: ease-out;
}

[data-easing="ease-in-out"] {
  transition-timing-function: ease-in-out;
}

[data-easing="ease-in-back"] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-easing="ease-out-back"] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-easing="ease-in-out-back"] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-easing="ease-in-sine"] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-easing="ease-out-sine"] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-easing="ease-in-out-sine"] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-easing="ease-in-quad"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-easing="ease-out-quad"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-easing="ease-in-out-quad"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-easing="ease-in-cubic"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-easing="ease-out-cubic"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-easing="ease-in-out-cubic"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-easing="ease-in-quart"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-easing="ease-out-quart"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-easing="ease-in-out-quart"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.row>div[class^="col-"][class$="-6"]>[data-parallax],
.row>div[class^="col-"][class$="-4"]>[data-parallax],
.row>div[class^="col-"][class$="-3"]>[data-parallax],
.row>div[class^="col-"][class$="-2"]>[data-parallax] {
  transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
}

.row>div[class^="col-"][class$="-6"]:nth-child(2n + 1)>[data-parallax],
.row>div[class^="col-"][class$="-4"]:nth-child(3n + 1)>[data-parallax],
.row>div[class^="col-"][class$="-3"]:nth-child(4n + 1)>[data-parallax],
.row>div[class^="col-"][class$="-2"]:nth-child(6n + 1)>[data-parallax] {
  --nth-child: 1;
}

.row>div[class^="col-"][class$="-6"]:nth-child(2n + 2)>[data-parallax],
.row>div[class^="col-"][class$="-4"]:nth-child(3n + 2)>[data-parallax],
.row>div[class^="col-"][class$="-3"]:nth-child(4n + 2)>[data-parallax],
.row>div[class^="col-"][class$="-2"]:nth-child(6n + 2)>[data-parallax] {
  --nth-child: 2;
}

.row>div[class^="col-"][class$="-4"]:nth-child(3n + 3)>[data-parallax],
.row>div[class^="col-"][class$="-3"]:nth-child(4n + 3)>[data-parallax],
.row>div[class^="col-"][class$="-2"]:nth-child(6n + 3)>[data-parallax] {
  --nth-child: 3;
}

.row>div[class^="col-"][class$="-3"]:nth-child(4n + 4)>[data-parallax],
.row>div[class^="col-"][class$="-2"]:nth-child(6n + 4)>[data-parallax] {
  --nth-child: 4;
}

.row>div[class^="col-"][class$="-2"]:nth-child(6n + 5)>[data-parallax] {
  --nth-child: 5;
}

.row>div[class^="col-"][class$="-2"]:nth-child(6n + 6)>[data-parallax] {
  --nth-child: 6;
}

@media (min-width: 576px) {

  .row>div[class^="col-sm-"][class$="-6"]>[data-parallax],
  .row>div[class^="col-sm-"][class$="-4"]>[data-parallax],
  .row>div[class^="col-sm-"][class$="-3"]>[data-parallax],
  .row>div[class^="col-sm-"][class$="-2"]>[data-parallax] {
    transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
  }
}

@media (min-width: 768px) {

  .row>div[class^="col-md-"][class$="-6"]>[data-parallax],
  .row>div[class^="col-md-"][class$="-4"]>[data-parallax],
  .row>div[class^="col-md-"][class$="-3"]>[data-parallax],
  .row>div[class^="col-md-"][class$="-2"]>[data-parallax] {
    transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
  }
}

@media (min-width: 992px) {

  .row>div[class^="col-lg-"][class$="-6"]>[data-parallax],
  .row>div[class^="col-lg-"][class$="-4"]>[data-parallax],
  .row>div[class^="col-lg-"][class$="-3"]>[data-parallax],
  .row>div[class^="col-lg-"][class$="-2"]>[data-parallax] {
    transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
  }
}

@media (min-width: 1200px) {

  .row>div[class^="col-xl-"][class$="-6"]>[data-parallax],
  .row>div[class^="col-xl-"][class$="-4"]>[data-parallax],
  .row>div[class^="col-xl-"][class$="-3"]>[data-parallax],
  .row>div[class^="col-xl-"][class$="-2"]>[data-parallax] {
    transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222222;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

.lightbox .logo {
  position: absolute;
  top: clamp(13px, 0.29vw + 11.89px, 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.lightbox.fullscreen-mode {
  background: rgba(0, 0, 0, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-swiper {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  padding: 0 50px;
}

.lightbox-swiper .swiper-wrapper {
  align-items: center;
}

.lightbox-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0.3;
  transform: scale(0.85);
  transition: all 0.3s ease;
  height: fit-content;
}

.lightbox-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.lightbox-swiper .swiper-slide-prev,
.lightbox-swiper .swiper-slide-next {
  opacity: 0.5;
  transform: scale(0.9);
}

.lightbox-swiper img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  user-select: none;
  transition: all 0.3s ease;
  width: auto;
  height: auto;
}

.slide-inner {
  position: relative;
}

/* Desktop stage padding effect */
@media (min-width: 1024px) {
  .lightbox-swiper {
    padding: 0 15%;
  }

  .lightbox-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 80vh;
  }
}

/* Mobile view - no stage padding */
@media (max-width: 1023px) {
  .lightbox-swiper {
    padding: 0;
  }

  .lightbox-swiper .swiper-slide {
    opacity: 1;
    transform: scale(1);
  }

  .lightbox-swiper img {
    max-width: 100%;
    max-height: 85vh;
    margin: auto;
  }

  .lightbox-counter {
    left: 10px !important;
  }

  .lightbox-actions {
    left: 10px !important;
    bottom: 10px !important;
  }
}

/* Fullscreen mode for images */
.lightbox.fullscreen-mode .lightbox-swiper {
  padding: 0;
}

.lightbox.fullscreen-mode .lightbox-swiper .swiper-slide {
  opacity: 1;
  transform: scale(1);
}

.lightbox.fullscreen-mode .lightbox-swiper .swiper-slide-prev,
.lightbox.fullscreen-mode .lightbox-swiper .swiper-slide-next {
  opacity: 0;
  transform: scale(1);
}

.lightbox.fullscreen-mode .lightbox-swiper img {
  max-width: 100%;
  max-height: 100vh;
}


/* Lightbox Controls */
.icon-close {
  position: absolute;
  color: var(--color-white);
  font: normal 500 clamp(28px, 0.38vw + 26.51px, 32px)/1.28 'Inter';
  right: clamp(15px, 3.05vw + 3.11px, 47px);
  top: clamp(15px, 0.57vw + 12.77px, 21px);
  background: none;
  border: none;
  padding: 0;
  z-index: 10001;
}


.lightbox-actions {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-actions>button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  z-index: 10001;
}

.icon-download {
  background-image: url(../img/icon-download.svg);
}

.icon-fullscreen,
.icon-exit-fullscreen {
  background-image: url(../img/icon-expand_content.svg);
}

/* Counter */
.lightbox-counter {
  color: rgba(255, 255, 255, .2);
  font: normal 450 20px/1.30 'Inter';
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 6px;

}

.lightbox-counter #currentSlide {
  color: rgba(255, 255, 255, 1);
}

.fullscreen-mode .lightbox-counter {
  display: none;
}

/* Title and Subtitle in Lightbox */
.lightbox-info {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 10001;
  transform: translateY(-14px);
}

.lightbox-title {
  color: var(--color-white);
  font: normal 450 20px/1.30 'Inter';
  margin: 0;
}

.lightbox-subtitle {
  color: var(--color-white);
  font: normal 450 20px/1.30 'Inter';
  margin: 0;
}

.fullscreen-mode .lightbox-info {
  display: none;
}

/* Swiper Navigation */
.swiper-button-disabled {
  opacity: .2;
  pointer-events: none;
  cursor: default;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/*Cursor*/

.cursor {
  z-index: 99999;
  position: fixed;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  mix-blend-mode: difference;
  border-radius: 50%;
  pointer-events: none;
  transition: width 0.25s, height 0.25s, 0.08s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor--has-text,
.cursor--zoom {
  width: 60px;
  height: 60px;
  transition: width 0.25s, height 0.25s;
}

.cursor--has-text {
  color: var(--color-black);
  font: normal 500 20px/1.30 'Inter';
}

.cursor-close {
  background-color: #110f10;
  transform: matrix(3, 0, 0, 3, 0, 0) !important;
  mix-blend-mode: difference;
}

.cursor-close::before,
.cursor-close::after {
  content: "";
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: cursorClose 0.6s 0.1s ease-in-out both;
}

.cursor-close::before {
  height: 100%;
  width: 1px;
}

.cursor-close::after {
  height: 1px;
  width: 100%;
}

.open .cursor {
  mix-blend-mode: lighten;
}

body.is-mobile .cursor,
.touch .cursor {
  display: none !important;
}

.cursor--active {
  animation: cursor-active 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}

.cursor--active.cursor--zoom {
  animation: cursor-active2 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}

@keyframes cursor-active {
  0% {
    box-shadow: 0 0 0 0 #d14634;
  }

  100% {
    box-shadow: 0 0 0 3rem rgba(247, 84, 27, 0);
  }
}

@keyframes cursor-active2 {
  0% {
    box-shadow: 0 0 0 0 #d14634;
  }

  100% {
    box-shadow: 0 0 0 1rem rgba(247, 84, 27, 0);
  }
}

@keyframes cursorClose {
  0% {
    transform: scale(0) rotate(90deg);
  }

  100% {
    transform: scale(0.45) rotate(45deg);
  }
}

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

  .testimonial-card {
    padding: 20px;
  }

  .subsection-header:has(.carousel-nav),
  .section-header:has(.carousel-nav),
  .section-instagram .section-header {
    flex-direction: column;
  }

  .section-project .section-header {
    top: 100px;
  }

  .section-project .section-footer {
    bottom: 100px;
  }

  .subsection-more {
    align-items: center;
  }

  .progress-card-header {
    flex-direction: column;
  }

  .progress-card-info>li>div {
    justify-content: end;
  }
}

@media (min-width: 576px) {

  .subsection-header:has(.carousel-nav),
  .section-header:has(.carousel-nav),
  .section-instagram .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  .service-card-title::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 991.98px) {

  body.nav-opened #header {
    background: transparent !important;
  }

  .project-card-img {
    aspect-ratio: 1 / 1.22751323;
  }

  .workflow-card {
    flex-direction: column;
  }

  .workflow-card-img {
    aspect-ratio: 1/ 0.643274854;
  }

  html:has(body.nav-opened),
  body.nav-opened {
    overflow: hidden;
  }

  #sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    padding: 100px 24px 24px 50px;
    z-index: 999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    /* transition: opacity .8s cubic-bezier(.215, .61, .355, 1); */
  }

  body.nav-opened #sidebar {
    opacity: 1;
    visibility: visible;
  }

  .sidebar-bg {
    background-color: transparent;
    width: 100%;
    height: 0;
    transform-origin: left top;
    transition: transform .8s cubic-bezier(.3, .3, .12, 1) .1s, height .7s cubic-bezier(.52, .08, .18, 1), background-color .7s cubic-bezier(.52, .08, .18, 1);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
  }

  body.nav-opened .sidebar-bg {
    height: 100%;
    background: var(--color-black);
  }

  body.nav-opened .sidebar-bg::before,
  body.nav-opened .sidebar-bg::after {
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .25;
    content: '';
    display: none;
  }

  body.nav-opened .sidebar-bg::before {
    background-image: url(../img/pattern-mt.svg);
    background-position: center top;
  }

  body.nav-opened .sidebar-bg::after {
    background-image: url(../img/pattern-mb.svg);
    background-position: center bottom;
  }

  .sidebar-nav>ul,
  .sidebar-social {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .sidebar-nav>ul {
    gap: clamp(2px, 0.95vw - 1.71px, 12px);
  }

  .sidebar-nav>ul>li>a {
    color: var(--color-black);
    font: normal 500 clamp(32px, -0.38vw + 33.49px, 28px)/1 'Inter';
    position: relative;
    z-index: 1;
    padding-right: 2px;
    display: inline-flex;
    transition: transform .25s cubic-bezier(.55, .055, .675, .19), opacity .25s cubic-bezier(.55, .055, .675, .19), color .8s cubic-bezier(.52, .08, .18, 1);
  }

  .sidebar-nav>ul>li>a:hover {
    color: var(--color-white);
    transition: transform .25s cubic-bezier(.55, .055, .675, .19), opacity .25s cubic-bezier(.55, .055, .675, .19), color .4s cubic-bezier(.37, .16, .12, 1);
  }

  .sidebar-nav>ul>li.current-menu-item>a {
    color: #8e8e8e;
  }

  .sidebar-nav>ul>li.current-menu-item>a::before,
  .sidebar-nav>ul>li.current-menu-item>a::after {
    background-color: #8e8e8e;
    transition: none;
  }

  .sidebar-social {
    gap: 2px;
    margin-top: 24px;
  }

  .sidebar-social>li>a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .sidebar-social>li>a>span {
    color: var(--color-black);
    font: normal 450 12px/1.33 'Inter';
    position: relative;
    display: inline-flex;
  }

  .sidebar-social>li>a>span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 15%;
    background-color: var(--color-black);
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform .3s cubic-bezier(.37, .16, .12, 1);
    pointer-events: none;
  }

  .sidebar-social>li>a:hover>span::after {
    transform: scaleX(1);
    transform-origin: left top;
    transition: transform .6s cubic-bezier(.37, .16, .12, 1);
  }

  .sidebar-social>li>a>img {
    min-width: 24px;
    max-width: 24px;
    height: 24px;
  }

  .sidebar-nav>ul>li>a {
    color: var(--color-white);
  }

  .sidebar-nav>ul>li>a::before {
    background-color: var(--color-white);
  }

  .sidebar-nav>ul>li>a::after {
    background-color: var(--color-dark);
  }

  .sidebar-social>li>a>span {
    color: var(--color-white);
  }

  .sidebar-social>li>a>span::after {
    background-color: var(--color-white);
  }

  #sidebar ul>li {
    overflow: hidden;
  }

  #sidebar ul>li>a {
    transform: translate3d(0, 120%, 0);
    opacity: 0;
    transition: transform .25s cubic-bezier(.55, .055, .675, .19), opacity .25s cubic-bezier(.55, .055, .675, .19), color .8s cubic-bezier(.52, .08, .18, 1);
  }

  body.nav-opened #sidebar ul>li>a {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    transition: transform 1.1s cubic-bezier(.37, .16, .12, 1), opacity 1s cubic-bezier(.37, .16, .12, 1), color 1s cubic-bezier(.52, .08, .18, 1);
  }

  .contact-box-nav {
    flex-direction: column;
    gap: 24px;
  }

  .whatsapp-box-qrcode {
    display: none;
  }

  .whatsapp-box-inner {
    flex-direction: column;
  }

  .whatsapp-box-footer {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .section-project .section-header {
    bottom: 50px
  }

  .pslide-caption .swiper-slide:not(.swiper-slide-thumb-active) {
    opacity: .6;
  }

  .section-footer .section-nav {
    text-align: center;
  }

  .section-subheader {
    margin-right: -24px;
  }

  .section-subheader-cover>img,
  .section-subheader-cover>video {
    aspect-ratio: 1 / 1.47928994;
  }

  .whatsapp-box {
    text-align: center;
  }

  .project-card-footer .container-fluid,
  .project-card-footer .row {
    padding: 0;
  }

  .project-card-footer {
    padding-left: 11.6402116%;
  }

  .project-masonry {
    margin-left: -36px;
    margin-right: -36px;
  }

  .section-tab-toggle+.section-tab {
    display: none;
    margin-top: 16px;
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  .section-tab>li>a {
    font: normal 400 20px/1 'Inter';
  }

  .quote-card {
    position: relative;
    z-index: 1;
  }

  .quote-card::before {
    background: var(--color-light);
    aspect-ratio: 1 / .3;
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
  }

  .quote-card-body {
    gap: 40px;
    flex-direction: column-reverse;
  }

  .quote-card-desc {
    margin-top: -64px;
  }

  #sidebar .filter-nav {
    display: none;
  }

  .cta-whatsapp.floating {
    bottom: 20px;
    left: 24px;
  }

  #sidebar .newsbar {
    position: absolute;
    right: 24px;
    left: 24px;
    bottom: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all .8s 1s cubic-bezier(.52, .08, .18, 1);
  }

  body.nav-opened #sidebar .newsbar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .section-slideshow .newsbar {
    display: none;
  }

  .map-sidebar {
    bottom: 0;
    left: 10px;
    right: 10px;
    transform: translateY(100%);
    transition: all 300ms linear;
  }

  body.page-loaded .map-sidebar.open {
    transform: translateY(0);
  }

  .map-sidebar::before {
    width: 42.4px;
    height: 3.44px;
    border-radius: 44px;
    background: #000000;
    opacity: 0.2;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
  }

  .map-wrapper>.map-guide {
    display: none;
  }

  #map-sidebar-main .map-sidebar-subheader {
    flex-direction: column;
  }

  .map-sidebar-nav {
    justify-content: space-between;
  }

  .map-guide-filter {
    gap: max(12px, calc((12 / var(--vw-max)) * 100vw));
  }

  .map-guide-filter>label {
    padding: 0;
  }

  #navigation {
    display: none;
  }

  .quote-card {
    background: transparent;
  }

  .quote-card-header {
    position: relative;
    z-index: 1;
  }

  .quote-card-body {
    background: var(--color-dark);
    box-shadow: 0 calc(-64px - clamp(30px, 2.86vw + 18.86px, 60px)) 0 0 var(--color-dark);
  }

  .testimonial-carousel {
    padding-right: 40px;
  }

  .stat-grid>div:not(:first-child)>div {
    padding-top: clamp(30px, 2.86vw + 18.86px, 60px);
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

  .tablelist>li>.tablelist-body {
    padding-top: 0;
    border-top: none;
  }

  .tablelist>li:last-child>.tablelist-title {
    border-bottom: none;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .footer-nav>li {
    flex: 0 0 auto;
    width: calc(50% - 4px);
  }

  .logo-footer {
    text-align: center;
  }

  .copyright {
    margin-top: 4px;
  }

  body.page-template-page-team .section-page-hero {
    height: 73.5294118vh;
  }

  body.page-template-page-team .section-page-hero .section-title,
  body.page-template-page-team .section-page-hero .section-wrapper,
  body.page-template-page-team .section-page-hero .section-header {
    height: 100%;
  }

  body.page-template-page-team .section-page-hero .section-cover {
    height: auto;
  }

  body.page-template-page-team .section-page-hero .section-cover>img {
    transform: scale(1.1);
    transform-origin: center bottom;
  }

  .section-active .senior-grid>div:last-child:after {
    display: none;
  }

  .team-card-body,
  .team-card-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  #team-modal .modal-body {
    padding-bottom: 32px;
  }

  .form-action {
    flex-direction: column-reverse;
  }

  .section-active .joinus-grid-header>div:not(:first-child)::before,
  .section-active .joinus-grid-header>div:not(:first-child)::after,
  .joinus-grid-body>div:nth-child(1)::after {
    display: none;
  }

}

@media (min-width: 992px) {

  #sidebar {
    display: none;
  }

  .project-masonry>div:nth-child(2) {
    padding-top: 22%;
  }

  .section-project .section-header {
    top: clamp(50px, 4.76vw + 31.43px, 100px);
  }

  .workflow-card-footer {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: all 200ms ease;
    will-change: transform;
  }

  .workflow-card.active .workflow-card-footer {
    opacity: 1;
    visibility: visible;
  }

  .workflow-card-img {
    width: 333px;
    aspect-ratio: 1 / 0.660660661;
  }

  .workflow-card-header {
    min-width: 15vw;
    max-width: 15vw;
  }

  .whatsapp-box-button {
    display: none;
  }

  .whatsapp-box-inner>div {
    width: 50%;
  }

  .whatsapp-box-body {
    position: relative;
  }

  .whatsapp-box-body::after {
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    left: 100%;
    margin-left: 10px;
    transform: translateX(-1px);
    content: '';
  }

  .whatsapp-box-footer {
    display: flex;
    gap: 12px;
  }

  .section-tab-toggle {
    display: none;
  }

  .section-tab>li.active>a {
    font: normal 400 32px/1 'Inter';
    text-decoration-line: underline !important;
  }

  .nav-toggle {
    display: none;
  }

  #sidebar.light .sidebar-nav,
  #sidebar.light .sidebar-social>li>a>span {
    filter: brightness(0) invert(1);
  }

  body.archive-project #sidebar {
    height: 100vh;
  }

  .section-project-archive #sidebar {
    height: 100vh;
  }

  .project-subheader .section-inner-desc {
    min-width: 61.7136659%;
    max-width: 61.7136659%;
  }

  .cta-whatsapp.floating {
    bottom: 22px;
    left: 25px;
  }

  .newsbar {
    width: 28.6111111vw;
    position: absolute;
    bottom: 20px;
    right: 24px;
  }

  .map-sidebar,
  .map-guide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 300ms linear;
  }

  body.page-loaded .map-sidebar.open,
  body.page-loaded .map-guide {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #map-sidebar-project {
    transform: translateX(100%);
  }

  body.page-loaded #map-sidebar-project.open {
    transform: translateX(0);
  }

  .map-sidebar {
    min-width: 29.7916667vw;
    width: 429px;
    /* width: fit-content; */
    bottom: max(24px, calc((24 / var(--vw-max)) * 100vw));
    right: max(24px, calc((24 / var(--vw-max)) * 100vw));
  }

  #map-sidebar-project {
    height: calc(100vh - max(24px, calc((24 / var(--vw-max)) * 100vw)) * 2);
    top: 0;
    bottom: 0;
    right: 0;
    height: 100vh;
  }

  .map-sidebar-guide {
    display: none;
  }

  .map-sidebar-subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #map-sidebar-filter {
    min-width: 25.694444vw;
    width: 370px;
  }

  .workflow-list:has(.workflow-card:hover)>.workflow-card:not(:hover) {
    opacity: 0.2;
  }

  .quote-card {
    position: relative;
  }

  .quote-card-img {
    position: relative;
    bottom: clamp(30px, 2.86vw + 18.86px, 60px);
  }

  .project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .project-gallery-grid>div {
    height: auto;
  }

  .project-gallery-grid>div:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
  }

  .project-gallery-grid>div:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
  }

  .project-gallery-grid>div:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }

  #footer {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1;
  }

  .pslide-caption .swiper-slide-thumb-active .pslide-card-title {
    font-size: clamp(30px, 1.71vw + 23.31px, 48px);
  }

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

  .stat-grid>div:not(:first-child)>div {
    padding-left: clamp(30px, 2.86vw + 18.86px, 60px);
    border-left: 1px solid rgba(255, 255, 255, .2);
  }

  .tablelist>li {
    display: flex;
    gap: 20px;
    height: 100%;
  }

  .tablelist>li>.tablelist-title {
    min-width: 16.6666667%;
    max-width: 16.6666667%;
  }

  .col-member {
    flex: 0 0 auto;
    width: 20%;
  }

  .col-member-offset-1 {
    margin-left: 20%;
  }

  .section-active .senior-grid>div:not(:last-child)::after,
  .section-active .senior-grid::after {
    display: none;
  }

  .senior-grid>div:nth-child(2) {
    padding-top: 604px;
  }

  .team-card-header {
    width: 50%;
  }

  #team-modal .modal-content {
    padding: 44px;
  }

  body.page-template-page-team .section-page-hero .section-title {
    height: 60%;
  }

  .form-action>div {
    width: calc(50% - 20px);
  }

  .joinus-grid-header>div:not(:last-child)::after {
    display: none;
  }
}

@media screen and (orientation: landscape) {

  .page-bg>div:last-child,
  .page-transition-motion>div:last-child {
    display: none;
  }
}

@media screen and (orientation: portrait) {
  .cursor {
    display: none;
  }

  .page-bg>div:first-child,
  .page-transition-motion>div:first-child {
    display: none;
  }

  .section-page-hero::after {
    background: url(../img/bg-01.svg) no-repeat center / auto 100%;
  }
}