:root {
  --white: #fff;
  --black: #000000;
  --gray-50: #f6f6f6;
  --gray-100: #e7e7e7;
  --gray-300: #b0b0b0;
  --gray-500: #737584;
  --gray-600: #5d5d5d;
  --gray-900: #393941;
  --gray-950: #000000;
  --primary-50: #f4f7fb;
  --primary-100: #e8eff6;
  --primary-200: #c2dcf4;
  --primary-350: #77b4e1;
  --primary-700: #2d5577;
  --primary-900: #284259;
  --yellow-600: #d87607;

  --gap-16: 16px;
  --gap-24: 24px;
  --gap-32: 32px;
  --gap-40: 40px;
  --gap-80: 80px;
  --gap-120: 120px;
  --gap-160: 160px;
  --gap-200: 200px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Montserrat, sans-serif;
  background-color: var(--white);
  line-height: 1.4;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a {
  color: var(--primary-900);
}
h1 {
  font-size: 48px;
  font-weight: 600;
}
h2 {
  font-size: 40px;
  font-weight: 600;
}
h3 {
  font-size: 32px;
  font-weight: 500;
}
h4 {
  font-size: 28px;
  font-weight: 500;
}
h5 {
  font-size: 20px;
  font-weight: 500;
}
h6 {
  font-size: 16px;
  font-weight: 500;
}
.fs-24 {
  font-size: 24px;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #192938;
}
.bg-abs {
  position: absolute;
  inset: 0;
}
.index-0 {
  z-index: 0;
}
.index-1 {
  z-index: 1;
}
.index-2 {
  z-index: 2;
}
.index-3 {
  z-index: 3;
}
.gap-16 {
  gap: var(--gap-16);
}
.gap-24 {
  gap: var(--gap-24);
}
.gap-32 {
  gap: var(--gap-32);
}
.gap-40 {
  gap: var(--gap-40);
}
.gap-80 {
  gap: var(--gap-80);
}
.mt-16 {
  margin-top: var(--gap-16);
}
.mb-16 {
  margin-bottom: var(--gap-16);
}
.mt-24 {
  margin-top: var(--gap-24);
}
.mb-24 {
  margin-bottom: var(--gap-24);
}
.mb-32 {
  margin-bottom: var(--gap-32);
}
.mt-32 {
  margin-top: var(--gap-32);
}
.mb-40 {
  margin-bottom: var(--gap-40);
}
.opacity-01 {
  opacity: 0.1;
}
.space80 {
  display: block;
  height: var(--gap-80);
}
.space120 {
  display: block;
  height: var(--gap-120);
}
.space160 {
  display: block;
  height: var(--gap-160);
}
.space200 {
  display: block;
  height: var(--gap-200);
}
.container {
  max-width: 1440px;
}
.container-fluid {
  padding-right: var(--gap-80);
  padding-left: var(--gap-80);
}
.row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 0;
}
.vc_row {
  margin-left: -20px !important;
  margin-right: -20px !important;
}
.vc_column_container > .vc_column-inner {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.loader-wrap {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;

  overflow: hidden;
  transition: height 1s ease;
}

.loader-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 0.4;
  /* transition: opacity 1.5s ease; */
}

.pageloaded .loader-wrap {
  height: 104px;
  pointer-events: none;
}
.pageloaded .loader-wrap::after {
  opacity: 0;
}
.pageloaded-content {
  opacity: 0;
  transition: opacity 2s ease 0.5s;
}
.pageloaded .pageloaded-content,
.pageloaded .navbar-brand,
.pageloaded .nav-link {
  opacity: 1 !important;
}

.navbar {
  position: fixed;
  width: 100%;
  color: var(--white);
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 99;
}

.navbar-brand {
  position: absolute;
  left: 50%;
  margin-left: -60px;
  margin-right: 0;
  opacity: 0;
  transition: opacity 0s ease 1s;
}
.navbar-nav {
  margin-left: -17px;
  margin-right: -17px;
}
.navbar .nav-link {
  height: 44px;
  padding: 12px 17px;
  font-size: 16px;
  font-weight: 500;
  color: inherit;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 2s ease;
}
.navbar .nav-link path {
  fill: var(--white);
}
.language-switch {
  position: relative;
  z-index: 2;
}
.language-switch-label-mobile {
  display: none;
}
.language-switch-toggle {
  border: 0;
  background: transparent;
  font-family: Montserrat, sans-serif;
  cursor: pointer;
}
.language-switch.is-open .language-switch-toggle {
  background-color: rgba(255, 255, 255, 0.2);
}
.language-switch-caret {
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.language-switch.is-open .language-switch-caret {
  transform: rotate(180deg);
}
.language-switch-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  list-style: none;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.language-switch.is-open .language-switch-menu {
  display: block;
}
.language-switch-menu a {
  display: block;
  padding: 18px 24px;
  color: #2E3338;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.language-switch-menu a:hover {
  background-color: var(--gray-100);
  color: var(--primary-900);
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: inherit;
}
/* Жишээ white class style */
.navbar.white {
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.95);
  /* transition: all 0.3s ease; */
  color: var(--black);
}
.navbar.white .brand-svg path,
.navbar.white .brand-svg rect {
  fill: var(--primary-900) !important;
}
.navbar.white .nav-link path {
  fill: var(--black);
}
.navbar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.navbar.white .nav-link:hover {
  background-color: var(--gray-100);
}
.navbar.white .language-switch.is-open .language-switch-toggle {
  background-color: var(--gray-100);
}
.navbar-nav .dropdown-menu {
  top: 98%;
  position: absolute;
  border-radius: 0;
  background-color: var(--gray-50);
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
.custom-dropdown-menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -27px;
  margin-right: -27px;
}
.custom-dropdown-menu li {
  width: 25%; /* 100% / 4 багана */
  padding: 10px;
  box-sizing: border-box;
}
.form-label {
  font-size: 13px;
  color: var(--gray-600);
}
.form-control {
  border-radius: 12px;
  padding: 10px 16px;
  height: 44px;
}
.form-control.ghost {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
  border: none;
}
.form-control.ghost::placeholder {
  color: var(--gray-300);
  opacity: 1; /* зарим browser дээр тод харагдуулах */
}
.form-control.white {
  background-color: var(--white);
  color: var(--gray-300);
  border: none;
}
textarea.form-control {
  height: 80px;
}
.btn {
  line-height: 1.4;
  height: 44px;
  border-radius: 12px;
  padding: 10px 17px;
  font-size: 16px;
  font-weight: 500;
}
.btn-ghost-light {
  background-color: transparent;
  color: var(--white);
}
.btn-ghost-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.btn-primary {
  background-color: var(--primary-350);
  color: var(--white);
  border: none;
}
/* main css */
.main {
  /* padding-top: 104px; */
  overflow-x: hidden;
}
.section {
}
.section-padding {
  padding-top: var(--gap-80);
  padding-bottom: var(--gap-80);
}
.section-padding2 {
  padding-top: var(--gap-200);
  padding-bottom: var(--gap-160);
}
.logistics-small-section {
  position: relative;
}
.logistics-small-section-border {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  pointer-events: none;
}
.logistics-small-section-border-line {
  display: block;
  width: 100%;
  border-top: 1px solid var(--primary-100);
}

.hero-item {
  background-color: #284259;
  min-height: calc(100vh - 20px);
  padding-bottom: var(--gap-80);
  color: var(--white);
  display: flex;
  align-items: end;
}
.hero-item.half {
  min-height: 560px;
  height: 560px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 1) 100%
  );
}
.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background-color: #192938;
}
.hero-title {
  max-width: 800px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}
.hero-icon {
  max-width: 150px;
  height: auto;
}
.presentation-wrap {
  max-width: 560px;
  padding-top: var(--gap-24);
  border-top: 1px solid var(--white);
  color: var(--white);
}
.presentation-wrap.black {
  color: var(--black);
  border: none !important;
  padding: 0;
}
.presentation-title {
  font-size: 24px;
  font-weight: 500;
}

.presentation-wrap.big {
  max-width: 520px;
}
.presentation-wrap.big .presentation-title {
  font-size: 32px;
}

/* boxed infos */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-40);
  padding: var(--gap-40);
  border-radius: 12px;
  box-shadow: none;
}
.card.shadow {
  border: none !important;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.06) !important;
}
.card.halfborder {
  border-width: 2px;
  padding-bottom: 0;
  border-right: none;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-color: var(--primary-100);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.card.halfborder:hover {
  border-color: var(--primary-350);
  background-color: var(--white);
  box-shadow: 0 14px 32px rgba(40, 66, 89, 0.08);
  transform: translateY(-2px);
}

.card ul {
  padding-left: 24px;
  padding-right: 12%;
}
.card strong {
  font-weight: 600;
  color: var(--primary-350);
}
.card-stat {
  color: var(--primary-350);
  font-size: 56px;
  font-weight: 500;
}
.card small {
  font-size: 15px;
  font-weight: 500;
}

.page-navigation-space {
  display: block;
  height: 200px;
}
.page-navigation-wrap {
  position: absolute;
  width: 220px;
  right: 20px;
}

.page-col-content {
  width: calc(100% - 260px);
  max-width: 1180px;
  padding-right: 260px;
  box-sizing: content-box;
}
.page-col-navitaion {
  min-width: 220px;
  width: 220px;
}
.guiding-navigation-wrap {
  position: absolute;
  min-width: 229px;
  width: 229px;
  height: 100%;
  z-index: 90;
  right: 0;
}
.guiding-navigation {
  position: sticky;
  position: -webkit-sticky;
  top: 200px;
  background-color: var(--primary-50);
  padding: var(--gap-24);
  border-radius: 12px;
  list-style: none;
  font-size: 14px;
  line-height: 1;
}
.guiding-navigation li {
  margin-bottom: var(--gap-24);
  cursor: pointer;
}
.guiding-navigation li:last-child {
  margin-bottom: 0;
}
.guiding-navigation a {
  display: block;
  max-width: 100%;
  color: #2E4257;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.26px;
  text-decoration: none;
  white-space: normal;
}
.guiding-navigation a::after {
  content: attr(data-label);
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  font-weight: 700;
}
.guiding-navigation li.active a {
  font-weight: 700;
}

/* structure */

/* core item */
.core-item {
  font-size: 16px;
  text-align: center;
}
.core-item-image {
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
/* value chain */
.value-chain-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.value-chain-content {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap-32);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.value-chain-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}
/* shareholder item */
.shareholder-item {
  display: flex;
  gap: 40px;
  align-items: stretch; /* чухал: аль алины өндөр ижил болгож сунгана */
}
.shareholder-logo-wrap {
  aspect-ratio: 1 / 1;
  width: 360px;
  /* flex-shrink: 0; */
  border: 2px solid var(--primary-100);
  border-radius: 12px;
  padding: var(--gap-40);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.shareholder-logo-wrap:hover {
  border-color: var(--primary-350);
  box-shadow: 0 14px 32px rgba(40, 66, 89, 0.08);
  transform: translateY(-2px);
}
.shareholder-logo-wrap a {
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.shareholder-logo-wrap a svg {
  margin-left: 8px;
}
.shareholder-content-wrap {
  flex: 1;
}
.shareholder-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: var(--gap-32);
}
.shareholder-content p {
  margin-bottom: var(--gap-32);
}
.shareholder-content p:last-child {
  margin-bottom: 0;
}
/* metric tag */
.metric-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  padding: 12px;
  background-color: var(--primary-100);
}
.metric-tag p {
  margin-bottom: 0;
}
/* line */
.line {
  display: block;
  height: 2px;
  background-color: var(--primary-100);
}
/* advantage item */
.advantage-item {
  padding: var(--gap-40);
  border-radius: 12px;
  border: 2px solid var(--primary-100);
  display: flex;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  font-size: 16px;
}
.advantage-item:hover {
  border-color: var(--primary-350);
  background-color: var(--white);
  box-shadow: 0 14px 32px rgba(40, 66, 89, 0.08);
  transform: translateY(-2px);
}

.advantage-item-col {
  flex: 1;
}

.advantage-item p:last-child {
  margin-bottom: 0;
}
.advantage-item-content {
  font-size: 16px;
  padding-left: var(--gap-40);
}
.advantage-item-image {
  background-color: var(--primary-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-item-image img {
  max-width: 200px;
  max-height: 200px;
}
/* partner item */
.partner-item {
  width: 100%;
  border-radius: 12px;
  padding: var(--gap-40);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 380px;
}
.partner-overlay {
  position: absolute;
  inset: 0;
  background: #001528;
  background: linear-gradient(
    180deg,
    rgba(0, 21, 40, 0.4) 0%,
    rgba(45, 85, 119, 0) 40%,
    rgba(45, 85, 119, 1) 70%,
    rgba(45, 85, 119, 1) 100%
  );
}
.partner-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
}
.partner-text {
  font-size: 16px;
  color: var(--white);
}
.partner-text ul {
  padding-left: 22px;
  margin-bottom: 0;
}

/* core service item */
.core-service-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;

  min-height: 300px;
  height: 100%;
}

.accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  font-size: 16px;
}
.accordion-button {
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--primary-350);
  font-size: inherit;
  border-top: 2px solid var(--primary-700);
  padding: 0px;
  padding-top: var(--gap-40);
  padding-bottom: var(--gap-40);
  box-shadow: none !important;
  outline: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-button:not(.collapsed) {
  color: var(--primary-350);
  border-top: 2px solid var(--primary-350);
}
.accordion-button .acc-minus {
  display: none;
}
.accordion-button .acc-plus {
  display: block;
}
.accordion-button:not(.collapsed) .acc-minus {
  display: block;
}
.accordion-button:not(.collapsed) .acc-plus {
  display: none;
}

.accordion-body {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  color: var(--white);
  padding-bottom: var(--gap-40);
}
.accordion-button::after {
  display: none !important;
}

/* bank exchange item */
.exchange-bank-item {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  background-color: var(--primary-350);
  color: var(--white);
}
.exchange-bank-col {
  width: 50%;
}
.exchange-bank-content {
  font-size: 16px;
  padding: var(--gap-40) var(--gap-32);
  min-height: 360px;
  display: flex;
  align-items: center;
}
.exchange-bank-image {
  background-color: #192938;
}
.exchange-bank-item .bg-cover {
  opacity: 0.2 !important;
  filter: grayscale(100%);
}

/* logistics item */
.logistics-item {
  font-size: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--primary-100);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.logistics-item:hover {
  border-color: var(--primary-350);
  box-shadow: 0 14px 32px rgba(40, 66, 89, 0.08);
  transform: translateY(-2px);
}
.logistics-item-title {
  font-weight: 500;
  font-size: 24px;
}
.logistics-item-content {
  padding: var(--gap-40);
}
.logistics-item-image {
  height: 140px;
}

/* table */
.table-striped > tbody > tr:nth-of-type(odd),
.table {
  color: var(--primary-900) !important;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: var(--primary-50) !important;
}
.table thead th {
  background-color: var(--primary-350) !important;
  color: var(--white);
  padding-top: var(--gap-32);
  padding-bottom: var(--gap-32);
  text-align: center;
  font-size: 14px;
}
.table th,
.table td {
  text-align: center;
  color: var(--primary-900);
}
.table th:first-child {
  text-align: left;
}
.table th,
.table td {
  padding-left: var(--gap-32);
  padding-right: var(--gap-32);
}
.table tbody th,
.table tbody td {
  padding-top: var(--gap-24);
  padding-bottom: var(--gap-24);
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border: none !important;
}
.table > :not(caption) > * > * {
  box-shadow: none !important;
}
.table {
  border-radius: 12px;
  overflow: hidden;
  font-size: 16px;
}
.table > :not(caption) > * > * {
  background: unset !important;
}
/* boxed item */
.boxed-item {
  display: flex;
  font-size: 16px;
  color: var(--gray-900);
  border-radius: 12px;
  overflow: hidden;
  outline: 2px solid var(--primary-100);
}
.boxed-item.medium .boxed-content {
  min-height: 270px;
}
.boxed-item.reverse {
  flex-direction: row-reverse;
}
.boxed-item.col .boxed-content {
  height: auto;
  flex: initial;
}

.boxed-item.fill {
  outline: none;
  background-color: var(--primary-50);
}
.boxed-title {
  color: var(--black);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}
.boxed-content {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.boxed-content-padder {
  flex: 1;
  padding: var(--gap-40);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.boxed-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  margin-top: 24px;
}
.boxed-image-wrap {
  flex: 1;
  box-sizing: border-box;
  padding-left: var(--gap-40);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 170px;
}
.boxed-item.reverse .boxed-image-wrap {
  padding-left: 0;
  padding-right: var(--gap-40);
}
.boxed-image {
  flex: 1;
  position: relative;
}
.boxed-item.col {
  flex-direction: column;
}

.boxed-item.col .boxed-image-wrap {
  padding: 0 !important;
}

.boxed-item.dark {
  outline-color: var(--primary-700);
}
.boxed-item.dark,
.boxed-item.dark a {
  color: var(--white);
}
.boxed-item.dark .boxed-title {
  color: var(--primary-350);
}
.boxed-item.dark.fill {
  background-color: var(--primary-900);
}
.boxed-item.dark path {
  fill: var(--white);
}
.boxed-item {
  transition: outline-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.boxed-item:not(.fill):hover {
  outline-color: var(--primary-350);
  background-color: var(--white);
  box-shadow: 0 14px 32px rgba(40, 66, 89, 0.08);
  transform: translateY(-2px);
}

/* contact item */
.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--gap-32);
  font-weight: 500;
  font-size: 20px;
}
.contact-item a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.contact-item .get-direction {
  font-size: 16px;
}

/* modal */
.modal-dialog {
  max-width: 800px;
}
.modal-content {
  background-color: var(--primary-50);
  border-radius: 24px;
}
.modal-body {
  padding: var(--gap-80);
}
.modal-title {
  line-height: 1.2;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: var(--gap-16);
}
.modal-desc {
  font-size: 18px;
}
.modal-closer {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.modal-content {
  z-index: 9999;
}

.custom-inline-form p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wpcf7 {
  width: 100%;
}
/* footer */
.footer {
  padding: var(--gap-80);
  padding-bottom: 0;
  background-color: var(--primary-50);
}
.footer-top {
  font-size: 16px;
  font-weight: 500;
}
.footer-label {
  color: var(--primary-700);
  margin-bottom: 18px;
}
.footer-col {
  max-width: 400px;
}
.footer-nav {
  padding: 0;
  list-style: none;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 12px;
}
.footer-nav li:last-child {
  margin-bottom: 0;
}

.footer-nav a {
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--gray-100);
  font-size: 16px;
  color: var(--gray-300);
  padding-top: var(--gap-24);
  padding-bottom: var(--gap-24);
}

/* vc component */
.vc_row-o-equal-height .vc_column-inner .wpb_wrapper {
  height: 100%;
}
.vc_row.vc_row-no-padding .vc_column-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.animated-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2s ease forwards;
}

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

.animated-structure {
  max-width: 100%;
}
.animated-structure path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 2s ease-out forwards;
}

.animated-structure text {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 2s;
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* responsive */
.toggle-line {
  width: 25px;
  height: 2px;
  background-color: var(--white);
}
.navbar.white .toggle-line {
  background-color: var(--black);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  overflow-y: auto;
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 9999;
  transition: right 0.3s ease;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}
.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-inner {
  padding: var(--gap-40);
}
.mobile-nav {
  list-style: none;
  padding: 0;
}
.mobile-nav a {
  height: 44px;
  padding: 12px 17px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 2s ease;
  text-decoration: none;
}
.mobile-nav .sub-menu {
  list-style: none;
  z-index: 2;
  position: relative;
}
.mobile-nav .sub-menu a {
  color: var(--gray-600);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 10px;
  right: 15px;
}

@media (max-width: 1640px) {
  .container {
    padding-left: var(--gap-80);
    padding-right: var(--gap-80);
  }
}
@media (max-width: 1399.98px) {
}
@media (max-width: 1199.98px) {
  .container,
  .container-fluid {
    padding-right: var(--gap-40);
    padding-left: var(--gap-40);
  }
}
@media (max-width: 991.98px) {
  .navbar .language-switch-toggle .language-switch-label-full {
    display: none !important;
  }
  .navbar .language-switch-toggle .language-switch-label-mobile {
    display: inline !important;
  }
  .hero-title {
    font-size: 40px;
  }
  .presentation-wrap.big {
    max-width: 80%;
    margin-bottom: var(--gap-40);
  }
  .footer {
    padding: var(--gap-40);
    padding-top: var(--gap-80);
  }
  .table th,
  .table td {
    padding-left: var(--gap-16);
    padding-right: var(--gap-16);
  }
  .advantage-item {
    flex-direction: column;
  }
  .advantage-item-image {
    padding: var(--gap-40);
  }
  .advantage-item-content {
    padding-left: 0;
    margin-top: var(--gap-40);
  }
  .guiding-navigation-wrap {
    display: none;
  }
  .page-col-content {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  :root {
    --gap-16: 12px;
    --gap-24: 16px;
    --gap-32: 20px;
    --gap-40: 24px;
    --gap-80: 32px;
    --gap-120: 48px;
    --gap-160: 56px;
    --gap-200: 64px;
  }
  body {
    font-size: 14px;
    line-height: 1.45;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
  .fs-24 {
    font-size: 24px;
  }
  .mobile-nav a,
  .navbar .nav-link {
    font-size: 13px;
  }
  .language-switch-toggle.nav-link {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }
  .language-switch-menu {
    top: calc(100% + 8px);
    min-width: 230px;
    border-radius: 14px;
  }
  .language-switch-menu a {
    padding: 18px 24px;
    font-size: 20px;
  }
  .contact-item {
    margin-bottom: var(--gap-32);
  }
  .hero-title {
    font-size: 32px;
  }
  .navbar-brand {
    width: 80px;
    margin-left: -40px;
  }
  .navbar-brand svg {
    width: 100%;
  }
  .loader-wrap svg {
    width: 80px;
  }
  .toggle-line {
    height: 1px;
  }

  .navbar {
    padding-top: var(--gap-16);
    padding-bottom: var(--gap-16);
  }
  .container,
  .container-fluid {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-icon {
    max-width: 100px;
  }
  .section-padding {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .section-padding2 {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .hero-item {
    min-height: calc(100vh - 20px);
    padding-top: 140px;
    padding-bottom: 44px;
  }
  .exchange-bank-item {
    flex-direction: column;
  }
  .exchange-bank-col {
    width: 100%;
  }
  .exchange-bank-image {
    padding: 40px;
  }
  .presentation-wrap.big{
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .footer-col {
    margin-bottom: 28px;
  }
  .presentation-wrap.big .presentation-title{
    font-size: 24px;
  }
  .custom-inline-form .form-control{
    min-width: 13px;
  }
}

/* logistics landing components */
.logistics-about-section {
  background-color: var(--white);
}
.logistics-about-section h2 {
  margin: 0 0 28px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}
.logistics-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-80);
}
.logistics-about-text {
  color: var(--black);
}
.logistics-about-text-left {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}
.logistics-about-text-right {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}
.logistics-about-text p {
  margin-bottom: 12px;
}
.logistics-about-text p:last-child {
  margin-bottom: 0;
}
.logistics-section-head {
  max-width: 760px;
  margin-bottom: var(--gap-40);
}
.logistics-section-head h2,
.logistics-split-copy h2,
.logistics-dark-band-copy h2,
.logistics-route-head h2,
.logistics-org-section h2,
.logistics-cta h2 {
  margin: 0;
  color: var(--black);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 600;
}
.logistics-card-section.logistics-title-small .logistics-section-head h2 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.logistics-section-text,
.logistics-split-text,
.logistics-route-text,
.logistics-cta-text {
  margin-top: var(--gap-24);
  max-width: 720px;
  color: var(--gray-600);
  font-size: 15px;
}
.logistics-section-text p:last-child,
.logistics-split-text p:last-child,
.logistics-route-text p:last-child,
.logistics-cta-text p:last-child,
.logistics-card-text p:last-child,
.logistics-step p:last-child,
.logistics-org-text p:last-child {
  margin-bottom: 0;
}
.logistics-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-700);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.logistics-link:hover {
  color: var(--primary-350);
  transform: translateX(4px);
}
.logistics-link-light {
  color: var(--white);
}
.logistics-link-light:hover {
  color: var(--primary-200);
}
.logistics-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-350);
  background-color: var(--primary-50);
  margin-bottom: var(--gap-24);
}
.logistics-icon img {
  max-width: 28px;
  max-height: 28px;
}
.logistics-hero {
  min-height: calc(100vh - 20px);
  position: relative;
  overflow: hidden;
  background-color: #082033;
  color: var(--white);
}
.logistics-hero.compact {
  min-height: 560px;
}
.logistics-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 17, 29, 0.25) 0%, rgba(0, 17, 29, 0.1) 42%, rgba(0, 17, 29, 0.72) 100%);
}
.logistics-hero-inner {
  min-height: inherit;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--gap-40);
  padding-right: var(--gap-80);
  padding-bottom: var(--gap-80);
  padding-left: var(--gap-80);
}
.logistics-hero-copy {
  max-width: 680px;
}
.logistics-hero-icon {
  max-width: 120px;
  max-height: 64px;
  object-fit: contain;
  margin-bottom: var(--gap-24);
}
.logistics-hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: 48px;
  line-height: 1.03;
  color: var(--white);
}
.logistics-hero-text {
  margin-top: var(--gap-24);
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}
.logistics-hero-form {
  flex: 0 0 clamp(340px, 30vw, 370px);
  width: clamp(340px, 30vw, 370px);
  max-width: 100%;
  margin-top: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
}
.logistics-hero-form-title {
  margin: 0 0 14px;
  color: var(--Default-Colors-White, #FFF);
  font-family: Montserrat, sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.42px;
}
.logistics-hero-form .wpcf7 {
  width: 100%;
}
.logistics-hero-form .wpcf7 form {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
  position: relative;
}
.logistics-hero-form .wpcf7 form > p {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0;
}
.logistics-hero-form .wpcf7 label {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 0;
  font-weight: 500;
  line-height: 0;
  letter-spacing: 0;
}
.logistics-hero-form .wpcf7 br {
  display: none;
}
.logistics-hero-form .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
}
.logistics-hero-form .wpcf7 input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.logistics-hero-form .wpcf7 select,
.logistics-hero-form .wpcf7 textarea {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.32px;
  outline: none;
  box-shadow: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.logistics-hero-form .wpcf7 textarea {
  height: auto;
  min-height: 96px;
  padding-top: 16px;
  resize: vertical;
}
.logistics-hero-form .wpcf7 input::placeholder,
.logistics-hero-form .wpcf7 textarea::placeholder {
  color: var(--Grayscale-Gray-300, #B0B0B0);
  font-family: Montserrat, sans-serif;
}
.logistics-hero-form .wpcf7 input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):focus,
.logistics-hero-form .wpcf7 select:focus,
.logistics-hero-form .wpcf7 textarea:focus {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
}
.logistics-hero-form .wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.32px;
  cursor: pointer;
  transform: none;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}
.logistics-hero-form .wpcf7 input[type="submit"]:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--white);
  box-shadow: none;
  transform: none;
}
.logistics-hero-form .wpcf7-spinner {
  margin: 0;
}
.logistics-hero-form .wpcf7-not-valid-tip,
.logistics-hero-form .wpcf7-response-output {
  flex-basis: 100%;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  line-height: 120%;
}
.logistics-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-24);
}
.logistics-card-grid.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.logistics-card-grid.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.logistics-card-grid.columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.logistics-grid-card {
  min-height: 180px;
  padding: var(--gap-32);
  border: 1px solid var(--primary-100);
  border-radius: 8px;
  background-color: var(--white);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.logistics-grid-card:hover {
  border-color: var(--primary-200);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 30, 55, 0.08);
}
.logistics-grid-card h3 {
  margin: 0;
  color: var(--primary-900);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
}
.logistics-card-text {
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 14px;
}
.logistics-card-link {
  margin-top: var(--gap-24);
}
.logistics-style-light .logistics-card-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
.logistics-style-light .logistics-grid-card {
  width: calc((100% - 40px) / 3);
  min-height: 168px;
  display: flex;
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  padding: 28px 30px;
  border: 2px solid var(--primary-100);
  border-radius: 12px;
  background-color: var(--primary-50);
  text-align: center;
  box-shadow: none;
}
.logistics-style-light .logistics-card-grid.columns-2 .logistics-grid-card {
  width: calc((100% - 20px) / 2);
  flex: 0 0 calc((100% - 20px) / 2);
  max-width: calc((100% - 20px) / 2);
}
.logistics-style-light .logistics-card-grid.columns-3 .logistics-grid-card {
  width: calc((100% - 40px) / 3);
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
}
.logistics-style-light .logistics-card-grid.columns-4 .logistics-grid-card {
  width: calc((100% - 60px) / 4);
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
}
.logistics-style-light .logistics-card-grid.columns-5 .logistics-grid-card {
  width: calc((100% - 80px) / 5);
  flex: 0 0 calc((100% - 80px) / 5);
  max-width: calc((100% - 80px) / 5);
}
.logistics-style-light .logistics-grid-card:hover {
  border-color: var(--primary-200);
  background-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(40, 66, 89, 0.08);
}
.logistics-style-light .logistics-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  border-radius: 0;
  background-color: transparent;
  color: var(--primary-350);
  transition: color 0.25s ease, transform 0.25s ease;
}
.logistics-style-light .logistics-grid-card:hover .logistics-icon {
  color: var(--primary-700);
  transform: translateY(-2px);
}
.logistics-style-light .logistics-icon img {
  max-width: 50px;
  max-height: 50px;
}
.logistics-style-light .logistics-icon svg {
  width: 50px;
  height: 50px;
}
.logistics-style-light .logistics-grid-card h3 {
  max-width: 260px;
  color: #000;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.logistics-style-light .logistics-card-text {
  display: none;
}
.logistics-style-text .logistics-grid-card {
  min-height: 156px;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px;
  border: 0;
  border-top: 2px solid var(--primary-100);
  border-left: 2px solid var(--primary-100);
  border-radius: 8px 0 0 0;
  background-color: transparent;
  box-shadow: none;
}
.logistics-style-text .logistics-card-grid {
  column-gap: var(--gap-40);
  row-gap: var(--gap-40);
}
.logistics-style-text .logistics-grid-card:hover {
  border-color: var(--primary-350);
  background-color: rgba(119, 180, 225, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(40, 66, 89, 0.06);
}
.logistics-style-text .logistics-grid-card h3 {
  color: var(--primary-primary-350, #77B4E1);
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  transition: color 0.25s ease;
}
.logistics-style-text .logistics-grid-card:hover h3 {
  color: var(--primary-700);
}
.logistics-style-text .logistics-card-text {
  margin-top: 0;
  color: var(--Grayscale-Gray-950, #000);
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.logistics-style-text .logistics-card-text p {
  margin: 0;
}
.logistics-style-dark {
  background-color: #071d2d;
}
.logistics-style-dark .logistics-section-head h2,
.logistics-style-dark .logistics-section-text,
.logistics-style-dark .logistics-grid-card h3,
.logistics-style-dark .logistics-card-text {
  color: var(--white);
}
.logistics-style-dark .logistics-grid-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.logistics-style-dark .logistics-grid-card:hover {
  border-color: rgba(119, 180, 225, 0.48);
  background-color: rgba(119, 180, 225, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.logistics-style-image .logistics-section-head {
  margin-bottom: var(--gap-40);
}
.logistics-style-image .logistics-section-head h2 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.logistics-style-image .logistics-card-grid {
  gap: var(--gap-40);
}
.logistics-image-card {
  min-height: 0;
  aspect-ratio: 340 / 338;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 40px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #192938;
}
.logistics-image-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(40, 66, 89, 0.16);
}
.logistics-image-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 16, 31, 0) 43.2%, rgba(45, 85, 119, 0.92) 100%);
  transition: background 0.25s ease;
}
.logistics-image-card:hover .logistics-image-card-overlay {
  background: linear-gradient(180deg, rgba(0, 16, 31, 0.08) 36%, rgba(45, 85, 119, 0.96) 100%);
}
.logistics-image-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.logistics-image-card h3 {
  margin: 0;
  color: #FFF;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.logistics-split-section {
  background-color: var(--white);
}
.logistics-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  gap: var(--gap-80);
  align-items: start;
}
.logistics-split-section.reverse .logistics-split {
  grid-template-columns: minmax(420px, 1fr) minmax(280px, 0.82fr);
}
.logistics-split-section.reverse .logistics-split-copy {
  order: 2;
}
.logistics-split-section.reverse .logistics-split-image {
  order: 1;
}
.logistics-split-copy {
  max-width: 460px;
  padding: 0;
}
.logistics-split-copy h2 {
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.logistics-split-text {
  max-width: 460px;
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.logistics-split-text p {
  margin-bottom: 18px;
}
.logistics-split-section.blue-panel .logistics-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--primary-350);
  align-items: stretch;
  transition: box-shadow 0.25s ease;
}
.logistics-split-section.blue-panel .logistics-split:hover {
  box-shadow: 0 18px 40px rgba(40, 66, 89, 0.12);
}
.logistics-split-section.blue-panel.reverse .logistics-split {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
}
.logistics-split-section.blue-panel .logistics-split-copy {
  max-width: none;
  display: flex;
  min-height: 320px;
  padding: 64px 56px;
  flex-direction: column;
  justify-content: center;
  background: var(--primary-350);
}
.logistics-split-section.blue-panel .logistics-split-copy h2 {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}
.logistics-split-section.blue-panel .logistics-split-text {
  max-width: 440px;
  color: #FFF;
  font-size: 15px;
  line-height: 120%;
}
.logistics-split-section.blue-panel .logistics-split-text p {
  margin-bottom: 0;
}
.logistics-split-section.blue-panel .logistics-split-image {
  height: 100%;
  min-height: 320px;
  border-radius: 0;
}
.logistics-split-image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 568 / 320;
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: filter 0.25s ease;
}
.logistics-split:hover .logistics-split-image {
  filter: saturate(1.06) contrast(1.03);
}
.logistics-route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--gap-24);
}
.logistics-route-tags span {
  display: flex;
  height: 46px;
  padding: 12px 14px;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: rgba(233, 240, 255, 0.20);
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.logistics-steps-section {
  margin-top: var(--gap-80);
}
.logistics-steps-section .logistics-section-head {
  max-width: 460px;
  margin-bottom: var(--gap-40);
}
.logistics-steps-section .logistics-section-head h2 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.logistics-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 40px;
  border-top: none;
  padding-top: 0;
}
.logistics-steps.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.logistics-steps.columns-4 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.logistics-steps.columns-4 .logistics-step:nth-child(-n + 3) {
  grid-column: span 4;
}
.logistics-steps.columns-4 .logistics-step:nth-child(n + 4) {
  grid-column: span 3;
}
.logistics-step-number {
  margin-bottom: 10px;
  color: var(--primary-350);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1.12px;
}
.logistics-step h3 {
  margin: 0 0 10px;
  color: var(--primary-900);
  font-size: 16px;
  font-weight: 600;
}
.logistics-step {
  min-height: 130px;
  padding: 34px 28px 0;
  border-top: 2px solid var(--primary-100);
  border-left: 2px solid var(--primary-100);
  border-top-left-radius: 8px;
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.logistics-step:hover {
  border-color: var(--primary-350);
  background-color: rgba(119, 180, 225, 0.04);
  box-shadow: 0 14px 30px rgba(40, 66, 89, 0.06);
  transform: translateY(-2px);
}
.logistics-step-text {
  max-width: 260px;
}
.logistics-step-text p {
  margin: 0;
}
.logistics-country-flow-section {
  margin-top: var(--gap-80);
}
.logistics-country-flow-head {
  margin-bottom: var(--gap-40);
}
.logistics-country-flow-head h2 {
  margin: 0;
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.logistics-country-flow-card {
  display: inline-flex;
  align-items: flex-start;
  gap: 24px;
  padding: 40px;
  border-top: 2px solid var(--primary-100);
  border-left: 2px solid var(--primary-100);
  border-radius: 12px 0 0 0;
}
.logistics-country-flow-item {
  display: flex;
  min-width: 70px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.logistics-country-flow-icon {
  display: flex;
  width: 50px;
  height: 34px;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}
.logistics-country-flow-icon img {
  max-width: 50px;
  max-height: 34px;
  object-fit: contain;
}
.logistics-country-flow-label {
  color: #000;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.logistics-country-flow-connector {
  display: inline-flex;
  height: 34px;
  align-items: center;
  color: var(--primary-350);
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.logistics-country-flow-connector svg {
  display: block;
  width: 32px;
  height: 9px;
}
.logistics-dark-band,
.logistics-route-section,
.logistics-org-section {
  position: relative;
  overflow: hidden;
  background-color: #061927;
  color: var(--white);
}
.logistics-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(9, 29, 45, 0.5);
}
.logistics-dark-bg {
  opacity: 0.55;
}
.logistics-dark-video {
  opacity: 0.22;
}
.logistics-dark-band-copy {
  width: 100%;
}
.logistics-dark-band-intro:not(:last-child) {
  margin-bottom: var(--gap-80);
}
.logistics-dark-band-intro h2 {
  margin: 0;
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.logistics-dark-band-desc {
  max-width: 620px;
  margin-top: var(--gap-24);
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.logistics-dark-band-desc p {
/*   margin: 0; */
}
.logistics-dark-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: var(--gap-40);
}
.logistics-dark-band-button {
  display: flex;
  min-height: 46px;
  padding: 12px 14px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: rgba(119, 180, 225, 0.70);
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.logistics-dark-band-button:hover {
  background: rgba(119, 180, 225, 0.90);
  color: #FFF;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}
.logistics-route-head h2,
.logistics-org-section h2,
.logistics-route-text {
  color: var(--white);
}
.logistics-route-head h2 {
  font-size: 22px !important;
  max-width: 60%;
}
.logistics-route-tags span {
  background: rgba(233, 240, 255, 0.20);
  color: var(--white);
}
.logistics-dark-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-80);
}
.logistics-dark-card {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.logistics-dark-card:hover {
  border-left-color: var(--primary-350);
  transform: translateX(4px);
}
.logistics-dark-card h3 {
  margin: 0 0 24px;
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.logistics-dark-card-text {
  max-width: 460px;
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.logistics-dark-card-text p {
  margin: 0;
}
.logistics-route-section {
  padding-top: var(--gap-120);
  padding-bottom: var(--gap-120);
  background: #00101F;
}
.logistics-route-head {
  max-width: 820px;
}
.logistics-route-map {
  margin-top: var(--gap-40);
  border-radius: 8px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logistics-route-map-img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  opacity: 0.92;
}
.logistics-org-section {
  background: #00101F;
}
.logistics-org-bg {
  opacity: 0.55;
}
.logistics-org-video {
  opacity: 0.1;
  mix-blend-mode: luminosity;
}
.logistics-org-section.section-padding2 {
  padding-top: var(--gap-120);
  padding-bottom: var(--gap-120);
}
.logistics-org-section h2 {
  margin-bottom: var(--gap-40);
}
.logistics-org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.logistics-org-parent,
.logistics-org-node {
  display: flex;
  width: 240px;
  max-width: 240px;
  box-sizing: border-box;
  padding: 83px 35px 44px 35px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(119, 180, 225, 0.32);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, border-radius 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.logistics-org-parent:hover,
.logistics-org-node:hover,
.logistics-org-node.is-active {
  border-color: rgba(119, 180, 225, 0.80);
  border-radius: 12px;
  background: rgba(119, 180, 225, 0.80);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
.logistics-org-parent {
  position: relative;
  margin-bottom: 80px;
  background-color: rgba(119, 180, 225, 0.16);
}
.logistics-org-parent::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -80px;
  width: 1px;
  height: 80px;
  background-color: rgba(119, 180, 225, 0.5);
}
.logistics-org-children {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-32);
  width: 100%;
  max-width: 100%;
  padding-top: var(--gap-32);
}
.logistics-org-children::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(12.5% - 12px);
  right: calc(12.5% - 12px);
  height: 1px;
  z-index: 2;
  background-color: rgba(119, 180, 225, 0.5);
}
.logistics-org-node {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-self: center;
  justify-content: flex-start;
}
.logistics-org-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -32px;
  width: 1px;
  height: 32px;
  transform: translateX(-50%);
  background-color: rgba(119, 180, 225, 0.5);
}
.logistics-org-node::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6.5px;
  width: 13px;
  height: 13px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-350);
  z-index: 3;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.logistics-org-node:hover::after,
.logistics-org-node.is-active::after {
  background-color: #FFF;
  box-shadow: 0 0 0 5px rgba(119, 180, 225, 0.18);
}
.logistics-org-logo {
  width: 133.5px;
  height: 80px;
  aspect-ratio: 133.5 / 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.logistics-org-logo img {
  width: 133.5px;
  height: 80px;
  aspect-ratio: 133.5 / 80;
  object-fit: contain;
}
.logistics-org-parent h3,
.logistics-org-node h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.60);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.logistics-cta-section {
  position: relative;
  padding-top: var(--gap-80);
  padding-bottom: var(--gap-80);
  background: var(--white);
  color: var(--white);
}
.logistics-cta-bg {
  opacity: 0.34;
}
.logistics-cta-video {
  opacity: 0.34;
}
.logistics-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(119, 180, 225, 0.88);
}
.logistics-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 120px;
  border-radius: 12px;
  background: var(--primary-350);
  color: var(--white);
  text-align: center;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.logistics-cta:hover {
  background: #72b2df;
  box-shadow: 0 20px 44px rgba(45, 85, 119, 0.18);
}
.logistics-cta-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logistics-cta-flow {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: 50px minmax(80px, 1fr) 36px minmax(80px, 1fr) 50px;
  align-items: center;
  gap: 28px;
  color: #FFF;
}
.logistics-cta-flow-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  transition: transform 0.25s ease;
}
.logistics-cta:hover .logistics-cta-flow-icon {
  transform: translateY(-2px);
}
.logistics-cta-flow-icon img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.logistics-cta-flow-icon svg {
  width: 50px;
  height: 50px;
}
.logistics-cta-flow-icon.logistics-cta-flow-icon-link,
.logistics-cta-flow-icon.logistics-cta-flow-icon-link svg {
  width: 50px !important;
  height: 50px !important;
}
.logistics-cta-flow-icon.logistics-cta-flow-icon-link img {
  max-width: 36px;
  max-height: 36px;
}
.logistics-cta-flow-line {
  position: relative;
  height: 2px;
  background: currentColor;
  color: #FFF;
}
.logistics-cta-flow-line.is-left::before,
.logistics-cta-flow-line.is-right::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-color: currentColor;
  border-style: solid;
}
.logistics-cta-flow-line.is-left::before {
  left: 0;
  border-width: 0 0 2px 2px;
  transform: translateY(-50%) rotate(45deg);
}
.logistics-cta-flow-line.is-right::after {
  right: 0;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
}
.logistics-cta-rule {
  width: min(760px, 100%);
  height: 1px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.95);
}
.logistics-cta-copy {
  width: min(600px, 100%);
  margin-top: 20px;
}
.logistics-cta h2 {
  margin: 0;
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.logistics-cta-text {
  margin-top: 0;
  color: #FFF;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.logistics-cta-text p {
  margin: 0;
}
.logistics-form-section {
  width: 100%;
  padding-top: var(--gap-80);
  padding-bottom: var(--gap-80);
  color: var(--black);
}
.logistics-form-head {
  margin-bottom: var(--gap-40);
  text-align: center;
}
.logistics-form-head h2 {
  margin: 0;
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.logistics-form-card {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  column-gap: var(--gap-80);
  padding: 44px 48px;
  border: 2px solid var(--primary-100);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.logistics-form-card:hover {
  border-color: var(--primary-200);
  box-shadow: 0 18px 44px rgba(40, 66, 89, 0.08);
}
.logistics-form-notices h3 {
  margin: 0 0 var(--gap-32);
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.logistics-form-notices ol {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding-left: 28px;
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.logistics-form-notices li {
  padding-left: 8px;
}
.logistics-form-notices li::marker {
  font-weight: 600;
  color: var(--primary-350);
}
.logistics-form-body {
  min-width: 0;
}
.logistics-form-body .wpcf7 form,
.logistics-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 18px;
}
.logistics-form-body .wpcf7 form > p,
.logistics-form-grid p {
  margin: 0;
}
.logistics-form-body .wpcf7 label,
.logistics-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.logistics-form-body .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.logistics-form-body .wpcf7 input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.logistics-form-body .wpcf7 select,
.logistics-form-body .wpcf7 textarea,
.logistics-form-grid input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.logistics-form-grid select,
.logistics-form-grid textarea {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  border: 2px solid var(--primary-100);
  border-radius: 8px;
  background: var(--primary-50);
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.logistics-form-body .wpcf7 textarea,
.logistics-form-grid textarea {
  height: auto;
  min-height: 90px;
  resize: vertical;
}
.logistics-form-body .wpcf7 input::placeholder,
.logistics-form-body .wpcf7 textarea::placeholder,
.logistics-form-grid input::placeholder,
.logistics-form-grid textarea::placeholder {
  color: #B2B8C0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.28px;
}
.logistics-form-body .wpcf7 input:focus,
.logistics-form-body .wpcf7 select:focus,
.logistics-form-body .wpcf7 textarea:focus,
.logistics-form-grid input:focus,
.logistics-form-grid select:focus,
.logistics-form-grid textarea:focus {
  border-color: var(--primary-350);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(119, 180, 225, 0.16);
}
.logistics-form-body .wpcf7 input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):hover,
.logistics-form-body .wpcf7 select:hover,
.logistics-form-body .wpcf7 textarea:hover,
.logistics-form-grid input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):hover,
.logistics-form-grid select:hover,
.logistics-form-grid textarea:hover {
  border-color: var(--primary-200);
  background-color: var(--white);
}
.logistics-form-body .wpcf7 form > p:has(textarea),
.logistics-form-body .wpcf7 form > p:has(.logistics-form-wide),
.logistics-form-grid .logistics-form-wide {
  grid-column: 1 / -1;
}
.logistics-form-body .wpcf7 form > p:has(input[type="submit"]),
.logistics-form-grid .logistics-form-submit {
  grid-column: 1 / -1;
}
.logistics-form-body .wpcf7 input[type="submit"],
.logistics-form-grid input[type="submit"],
.logistics-form-grid button[type="submit"] {
  display: flex;
  width: 200px;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--primary-350);
  color: var(--Default-Colors-White, #FFF);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.32px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.logistics-form-body .wpcf7 input[type="submit"]:hover,
.logistics-form-grid input[type="submit"]:hover,
.logistics-form-grid button[type="submit"]:hover {
  background: var(--primary-700);
  box-shadow: 0 12px 28px rgba(45, 85, 119, 0.22);
  transform: translateY(-1px);
}
.logistics-form-body .wpcf7 input[type="submit"]:active,
.logistics-form-grid input[type="submit"]:active,
.logistics-form-grid button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(45, 85, 119, 0.18);
}
.logistics-form-body .wpcf7-spinner {
  margin-left: 12px;
}
.logistics-form-body .wpcf7-not-valid-tip,
.logistics-form-body .wpcf7-response-output {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  line-height: 120%;
}
@media (max-width: 1199.98px) {
  .logistics-hero-inner {
    padding-right: var(--gap-40);
    padding-left: var(--gap-40);
  }
  .logistics-card-grid.columns-4,
  .logistics-card-grid.columns-5,
  .logistics-org-children {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logistics-style-light .logistics-grid-card,
  .logistics-style-light .logistics-card-grid.columns-2 .logistics-grid-card,
  .logistics-style-light .logistics-card-grid.columns-3 .logistics-grid-card,
  .logistics-style-light .logistics-card-grid.columns-4 .logistics-grid-card,
  .logistics-style-light .logistics-card-grid.columns-5 .logistics-grid-card {
    width: calc((100% - 20px) / 2);
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
    min-height: 168px;
  }
  .logistics-split,
  .logistics-split-section.reverse .logistics-split,
  .logistics-split-section.blue-panel .logistics-split,
  .logistics-split-section.blue-panel.reverse .logistics-split {
    grid-template-columns: 1fr;
  }
  .logistics-split-section.reverse .logistics-split-copy,
  .logistics-split-section.reverse .logistics-split-image {
    order: initial;
  }
  .logistics-steps.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logistics-steps.columns-4 .logistics-step:nth-child(n) {
    grid-column: auto;
  }
  .logistics-cta {
    padding: 56px 64px;
  }
  .logistics-cta-flow {
    grid-template-columns: 50px minmax(56px, 1fr) 36px minmax(56px, 1fr) 50px;
    gap: 20px;
  }
  .logistics-cta-flow-icon,
  .logistics-cta-flow-icon svg {
    width: 50px;
    height: 50px;
  }
  .logistics-cta-flow-icon img {
    max-width: 50px;
    max-height: 50px;
  }
  .logistics-form-card {
    grid-template-columns: 1fr;
    row-gap: var(--gap-40);
    padding: 40px;
  }
  .logistics-form-body .wpcf7 form,
  .logistics-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .logistics-hero {
    min-height: 520px;
  }
  .logistics-hero.compact {
    min-height: 420px;
  }
  .logistics-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 22px;
    padding: 0 20px 36px;
  }
  .logistics-hero h1 {
    font-size: 28px;
    line-height: 105%;
  }
  .logistics-hero-text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 135%;
  }
  .logistics-hero-form {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    padding-top: 12px;
  }
  .logistics-hero-form-title {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .logistics-hero-form .wpcf7 form,
  .logistics-hero-form .wpcf7 form > p {
    display: block;
    width: 100%;
    gap: 0;
  }
  .logistics-hero-form .custom-inline-form {
    display: block;
    width: 100%;
  }
  .logistics-hero-form .custom-inline-form p {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    margin: 0;
    position: relative;
  }
  .logistics-hero-form .wpcf7 label {
    display: block;
    width: 100%;
    gap: 0;
    margin: 0;
    font-size: 0;
    line-height: 0;
  }
  .logistics-hero-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin: 0;
  }
  .logistics-hero-form .wpcf7 input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
  .logistics-hero-form .wpcf7 select,
  .logistics-hero-form .wpcf7 textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 46px;
    padding: 10px 16px;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 14px;
  }
  .logistics-hero-form .wpcf7 input[type="submit"] {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 46px;
    margin: 0;
    padding: 10px 16px;
    flex: 0 0 auto;
    justify-content: center;
    border-radius: 12px;
    background: rgba(119, 180, 225, 0.9);
    box-sizing: border-box;
  }
  .logistics-hero-form .wpcf7-spinner {
    position: absolute;
    right: 12px;
    bottom: 13px;
    margin: 0;
  }
  .logistics-about-section h2 {
    margin-bottom: 18px;
    font-size: 24px;
  }
  .logistics-about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .logistics-about-text-left {
    font-size: 16px;
    line-height: 135%;
  }
  .logistics-about-text-right {
    font-size: 14px;
    line-height: 145%;
  }
  .logistics-section-head h2,
  .logistics-split-copy h2,
  .logistics-dark-band-copy h2,
  .logistics-route-head h2,
  .logistics-org-section h2,
  .logistics-cta h2 {
    font-size: 24px;
    line-height: 110%;
  }
  .logistics-section-head {
    margin-bottom: 24px;
  }
  .logistics-section-text,
  .logistics-split-text,
  .logistics-route-text,
  .logistics-cta-text {
    margin-top: 14px;
    font-size: 14px;
    line-height: 135%;
  }
  .logistics-card-grid,
  .logistics-card-grid.columns-2,
  .logistics-card-grid.columns-3,
  .logistics-card-grid.columns-4,
  .logistics-card-grid.columns-5,
  .logistics-dark-card-grid,
  .logistics-steps,
  .logistics-steps.columns-4,
  .logistics-steps.columns-3,
  .logistics-org-children {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .logistics-card-grid.columns-2 {
    grid-template-columns: 1fr;
  }
  .logistics-steps.columns-4 .logistics-step:nth-child(n) {
    grid-column: auto;
  }
  .logistics-grid-card {
    min-height: auto;
  }
  .logistics-style-light .logistics-grid-card,
  .logistics-style-light .logistics-card-grid.columns-2 .logistics-grid-card,
  .logistics-style-light .logistics-card-grid.columns-3 .logistics-grid-card,
  .logistics-style-light .logistics-card-grid.columns-4 .logistics-grid-card,
  .logistics-style-light .logistics-card-grid.columns-5 .logistics-grid-card {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 112px;
    padding: 22px 18px;
    gap: 14px;
  }
  .logistics-style-light .logistics-card-grid.columns-2 .logistics-grid-card {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .logistics-style-light .logistics-icon,
  .logistics-style-light .logistics-icon svg {
    width: 40px;
    height: 40px;
  }
  .logistics-style-light .logistics-icon img {
    max-width: 40px;
    max-height: 40px;
  }
  .logistics-style-light .logistics-grid-card h3 {
    font-size: 14px;
    line-height: 120%;
  }
  .logistics-style-text .logistics-grid-card {
    min-height: auto;
    padding: 22px 18px;
    gap: 14px;
  }
  .logistics-style-text .logistics-grid-card h3,
  .logistics-card-section.logistics-title-small .logistics-section-head h2 {
    font-size: 20px;
  }
  .logistics-style-text .logistics-card-text {
    font-size: 14px;
    line-height: 130%;
  }
  .logistics-style-image .logistics-card-grid {
    gap: 20px;
  }
  .logistics-dark-card {
    padding-left: 18px;
  }
  .logistics-dark-card h3 {
    font-size: 24px;
  }
  .logistics-image-card {
    min-height: 188px;
    padding: 24px;
  }
  .logistics-image-card h3 {
    font-size: 16px;
  }
  .logistics-split {
    gap: 18px;
  }
  .logistics-split-copy {
    max-width: none;
  }
  .logistics-split-copy h2 {
    font-size: 26px;
  }
  .logistics-split-text {
    max-width: none;
  }
  .logistics-split-section.blue-panel .logistics-split-copy {
    min-height: auto;
    padding: 28px 24px;
  }
  .logistics-split-section.blue-panel .logistics-split-copy h2 {
    font-size: 22px;
  }
  .logistics-split-image {
    min-height: 188px;
    aspect-ratio: 16 / 10;
  }
  .logistics-steps-section {
    margin-top: 32px;
  }
  .logistics-steps {
    gap: 20px;
  }
  .logistics-steps-section .logistics-section-head h2 {
    font-size: 20px;
  }
  .logistics-step {
    min-height: auto;
    padding: 22px 18px 6px;
  }
  .logistics-step-number {
    margin-bottom: 8px;
    font-size: 42px;
    letter-spacing: -0.84px;
  }
  .logistics-step-text {
    max-width: none;
    font-size: 14px;
    line-height: 125%;
  }
  .logistics-country-flow-section {
    margin-top: 32px;
  }
  .logistics-country-flow-head {
    margin-bottom: 20px;
  }
  .logistics-country-flow-head h2 {
    font-size: 20px;
  }
  .logistics-country-flow-card {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 24px 18px;
  }
  .logistics-country-flow-item {
    min-width: 62px;
    gap: 10px;
  }
  .logistics-country-flow-icon {
    width: 42px;
    height: 30px;
    font-size: 24px;
  }
  .logistics-country-flow-icon img {
    max-width: 42px;
    max-height: 30px;
  }
  .logistics-country-flow-label {
    font-size: 13px;
  }
  .logistics-country-flow-connector {
    height: 30px;
    font-size: 20px;
  }
  .logistics-dark-band,
  .logistics-route-section,
  .logistics-org-section,
  .logistics-org-section.section-padding2 {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .logistics-dark-band-intro:not(:last-child) {
    margin-bottom: 28px;
  }
  .logistics-dark-band-intro h2 {
    font-size: 26px;
    line-height: 110%;
  }
  .logistics-dark-band-desc {
    margin-top: 14px;
    font-size: 14px;
    line-height: 135%;
  }
  .logistics-dark-band-actions {
    gap: 12px;
    margin-top: 24px;
  }
  .logistics-dark-band-button {
    min-height: 40px;
    width: 100%;
    padding: 10px 12px;
    justify-content: center;
    font-size: 13px;
  }
  .logistics-route-tags {
    gap: 8px;
    margin-top: 18px;
  }
  .logistics-route-head h2 {
    font-size: 20px !important;
  }
  .logistics-route-map {
    margin-top: 24px;
    min-height: 220px;
  }
  .logistics-style-image .logistics-section-head h2 {
    font-size: 20px;
  }
  .logistics-org-section h2 {
    margin-bottom: 24px;
  }
  .logistics-org-chart {
    gap: 16px;
  }
  .logistics-org-parent {
    margin-bottom: 0;
  }
  .logistics-org-parent::after,
  .logistics-org-children::before,
  .logistics-org-node::before,
  .logistics-org-node::after {
    display: none;
  }
  .logistics-org-parent,
  .logistics-org-node {
    width: 100%;
    max-width: 100%;
    padding: 40px 22px;
    gap: 14px;
  }
  .logistics-org-logo,
  .logistics-org-logo img {
    width: 92px;
    height: 55px;
  }
  .logistics-org-parent h3,
  .logistics-org-node h3 {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
  }
  .logistics-org-parent:hover,
  .logistics-org-node:hover,
  .logistics-org-node.is-active {
    transform: none;
  }
  .logistics-cta {
    min-height: auto;
    padding: 30px 20px;
    align-items: center;
  }
  .logistics-cta-flow {
    grid-template-columns: 40px minmax(18px, 1fr) 28px minmax(18px, 1fr) 40px;
    gap: 8px;
  }
  .logistics-cta-flow-icon,
  .logistics-cta-flow-icon svg {
    width: 40px;
    height: 40px;
  }
  .logistics-cta-flow-icon img {
    max-width: 40px;
    max-height: 40px;
  }
  .logistics-cta-flow-icon.logistics-cta-flow-icon-link,
  .logistics-cta-flow-icon.logistics-cta-flow-icon-link svg {
    width: 28px;
    height: 28px;
  }
  .logistics-cta-flow-icon.logistics-cta-flow-icon-link img {
    max-width: 28px;
    max-height: 28px;
  }
  .logistics-cta-flow-line.is-left::before,
  .logistics-cta-flow-line.is-right::after {
    width: 10px;
    height: 10px;
  }
  .logistics-cta-rule {
    margin-top: 16px;
  }
  .logistics-cta-copy {
    margin-top: 16px;
  }
  .logistics-cta-text {
    font-size: 13px;
    line-height: 125%;
  }
  .logistics-form-head {
    margin-bottom: 24px;
  }
  .logistics-form-head h2 {
    font-size: 26px;
    line-height: 110%;
  }
  .logistics-form-card {
    padding: 22px 18px;
    row-gap: 24px;
  }
  .logistics-form-notices h3 {
    margin-bottom: var(--gap-24);
  }
  .logistics-form-notices ol {
    gap: 18px;
  }
  .logistics-form-body .wpcf7 form,
  .logistics-form-grid {
    grid-template-columns: 1fr;
  }
  .logistics-form-body .wpcf7 input[type="submit"],
  .logistics-form-grid input[type="submit"],
  .logistics-form-grid button[type="submit"] {
    width: 100%;
  }
}
.wpcf7-spinner{
	position: absolute;	
}
