.container {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 576px) {
  .container {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@font-face {
  font-family: "Sora";
  src: url("/web/fonts/Sora-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/web/fonts/Inter-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/web/fonts/Roboto-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-sora: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  --font-inter: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  --color-transparent: transparent;
  --color-black: #000000;
  --color-white: #ffffff;
}

.header-fixed {
  position: fixed !important;
}

body.disable-scroll,
html.disable-scroll {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
}

body.disable-scroll {
  position: fixed;
  width: 100%;
  touch-action: none;
}

body {
  font-family: var(--font-sora);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body p {
  margin: 0;
}
body .main_header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  padding-block: 10px;
  display: flex;
  transition: background-color 300ms ease;
}
body .main_header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
}
body .main_header .container .logo-nav .top-brand-logo {
  width: 119px;
  height: 36px;
}
@media (min-width: 992px) {
  body .main_header .container .logo-nav .top-brand-logo {
    width: 167px;
    height: 50px;
  }
}
body .main_header nav {
  display: none;
  height: 100%;
  gap: 24px;
  align-items: baseline;
  justify-content: center;
  color: var(--color-black) !important;
}
@media (min-width: 1200px) {
  body .main_header nav {
    display: flex;
  }
}
body .main_header nav .nav-link {
  display: flex;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  height: 100%;
  text-align: center;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
}
body .main_header nav .custom-dropdown {
  position: relative;
  height: 100%;
}
body .main_header nav .custom-dropdown .custom-dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  transition: color 0.2s ease;
}
body .main_header nav .custom-dropdown .dropdown-arrow {
  font-size: 1.5em;
  transition: transform 0.2s;
}
body .main_header nav .custom-dropdown .custom-dropdown-menu {
  position: absolute;
  top: 100%;
  width: max-content;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 15px;
  background: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  border: 1px solid gray;
  margin-top: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 1002;
  overflow-x: auto;
}
body .main_header nav .custom-dropdown .custom-dropdown-menu .column {
  display: flex;
  flex-direction: column;
}
body .main_header nav .custom-dropdown .custom-dropdown-menu .column .column-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}
body .main_header nav .custom-dropdown .custom-dropdown-menu .column .column-item-wrapper {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  align-items: center;
  padding: 8px 10px;
  margin-inline: -10px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
body .main_header nav .custom-dropdown .custom-dropdown-menu .column .column-item-wrapper:hover, body .main_header nav .custom-dropdown .custom-dropdown-menu .column .column-item-wrapper:focus-visible {
  cursor: pointer;
  background: rgba(91, 112, 46, 0.08);
}
body .main_header nav .custom-dropdown .custom-dropdown-menu .column .column-item-wrapper:hover .column-item-title, body .main_header nav .custom-dropdown .custom-dropdown-menu .column .column-item-wrapper:focus-visible .column-item-title {
  color: #5b702e;
}
body .main_header nav .custom-dropdown .custom-dropdown-menu .column .column-item-wrapper .column-item-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
body .main_header nav .custom-dropdown .custom-dropdown-menu .column .column-item-wrapper .column-item-text .column-item-title {
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: #111827;
  transition: color 0.2s ease;
}
body .main_header nav .custom-dropdown.is-open .custom-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
body .main_header nav .custom-dropdown.is-open .dropdown-arrow {
  transform: rotate(180deg);
}
body .main_header .header-actions {
  display: none;
  gap: 15px;
}
@media (min-width: 1200px) {
  body .main_header .header-actions {
    display: flex;
  }
}
body .main_header .header-actions .header-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  text-decoration: none;
  gap: 8px;
  background: #e3e7e7;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #0b303d;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
body .main_header .header-actions .header-btn.get-offer-btn {
  width: 152px;
  background: linear-gradient(90deg, rgba(173, 255, 0, 0.69) 0%, rgba(194, 255, 64, 0.69) 100%);
}
body .main_header .header-actions .header-btn.get-offer-btn:hover {
  background: linear-gradient(90deg, rgba(173, 255, 0, 0.69) 0%, rgba(194, 255, 64, 0.69) 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}
body .main_header .header-actions .header-btn.get-offer-btn:active {
  background: linear-gradient(90deg, rgba(173, 255, 0, 0.69) 0%, rgba(194, 255, 64, 0.69) 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transform: translateY(1px);
}
body .main_header .hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: var(--color-transparent);
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (min-width: 1200px) {
  body .main_header .hamburger-btn {
    display: none;
  }
}
body .main_header .hamburger-btn .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body .main_header .hamburger-btn .hamburger-line:nth-child(2) {
  width: 18px !important;
}
body .main_header .hamburger-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body .main_header .hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 12px !important;
}
body .main_header .hamburger-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body .main_header .mobile-sidebar {
  position: fixed;
  top: var(--header-height, 81px);
  right: -100%;
  width: min(86vw, 360px);
  height: calc(100vh - var(--header-height, 81px));
  background-color: var(--color-white);
  color: var(--color-black);
  z-index: 998;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -24px 0 24px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) {
  body .main_header .mobile-sidebar {
    display: none !important;
  }
}
body .main_header .mobile-sidebar.is-open {
  right: 0;
}
body .main_header .mobile-sidebar .theme-toggle {
  display: flex;
}
body .main_header .mobile-sidebar .sidebar-content {
  padding: 20px 24px;
  min-height: 100%;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-white);
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__actions {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__action {
  width: 100%;
  display: inline-flex;
  justify-content: left;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #111827;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__action:hover, body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__action:focus-visible {
  background-color: rgba(17, 24, 39, 0.08);
  color: #111827;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__action-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__action-group.is-open .mobile-sidebar__action--toggle svg {
  transform: rotate(180deg);
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__action--toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px;
  background: #f3f4f6;
  border-radius: 12px;
  border: none;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__action--toggle svg {
  margin-left: auto;
  transition: transform 0.3s ease;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__subactions {
  list-style: none;
  margin: 0;
  padding: 6px 0 0 10px;
  transition: max-height 0.25s ease;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__subactions li {
  margin: 0;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__subactions li:not(:last-child) {
  margin-bottom: 10px;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__subactions a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 8px;
  border-radius: 12px;
  color: var(--color-black);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__subactions a:hover,
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__subactions a:focus-visible {
  background: rgba(17, 24, 39, 0.08);
  color: #111827;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-sidebar__action-group.is-open .mobile-sidebar__action--toggle::after {
  transform: translateY(-50%) rotate(180deg);
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-item {
  border-bottom: 1px solid var(--color-white);
  padding: 8px 0;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-item .mobile-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-transparent);
  border: none;
  padding: 12px 0;
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
  border-radius: 12px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-item .mobile-link:hover, body .main_header .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-item .mobile-link:focus-visible {
  background-color: rgba(17, 24, 39, 0.08);
  color: #111827;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-transparent);
  border: none;
  padding: 12px 0;
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
  border-radius: 12px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 6px solid var(--color-transparent);
  border-right: 6px solid var(--color-transparent);
  border-top: 7px solid #111827;
  transition: transform 0.25s ease, border-top-color 0.2s ease;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-toggle:hover, body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-toggle:focus-visible {
  background-color: rgba(17, 24, 39, 0.08);
  color: #111827;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-toggle:hover::after, body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-toggle:focus-visible::after {
  border-top-color: #111827;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-panel {
  transition: max-height 0.25s ease;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-links {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0 0 0 8px;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-links li {
  margin: 6px 0;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-links a {
  color: #374151;
  font-size: 15px;
  font-style: normal;
  text-decoration: none;
  border-radius: 10px;
  padding: 6px 10px;
  display: inline-flex;
  transition: background-color 0.2s ease, color 0.2s ease;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-links a:hover, body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-links a:focus-visible {
  background-color: rgba(17, 24, 39, 0.08);
  color: #111827;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .accordion-group-title {
  margin-top: 12px;
  color: #6b7280;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body .main_header .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-item.is-open .accordion-toggle::after {
  transform: translateY(-50%) rotate(180deg);
  border-top-color: var(--primary-color);
}
body .main_header .sidebar-overlay {
  position: fixed;
  left: 0;
  top: var(--header-height, 81px);
  width: 100%;
  flex: 1;
  background-color: rgba(3, 6, 12, 0.6);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  height: calc(100vh - var(--header-height, 81px));
  backdrop-filter: blur(6px);
}
@media (min-width: 1200px) {
  body .main_header .sidebar-overlay {
    display: none !important;
  }
}
body .main_header .sidebar-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
body .get-contact-section {
  padding: 80px 0;
}
body .get-contact-section .contact-heading {
  text-align: center;
  margin-bottom: 40px;
}
body .get-contact-section .buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
body .get-contact-section .buttons .contact-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  gap: 8px;
  height: 43px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
body .get-contact-section .buttons .contact-btn.contact-us-btn {
  width: 139px;
  background: rgba(227, 231, 231, 0.59);
}
body .get-contact-section .buttons .contact-btn.contact-us-btn:hover {
  background: rgba(172, 172, 172, 0.59);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}
body .get-contact-section .buttons .contact-btn.contact-us-btn:active {
  background: rgba(172, 172, 172, 0.59);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transform: translateY(1px);
}
body .get-contact-section .buttons .contact-btn.get-offer-btn {
  border: none;
  width: 152px;
  background: linear-gradient(90deg, rgba(173, 255, 0, 0.69) 0%, rgba(194, 255, 64, 0.69) 100%);
}
body .get-contact-section .buttons .contact-btn.get-offer-btn:hover {
  background: linear-gradient(90deg, rgba(173, 255, 0, 0.69) 0%, rgba(194, 255, 64, 0.69) 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}
body .get-contact-section .buttons .contact-btn.get-offer-btn:active {
  background: linear-gradient(90deg, rgba(173, 255, 0, 0.69) 0%, rgba(194, 255, 64, 0.69) 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transform: translateY(1px);
}
body .main,
body .main-home {
  flex: 1;
}
body .main.project-detail {
  background-color: #fbfbfb;
}
body .main-home {
  margin-top: calc(var(--header-height) * -1);
}
body .main-home .hero-section {
  position: relative;
  width: 100%;
  height: min(1080px, 100vh);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  body .main-home .hero-section {
    justify-content: flex-start;
  }
}
body .main-home .hero-section .hero-swiper {
  height: 100%;
  width: 100%;
}
body .main-home .hero-section .hero-swiper .swiper-wrapper {
  height: 100%;
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  display: flex;
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left center, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0.1) 55%, rgba(255, 255, 255, 0) 65%), rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
  width: 200%;
}
@media (min-width: 992px) {
  body .main-home .hero-section .hero-swiper .swiper-wrapper .swiper-slide::before {
    width: 100%;
  }
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-bg.desktop {
  display: none !important;
}
@media (min-width: 768px) {
  body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-bg.desktop {
    display: block !important;
  }
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-bg.mobile {
  display: block;
}
@media (min-width: 768px) {
  body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-bg.mobile {
    display: none !important;
  }
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: end;
  flex-direction: column;
  margin-bottom: 5%;
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-content {
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
  }
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-content .hero-content-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-content .hero-content-title {
  color: white;
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-content .hero-content-p {
  max-width: 420px;
  line-height: 1.45;
  text-align: center;
  color: var(--color-white);
}
@media (min-width: 992px) {
  body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-content .hero-content-p {
    text-align: left;
  }
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-content .hero-content-button {
  width: 209px;
  height: 43px;
  background-color: #c3f45c;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.25));
  border-radius: 8px;
  padding: 14px 20px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  color: #1c2635;
  transition: background-color 300ms ease;
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-content .hero-content-button:hover {
  background-color: #e7ffb5;
}
body .main-home .hero-section .hero-swiper .swiper-wrapper .hero-content .hero-content-button:active {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), #ceff66;
  box-shadow: inset 0px 4px 3.7px rgba(0, 0, 0, 0.25);
}
body .main-home .hero-section .prev,
body .main-home .hero-section .next {
  position: absolute;
  z-index: 2;
  border: 0;
  cursor: pointer;
  display: none;
  place-items: center;
  bottom: 16px;
  height: 52px;
  width: clamp(140px, 40vw, 220px);
  border-radius: 10px;
}
body .main-home .hero-section .prev .arrow,
body .main-home .hero-section .next .arrow {
  display: none;
}
@media (min-width: 992px) {
  body .main-home .hero-section .prev,
  body .main-home .hero-section .next {
    display: grid;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
  }
  body .main-home .hero-section .prev .arrow,
  body .main-home .hero-section .next .arrow {
    display: block;
    width: 50px;
    height: 50px;
  }
  body .main-home .hero-section .prev .arrow path,
  body .main-home .hero-section .next .arrow path {
    fill: #f8f8f8;
    transition: fill 300ms ease;
  }
  body .main-home .hero-section .prev:hover .arrow path,
  body .main-home .hero-section .next:hover .arrow path {
    fill: rgba(255, 255, 255, 0.55);
  }
}
body .main-home .hero-section .prev {
  left: 16px;
}
body .main-home .hero-section .next {
  right: 16px;
}
body .main-home .hero-section .next .arrow-right {
  transform: rotate(180deg);
}
body .main-home .options-announcements-section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(180deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 30%), linear-gradient(0deg, rgba(75, 118, 192, 0.82), rgba(75, 118, 192, 0.82)), linear-gradient(206.8deg, rgba(0, 0, 0, 0) 72.72%, rgba(0, 0, 0, 0.2) 82.51%), url("/web/images/announcement-bg.jpg");
}
body .main-home .options-announcements-section .options-section {
  padding: clamp(24px, 4vw, 48px) 0;
}
body .main-home .options-announcements-section .options-section .feature-cards {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 992px) {
  body .main-home .options-announcements-section .options-section .feature-cards {
    flex-direction: row;
  }
}
body .main-home .options-announcements-section .options-section .feature-card {
  width: 100%;
}
@media (min-width: 992px) {
  body .main-home .options-announcements-section .options-section .feature-card {
    width: 33%;
  }
}
body .main-home .options-announcements-section .options-section .feature-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
}
body .main-home .options-announcements-section .options-section .feature-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  flex: none;
}
@media (min-width: 768px) {
  body .main-home .options-announcements-section .options-section .feature-card__media {
    aspect-ratio: auto;
  }
}
body .main-home .options-announcements-section .options-section .feature-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
body .main-home .options-announcements-section .options-section .feature-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
}
body .main-home .options-announcements-section .options-section .feature-card__overlayIcon {
  width: 71px;
  height: 71px;
}
body .main-home .options-announcements-section .options-section .feature-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 20px;
  gap: 8px;
  box-sizing: border-box;
}
body .main-home .options-announcements-section .options-section .feature-card__title {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 19px;
  letter-spacing: -0.941868px;
}
body .main-home .options-announcements-section .options-section .feature-card__text {
  margin: 0;
  font-weight: 400;
  font-size: 10px;
  line-height: 19px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
body .main-home .options-announcements-section .options-section .feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  color: #1c2635;
  font-size: 12px;
  font-weight: 600;
  margin-top: auto;
}
body .main-home .options-announcements-section .options-section .feature-card__link:hover {
  text-decoration: underline;
}
body .main-home .options-announcements-section .options-section .feature-card__linkIcon {
  width: 13px;
  height: 11px;
  flex: none;
}
body .main-home .options-announcements-section .announcements-section {
  padding-bottom: clamp(24px, 4vw, 48px);
}
body .main-home .options-announcements-section .announcements-section .swiper-wrapper {
  align-items: stretch;
}
body .main-home .options-announcements-section .announcements-section .swiper-slide {
  height: auto;
}
body .main-home .options-announcements-section .announcements-section .announcement-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__link {
  margin-top: auto;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body .main-home .options-announcements-section .announcements-section .swiper {
  border-radius: 12px;
  overflow: hidden;
}
body .main-home .options-announcements-section .announcements-section .swiper .swiper-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(to left, rgba(75, 118, 192, 0.8) 0%, rgba(75, 118, 192, 0.4) 5%, transparent 15%);
}
body .main-home .options-announcements-section .announcements-section .announcement-card {
  box-sizing: border-box;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px;
  gap: 15px;
  background: var(--color-white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__badge {
  padding: 2px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  background: #f3f4f6;
  color: #374151;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__badge.badge_green {
  background: #def7ec;
  color: #03543f;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__badge.badge_blue {
  background: #e1effe;
  color: #1e429f;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__badge.badge_orange {
  background: rgba(255, 141, 40, 0.3215686275);
  color: #cf5404;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__meta {
  margin: 0;
  font-weight: 400;
  font-size: 10px;
  line-height: 19px;
  text-transform: uppercase;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__title {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.941868px;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__desc {
  margin: 0;
  font-weight: 300;
  font-size: 13px;
  line-height: 19px;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1c2635;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__link:hover, body .main-home .options-announcements-section .announcements-section .announcement-card__link:focus-visible {
  text-decoration: underline;
  outline: none;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__linkText {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}
body .main-home .options-announcements-section .announcements-section .announcement-card__linkIcon {
  width: 16px;
  height: 16px;
  flex: none;
}
body .main-home .options-announcements-section .wave {
  width: 100%;
  margin-bottom: -3px;
}
body .main-home .how-it-works-section {
  background: #ffffff;
  padding: 32px clamp(20px, 8vw, 120px);
}
body .main-home .how-it-works-section .how-it-works {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
body .main-home .how-it-works-section .how-it-works__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
body .main-home .how-it-works-section .how-it-works__kicker {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #8a9ca7;
}
body .main-home .how-it-works-section .how-it-works__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 112%;
  color: #000;
}
body .main-home .how-it-works-section .how-it-works__steps {
  display: grid;
  gap: 40px;
  width: 100%;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 992px) {
  body .main-home .how-it-works-section .how-it-works__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
body .main-home .how-it-works-section .how-it-works__card {
  overflow-wrap: anywhere;
  width: 100%;
  max-width: 393.33px;
  background: #f4faff;
  border: 0.5px solid #c0ddff;
  border-radius: 16px;
  padding: 16px clamp(20px, 2.5vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
body .main-home .how-it-works-section .how-it-works__card-inner {
  width: min(329.33px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
body .main-home .how-it-works-section .how-it-works__icon {
  width: 48px;
  height: 48px;
  background: #f1f8ff;
  border-radius: 4px;
  border: 0;
  box-shadow: 0 0 0 0.5px #0b303d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
body .main-home .how-it-works-section .how-it-works__icon img,
body .main-home .how-it-works-section .how-it-works__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
body .main-home .how-it-works-section .how-it-works__icon img path,
body .main-home .how-it-works-section .how-it-works__icon svg path {
  fill: #6281a0;
}
body .main-home .how-it-works-section .how-it-works__step-title {
  margin: 0;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #0f0f0f;
}
body .main-home .how-it-works-section .how-it-works__desc {
  margin: 0;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #a7b5be;
}
body .main {
  padding: 32px 0;
}
@media (min-width: 992px) {
  body .main {
    padding: 64px 0;
  }
}
body .projects {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body .projects__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body .projects__title {
  font-size: clamp(1.2rem, 1vw + 1rem, 1.5rem);
  font-weight: 400;
  margin: 0;
  color: #1c2635;
  white-space: nowrap;
}
body .projects__divider {
  flex: 1;
  height: 1px;
  background: rgba(182, 165, 241, 0.3);
}
body .projects__grid {
  display: grid;
  gap: 1.5rem;
  padding-top: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  body .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  body .projects__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
body .projects .project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}
body .projects .project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
body .projects .project-card__media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .projects .project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
body .projects .project-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  flex: 1;
}
body .projects .project-card__brand {
  max-width: 120px;
  height: -webkit-fill-available;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}
body .projects .project-card__title {
  font-size: clamp(1rem, 0.7vw + 0.9rem, 1.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: #1c2635;
  margin: 0;
}
body .projects .project-card__meta {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}
body .projects .project-card__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #374151;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body .projects .project-card__btn {
  margin-top: auto;
  width: fit-content;
  padding: 0.5rem 1rem;
  background: #dff7ea;
  color: #03543f;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
}
body .projects .project-card__btn:hover {
  background: #c6f0db;
}
body .project-card__btn {
  margin-top: auto;
  width: fit-content;
  padding: 0.5rem 1rem;
  background: #dff7ea;
  color: #03543f;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
}
body .project-card__btn:hover {
  background: #c6f0db;
}
body .project-detail .project-landing {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
body .project-detail .project-landing__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 992px) {
  body .project-detail .project-landing__hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 32px;
  }
}
body .project-detail .project-landing__cover, body .project-detail .project-landing__content {
  min-width: 0;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}
body .project-detail .project-landing__cover {
  min-height: 320px;
  background: linear-gradient(145deg, #eef4e2 0%, #d7e7bb 100%);
}
@media (min-width: 768px) {
  body .project-detail .project-landing__cover {
    min-height: 460px;
  }
}
body .project-detail .project-landing__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
body .project-detail .project-landing__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 28px;
}
@media (min-width: 992px) {
  body .project-detail .project-landing__content {
    padding: 40px;
  }
}
body .project-detail .project-landing__brand {
  width: auto;
  max-width: 220px;
  max-height: 84px;
  object-fit: contain;
}
body .project-detail .project-landing__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  font-weight: 700;
  color: #172033;
  letter-spacing: -0.04em;
}
body .project-detail .project-landing__description {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.8;
}
body .project-detail .project-landing__description p {
  margin: 0 0 12px;
}
body .project-detail .project-landing__description p:last-child {
  margin-bottom: 0;
}
body .project-detail .project-landing__description ul,
body .project-detail .project-landing__description ol {
  margin: 0;
  padding-left: 20px;
}
body .project-detail .project-gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
body .project-detail .project-gallery-grid__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .project-detail .project-gallery-grid__title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  color: #172033;
}
body .project-detail .project-gallery-grid__items {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  body .project-detail .project-gallery-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  body .project-detail .project-gallery-grid__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body .project-detail .project-gallery-grid__item {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 18px;
  background: #dbe4cf;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}
body .project-detail .project-gallery-grid__item img,
body .project-detail .project-gallery-grid__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 250ms ease;
}
body .project-detail .project-gallery-grid__item:hover img,
body .project-detail .project-gallery-grid__item:hover video {
  transform: scale(1.04);
}
body .project-detail .project-gallery-grid__item.is-video .project-gallery-grid__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.38) 100%);
}
body .project-detail .project-gallery-grid__empty {
  margin: 0;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  color: #6b7280;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}
body .project-detail .project-variants-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
body .project-detail .project-variants-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .project-detail .project-variants-list__title, body .project-detail .project-variants-list__group-title {
  margin: 0;
  color: #172033;
}
body .project-detail .project-variants-list__title {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 700;
}
body .project-detail .project-variants-list__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body .project-detail .project-variants-list__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}
body .project-detail .project-variants-list__group-title {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 600;
}
body .project-detail .project-variants-list__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}
@media (min-width: 768px) {
  body .project-detail .project-variants-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body .project-detail .project-variants-list__empty {
  margin: 0;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  color: #6b7280;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}
body .project-detail .project-variant-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
@media (min-width: 992px) {
  body .project-detail .project-variant-card {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }
}
body .project-detail .project-variant-card__media {
  min-height: 220px;
  background: linear-gradient(145deg, #eff6e3 0%, #d5e5ba 100%);
}
body .project-detail .project-variant-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
body .project-detail .project-variant-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}
body .project-detail .project-variant-card__meta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c7c44;
}
body .project-detail .project-variant-card__title {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 700;
  color: #172033;
}
body .project-detail .project-variant-card__description {
  color: #4b5563;
  line-height: 1.7;
}
body .project-detail .project-variant-card__description p {
  margin: 0 0 10px;
}
body .project-detail .project-variant-card__description p:last-child {
  margin-bottom: 0;
}
body .project-detail .project-variant-card__button {
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #dff0b8;
  color: #1b2a13;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
}
body .project-detail .project-variant-card__button:hover {
  background: #cfe69a;
  transform: translateY(-1px);
}
body .project-detail .variant-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
body .project-detail .variant-chips__row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 4px;
}
body .project-detail .variant-chips__row::-webkit-scrollbar {
  height: 4px;
}
body .project-detail .variant-chips__row::-webkit-scrollbar-track {
  background: transparent;
}
body .project-detail .variant-chips__row::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}
body .project-detail .variant-chips .variant-chip {
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  min-height: 72px;
  border-radius: 10px;
  border: 2px solid #1c2635;
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1c2635;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
body .project-detail .variant-chips .variant-chip:hover:not(.variant-chip--active) {
  border-color: #5B702E;
  background: #f3f9e8;
  color: #5B702E;
}
body .project-detail .variant-chips .variant-chip--active {
  border-color: #5B702E;
  background: #f3f9e8;
  color: #5B702E;
  cursor: default;
}
body .project-detail .detail-section {
  margin-top: 15px;
}
body .project-detail .detail-section .nav-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
body .project-detail .detail-section .nav-div .nav-button {
  background-color: var(--color-transparent);
  text-decoration: none;
  border: none;
  font-size: 14px;
  gap: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #5b702e;
}
@media (min-width: 992px) {
  body .project-detail .detail-section .nav-div .nav-button {
    font-size: 20px;
    gap: 12px;
  }
}
body .project-detail .detail-section .nav-div .nav-button svg {
  width: 25px;
  height: 25px;
}
@media (min-width: 992px) {
  body .project-detail .detail-section .nav-div .nav-button svg {
    width: 35px;
    height: 35px;
  }
}
body .project-detail .detail-section .detail-cards {
  margin-top: 15px;
  gap: 24px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  body .project-detail .detail-section .detail-cards {
    grid-template-columns: 1fr 2fr;
  }
}
body .project-detail .detail-section .detail-cards.full-width {
  grid-template-columns: 1fr !important;
}
body .project-detail .detail-section .detail-cards.detail-cards--single {
  grid-template-columns: 1fr;
}
body .project-detail .detail-section .detail-cards .detail-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  gap: 15px;
  background: #ffffff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full {
  width: 100%;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-title {
  width: 100%;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1c2635;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-empty {
  width: 100%;
  margin: 0;
  color: #535862;
  font-size: 14px;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 8px 42px;
  position: relative;
}
@media (max-width: 767.98px) {
  body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper {
    padding: 8px 32px;
  }
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .swiper-wrapper {
  align-items: stretch;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .swiper-slide {
  width: clamp(120px, 16vw, 200px);
  flex-shrink: 0;
  height: auto;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #e5e7eb;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-item img,
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-item.is-video .variant-gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.35) 100%);
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-nav {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: rgba(28, 38, 53, 0.78);
  color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-nav::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  display: block;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-prev {
  left: 0;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-next {
  right: 0;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-full .variant-gallery-swiper .variant-gallery-next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .detail-title-div {
  width: 100%;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .detail-title-div .label {
  font-weight: 200;
  font-size: 20px;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .detail-title-div .value {
  font-weight: 800;
  font-size: 48px;
  color: #a3ce44;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .detail-content {
  font-size: 14px;
  line-height: 24px;
  color: #535862;
  width: 100%;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .detail-metrics {
  margin-top: 15px;
  width: 100%;
  gap: 5px;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .detail-metrics__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .detail-metrics__row .detail-item__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  color: #49454f;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .detail-metrics__row .detail-item__value {
  margin-bottom: 0;
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  color: #5b702e;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .sales-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  gap: 10px;
  margin-top: auto;
  width: 100%;
  background: #c3f45c;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: none;
  color: #1c2635;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .sales-button:hover {
  background: #b3e64f;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}
body .project-detail .detail-section .detail-cards .detail-card.detail-left .sales-button:active {
  background: #a4d943;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transform: translateY(1px);
}
body .project-detail .detail-section .detail-cards .detail-card.detail-right .detail-image-div {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-right .detail-image-div img {
  width: 100%;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-right .detail-right-items {
  display: grid;
  padding: 0;
  width: 100%;
  gap: 5px;
}
@media (min-width: 992px) {
  body .project-detail .detail-section .detail-cards .detail-card.detail-right .detail-right-items {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
  }
}
body .project-detail .detail-section .detail-cards .detail-card.detail-right .detail-right-items .detail-item {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-right .detail-right-items .detail-item .text {
  display: flex;
  gap: 6px;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-right .detail-right-items .detail-item .text .number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 25px;
  height: 25px;
  background: #242424;
  border-radius: 100%;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-right .detail-right-items .detail-item .text .title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1px;
  font-variant: all-small-caps;
  color: #040404;
}
body .project-detail .detail-section .detail-cards .detail-card.detail-right .detail-right-items .detail-item .value {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  font-variant: all-small-caps;
  color: #1d1b20;
  margin-left: auto;
}
body .corporate-breadcrumb {
  display: flex;
  align-items: center;
}
body .corporate-breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #4b5563;
  margin-bottom: 5px;
}
body .corporate-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body .corporate-breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: #9aa3af;
}
body .corporate-breadcrumb__item.is-current {
  color: #1c2635;
  font-weight: 600;
}
body .corporate-breadcrumb__link {
  text-decoration: none;
  color: inherit;
}
body .corporate-breadcrumb__link:hover, body .corporate-breadcrumb__link:focus-visible {
  color: #1c2635;
  text-decoration: underline;
  outline: none;
}
body .corporate-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
body .corporate-layout > * {
  min-width: 0;
}
body .corporate-layout .corporate-nav {
  height: fit-content;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: clamp(16px, 3vw, 32px) 16px;
  gap: clamp(12px, 1.5vw, 16px);
}
body .corporate-layout .corporate-nav__list {
  display: grid;
}
body .corporate-layout .corporate-nav__list__item {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  padding: 10px 0;
  letter-spacing: 0.5px;
  color: #49454f;
  text-decoration: none;
}
body .corporate-layout .corporate-nav__list__item:hover, body .corporate-layout .corporate-nav__list__item:focus-visible {
  outline: none;
  background: #f7f7f7;
}
body .corporate-layout .corporate-nav__list__item:not(:last-child) {
  border-bottom: 1px solid #efefef;
}
body .corporate-layout .corporate-nav__list__category.is-active, body .corporate-layout .corporate-nav__list__child.is-active {
  color: #1c2635;
  font-weight: 700;
}
body .corporate-layout .corporate-nav__list__child {
  padding-left: 14px;
  color: #6a6672;
}
body .corporate-layout .corporate-content {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
}
@media (min-width: 768px) {
  body .corporate-layout .corporate-content {
    padding: 24px;
    gap: 14px;
  }
}
@media (min-width: 992px) {
  body .corporate-layout .corporate-content {
    padding: 36px;
    gap: 16px;
  }
}
body .corporate-layout .corporate-content__title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #1c2635;
  overflow-wrap: anywhere;
}
@media (min-width: 768px) {
  body .corporate-layout .corporate-content__title {
    font-size: 24px;
  }
}
body .corporate-layout .corporate-content__hero img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px 10px;
  gap: 10px;
}
body .corporate-layout .corporate-content__president-hero {
  background: #f0f0f0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
  margin-inline: auto;
  min-height: 260px;
}
body .corporate-layout .corporate-content__president-hero .president-photo {
  display: block;
  object-fit: contain;
}
body .corporate-layout .corporate-content__president-hero .president-photo:not(.signature) {
  max-width: 220px;
  width: 100%;
}
body .corporate-layout .corporate-content__president-hero .president-photo.signature {
  max-width: 300px;
  width: 100%;
}
@media (min-width: 768px) {
  body .corporate-layout .corporate-content__president-hero {
    flex-direction: row;
    align-items: center;
    gap: clamp(24px, 4vw, 50px);
    padding-inline: clamp(24px, 5vw, 80px);
    padding-block: 12px;
    min-height: auto;
  }
  body .corporate-layout .corporate-content__president-hero .president-photo:not(.signature) {
    max-width: 260px;
  }
  body .corporate-layout .corporate-content__president-hero .president-photo.signature {
    max-width: 340px;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  body .corporate-layout .corporate-content__president-hero {
    max-width: 869px;
    aspect-ratio: 869/303;
    gap: clamp(40px, 5vw, 77px);
    padding-inline: clamp(40px, 6vw, 127px);
  }
  body .corporate-layout .corporate-content__president-hero .president-photo:not(.signature) {
    max-width: 292px;
    height: 100%;
  }
  body .corporate-layout .corporate-content__president-hero .president-photo.signature {
    max-width: 420px;
    max-height: 52px;
  }
}
@media (min-width: 1200px) {
  body .corporate-layout .corporate-content__president-hero {
    padding-inline: 127px;
  }
}
body .corporate-layout .corporate-content__schema-hero {
  background: #f0f0f0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
  margin-inline: auto;
  min-height: 260px;
}
body .corporate-layout .corporate-content__schema-hero .brand-logo {
  width: 60%;
}
@media (min-width: 768px) {
  body .corporate-layout .corporate-content__schema-hero .brand-logo {
    width: 25%;
  }
}
body .corporate-layout .corporate-content__schema-hero .schema-title {
  font-weight: 300;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: #000;
}
body .corporate-layout .corporate-content__schema-hero .org-chart {
  width: min(760px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 26px;
  position: relative;
}
body .corporate-layout .corporate-content__schema-hero .org-node {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 18px;
  background: #fff;
  border-left: 6px solid #005275;
  box-shadow: 0 2px 4.5px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 206px;
  min-height: 51px;
  gap: 4px;
}
body .corporate-layout .corporate-content__schema-hero .org-node__title {
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: #000;
  width: 100%;
}
body .corporate-layout .corporate-content__schema-hero .org-node__subtitle {
  font-family: var(--font-inter);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #000;
  width: 100%;
}
body .corporate-layout .corporate-content__schema-hero .org-chart__row {
  display: grid;
  justify-items: center;
  gap: 14px;
  position: relative;
}
body .corporate-layout .corporate-content__schema-hero .org-chart__row--top {
  grid-template-columns: 1fr;
}
body .corporate-layout .corporate-content__schema-hero .org-chart__bottom {
  display: grid;
  gap: 18px;
  position: relative;
}
body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  align-items: start;
  position: relative;
}
body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row > .org-node {
  justify-self: center;
  position: relative;
  width: 100%;
}
body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row > .org-node:only-child {
  grid-column: auto;
}
body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row > .org-node:first-child:nth-last-child(2),
body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row > .org-node:last-child:nth-child(2) {
  grid-column: auto;
}
@media (min-width: 992px) {
  body .corporate-layout .corporate-content__schema-hero .org-chart {
    gap: 18px;
  }
  body .corporate-layout .corporate-content__schema-hero .org-node {
    padding: 12px 14px;
  }
  body .corporate-layout .corporate-content__schema-hero .org-node__title {
    font-size: 13px;
  }
  body .corporate-layout .corporate-content__schema-hero .org-node__subtitle {
    font-size: 12px;
  }
  body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
    gap: clamp(10px, 3vw, 22px);
  }
  body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row > .org-node {
    max-width: 206px;
  }
  body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row > .org-node:only-child {
    grid-column: 2;
  }
  body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row > .org-node:first-child:nth-last-child(2) {
    grid-column: 1;
  }
  body .corporate-layout .corporate-content__schema-hero .org-chart__bottom-row > .org-node:last-child:nth-child(2) {
    grid-column: 2;
  }
}
body .corporate-layout .corporate-content__text {
  font-size: clamp(14px, 1.1vw, 16px);
  color: #202020;
  line-height: 1.7;
}
body .corporate-layout .corporate-content__text * {
  color: inherit;
  font-family: inherit;
}
body .corporate-layout .corporate-content__text h1,
body .corporate-layout .corporate-content__text h2,
body .corporate-layout .corporate-content__text h3,
body .corporate-layout .corporate-content__text h4,
body .corporate-layout .corporate-content__text h5,
body .corporate-layout .corporate-content__text h6 {
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 600;
}
body .corporate-layout .corporate-content__text h1 {
  font-size: 2em;
}
body .corporate-layout .corporate-content__text h2 {
  font-size: 1.6em;
}
body .corporate-layout .corporate-content__text h3 {
  font-size: 1.3em;
}
body .corporate-layout .corporate-content__text h4 {
  font-size: 1.15em;
}
body .corporate-layout .corporate-content__text h5 {
  font-size: 1.05em;
}
body .corporate-layout .corporate-content__text h6 {
  font-size: 1em;
}
@media (min-width: 1200px) {
  body .corporate-layout {
    grid-template-columns: 1fr 3fr;
  }
  body .corporate-layout .corporate-nav__title {
    font-size: 24px;
    line-height: 30px;
    color: #1c2635;
  }
}
body .corporate-layout .policiy__grid {
  display: grid;
  gap: 1.5rem;
  padding-top: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  body .corporate-layout .policiy__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  body .corporate-layout .policiy__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
body .corporate-layout .policiy-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
  text-decoration: none;
}
body .corporate-layout .policiy-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
body .corporate-layout .policiy-card__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.16;
  text-transform: capitalize;
  color: #1c2635;
  margin: 0;
}
body .corporate-layout .policiy-card__desc {
  font-size: 12px;
  line-height: 17px;
  display: flex;
  align-items: center;
  color: #202020;
}
body .corporate-layout .policiy-card__media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
}
body .corporate-layout .policiy-card__media img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
body .corporate-layout .policiy-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 10px 1.25rem;
  flex: 1;
}
body .corporate-layout .policiy-card__brand {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}
body .contact-page-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  height: 30vh;
  background: linear-gradient(0deg, rgba(75, 118, 192, 0.82), rgba(75, 118, 192, 0.82)), linear-gradient(206.8deg, rgba(0, 0, 0, 0) 72.72%, rgba(0, 0, 0, 0.2) 82.51%), url("/web/images/announcement-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
body .contact-page-hero .page-title {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
  color: #ffffff;
}
@media (min-width: 768px) {
  body .contact-page-hero .page-title {
    font-size: 40px;
  }
}
body .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: -5vh;
}
body .contact-cards .c-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  box-shadow: 0px 4px 16.3px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
@media (min-width: 1200px) {
  body .contact-cards .c-card {
    gap: 30px;
  }
}
body .contact-cards .c-card.info-div {
  align-items: center;
}
@media (min-width: 768px) {
  body .contact-cards .c-card.info-div {
    align-items: flex-start;
  }
}
body .contact-cards .c-card.info-div .logo {
  width: 70%;
}
body .contact-cards .c-card.info-div .info-div-title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -1px;
  text-transform: capitalize;
  color: #1c2635;
}
@media (min-width: 768px) {
  body .contact-cards .c-card.info-div .info-div-title {
    font-size: 20px;
  }
}
body .contact-cards .c-card.info-div .info-div-items {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-evenly;
}
body .contact-cards .c-card.info-div .info-div-items .info-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
body .contact-cards .c-card.info-div .info-div-items .info-item .info-item-info {
  display: flex;
  align-items: center;
}
body .contact-cards .c-card.info-div .info-div-items .info-item .info-item-info .info-item-info-text {
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  color: #49454f;
  margin: 0;
}
@media (min-width: 768px) {
  body .contact-cards .c-card.info-div .info-div-items .info-item .info-item-info .info-item-info-text {
    font-size: 16px;
  }
}
body .contact-cards .c-card.map-card {
  padding: 0;
  overflow: hidden;
  min-height: 320px;
}
body .contact-cards .c-card.map-card #contact-map {
  width: 100%;
  min-height: 320px;
}
@media (min-width: 768px) {
  body .contact-cards .c-card.map-card #contact-map {
    min-height: 420px;
  }
}
body .contact-cards .contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  body .contact-cards .contact-card {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  body .contact-cards .contact-card {
    grid-template-columns: 1fr 2fr;
  }
}
body .contact-cards .contact-card .form-div .form-title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: #1c2635;
}
body .contact-cards .contact-card .form-div .form-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  body .contact-cards .contact-card .form-div .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
body .contact-cards .contact-card .form-div .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  body .contact-cards .contact-card .form-div .form-field--email, body .contact-cards .contact-card .form-div .form-field--phone {
    grid-column: 1/-1;
  }
}
body .contact-cards .contact-card .form-div .form-field .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}
body .contact-cards .contact-card .form-div .form-field .form-input {
  height: 42px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  background: #fff;
  outline: none;
}
body .contact-cards .contact-card .form-div .form-field .form-input::placeholder {
  color: #9ca3af;
}
body .contact-cards .contact-card .form-div .form-field .form-input:focus {
  border-color: #84cc16;
  box-shadow: 0 0 0 2px rgba(132, 204, 22, 0.25);
}
body .contact-cards .contact-card .form-div .form-check-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  body .contact-cards .contact-card .form-div .form-check-area {
    grid-column: 1/-1;
  }
}
body .contact-cards .contact-card .form-div .form-check-area .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
body .contact-cards .contact-card .form-div .form-check-area .form-check .form-check-input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: #84cc16;
}
body .contact-cards .contact-card .form-div .form-check-area .form-check .form-check-text {
  font-size: 14px;
  line-height: 1.4;
  color: #111827;
}
body .contact-cards .contact-card .form-div .form-check-area .form-check .form-check-text .form-check-highlight {
  font-weight: 700;
  color: #3f6212;
}
body .contact-cards .contact-card .form-div .form-submit-btn {
  height: 48px;
  margin-top: 6px;
  border: none;
  border-radius: 6px;
  background: #b7f34f;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  body .contact-cards .contact-card .form-div .form-submit-btn {
    grid-column: 1/-1;
  }
}
body .contact-cards .contact-card .form-div .form-submit-btn:hover {
  filter: brightness(0.95);
}
body .contact-cards .contact-card .form-div .form-submit-btn:active {
  transform: translateY(1px);
}
body .contact-cards .contact-card .form-div .form-submit-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.3);
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 30px;
}
footer .footer-top {
  padding: 0;
  width: 100%;
}
footer .footer-top .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  footer .footer-top .container {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    text-align: left;
  }
}
footer .footer-top .company-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
  width: fit-content;
}
@media (min-width: 992px) {
  footer .footer-top .company-info {
    align-items: flex-start;
    text-align: left;
  }
}
footer .footer-top .company-info .spiltech-logo {
  max-width: 200px;
  height: auto;
}
@media (min-width: 992px) {
  footer .footer-top .company-info .spiltech-logo {
    max-width: 250px;
  }
}
footer .footer-top .company-info .social-media {
  display: flex;
  gap: 15px;
}
footer .footer-top .company-info .social-media a {
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
footer .footer-top .company-info .social-media a img {
  width: 18px;
  height: 18px;
}
footer .footer-top .footer-links {
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  footer .footer-top .footer-links {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
@media (min-width: 992px) {
  footer .footer-top .footer-links {
    gap: 60px;
    display: flex;
    margin-bottom: 0px;
  }
}
footer .footer-top .footer-links .link-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
@media (min-width: 992px) {
  footer .footer-top .footer-links .link-column {
    text-align: left;
  }
}
footer .footer-top .footer-links .link-column h4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
}
footer .footer-top .footer-links .link-column a {
  font-weight: 100;
  font-size: 14px;
  line-height: 140%;
  vertical-align: middle;
  text-decoration: none;
  color: var(--color-black);
}
footer .footer-top .footer-links .link-column a:hover {
  color: #2c2c2c;
}
footer .footer-bottom {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.basvuru-modal .modal-dialog {
  width: auto;
  max-width: 560px;
}
.basvuru-modal .basvuru-modal__content {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.basvuru-modal .basvuru-modal__content .modal-header,
.basvuru-modal .basvuru-modal__content .modal-body,
.basvuru-modal .basvuru-modal__content .modal-footer {
  padding: 0;
  border: 0;
}
.basvuru-modal .basvuru-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-black);
  cursor: pointer;
  font-size: 20px;
  line-height: 32px;
  display: grid;
  place-items: center;
}
.basvuru-modal .basvuru-modal__close:hover {
  background: rgb(255, 255, 255);
}
.basvuru-modal .basvuru-modal__close:active {
  transform: translateY(1px);
}
.basvuru-modal .basvuru-hero {
  width: 100%;
  border-radius: 8px;
  height: 149px;
  background-image: linear-gradient(100.52deg, #ffffff 27.54%, rgba(255, 255, 255, 0) 112.28%), url("/web/images/satis-modal-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .basvuru-modal .basvuru-hero {
    height: 129px;
  }
}
.basvuru-modal .basvuru-hero__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 8px;
  gap: 10px;
}
@media (min-width: 768px) {
  .basvuru-modal .basvuru-hero__inner {
    padding: 20px 16px;
  }
}
.basvuru-modal .basvuru-hero__title {
  margin: 0;
  font-weight: 200;
  font-size: 20px;
  line-height: 26px;
  color: #181d27;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 768px) {
  .basvuru-modal .basvuru-hero__title {
    line-height: 34px;
  }
}
.basvuru-modal .basvuru-hero__k {
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: #c3f45c;
}
.basvuru-modal .basvuru-hero__logo {
  max-height: 100%;
  max-width: 150px;
  width: auto;
  margin-top: 6px;
}
.basvuru-modal .basvuru-body {
  width: 100%;
  padding: 16px;
}
.basvuru-modal .basvuru-body .basvuru-section-title {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-transform: capitalize;
  color: #1c2635;
}
.basvuru-modal .basvuru-body .basvuru-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.basvuru-modal .basvuru-body .basvuru-form .basvuru-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .basvuru-modal .basvuru-body .basvuru-form .basvuru-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.basvuru-modal .basvuru-body .basvuru-form .basvuru-grid .field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .basvuru-modal .basvuru-body .basvuru-form .basvuru-grid .field--full {
    grid-column: 1/-1;
  }
}
.basvuru-modal .basvuru-body .basvuru-form .basvuru-grid .field__label {
  font-weight: 400;
  color: #1e1e1e;
  font-size: 10px;
  line-height: 140%;
}
@media (min-width: 768px) {
  .basvuru-modal .basvuru-body .basvuru-form .basvuru-grid .field__label {
    font-size: 12px;
  }
}
.basvuru-modal .basvuru-body .basvuru-form .basvuru-grid .field__input {
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  color: #1c2635;
}
.basvuru-modal .basvuru-body .basvuru-form .basvuru-grid .field__input::placeholder {
  color: #b3b3b3;
}
.basvuru-modal .basvuru-body .basvuru-form .basvuru-grid .field__input:focus {
  outline: none;
  border-color: #3f5c00;
  box-shadow: 0 0 0 3px rgba(195, 244, 92, 0.35);
}
@media (min-width: 768px) {
  .basvuru-modal .basvuru-body .basvuru-form .basvuru-grid .field__input {
    height: 36px;
    font-size: 12px;
  }
}
.basvuru-modal .basvuru-body .basvuru-form .basvuru-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.basvuru-modal .basvuru-body .basvuru-form .basvuru-checks .form-check-label {
  font-weight: 700;
  color: #3f5c00;
  font-size: 10px;
  line-height: 16px;
}
.basvuru-modal .basvuru-body .basvuru-form .basvuru-checks .form-check-label a {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  .basvuru-modal .basvuru-body .basvuru-form .basvuru-checks .form-check-label {
    font-size: 13px;
    line-height: 16px;
  }
}
.basvuru-modal .basvuru-body .basvuru-form .sales-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  gap: 10px;
  margin-top: auto;
  width: 100%;
  background: #c3f45c;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: none;
  height: 41px;
  font-weight: 600;
  font-size: 10px;
  line-height: 13px;
  color: #1c2635;
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease, box-shadow 120ms ease;
}
.basvuru-modal .basvuru-body .basvuru-form .sales-button:hover {
  background: rgba(195, 244, 92, 0.9);
}
.basvuru-modal .basvuru-body .basvuru-form .sales-button:active {
  transform: translateY(1px);
  background: rgba(195, 244, 92, 0.85);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.22);
}
.basvuru-modal .basvuru-body .basvuru-form .sales-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 244, 92, 0.45), 0px 1px 3px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .basvuru-modal .basvuru-body .basvuru-form .sales-button {
    height: 43px;
    font-size: 12px;
    line-height: 15px;
  }
}

body .gallery-page {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 0 64px;
}
@media (min-width: 992px) {
  body .gallery-page {
    padding: 64px 0;
  }
}
body .gallery-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  body .gallery-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  body .gallery-page .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body .gallery-page .gallery-grid__item {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 18px;
  background: #dbe4cf;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  text-decoration: none;
}
body .gallery-page .gallery-grid__item img,
body .gallery-page .gallery-grid__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 250ms ease;
}
body .gallery-page .gallery-grid__item:hover img,
body .gallery-page .gallery-grid__item:hover video {
  transform: scale(1.04);
}
body .gallery-page .gallery-grid__item.is-video .gallery-grid__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.38) 100%);
}
body .gallery-page .gallery-grid__empty {
  margin: 0;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  color: #6b7280;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

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