/* Declaración de fuentes Helvetica Neue */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueRoman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueThin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueUltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueUltraLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueMediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueBoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueHeavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueHeavyItalic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueBlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f5f6f8;
  max-width: 2000px;
  margin: auto;
}

* {
  font-family: "Helvetica Neue", sans-serif;
}

a {
  text-decoration: none;
  margin: 0;
  padding: 0;
}
a:visited {
  color: #112648;
}
nav {
  position: fixed;
  width: 90%;
  max-width: 1800px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(16, 39, 71, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 18px;
  border-radius: 20px;
  padding: 25px 40px;
  z-index: 1000;
  box-shadow: 5px 9px 8px -7px rgba(64,64,64,0.212);
  user-select: none;
}
nav div {
  display: flex;
  align-items: center;
}
nav .logos-container img {
  cursor: pointer;
  max-width: 140px;
  margin-left: 35px;
}
nav .logos-container .separation {
  height: 20px;
  width: 1px;
  background-color: #2a3d5f;
  margin: 0px 35px 0px 35px;
}
nav .active-logo {
  z-index: 10000;
}
nav .buttons-container {
  gap: 50px;
}
nav .buttons-container .special-anchor p {
  font-size: 8px;
}
nav .buttons-container .dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
nav .buttons-container .dropdown a {
  z-index: 100;
}
nav .buttons-container .dropdown img {
  width: 12px;
  filter: brightness(0) invert(1);
  transition: all 0.2s ease-in-out;
}
nav .buttons-container .dropdown .dropdown-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  opacity: 0;
  left: 0;
  background-color: #102747;
  width: 125%;
  max-width: 125px;
  padding: 5px 10px;
  border-radius: 10px;
  text-align: left;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 10;
  transform: translateY(-10px);
  visibility: hidden;
}
nav .buttons-container .dropdown .dropdown-content .separation {
  background-color: #2c405d;
  width: 85%;
  height: 0.5px;
  margin: 5px auto;
}
nav .buttons-container .dropdown .dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  width: 100%;
  border-radius: 0px;
  padding: 10px 10px;
  transition: all 0.2s ease-in-out;
}
nav .buttons-container .dropdown .dropdown-content a img {
  transform: rotate(360deg);
}
nav .buttons-container .dropdown .dropdown-content a:hover {
  background-color: #2c405d;
}
nav .buttons-container .dropdown:hover img {
  transform: rotate(90deg);
}
nav .buttons-container .dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
nav .buttons-container a {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: clamp(12px, 1vw, 18px);
  padding: 12px 0px;
  border-radius: 18px;
  font-weight: 300;
  position: relative;
  cursor: pointer;
  width: max-content;
  font-family: "Helvetica Neue", sans-serif;
}
nav .buttons-container .anchor-animation::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
nav .buttons-container .anchor-animation:hover {
  background-color: transparent;
}
nav .buttons-container .anchor-animation:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
nav .other-container {
  display: flex;
  align-items: center;
  justify-self: end;
}
nav .other-container .social-media {
  display: flex;
  align-items: center;
  gap: 12px;
}
nav .other-container .social-media a {
  cursor: pointer;
}
nav .other-container .login {
  background-color: #0b1b34;
  color: #fff;
  font-size: 16px;
  padding: 12px 40px;
  border-radius: 25px;
  margin-left: 50px;
  margin-right: 40px;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  position: relative;
  display: flex;
  align-content: center;
  overflow: hidden;
  width: 50px;
  height: 25px;
}
nav .other-container .login img {
  margin-top: 5px;
  position: absolute;
  left: -15px;
  transition: all 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  opacity: 0;
}
nav .other-container .login p {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
nav .other-container .login a {
  color: #fff;
}
nav .other-container .login a:visited {
  color: #fff;
}
nav .other-container .login:hover {
  background-color: #feffff;
  color: #112648;
}
nav .other-container .login:hover img {
  left: 35px;
  opacity: 1;
}
nav .other-container .login:hover p {
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%);
}
nav .other-container .login:hover a {
  color: #112648;
}
nav .other-container .login:hover a:visited {
  color: #112648;
}

/* Estilos para el botón login cuando el dropdown está activo */
nav .other-container .login-dropdown.active .login {
  background-color: #feffff;
  color: #112648;
}

nav .other-container .login-dropdown.active .login img {
  left: 35px;
  opacity: 1;
}

nav .other-container .login-dropdown.active .login p {
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%);
}

nav .other-container .login-dropdown.active .login a {
  color: #112648;
}

nav .other-container .login-dropdown.active .login a:visited {
  color: #112648;
}

/* Estilos para el dropdown de login */
nav .other-container .login-dropdown {
  position: relative;
  display: inline-block;
}

nav .other-container .login-dropdown .login-dropdown-content {
  position: absolute;
  top: 115%;
  left: 54%;
  background-color: #112747;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  padding: 15px 0;
  flex-direction: column;
}

nav .other-container .login-dropdown .login-dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

nav .other-container .login-dropdown .login-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #D0DCEF;
  transition: background-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

nav .other-container .login-dropdown .login-option:hover {
  background-color: rgba(208, 220, 239, 0.1);
}

nav .other-container .login-dropdown .login-option span {
  margin: 0;
}

nav .other-container .login-dropdown .login-option img {
  width: 9px;
  height: 9px;
  margin: 0;
  position: static;
  opacity: 1;
  left: auto;
  transition: none;
}

nav .other-container .login-dropdown .divider {
  width: 70%;
  height: 0.5px;
  background-color: #2C405D;
  margin: 3px auto;
}

nav .language-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: fit-content;
}
nav .language-selector .language-selector-title {
  font-size: clamp(5px, 1vw, 10px);
  line-height: clamp(5px, 1vw, 11px);
  font-weight: 300;
  color: #EDF1F7;
  margin: 0 0 4px 0;
  font-family: "Helvetica Neue", sans-serif;
}
nav .language-selector .visible {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 31px;
  transition: all 0.2s ease;
  font-family: "Helvetica Neue", sans-serif;
}
nav .language-selector .visible span {
  color: #EDF1F7;
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 300;
}
nav .language-selector .visible .arrow {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
nav .language-selector .dropdown-content {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -10px);
  background: #ffffff;
  border: 1px solid #BFC7D3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 100px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.2s ease;
  z-index: 1000;
}
nav .language-selector .dropdown-content a {
  color: #112648;
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 400;
  font-family: "Helvetica Neue", sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
  width: 100%;
  height: 100%;
  padding: 4px 0;
  text-align: center;
}
nav .language-selector .dropdown-content a:hover {
  background-color: #f5f5f5;
}
nav .language-selector:hover .visible {
  background: rgba(255, 255, 255, 0.16);
}
nav .language-selector:hover .visible .arrow {
  transform: rotate(270deg);
}
nav .language-selector:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
nav .burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}
nav .burger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  z-index: 1000 !important;
}
nav .burger-menu.active span {
  background-color: #112648 !important;
}
nav .burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
nav .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
nav .burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}
nav .mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 110vw;
  height: 100vh;
  background-color: #fff;
  z-index: 1001;
  overflow-y: auto;
}
nav .mobile-menu .mobile-menu-logo {
  position: absolute;
  top: 30px;
  left: 46px;
  z-index: 1002;
}
nav .mobile-menu .mobile-menu-logo img {
  max-width: 140px;
  cursor: pointer;
}
nav .mobile-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 150px;
  padding-bottom: 40px;
  width: 88%;
  margin: 0 auto;
  height: fit-content;
  flex-shrink: 0;
}
nav .mobile-menu ul .separation {
  height: 1px;
  width: 90%;
  background-color: #d9dfe6;
  margin: 10px 0;
}
nav .mobile-menu ul a {
  font-size: 28px;
  font-weight: 400;
  color: #112648;
  text-decoration: none;
  padding: 12px 0;
  position: relative;
}
nav .mobile-menu ul a:visited {
  color: #112648;
}
nav .mobile-menu ul a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1b3834;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
nav .mobile-menu ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
nav .mobile-menu ul .dropdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
nav .mobile-menu ul .dropdown p {
  color: #112648;
  font-size: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  transition: all 0.2s ease-in-out;
}
nav .mobile-menu ul .dropdown p img {
  transition: all 0.2s ease-in-out;
}
nav .mobile-menu ul .dropdown .dropdown-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 0px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  gap: 5px;
}
nav .mobile-menu ul .dropdown .dropdown-content .separation {
  height: 1px;
  width: 100%;
  background-color: #d9dfe6;
}
nav .mobile-menu ul .dropdown .dropdown-content a,
nav .mobile-menu ul .dropdown .dropdown-content p {
  font-weight: 300;
  font-size: 18px;
  padding: 0;
  margin: 0;
}
nav .mobile-menu ul .dropdown .special-anchor {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
nav .mobile-menu ul .dropdown .special-anchor img {
  margin-top: 10px;
}
nav .mobile-menu ul .dropdown .special-anchor strong {
  font-size: 16px;
  font-weight: 400;
}
nav .mobile-menu ul #solutions-dropdown.active .dropdown p img,
nav .mobile-menu ul #offices-dropdown.active-offices .dropdown p img {
  transform: rotate(-90deg);
}
nav .mobile-menu ul #solutions-dropdown.active .dropdown .dropdown-content {
  height: 300px;
  padding-top: 5px;
}
nav .mobile-menu ul #offices-dropdown.active-offices .dropdown .dropdown-content {
  height: 320px;
  padding-top: 5px;
}
nav .mobile-menu .bottom-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
  margin-top: auto;
  padding: 40px 0;
  flex-shrink: 0;
}
nav .mobile-menu .bottom-container .top-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .mobile-menu .bottom-container .top-container .separation {
  width: 1px;
  height: 25px;
  background-color: #112648;
  margin: 0 5px 0 20px;
}
nav .mobile-menu .bottom-container .top-container .login-button {
  background-color: #112648;
  color: #fff;
  font-size: 20px;
  padding: 15px 40px;
  border-radius: 31px;
  border: none;
}
nav .mobile-menu .bottom-container .top-container .language-selector .visible {
  background-color: transparent;
  color: #112648;
  font-size: 20px;
  font-weight: 400;
  padding: 0 20px;
}
nav .mobile-menu .bottom-container .top-container .language-selector .visible img {
  width: 15px;
  filter: brightness(1) invert(0);
  transition: all 0.2s ease-in-out;
}
nav .mobile-menu .bottom-container .top-container .language-selector .dropdown-content {
  left: -20px;
}
nav .mobile-menu .bottom-container .top-container .language-selector .dropdown-content a {
  color: #112648;
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.1s ease-in-out;
}
nav .mobile-menu .bottom-container .top-container .language-selector .dropdown-content a:hover {
  transform: scale(1.1);
}
nav .mobile-menu .bottom-container .region_selector_mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_selector_title {
  font-size: 14px;
  line-height: 14px;
  font-weight: 300;
  color: #112648;
  margin: 0 0 10px 0;
  font-family: "Helvetica Neue", sans-serif;
  text-align: center;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid #d9dfe6;
  border-radius: 31px;
  transition: all 0.2s ease;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_display:hover {
  background-color: #f5f6f8;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_display p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #112648;
  font-family: "Helvetica Neue", sans-serif;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_display img {
  width: 20px;
  height: 20px;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_display img.arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(0);
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_display img.arrow.open {
  transform: rotate(270deg);
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #BFC7D3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 160px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  flex-direction: column;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_dropdown.show {
  opacity: 1;
  visibility: visible;
  max-height: 200px;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_dropdown .region_option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #112648;
  transition: background-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_dropdown .region_option img {
  width: 18px;
  height: 18px;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_dropdown .region_option:hover {
  background-color: #f5f6f8;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_dropdown .region_option:first-child {
  border-radius: 8px 8px 0 0;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_dropdown .region_option:last-child {
  border-radius: 0 0 8px 8px;
}
nav .mobile-menu .bottom-container .region_selector_mobile .region_dropdown .region_option span {
  margin: 0;
}
nav .mobile-menu .bottom-container .social-media {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
nav .mobile-menu .bottom-container .social-media img {
  width: 26px;
  max-height: 25px;
}
nav .mobile-menu .bottom-container .social-media .facebook {
  width: 14px;
}
nav .mobile-menu .bottom-container .social-media p {
  width: max-content;
  font-size: 14px;
  font-weight: 400;
  color: #112648;
}
nav .mobile-menu .bottom-container .social-media a {
  cursor: pointer;
}

@media (max-width: 1620px) {
  nav {
    grid-template-columns: 1fr 1fr 1fr;
  }
  nav .buttons-container {
    gap: 25px;
    justify-self: start;
    padding-right: 20px;
  }
}

@media (max-width: 1250px) {
  nav {
    display: flex;
    justify-content: space-between;
  }
  nav .buttons-container,
  nav .other-container {
    display: none;
  }
  nav .burger-menu {
    display: flex;
  }
nav .mobile-menu.active {
  display: flex;
}
nav.mobile-active {
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
nav.mobile-active .logos-container,
nav.mobile-active .buttons-container,
nav.mobile-active .other-container {
  display: none !important;
}
nav.mobile-active .burger-menu {
  display: flex !important;
  position: fixed;
  top: 20px;
  right: 40px;
  z-index: 1003;
}
}
@media (max-width: 1000px) {
  nav {
    top: 5px;
    padding: 30px 15px;
  }
  nav .logos-container .logo-msl {
    width: 50%;
  }
  nav .logos-container .logo-ifs {
    width: 15%;
  }
  nav .logos-container .separation {
    margin: 0 10px;
  }
  nav .mobile-menu .mobile-menu-logo {
    top: 30px;
    left: 46px;
  }
  nav .mobile-menu .mobile-menu-logo img {
    max-width: 120px;
  }
  nav.mobile-active .burger-menu {
    top: 30px;
    right: 46px;
  }
}
@media (max-width: 690px) {
  nav {
    width: 96%;
    border-radius: 0;
    top: 0;
  }
  nav .mobile-menu .mobile-menu-logo {
    top: 30px;
    left: 46px;
  }
  nav .mobile-menu .mobile-menu-logo img {
    max-width: 100px;
  }
  nav.mobile-active .burger-menu {
    top: 38px;
    right: 25px;
  }
}
.chat-wrapper {
  position: fixed;
  bottom: 2%;
  right: 2%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  z-index: 500;
}
.chat {
  width: 100vw;
  max-width: 250px;
  height: 100vh;
  max-height: 234px;
  border-radius: 16px;
  background: rgba(255,255,255,0.19);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-align: center;
  padding-top: 25px;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}
.chat.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.chat.collapsed {
  max-width: 250px;
  max-height: 70px;
  padding-top: 20px;
  overflow: hidden;
  height: fit-content;
}
.chat.collapsed h4 {
  max-width: 100%;
}
.chat.collapsed .text,
.chat.collapsed button,
.chat.collapsed p:last-of-type {
  display: none;
}
.chat.esp.collapsed {
  max-width: 270px;
}
.chat.esp.collapsed h4 {
  font-size: clamp(16px, 3vw, 20px);
  margin-right: 19px;
}
.chat h4 {
  color: #112648;
  font-size: clamp(18px, 3vw, 24px);
  line-height: clamp(18px, 3vw, 22px);
  font-weight: 400;
  margin: auto;
  max-width: 95px;
  margin-bottom: 20px;
}
.chat p {
  margin: 0;
  color: #818181;
  font-size: 9px;
}
.chat .text {
  width: 50%;
  margin: auto;
  margin-bottom: 20px;
  font-size: 10px;
}
.chat button {
  width: 187px;
  height: 65px;
  position: relative;
  overflow: hidden;
  border-radius: 33px;
  border: none;
  background-color: rgba(17,38,72,0.082);
  cursor: pointer;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
.chat button img {
  position: absolute;
  left: -20px;
  opacity: 0;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
.chat button p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(9px, 2vw, 13px);
  margin: 0;
  color: #112648;
  font-weight: bolder;
  transition: all 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
.chat button:hover {
  background-color: #365fc7;
}
.chat button:hover img {
  opacity: 1;
  left: 55px;
}
.chat button:hover p {
  color: #fff;
  transform: translate(-20%, -50%) !important;
}
.toggle-chat {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  outline: none;
  position: absolute;
  top: 6%;
  right: 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.toggle-chat img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}
.toggle-chat.collapsed {
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
}
.chat.collapsed + .toggle-chat img {
  transform: rotate(90deg);
}
@media (max-width: 560px) {
  .chat {
    max-width: 185px;
    max-height: 184px;
  }
  .chat .text {
    width: 70%;
    margin-bottom: 13px;
  }
  .chat button {
    width: 137px;
    height: 45px;
  }
  .chat button:hover img {
    left: 35px;
  }
}
#home {
  position: relative;
  width: 98%;
  max-width: 2000px;
  margin: auto;
  border-radius: 13px;
  height: 100vh;
  max-height: 790px;
  margin-top: 70px;
  position: relative;
}
#home video {
  border-radius: 15px;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}
#home .text {
  position: absolute;
  z-index: 100;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: default;
  color: #fff;
  text-align: center;
}
#home .text h1 {
  font-size: clamp(45px, 9vw, 90px);
  font-weight: 600;
  line-height: clamp(35px, 9vw, 90px);
  margin: 0;
  margin-bottom: 40px;
  text-align: center;
  font-family: 'kanit', sans-serif;
  white-space: nowrap;
}
#home .text h4 {
  font-size: clamp(16px, 5vw, 30px);
  font-weight: 300;
  line-height: clamp(15px, 5vw, 55px);
  margin: 0;
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
  white-space: nowrap;
}
#home .text p {
  font-size: clamp(11px, 2vw, 20px);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: clamp(11px, 2vw, 20px);
  margin: 0;
  text-align: center;
  margin-top: 20px;
  font-family: "Helvetica Neue", sans-serif;
}
#home .webtools {
  display: flex;
  width: 95%;
  margin: auto;
  justify-content: center;
  gap: 10px;
  z-index: 100;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15%;
  transition: all 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  user-select: none;
  cursor: pointer;
}
#home .webtools .webtools-title-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  display: none;
}
#home .webtools .quote {
  background: #122649;
  background: linear-gradient(235deg, #122649 22%, #3055b0 100%);
  overflow: hidden;
  transition: background 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
#home .webtools .quote button {
  left: -160px;
  padding: 10px 15px;
  border-radius: 25px;
  background-color: transparent;
  transition: all 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #fff;
  color: #fff;
}
#home .webtools .quote button img {
  width: 15px;
}
#home .webtools .quote p,
#home .webtools .quote h2 {
  color: #fff;
}
#home .webtools .quote:hover {
  background: #dfe9ff;
  background: linear-gradient(235deg, #dfe9ff 14%, #fff 100%);
}
#home .webtools .quote:hover button {
  background-color: #fff;
  left: 45px;
  color: #112648;
}
#home .webtools .quote:hover p,
#home .webtools .quote:hover h2 {
  color: #112648;
}
#home .webtools div {
  width: 90%;
  max-width: 300px;
  height: 225px;
  border-radius: 20px;
  padding: 20px 65px;
  background-color: #fff;
  position: relative;
}
#home .webtools div p {
  font-size: clamp(9px, 2vw, 15px);
  font-weight: 300;
  color: #112648;
  margin: 0;
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: "Helvetica Neue", sans-serif;
}
#home .webtools div h2 {
  margin: 0;
  color: #112648;
  font-size: clamp(20px, 3vw, 41px);
  font-weight: 500;
  line-height: clamp(30px, 2vw, 34px);
  font-family: 'kanit', sans-serif;
  width: 50%;
}
#home .webtools div button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
}
#home .webtools div button p {
  font-size: clamp(10px, 1vw, 21px);
  font-weight: 300;
  line-height: clamp(10px, 1vw, 21px);
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}
#home .webtools div button img {
  width: 15px;
  transition: all 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
#home .webtools .element {
  overflow: hidden;
  position: relative;
}
#home .webtools .element::after {
  content: '';
  position: absolute;
  bottom: -101%;
  left: 0;
  width: 101%;
  height: 101%;
  border-radius: 20px;
  background-color: #132649;
  transition: all 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  opacity: 0;
  z-index: 0;
}
#home .webtools .element:hover::after {
  opacity: 1;
  bottom: 0;
}
#home .webtools .element:hover p,
#home .webtools .element:hover h2 {
  color: #fff;
  position: relative;
  z-index: 100;
}
#home .webtools .element:hover button {
  color: #fff !important;
  z-index: 100;
}
#home .webtools .element:hover button img {
  margin-left: 20px;
  filter: brightness(0) invert(1);
}
@media (max-width: 690px) {
  #home .webtools .webtools-title-mobile {
    display: flex;
  }
  #home {
    max-height: 550px;
  }
  #home .webtools {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    bottom: -19%;
    gap: 5px;
  }
  #home .webtools .element {
    padding: 15px 0;
    height: fit-content;
    min-width: 90%;
    border-radius: 50px;
    border: 1px solid #D0DCEF;
  }
  #home .webtools div h2 {
    text-align: center;
    width: 100%;
  }
  #home .webtools div p {
    display: none;
  }
  #home .webtools div button {
    display: none;
  }
}
@media (max-width: 1000px) {
  #home {
    margin-top: 55px;
  }
}
@media (max-width: 425px) {
  #home {
    margin-top: 0px;
    width: 100%;
  }
  #home video {
    border-radius: 0px 0px 13px 13px;
  }
  #home .text {
    top: 42%;
  }
  #home .text h1 {
    margin: 20px 0;
    white-space: nowrap;
  }
  #home .text h4 {
    width: max-content;
    text-align: center;
    margin: auto;
    white-space: nowrap;
  }
  #home .text p{
    font-size: 14px;
    margin-top: 30px;
  }
  #home .webtools {
    bottom: -13%;
  }
  #home .webtools .element button,
  #home .webtools .quote button {
    top: 80%;
    width: 80%;
  }
  #home .webtools .element:hover button,
  #home .webtools .quote:hover button {
    left: 50%;
    top: 70%;
    transform: translateX(-50%);
  }
}
#we_are {
  width: 85%;
  max-width: 2000px;
  margin: auto;
  margin-top: 200px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#we_are img {
  max-width: 700px;
}
#we_are article {
  position: relative;
}
#we_are article .text {
  position: absolute;
  bottom: 35px;
  right: 30px;
}
#we_are article .text p {
  margin: 0;
  font-size: clamp(3px, 1vw, 11px);
  line-height: clamp(3px, 1vw, 13px);
  font-weight: 300;
  max-width: 200px;
  color: #fff;
}
#we_are article .text img {
  margin-bottom: 10px;
  max-height: 25px;
}
#we_are .article-left {
  padding-top: 50px;
  padding-left: 100px;
}
#we_are .article-left h1 {
  color: #112648;
  font-size: clamp(25px, 3vw, 50px);
  line-height: clamp(27px, 3vw, 47px);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  margin: 0;
  margin-bottom: 25px;
  font-family: 'kanit', sans-serif;
}
#we_are .article-left h1 strong {
  font-size: 14px;
  font-weight: lighter;
}
#we_are .article-left p {
  font-size: clamp(14px, 3vw, 16px);
  line-height: clamp(16px, 3vw, 24px);
  color: #748296;
  font-weight: 300;
  max-width: 80%;
  margin: 0;
  margin-top: 24px;
  font-family: "Helvetica Neue", sans-serif;
}
#we_are .article-left p strong {
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: clamp(17px, 1.5vw, 28px);
  font-weight: 300;
  color: #112648;
  margin-top: 0px !important;
}
#we_are .article-left button {
  background-color: transparent;
  border: none;
  color: #112648;
  margin-top: 50px;
  cursor: pointer;
  font-size: clamp(10px, 1vw, 21px);
  line-height: clamp(10px, 1vw, 21px);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Helvetica Neue", sans-serif;
}
#we_are .article-left button img {
  transition: all 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
  width: 15px;
}
#we_are .article-left button:hover img {
  margin-left: 15px;
}
#we_are .article-right {
  width: fit-content;
  height: fit-content;
}
@media (max-width: 1400px) {
  #we_are {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  #we_are .article-left {
    width: 85%;
    margin: auto;
    padding: 0px;
  }
}
@media (max-width: 768px) {
  #we_are {
    width: 98%;
    max-width: 2000px;
  }
  #we_are .article-right {
    width: 95%;
    padding: 0px;
    display: flex;
    align-items: center;
  }
  #we_are .article-right .text {
    right: 0px;
    bottom: 0px;
  }
  #we_are .article-right .text p {
    max-width: 125px;
  }
  #we_are .article-right .text img {
    width: 80%;
    height: 100%;
    object-fit: contain;
  }
  #we_are .article-right .img-right {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 425px) {
  #we_are {
    margin-top: 150px;
  }
  #we_are .article-left {
    width: 80%;
    margin-left: 40px;
  }
  #we_are .article-left p {
    max-width: 100%;
  }
}
#services {
  background-color: #fff;
  width: 95%;
  max-width: 2000px;
  margin: auto;
  border-radius: 20px;
  padding: 96px 0px 122px 0px;
}
#services .services-top {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
#services .services-top div:first-child {
  color: #112648;
}
#services .services-top div:first-child p {
  font-size: clamp(10px, 3vw, 15px);
  margin: 0;
  font-weight: 300;
}
#services .services-top div:first-child h1 {
  margin: 0;
  margin-top: 20px;
  font-size: clamp(32px, 3vw, 50px);
  line-height: clamp(27px, 3vw, 37px);
  font-weight: 600;
  font-family: 'kanit', sans-serif;
}
#services .services-top div:last-child .anchor {
  margin-bottom: 15px;
}
#services .services-top div:last-child a {
  color: #112648;
  font-size: clamp(12px, 3vw, 18px);
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
}
#services .services-top div:last-child a img {
  width: 13px;
  filter: brightness(0) saturate(100%) invert(30%) sepia(50%) saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(90%);
  transition: all 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
#services .services-top div:last-child a:hover img {
  margin-left: 15px;
}
#services .services-top div:last-child p {
  font-size: clamp(12px, 3vw, 13px);
  line-height: clamp(14px, 3vw, 18px);
  color: #818181;
  margin: 0;
  font-weight: 300;
}
#services .services-top div:last-child strong {
  color: #112648;
  font-weight: 300;
}
#services article {
  display: flex;
  gap: 10px;
  width: 80%;
  margin: auto;
  margin-top: 10px;
}
#services article .card {
  width: 90%;
  min-width: 350px;
  max-width: 960px;
  background-color: #122649;
  color: #fff;
  border-radius: 14px;
  padding: 46px 46px 50px 46px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  height: 250px;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
#services article .card video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
  transition: all 0.1s ease;
  object-fit: cover;
}

#services article .card .preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

#services article .card .top {
  width: 100%;
  position: relative;
  transition: all 0.4s ease-in-out;
}
#services article .card .top div {
  width: 100px;
  height: 62px;
  background-color: #fff;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#services article .card .top p {
  font-weight: lighter;
  font-size: 100;
  font-size: 13px;
  position: absolute;
  right: 0;
  left: 100%;
  top: 32%;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
}
#services article .card .body {
  height: 180px;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  justify-content: space-between;
  position: relative;
}
#services article .card .body h2 {
  font-weight: 400;
  font-size: clamp(30px, 3vw, 27px);
  line-height: clamp(30px, 3vw, 32px);
  position: absolute;
  top: 30%;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  transition: all 0.4s ease-in-out;
  font-family: 'kanit', sans-serif;
}
#services article .card .body h2 strong {
  font-size: clamp(10px, 1vw, 16px);
  font-weight: lighter;
  margin-top: 15px;
}
#services article .card .body button {
  width: fit-content;
  background-color: transparent;
  color: #EDF1F7;
  border: none;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
  gap: 15px;
  cursor: pointer;
}
#services article .card .body button p {
  font-weight: 300;
  font-size: 17px;
  font-family: "Helvetica Neue", sans-serif;
}
#services article .card .body button img {
  background-color: #EDF1F7;
  border-radius: 100%;
  padding: 7px;
}
#services article .card:hover {
  min-width: 500px;
}
#services article .card:hover video {
  opacity: 1;
}
#services article .card:hover .preview-image {
  opacity: 0;
}
#services article .card:hover .top p {
  left: 150px;
}
#services article .card:hover .body h2 {
  top: 0;
}
#services article .card:hover .body button {
  left: 50%;
  transform: translateX(-50%);
}
#services article .card:hover .body button img {
  filter: brightness(1) invert(0);
  background-color: #edf0f7;
  border-radius: 100%;
}
@media (max-width: 1730px) {
  #services article .card {
    min-width: 250px;
  }
  #services article .card:hover {
    min-width: 425px !important;
  }
}
@media (max-width: 1400px) {
  #services {
    padding: 50px 0px;
  }
  #services .services-top {
    width: 95%;
    margin: auto;
    margin-bottom: 40px;
  }
  #services .services-top div:last-child .anchor {
    margin-bottom: 5px;
  }
  #services article {
    flex-direction: column;
    width: 90%;
    margin: auto;
    margin-top: 10px;
  }
  #services article .card {
    margin: 0;
    min-width: 0px;
    margin: auto;
  }
  #services article .card:hover {
    min-width: 0px !important;
  }
}
@media (max-width: 850px) {
  #services article .card {
    padding: 20px 15px;
  }
  #services article .card .top {
    width: 90%;
  }
  #services article .card .body button {
    width: max-content;
  }
  #services article .card:hover .body button {
    width: max-content;
  }
}
#location {
  width: 90%;
  margin: auto;
  margin-top: 100px;
}
#location .top {
  display: flex;
  justify-content: space-between;
  color: #112648;
  padding: 0px 50px;
}
#location .top p {
  font-size: clamp(10px, 1vw, 17px);
  margin: 0;
  font-weight: 300;
}
#location .top p strong {
  font-weight: 300;
  color: #112648;
}
#location .top h1 {
  margin: 0;
  margin-top: 20px;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 37px;
  font-weight: 600;
  font-family: 'kanit', sans-serif;
}
#location article {
  height: 550px;
  display: flex;
  justify-content: center;
  gap: 100px;
  position: relative;
}
#location article .background {
  position: absolute;
  top: 14%;
  left: 0;
  width: 76%;
  height: auto;
}
#location article .map {
  width: 355px;
  position: relative;
  margin-left: 80px;
}
#location article .map img {
  width: 100%;
}
#location article .map .circle-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
}
#location article .map .circle-container .circle {
  position: absolute;
  border-radius: 50%;
}
#location article .map .circle-container .large {
  width: 50px;
  height: 50px;
  border: 1px solid #112648;
  opacity: 0.06;
  transition: all 0.2s ease-in-out;
}
#location article .map .circle-container .medium {
  width: 30px;
  height: 30px;
  background-color: #112648;
  opacity: 0.13;
  transition: all 0.2s ease-in-out;
}
#location article .map .circle-container .small {
  width: 13px;
  height: 13px;
  background-color: #112648;
  transition: all 0.2s ease-in-out;
}
#location article .map .active {
  background-color: #f00;
}
#location article .map .active .large {
  width: 65px;
  height: 65px;
  animation: sonar 1.5s ease-out infinite;
}
#location article .map .active .medium {
  width: 45px;
  height: 45px;
}
#location article .map .active .small {
  width: 17px;
  height: 17px;
}




#location article .map .ar {
  bottom: 28%;
  right: 50%;
}
#location article .map .bo {
  top: 45%;
  left: 37%;
}
#location article .map .br {
  top: 44%;
  right: 24%;
}
#location article .map .ch {
  bottom: 19%;
  left: 17%;
}
#location article .map .co {
  top: 12%;
  left: 12%;
}
#location article .map .ec {
  top: 25%;
  left: 6%;
}
#location article .map .py {
  top: 54%;
  left: 53%;
}
#location article .map .pe {
  top: 37%;
  left: 13%;
}
#location article .map .uy {
  bottom: 32%;
  right: 42%;
}
#location article .map .ve {
  top: 5%;
  left: 31%;
}



#location article .display {
  width: 30%;
  position: relative;
}
#location article .display .text p {
  font-size: clamp(12px, 1vw, 15px);
  color: #748296;
  font-weight: 300;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}
#location article .display .text p strong {
  font-weight: 300;
  color: #112648;
  font-family: "Helvetica Neue", sans-serif;
}
#location article .display .text .chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
#location article .display .text .chips-container button {
  cursor: pointer;
  border: 1px solid #000;
  background-color: transparent;
  padding: 10px 17px;
  border-radius: 20px;
  z-index: 100;
  font-size: clamp(12px, 2vw, 13px);
  flex: 0 0 auto;
  min-width: fit-content;
}
#location article .display .text .chips-container .active {
  background-color: #fff;
  border: none;
}
#location article .display .location-preview {
  width: 100%;
  max-width: 400px;
  border-radius: 18px 18px 18px 18px;
  box-shadow: 7px 7px 30px 0px rgba(0,0,0,0.26);
  margin-top: 100px;
  padding-bottom: 25px;
  position: absolute;
  z-index: 1;
  top: -250px;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}
#location article .display .location-preview.active {
  top: 100px;
  opacity: 1;
}
#location article .display .location-preview .image-container {
  width: 100%;
  max-height: 200px;
  border-radius: 18px 18px 0px 0px;
  overflow: hidden;
}
#location article .display .location-preview .image-container img {
  width: 100%;
  height: 100%;
}
#location article .display .location-preview #location-title {
  font-size: 20px;
  font-weight: 400;
  color: #112648;
  line-height: 28px;
  margin: 0;
  width: 80%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: "Helvetica Neue", sans-serif;
}
#location article .display .location-preview #location-text {
  font-size: clamp(12px, 1vw, 15px);
  color: #748296;
  font-weight: 300;
  margin: 0;
  width: 80%;
  margin: auto;
  font-family: "Helvetica Neue", sans-serif;
}
#location article .display .location-preview button {
  background-color: #112648;
  color: #EDF1F7;
  font-size: clamp(10px, 1vw, 17px);
  width: fit-content;
  font-weight: 400;
  padding: 15px 45px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  margin-left: 40px;
  margin-top: 25px;
  font-family: "Helvetica Neue", sans-serif;
}
@media (max-width: 1200px) {
  #location article {
    height: auto;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
  }
  
  #location article .display {
    width: 100%;
    max-width: 600px;
    margin-bottom: auto;
  }
  
  #location article .map {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #location article .map img {
    margin: 0 auto;
  }
  
  /* Centrar todos los circle-containers reajustando posiciones */
  #location article .map .circle-container {
    margin-left: auto;
    margin-right: auto;
  }
  
  #location article .map .ar {
    bottom: 36%;
    right: 50%;
  }
  #location article .map .bo {
    top: 40%;
    left: 37%;
  }
  #location article .map .br {
    top: 39%;
    right: 24%;
  }
  #location article .map .ch {
    bottom: 28%;
    left: 17%;
  }
  #location article .map .co {
    top: 7%;
    left: 12%;
  }
  #location article .map .ec {
    top: 20%;
    left: 6%;
  }
  #location article .map .py {
    top: 49%;
    left: 53%;
  }
  #location article .map .pe {
    top: 32%;
    left: 13%;
  }
  #location article .map .uy {
    bottom: 40%;
    right: 42%;
  }
  #location article .map .ve {
    top: 5%;
    left: 31%;
  }
  
  #location article .background {
    width: 100%;
    top: 0;
  }
}

@media (max-width: 900px) {
  #location {
    margin-top: 60px;
  }
  
  #location .top {
    padding: 0px 20px;
  }
  
  #location article {
    gap: 40px;
    align-items: center;
  }
  
  #location article .display {
    width: 100%;
    max-width: 500px;
  }
  
  #location article .display .location-preview {
    max-width: 100%;
    top: -150px;
  }
  
  #location article .display .location-preview.active {
    top: 80px;
  }
}

@media (max-width: 712px) {
  #location article {
    position: relative;
  }
  
  #location article .display .location-preview {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    margin: 30px auto 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
  }
  
  #location article .display .location-preview.active {
    opacity: 1;
    max-height: 1000px;
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
}

@media (max-width: 900px) {
  #location article {
    margin-bottom: 0px;
    gap: 30px;
    height: auto;
    min-height: auto;
  }
  
  #location article .map {
    width: 100%;
    max-width: 350px;
  }
  
  #location article .map img {
    width: 100%;
  }
  
  #location article .background {
    display: none;
  }
  
  #location article .display {
    width: 100%;
  }
  
  #location article .display .text {
    margin-bottom: 20px;
  }
  
  #location article .display .text-container p {
    font-size: 13px;
  }
  
  #location article .display .text-container p strong {
    font-size: 14px;
  }
}
@media (max-width: 580px) {
  #location article {
    flex-direction: column;
  }
}

@media (max-width: 712px) {
  #location article .display .location-preview .image-container {
    border-radius: 18px 18px 0px 0px;
  }
  
  #location article .display .location-preview #location-title {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  #location article .display .location-preview #location-text {
    font-size: 14px;
    margin-top: 15px;
  }
  
  #location article .display .location-preview button {
    margin-left: 30px;
    font-size: 14px;
    margin-top: 20px;
  }
}

@media (max-width: 425px) {
  #location .display {
    margin-top: 0px !important;
    height: auto;
  }
  
  #location .text-container {
    display: none;
  }
  
  #location article .display .text .chips-container {
    gap: 8px;
    justify-content: center;
  }
  
  #location article .display .text .chips-container button {
    padding: 8px 14px;
    font-size: 11px;
  }
 
  #location article .display .location-preview {
    max-width: 90%;
  }
  
  #location article .display .location-preview #location-title {
    font-size: 16px;
  }
  
  #location article .display .location-preview #location-text {
    font-size: 13px;
  }
  
  #location article .display .location-preview button {
    margin-left: 30px;
    font-size: 13px;
  }
}

@media (max-width: 330px) {
  #location .display {
    margin-top: 0px;
  }
  
  #location .display .location-preview {
    margin-top: 20px;
  }
  
  #location .display .text .chips-container {
    gap: 5px !important;
  }
  
  #location .display .text .chips-container button {
    padding: 5px 12px !important;
    font-size: 10px !important;
  }
  
  #location article .map {
    max-width: 280px;
  }
}
#msl-group {
  width: 90%;
  height: 335px;
  margin: auto;
  display: flex;
  flex-direction: column;
  background: transparent linear-gradient(108deg, #D0DCEF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  border-radius: 20px 20px 0px 0px;
  margin-top: 200px
}

#msl-group .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}

#msl-group .top .left {
  display: flex;
  align-items: center;
  gap: 50px;
}

#msl-group .top .left img {
  width: 100%;
  max-width: 215px;
}

#msl-group .top .left .about_container {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #001E4B;
  border-radius: 20px;
  padding: 10px;
  min-width: 126px;
  cursor: pointer;
  text-decoration: none;
}

#msl-group .top .left .about_container p {
  font-size: 14px;
  font-weight: 300;
  color: #001E4B;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

#msl-group .top .left .about_container p img {
  max-width: 13px;
  height: auto;
  transition: transform 0.3s ease;
}

#msl-group .top .left .about_container:hover p img {
  transform: translateX(4px);
}

#msl-group .top .right {
  width: 40%;
}

#msl-group .top .right p {
  font-size: 17px;
  line-height: 21px;
  font-weight: 400;
  color: #112648;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}

#msl-group .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 50%;
  margin: 0 auto;
  margin-top: 30px;
}

#msl-group .bottom .number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#msl-group .bottom .number h3 {
  font-size: 50px;
  font-weight: 500;
  color: #112648;
  margin: 0;
  font-family: 'kanit', sans-serif;
}

#msl-group .bottom .number p {
  font-size: 24px;
  font-weight: 400;
  color: #112648;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}

#msl-group .bottom .separation {
  height: 40px;
  width: 1px;
  background-color: #112648;
  margin: 0;
}

/* Responsive design for MSL Group section */
@media (max-width: 1200px) {
  #msl-group {
    width: 95%;
    margin-top: 150px;
    height: 440px;
  }
  
  #msl-group .top {
    width: 90%;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  #msl-group .top .left {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  #msl-group .top .right {
    width: 80%;
  }
  
  #msl-group .bottom {
    width: 70%;
    gap: 20px;
  }
  
  #msl-group .bottom .number h3 {
    font-size: 40px;
  }
  
  #msl-group .bottom .number p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #msl-group {
    height: auto;
    padding: 30px 0;
    margin-top: 100px;
  }
  
  #msl-group .top {
    width: 95%;
    padding: 15px;
    margin-top: 20px;
  }
  
  #msl-group .top .left img {
    max-width: 180px;
  }
  
  #msl-group .top .left .about_container {
    min-width: 100px;
    padding: 8px;
  }
  
  #msl-group .top .left .about_container p {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  #msl-group .top .left .about_container p img {
    max-width: 13px;
  }
  
  #msl-group .top .right {
    width: 100%;
  }
  
  #msl-group .top .right p {
    font-size: 15px;
    line-height: 20px;
  }
  
  #msl-group .bottom {
    width: 90%;
    gap: 20px;
    margin-top: 20px;
  }
  
  #msl-group .bottom .number h3 {
    font-size: 32px;
  }
  
  #msl-group .bottom .number p {
    font-size: 14px;
  }
  
  #msl-group .bottom .separation {
    height: 30px;
  }
}

@media (max-width: 480px) {
  #msl-group {
    margin-top: 80px;
    width: 98%;
  }
  
  #msl-group .top {
    padding: 10px;
  }
  
  #msl-group .top .left img {
    max-width: 150px;
  }
  
  #msl-group .top .left .about_container {
    min-width: 90px;
    padding: 6px;
  }
  
  #msl-group .top .left .about_container p {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  #msl-group .top .left .about_container p img {
    max-width: 13px;
  }
  
  #msl-group .top .right p {
    font-size: 14px;
    line-height: 18px;
  }
  
  #msl-group .bottom .number h3 {
    font-size: 28px;
  }
  
  #msl-group .bottom .number p {
    font-size: 12px;
  }
  
  #msl-group .bottom .separation {
    height: 25px;
  }
}


#logos {
  height: 200px;
  width: 90%;
  background-color: #fff;
  border-radius: 0px 0px 20px 20px;
  margin: auto;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}
#logos .logos-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#logos .logos-track {
  height: 100%;
  display: flex;
  gap: 100px;
  align-items: center;
  width: max-content;
  animation: scroll 40s linear infinite;
  will-change: transform;
}
#logos .logos-track img {
  height: 50%;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  padding: 0 20px;
  filter: grayscale(100%);
  opacity: 0.7;
}

@media (max-width: 1200px) {
  #logos {
    width: 95%;
  }
}

@media (max-width: 425px) {
  #logos {
    height: 112px;
  }
}
#contact-us {
  width: 90%;
  margin: auto;
  height: 425px;
  border-radius: 20px;
  margin-bottom: 100px;
  background: url("../images/ship_background.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
#contact-us article {
  width: 70%;
  margin: auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#contact-us article .left {
  width: 40%;
}
#contact-us article .left h1 {
  font-size: clamp(25px, 3vw, 40px);
  line-height: clamp(25px, 3vw, 38px);
  font-weight: 400;
  color: #fff;
  width: 90%;
  margin: 0;
  font-family: 'kanit', sans-serif;
}

#contact-us article .left p {
  font-size: clamp(12px, 1vw, 16px);
  line-height: clamp(12px, 1vw, 24px);
  font-weight: 300;
  color: #B2BDCC;
  width: 85%;
  margin-top: 30px;
  font-family: "Helvetica Neue", sans-serif;
}

#contact-us article .left button {
  width: 160px;
  height: 55px;
  background-color: #375FC8;
  border-radius: 33px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
  font-family: "Helvetica Neue", sans-serif;
}

#contact-us article .left button:hover {
  background-color: #112648;
  color: #fff;
}

/* Responsive design for Contact Us section */
@media (max-width: 1200px) {
  #contact-us {
    width: 95%;
    height: 380px;
  }
  
  #contact-us article {
    width: 80%;
  }
  
  #contact-us article .left {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #contact-us {
    height: 350px;
    margin-bottom: 80px;
  }
  
  #contact-us article {
    width: 90%;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  #contact-us article .left {
    width: 100%;
  }
  
  #contact-us article .left h1 {
    width: 100%;
    font-size: clamp(20px, 4vw, 35px);
    line-height: clamp(22px, 4vw, 40px);
  }
  
  #contact-us article .left p {
    width: 100%;
    font-size: clamp(11px, 2vw, 15px);
    line-height: clamp(13px, 2vw, 22px);
    margin-top: 20px;
  }
  
  #contact-us article .left button {
    width: 140px;
    height: 50px;
    font-size: 14px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  #contact-us {
    height: 300px;
    margin-bottom: 60px;
    width: 98%;
  }
  
  #contact-us article {
    width: 95%;
    padding: 0 10px;
  }
  
  #contact-us article .left h1 {
    font-size: clamp(18px, 5vw, 28px);
    line-height: clamp(20px, 5vw, 32px);
  }
  
  #contact-us article .left p {
    font-size: clamp(10px, 2.5vw, 14px);
    line-height: clamp(12px, 2.5vw, 20px);
    margin-top: 15px;
  }
  
  #contact-us article .left button {
    width: 120px;
    height: 45px;
    font-size: 13px;
    margin-top: 12px;
  }
}
footer {
  background-color: #fff;
}
footer .mobile {
  display: none !important;
}
footer .top {
  display: flex;
  color: #112648;
  padding: 60px 75px 75px 10%;
  gap: 80px;
  width: 75%;
}

footer .top .fist-column {
  min-width: 300px;
  margin-right: 7%;
}

footer .top .fist-column .msl_logo {
  cursor: pointer;
  max-width: 150px;
}

footer .top .fist-column .region_selector {
  display: flex;
  align-items: center;
  width: fit-content;
  flex-direction: column;
  cursor: pointer;
}

footer .top .fist-column .region_selector .region_selector_title{
  font-size: clamp(5px, 1vw, 11px);
  line-height: clamp(5px, 1vw, 11px);
  font-weight: 300;
  color: #001E4B;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}

footer .top .fist-column .region_selector div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Helvetica Neue", sans-serif;
}

footer .top .fist-column .region_selector div p{
  margin: 0;
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 400;
  color: #001E4B;
  font-family: "Helvetica Neue", sans-serif;
}

footer .top .fist-column .region_selector div .arrow {
  transform: rotate(90deg);
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

/* Estilos para el dropdown del selector de región */
footer .top .fist-column .region_selector {
  position: relative;
}

footer .top .fist-column .region_selector .region_display {
  cursor: pointer;
}

footer .top .fist-column .region_selector .region_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #BFC7D3;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  flex-direction: column;
  margin-top: 13px;
}

footer .top .fist-column .region_selector .region_dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

footer .top .fist-column .region_selector .region_dropdown .region_option {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 400;
  color: #001E4B;
  transition: background-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

footer .top .fist-column .region_selector .region_dropdown .region_option:hover {
  background-color: #f5f5f5;
}

footer .top .fist-column .region_selector .region_dropdown .region_option:first-child {
  border-radius: 4px 4px 0 0;
}

footer .top .fist-column .region_selector .region_dropdown .region_option:last-child {
  border-radius: 0 0 4px 4px;
}

footer .top .fist-column .region_selector .region_dropdown .region_option span {
  margin: 0;
}

/* Rotación de la flecha cuando el dropdown está abierto */
footer .top .fist-column .region_selector .region_display .arrow.open {
  transform: rotate(270deg);
}

/* Estilos del region_selector para el header/navbar */
header .region_selector {
  display: flex;
  align-items: center;
  width: fit-content;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  margin-left: 25px;
  margin-bottom: auto;
  margin-top: 3px;
}

header .region_selector .region_selector_title{
  font-size: clamp(5px, 1vw, 10px);
  line-height: clamp(5px, 1vw, 11px);
  font-weight: 300;
  color: #EDF1F7;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}

header .region_selector .region_display {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Helvetica Neue", sans-serif;
  cursor: pointer;
}

header .region_selector .region_display p{
  margin: 0;
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 300;
  color: #EDF1F7;
  font-family: "Helvetica Neue", sans-serif;
}

header .region_selector .region_display .arrow {
  transform: rotate(90deg);
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

header .region_selector .region_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #BFC7D3;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  flex-direction: column;
  margin-top: 13px;
}

header .region_selector .region_dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header .region_selector .region_dropdown .region_option {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 400;
  color: #001E4B;
  transition: background-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

header .region_selector .region_dropdown .region_option:hover {
  background-color: #f5f5f5;
}

header .region_selector .region_dropdown .region_option:first-child {
  border-radius: 4px 4px 0 0;
}

header .region_selector .region_dropdown .region_option:last-child {
  border-radius: 0 0 4px 4px;
}

header .region_selector .region_dropdown .region_option span {
  margin: 0;
}

/* Rotación de la flecha cuando el dropdown está abierto en el header */
header .region_selector .region_display .arrow.open {
  transform: rotate(270deg);
}

footer .top .fist-column .separation {
  width: 100%;
  height: .5px;
  background-color: #BFC7D3;
  margin: 30px 0;
}

footer .top .second-column {
  display: flex;
  flex-direction: column;
  color: #112648;
}
footer .top .second-column h4 {
  margin: 0;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: clamp(12px, 1vw, 16px);
  font-family: "Helvetica Neue", sans-serif;
}
footer .top .second-column a {
  margin-bottom: 5px;
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 300;
  color: #818181;
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  transition: transform 0.2s ease;
  display: inline-block;
}
footer .top .second-column a:hover {
  transform: scale(1.1);
}
footer .top .second-column .special-anchor {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
footer .top .second-column .special-anchor strong {
  font-size: clamp(5px, 1vw, 8px);
  font-weight: 300;
  font-family: "Helvetica Neue", sans-serif;
}
footer .top .third-column h4,
footer .top .third-column p {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}
footer .top .third-column h4 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: clamp(12px, 1vw, 16px);
}
footer .top .third-column p {
  margin-bottom: 5px;
  color: #818181;
  font-weight: 200;
  font-size: clamp(10px, 1vw, 14px);
}
footer .top .third-column img {
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.1s ease;
}
footer .top .third-column img:hover {
  transform: scale(1.1);
}
footer .top .third-column .email {
  font-weight: 400;
  color: #112648;
}

footer .top .fourth-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

footer .top .fourth-column .nlo_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

footer .top .fourth-column .nlo_logo p {
  color: #748296;
  font-size: clamp(9px, 1vw, 13px);
  line-height: clamp(9px, 1vw, 13px);
  margin: 0;
  font-weight: 300;
  font-family: "Helvetica Neue", sans-serif;
}

footer .top .fourth-column .icargo_logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .top .fourth-column .icargo_logo p {
  color: #748296;
  font-size: clamp(9px, 1vw, 10px);
  line-height: clamp(9px, 1vw, 10px);
  margin: 0;
  font-weight: 300;
  width: 30%;
  font-family: "Helvetica Neue", sans-serif;
}

footer .top .fourth-column .separation {
  width: 100%;
  height: .5px;
  background-color: #BFC7D3;
  margin: 20px 0px;
}

footer .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  color: #c6cfde;
  background-color: #122649;
  width: 100%;
  padding: 25px 0px;
  font-weight: 300;
}
footer .bottom a {
  color: #c6cfde;
  font-family: "Helvetica Neue", sans-serif;
}
footer .bottom a:visited {
  color: #c6cfde;
}
footer .bottom p {
  font-size: clamp(10px, 1vw, 14px);
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}
footer .bottom p strong {
  font-weight: lighter;
  font-size: clamp(5px, 1vw, 8px);
}
footer .bottom .special-anchor {
  display: flex;
  align-items: flex-start;
  font-family: "Helvetica Neue", sans-serif;
}

footer .bottom .second-top {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 80%;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 20px;
}

footer .bottom .second-top .msl_logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .bottom .second-top .msl_logo p{
  margin: 0;
  color: #D0DCEF;
  font-size: clamp(10px, 1vw, 13px);
  line-height: clamp(10px, 1vw, 13px);
  font-weight: 300;
  margin-left: 20px;
  font-family: "Helvetica Neue", sans-serif;
}

footer .bottom .separation {
  height: .5px;
  width: 80%;
  margin: 35px auto 10px auto;
  background-color: #BFC7D3;
  opacity: 0.17;
}

footer .bottom .second-bottom {
  padding-bottom: 30px;
  padding-top: 20px;
  margin-left: -2%;
}

footer .bottom .second-bottom p{
  color: #748296;
  font-size: clamp(9px, 1vw, 13px);
  line-height: clamp(9px, 1vw, 13px);
  margin: 0;
  font-weight: 300;
}

@media (max-width: 910px) {
  footer .top {
    display: none;
  }
  footer .mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin: auto;
  }
  footer .mobile .logo {
    max-width: 260px;
    width: 60%;
    margin-bottom: 20px;
  }
  footer .mobile .menu-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 22px;
  }
  footer .mobile .separation {
    width: 95%;
    height: 2px;
    background-color: #dfdfe0;
    margin: 20px auto;
    max-width: 460px;
  }
  footer .mobile .footer-bottom {
    display: flex;
    gap: 25px;
  }
  footer .mobile .footer-bottom .third-column h4 {
    margin-bottom: 10px;
  }
}
@media (max-width: 498px) {
  footer .top {
    padding: 30px 10px;
  }
}
@media (max-width: 430px) {
  footer .bottom {
    justify-content: space-around;
  }
  footer .bottom .special-anchor {
    display: none;
  }
}
.all-footer {
  text-align: center;
  color: #818181;
  font-size: 10px;
  width: fit-content;
  padding: 25px;
  margin: auto;
}
#contact-page {
  width: 100%;
  margin: auto;
  margin-top: 70px;
}

#contact-page .header {
  display: flex;
  align-items: center;
  width: 90%;
  margin: auto;
  height: 535px;
  padding-left: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
#contact-page .header .background {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#contact-page .header .top {
  margin-bottom: 200px;
  margin-left: 70px;
  z-index: 10;
}

#contact-page .header .top h1 {
  font-size: clamp(20px, 5vw, 112px);
  color: #112648;
  font-weight: 400;
  margin: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}
#contact-page .header .top p {
  font-size: clamp(10px, 5vw, 21px);
  line-height: clamp(10px, 5vw, 24px);
  color: #112648;
  font-weight: 300;
  margin: 0;
  width: 83%;
}
#contact-page .content {
  display: flex;
  flex-direction: row-reverse;
  gap: 25px;
  position: relative;
  z-index: 1;
  width: 94%;
  margin: 0 auto;
  margin-top: -90px;
}
#contact-page .content .left {
  background-color: #F8FAFF;
  width: 921px;
  min-width: 250px !important;
  height: 674px;
  border-radius: 20px;
  margin-right: 22px;
  overflow: hidden;
}
#contact-page .content .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contact-page .content .right {
  display: flex;
  background-color: #F8FAFF;
  border-radius: 20px;
  width: 50%;
  max-height: 674px;
}
#contact-page .content .right .left-information {
  min-width: 182px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 70px;
  padding-right: 100px;
}
#contact-page .content .right .left-information .chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dfe5ef;
  border-radius: 10px;
  width: fit-content;
  padding: 10px 12px;
}
#contact-page .content .right .left-information .chip h4 {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 400;
  color: #112648;
  margin: 0;
}
#contact-page .content .right .left-information .body {
  margin-top: 20px;
  margin-bottom: 50px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#contact-page .content .right .left-information .body img {
  height: 22px;
}
#contact-page .content .right .left-information .body p {
  font-size: clamp(9px, 1vw, 15px);
  color: #748296;
  line-height: 28px;
  margin: 0;
  margin-top: 10px;
}
#contact-page .content .right .left-information .body a {
  color: #112747;
  font-size: clamp(9px, 1vw, 16px);
  line-height: 28px;
  margin: 0;
  text-decoration: none;
  margin-bottom: 10px;
}
#contact-page .content .right form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 80px 40px;
  width: 50%;
  gap: 40px;
}
#contact-page .content .right form h3 {
  font-size: clamp(25px, 3vw, 50px);
  color: #112648;
  line-height: clamp(23px, 3vw, 37px);
  margin: 0;
  font-weight: 500;
  font-family: "kanit", sans-serif;
}
#contact-page .content .right form input {
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #c8d1e3;
  font-size: clamp(18px, 2vw, 18px);
  padding-bottom: 20px;
  font-weight: 400;
  color: #112648;
}
#contact-page .content .right form input::placeholder {
  color: #112648;
  font-weight: 400;
}
#contact-page .content .right form textarea {
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #c8d1e3;
  font-size: clamp(18px, 2vw, 18px);
  padding-bottom: 20px;
  resize: vertical;
  font-weight: 400;
  color: #112648;
}
#contact-page .content .right form textarea::placeholder {
  color: #112648;
  font-weight: 400;
}
#contact-page .content .right form .last {
  display: flex;
  justify-content: space-between;
}
#contact-page .content .right form .last .checkbox {
  display: flex;
  align-items: center;
  gap: 26px;
}
#contact-page .content .right form .last .checkbox p {
  font-weight: 400;
  width: 50%;
  line-height: clamp(20px, 1vw, 24px);
  font-size: clamp(12px, 1vw, 16px);
}
#contact-page .content .right form .last .checkbox input[type="checkbox"] {
  width: 45px;
  height: 45px;
  border: 1px solid #c8d1e3;
  border-radius: 4px;
  appearance: none;
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  margin: 0;
}
#contact-page .content .right form .last .checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-color: #c8d1e3;
  border-radius: 10px;
}
#contact-page .content .right form .last button {
  background-color: #112648;
  border-radius: 41px;
  padding: 0px 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.83, 0.06, 0.38, 0.9);
}
#contact-page .content .right form .last button p {
  width: max-content;
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: clamp(12px, 1vw, 19px);
  margin: auto;
  font-family: "kanit", sans-serif;
}
#contact-page .content .right form .last button:hover {
  background-color: #19386a;
}
@media (max-width: 1118px) {
  #contact-page {
    margin-top: 50px;
  }
  
  #contact-page .header {
    height: 400px;
    padding-left: 0;
    width: 95%;
  }
  
  #contact-page .header .top {
    margin-bottom: 100px;
    margin-left: 70px;
  }
  
  #contact-page .content {
    flex-direction: column;
  }
  #contact-page .content .left {
    width: 100%;
    height: 150px;
    margin: auto;
  }
  #contact-page .content .right {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 825px) {
  #contact-page {
    margin-top: 120px;
    margin-bottom: 100px;
  }
  
  #contact-page .header {
    height: 350px;
    padding-left: 0;
    width: 97%;
  }
  
  #contact-page .header .top {
    margin-bottom: 80px;
    margin-left: 50px;
  }
  
  #contact-page .header .top h1 {
    font-size: clamp(24px, 6vw, 48px);
    margin-bottom: 15px;
  }
  
  #contact-page .header .top p {
    width: 90%;
    font-size: 16px;
    line-height: 1.4;
  }
  
  #contact-page .content .right .left-information {
    padding: 80px 35px;
    padding-bottom: 20px;
  }
  #contact-page .content .right form {
    padding: 80px 10px;
  }
  #contact-page .content .right form button {
    height: 60px !important;
    padding: 0px 40px !important;
  }
}
@media (max-width: 680px) {
  #contact-page .content .right {
    flex-direction: column;
  }
  #contact-page .content .right .left-information {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    padding: 25px 35px;
  }
  #contact-page .content .right form {
    width: 90%;
    margin: auto;
    padding: 0px 0px 25px 0px;
  }
  #contact-page .content .right form button {
    height: 50px !important;
  }
}
@media (max-width: 550px) {
  #contact-page {
    margin-top: 80px;
    margin-bottom: 60px;
  }
  
  #contact-page .header {
    height: 280px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    border-radius: 0;
  }
  
  #contact-page .header .top {
    margin-bottom: 40px;
    margin-left: 30px;
    width: 90%;
  }
  
  #contact-page .header .top h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  
  #contact-page .header .top p {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
  }
  
  #contact-page .content .right form {
    overflow: hidden;
    height: 120% !important;
    padding-bottom: 20px;
  }
  #contact-page .content .right form .last {
    flex-direction: column;
    gap: 20px;
  }
  #contact-page .content .right form .last button {
    width: fit-content;
    margin: auto;
    height: 50px !important;
    margin-bottom: 20px;
  }
  #contact-page .content .right form .last .checkbox {
    gap: 10px;
  }
  #contact-page .content .right form .last .checkbox input[type="checkbox"] {
    width: 30px !important;
    height: 30px !important;
  }
}
#services-page-top {
  width: 98%;
  max-width: 2000px;
  height: 463px;
  margin: auto;
  margin-top: 85px;
  position: relative;
}
#services-page-top .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}
#services-page-top .top {
  position: absolute;
  top: 20%;
  left: 9%;
  color: #fff;
  display: flex;
  flex-direction: column;
}
#services-page-top .top h1 {
  font-size: clamp(50px, 5vw, 112px);
  color: #EDF1F7;
  font-weight: 400;
  margin: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#services-page-top .top p {
  font-size: clamp(10px, 2vw, 15px);
  line-height: clamp(10px, 2vw, 22px);
  font-weight: 300;
  margin: 0;
  max-width: 480px;
  color: #748296;
}
#services-page-top .slider-container {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  margin: auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
  background: transparent linear-gradient(90deg, rgba(17,39,71,0) 0%, #112747 51%, rgba(17,39,71,0) 100%) 0% 0% no-repeat padding-box;
  padding: 8px 0;
}
#services-page-top .slider-container .slider {
  display: flex;
  width: max-content;
  animation: slide 20s linear infinite;
}
#services-page-top .slider-container .slider p {
  margin: 0;
  white-space: nowrap;
  padding: 0 1rem;
  color: #748296;
  font-size: clamp(10px, 2vw, 15px);
  font-weight: 300;
}

#services-container-info {
  width: 98%;
  max-width: 2000px;
  margin: auto;
  margin-top: 25px;  
  position: relative;
}

#services-container-info .top {
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 50px;
  padding-bottom: 85px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  height: 275px;
}
#services-container-info .top h1 {
  font-size: clamp(25px, 3vw, 40px);
  line-height: clamp(25px, 3vw, 55px);
  font-weight: 400;
  color: #112747;
  margin: 0;
  text-align: center;
  width: 60%;
}

#services-container-info .middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 38%;

  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);

  background-color: #fff;
  padding: 30px 0;
  border-radius: 20px;
  z-index:100;
}
#services-container-info .middle img {
  width: 100px;
  height: 100px;
}

#services-container-info .middle .separation {
  width: 1px;
  height: 30px;
  background-color: #112648;
}

#services-container-info .middle p {
  font-size: clamp(10px, 2vw, 15px);
  line-height: clamp(10px, 2vw, 20px);
  font-weight: 300;
  color: #748296;
  width: 60%;
  margin: 0;
}
#services-container-info .middle p strong {
  color: #112648;
}

#services-container-info .bottom {
  height: 340px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
#services-container-info .bottom img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Efecto parallax para la imagen NLO */
.parallax-image {
  transform: translateY(0);
  will-change: transform;
  /* Removemos la transición para que el movimiento sea más directo */
}

#services-container {
  width: 98%;
  max-width: 2000px;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#services-container .service {
  display: flex;
  gap: 80px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 82%;
  margin: auto;
  padding: 90px 170px;
}

#services-container .service .image{
  width: 30%;
  height: 100%;
  overflow: hidden;
  min-width: 520px;
  min-height: 400px;
  border-radius: 30px;
}
#services-container .service .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#services-container .service .content{
  display: flex;
  flex-direction: column;
  width: 41%;
}

#services-container .service .content .chip{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DCE3EB;
  border-radius: 35px;
  width: fit-content;
  padding: 7px 22px;
}

#services-container .service .content .chip img{
  width: 25px;
  height: 25px;
}

#services-container .service .content h1{
  font-size: clamp(25px, 3vw, 50px);
  line-height: clamp(25px, 3vw, 37px);
  font-weight: 500;
  color: #112648;
  margin: 0;
  margin-top: 25px;
  margin-bottom: 30px;
  font-family: "kanit", sans-serif;
}

#services-container .service .content .paragraph{
  font-size: clamp(10px, 2vw, 21px);
  line-height: clamp(10px, 2vw, 28px);
  font-weight: 300;
  color: #112648;
  margin: 0;
  margin-bottom: 30px;
}

#services-container .service .content button{
  background-color: #112648;
  color: #EDF1F7;
  font-size: clamp(10px, 1vw, 17px);
  width: fit-content;
  font-weight: 400;
  padding: 21px 55px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "kanit", sans-serif;
}

#services-container .service .content button:hover{
  background-color: #15355e;
}

#services-container .service .content .options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#services-container .service .content .options .extra-paragraph{
  color: #748296;
  font-size: clamp(10px, 2vw, 15px);
  line-height: clamp(10px, 2vw, 24px);
  font-weight: 300;
  margin: 0;
  margin-bottom: 30px;
}

#services-container .service .content .options .option{
  display: flex;
  gap: 10px;
  align-items: center;
}

#services-container .service .content .options .option .circle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  background-color: #DCE3EB;
}

#services-container .service .content .options .option p{
  color: #748296;
  font-size: clamp(10px, 2vw, 15px);
  font-weight: 400;
  margin: 0;
  line-height: clamp(10px, 2vw, 24px);
}

#services-container .service .content .options .option p strong{
  color: #112648;
  font-weight: 400;
}

/* Media queries para servicios */
@media (max-width: 1400px) {
  #services-container .service {
    padding: 70px 100px;
    gap: 60px;
  }
  
  #services-container .service .image {
    min-width: 400px;
    min-height: 300px;
  }
  
  #services-page-top .top {
    left: 7%;
  }
  
  #services-container-info .middle {
    width: 50%;
  }
}

@media (max-width: 1200px) {
  #services-container .service {
    width: 92%;
    padding: 60px 80px;
    gap: 50px;
  }
  
  #services-container .service .image {
    min-width: 350px;
    min-height: 280px;
  }
  
  #services-container-info .top h1 {
    width: 70%;
  }
  
  #services-container-info .middle {
    width: 60%;
  }
}

@media (max-width: 1024px) {
  #services-page-top {
    height: 380px;
    margin-top: 70px;
  }
  
  #services-page-top .top {
    top: 15%;
    left: 5%;
  }
  
  #services-page-top .top p {
    max-width: 90%;
  }
  
  #services-page-top .slider-container {
    width: 95%;
  }
  
  #services-container-info .top {
    height: auto;
    min-height: 200px;
    padding: 40px 30px 70px;
  }
  
  #services-container-info .top h1 {
    width: 85%;
  }
  
  #services-container-info .middle {
    width: 70%;
    gap: 15px;
    padding: 20px 0;
  }
  
  #services-container-info .middle img {
    width: 80px;
    height: 80px;
  }
  
  #services-container-info .middle p {
    width: 65%;
  }
  
  #services-container-info .bottom {
    height: 280px;
  }
  
  #services-container .service {
    flex-direction: column;
    gap: 30px;
    padding: 50px 60px;
  }
  
  #services-container .service .image {
    width: 100%;
    min-width: unset;
    min-height: 300px;
  }
  
  #services-container .service .content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #services-page-top {
    height: 320px;
    margin-top: 60px;
  }
  
  #services-page-top .top {
    top: 12%;
    left: 5%;
  }
  
  #services-page-top .top h1 {
    font-size: clamp(35px, 8vw, 50px);
  }
  
  #services-page-top .top p {
    font-size: clamp(12px, 3vw, 14px);
    line-height: 1.5;
  }
  
  #services-container-info {
    margin-top: 20px;
  }
  
  #services-container-info .top {
    padding: 30px 20px 60px;
    border-radius: 15px 15px 0 0;
  }
  
  #services-container-info .top h1 {
    width: 95%;
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.4;
  }
  
  #services-container-info .middle {
    width: 90%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -35px auto 0;
    padding: 25px 20px;
  }
  
  #services-container-info .middle img {
    width: 70px;
    height: 70px;
  }
  
  #services-container-info .middle .separation {
    height: 50px;
  }
  
  #services-container-info .middle p {
    width: 70%;
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.5;
  }
  
  #services-container-info .bottom {
    height: 250px;
    border-radius: 0 0 15px 15px;
  }
  
  #services-container {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  
  #services-container .service {
    width: 95%;
    padding: 30px 20px;
    border-radius: 15px;
    gap: 25px;
  }
  
  #services-container .service .image {
    border-radius: 20px;
    min-height: 200px;
  }
  
  #services-container .service .content h1 {
    font-size: clamp(24px, 5vw, 32px);
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  #services-container .service .content .paragraph {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  #services-container .service .content .options .extra-paragraph {
    font-size: clamp(13px, 2.5vw, 14px);
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  #services-container .service .content .options .option p {
    font-size: clamp(13px, 2.5vw, 14px);
    line-height: 1.5;
  }
  
  #services-container .service .content button {
    padding: 15px 35px;
    font-size: clamp(14px, 2.5vw, 15px);
  }
}

@media (max-width: 480px) {
  #services-page-top {
    height: 356px;
    margin-top: 50px;
  }
  
  #services-page-top .top {
    top: 20%;
    left: 5%;
  }
  
  #services-page-top .top h1 {
    font-size: clamp(28px, 7vw, 35px);
    line-height: 1.3;
  }
  
  #services-page-top .top p {
    max-width: 95%;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.5;
  }
  
  #services-page-top .slider-container {
    width: 98%;
    bottom: 10%;
  }
  
  #services-container-info .top {
    padding: 25px 15px 50px;
  }
  
  #services-container-info .top h1 {
    line-height: 1.4;
  }
  
  #services-container-info .middle {
    width: 92%;
    padding: 20px 15px;
    margin: -30px auto 0;
    flex-direction: column;
    gap: 10px;
  }
  
  #services-container-info .middle .separation {
    display: none;
  }
  
  #services-container-info .middle p {
    width: 90%;
    text-align: center;
    line-height: 1.5;
  }
  
  #services-container-info .bottom {
    height: 200px;
  }
  
  #services-container {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  
  #services-container .service {
    padding: 20px 15px;
    border-radius: 12px;
    gap: 20px;
  }
  
  #services-container .service .image {
    min-height: 180px;
    border-radius: 15px;
  }
  
  #services-container .service .content .chip {
    padding: 5px 15px;
  }
  
  #services-container .service .content .chip img {
    width: 20px;
    height: 20px;
  }
  
  #services-container .service .content h1 {
    font-size: clamp(22px, 5vw, 28px);
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 12px;
  }
  
  #services-container .service .content .paragraph {
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  #services-container .service .content .options .extra-paragraph {
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  #services-container .service .content .options .option {
    gap: 8px;
    margin-bottom: 8px;
  }
  
  #services-container .service .content .options .option .circle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
  
  #services-container .service .content .options .option p {
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.5;
  }
  
  #services-container .service .content button {
    padding: 14px 30px;
    width: 100%;
    font-size: clamp(13px, 2.5vw, 14px);
  }
}

#about-us-home {
  width: 98%;
  max-width: 2000px;
  height: 683px;
  margin: auto;
  margin-top: 70px;
  background-color: #0d1f39;
  border-radius: 14px;
  position: relative;
}
#about-us-home video {
  border-radius: 15px;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}
#about-us-home .text {
  position: absolute;
  top: 20%;
  left: 10%;
}
#about-us-home .text p {
  color: #fff;
  font-size: clamp(10px, 6vw, 20px);
  font-weight: 300;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}
#about-us-home .text h1 {
  color: #fff;
  font-size: clamp(50px, 6vw, 112px);
  line-height: clamp(70px, 6vw, 142px);
  font-weight: 400;
  margin: 0;
  margin-top: 10px;
  font-family: "Helvetica Neue", sans-serif;
}
#about-us-home .copyright {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 10%;
  left: 10%;
  max-width: 350px;
  gap: 20px;
}
#about-us-home .copyright img {
  width: 95px;
  height: auto;
}
#about-us-home .copyright p {
  color: #fff;
  font-size: 9px;
  font-weight: 100;
  margin: 0;
  margin-top: 10px;
  font-family: "Helvetica Neue", sans-serif;
}
@media (max-width: 1024px) {
  #about-us-home {
    height: 483px;
    margin-top: 50px;
  }
}
@media (max-width: 345px) {
  #about-us-home {
    width: 100%;
    margin-top: 0px;
  }
  #about-us-home video {
    border-radius: 0px 0px 13px 13px;
  }
  #about-us-home .text {
    top: 30%;
  }
  #about-us-home .copyright {
    bottom: 15%;
    gap: 10px;
  }
}
#about-us-main {
  background-color: #fff;
  width: 98%;
  max-width: 2000px;
  margin: auto;
  border-radius: 20px;
  padding-bottom: 100px;
  margin-bottom: 70px;
}
#about-us-main .who-we-are {
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
  padding-left: 10%;
  gap: 10%;
}
#about-us-main .who-we-are .chip {
  border: 1px solid #112747;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 10px 20px;
  width: max-content;
}
#about-us-main .who-we-are .chip p {
  width: max-content;
  margin: 0;
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 400;
  font-family: "Helvetica Neue", sans-serif;
}
#about-us-main .who-we-are .who-we-are-content h1 {
  font-size: clamp(25px, 3vw, 40px);
  line-height: clamp(25px, 3vw, 55px);
  font-weight: 400;
  color: #112747;
  margin: 0;
  max-width: 975px;
  opacity: 0.5;
  font-family: "Helvetica Neue", sans-serif;
}

#about-us-main .who-we-are .who-we-are-content h1.reval {
  opacity: 1;
}

#about-us-main .who-we-are .who-we-are-content h1.reval span {
  opacity: 0.5;
}
#about-us-main .who-we-are .who-we-are-content .images-container {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
}
#about-us-main .who-we-are .who-we-are-content .images-container div {
  width: 45%;
  height: 45%;
  max-width: 235px;
  max-height: 232px;
  border-radius: 36px;
}
#about-us-main .who-we-are .who-we-are-content .images-container div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#about-us-main .separation {
  width: 95%;
  margin: auto;
  height: 1px;
  background-color: #bdc2cc;
  margin-top: 80px;
  margin-bottom: 90px;
}
#about-us-main .our-history .top {
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: auto;
}
#about-us-main .our-history .top .chip {
  border: 1px solid #112747;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 10px 20px;
  width: max-content;
}
#about-us-main .our-history .top .chip p {
  width: max-content;
  margin: 0;
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 400;
  font-family: "Helvetica Neue", sans-serif;
}
#about-us-main .our-history .top .left-text p {
  font-size: clamp(9px, 1vw, 16px);
  font-weight: 400;
  color: #748296;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}
#about-us-main .our-history .top .left-text p strong {
  color: #112648;
  font-weight: 400;
  font-family: "Helvetica Neue", sans-serif;
}
#about-us-main .our-history .content {
  width: 85%;
  margin: auto;
  display: flex;
  margin-top: 50px;
}
#about-us-main .our-history .content .left {
  width: 50%;
  padding-right: 14%;
}
#about-us-main .our-history .content .left h4 {
  font-size: clamp(12px, 2vw, 21px);
  line-height: clamp(15px, 2vw, 32px);
  font-weight: 400;
  color: #2c2c52;
  margin: 0;
  margin-bottom: 40px;
  font-family: "Helvetica Neue", sans-serif;
}
#about-us-main .our-history .content .left p {
  font-size: clamp(12px, 1vw, 15px);
  line-height: clamp(12px, 2vw, 22px);
  font-weight: 300;
  color: #748296;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}
#about-us-main .our-history .content .right {
  display: flex;
  gap: 30px;
  position: relative;
}
#about-us-main .our-history .content .right div {
  position: relative;
  width: 20.39vw;
  height: 19.4vw;
  max-width: 353px;
  max-height: 371px;
  background-color: #112648;
  border-radius: 20px;
  overflow: hidden;
}
#about-us-main .our-history .content .right div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#about-us-main .regional-reach {
  margin-top: 100px;
}

#about-us-main .regional-reach .top {
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: auto;
}
#about-us-main .regional-reach .top .chip {
  border: 1px solid #112747;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 10px 20px;
  width: max-content;
}
#about-us-main .regional-reach .top .chip p {
  width: max-content;
  margin: 0;
  font-size: clamp(10px, 1vw, 15px);
  font-weight: 400;
  font-family: "Helvetica Neue", sans-serif;
}

#about-us-main .regional-reach .content {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#about-us-main .regional-reach .content h4 {
  font-size: clamp(18px, 2vw, 40px);
  color: #112648;
  font-weight: 300;
  font-family: "Helvetica Neue", sans-serif;
}

#about-us-main .regional-reach .content p {
  font-size: clamp(12px, 1vw, 16px);
  line-height: clamp(15px, 1vw, 23px);
  color: #112648;
  font-weight: 300;
  font-family: "Helvetica Neue", sans-serif;
}

#about-us-main .regional-reach .content .right {
  width: 48%;
}

#about-us-main .regional-reach .numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  margin: auto;
  margin-top: 50px;
}

#about-us-main .regional-reach .numbers .number {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about-us-main .regional-reach .numbers .number h3 {
  font-size: 50px;
  font-weight: 600;
  color: #112648;
  margin: 0;
  font-family: 'kanit', sans-serif;
}

#about-us-main .regional-reach .numbers .number p {
  font-size: 24px;
  font-weight: 400;
  color: #112648;
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}

#about-us-main .regional-reach .numbers .divider {
  height: 40px;
  width: 1px;
  background-color: #112648;
  margin: 0;
}


@media (max-width: 1024px) {
  #about-us-main .who-we-are {
    flex-direction: column;
    padding-left: 0;
    width: 90%;
    margin: auto;
  }
  #about-us-main .who-we-are .images-container {
    justify-content: center;
    margin-bottom: 25px !important;
  }
  #about-us-main .who-we-are .chip {
    margin-bottom: 50px;
  }
  #about-us-main .separation {
    width: 80%;
    height: 0.5px;
  }
  #about-us-main .our-history .top .left-text {
    width: 50%;
  }
  #about-us-main .our-history .content {
    margin-top: 40px;
    flex-direction: column-reverse;
  }
  #about-us-main .our-history .content .right {
    justify-content: center;
    gap: 10px;
  }
  #about-us-main .our-history .content .right div {
    width: 42.39vw;
    height: 39.4vw;
    max-width: 200px !important;
    max-height: 222px !important;
  }
  #about-us-main .our-history .content .left {
    width: 100%;
    padding-right: 0;
    margin-top: 20px;
  }
  #about-us-main .our-history .content .left h4 {
    margin-bottom: 10px;
  }
  
  #about-us-main .regional-reach {
    margin-top: 80px;
  }
  
  #about-us-main .regional-reach .content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #about-us-main .regional-reach .content .left {
    width: 100%;
  }
  
  #about-us-main .regional-reach .content .right {
    width: 100%;
  }
  
  #about-us-main .regional-reach .numbers {
    width: 70%;
    gap: 20px;
  }
  
  #about-us-main .regional-reach .numbers .number h3 {
    font-size: 40px;
  }
  
  #about-us-main .regional-reach .numbers .number p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #about-us-main .regional-reach {
    margin-top: 60px;
  }
  
  #about-us-main .regional-reach .content {
    margin-top: 30px;
  }
  
  #about-us-main .regional-reach .content h4 {
    font-size: clamp(16px, 4vw, 24px);
  }
  
  #about-us-main .regional-reach .content p {
    font-size: 14px;
    line-height: 20px;
  }
  
  #about-us-main .regional-reach .numbers {
    width: 85%;
    margin-top: 40px;
  }
  
  #about-us-main .regional-reach .numbers .divider {
    height: 30px;
  }
  
  #about-us-main .regional-reach .numbers .number h3 {
    font-size: 32px;
  }
  
  #about-us-main .regional-reach .numbers .number p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #about-us-main .regional-reach .numbers {
    width: 85%;
    margin-top: 30px;
  }
  
  #about-us-main .regional-reach .numbers .number h3 {
    font-size: 28px;
  }
  
  #about-us-main .regional-reach .numbers .number p {
    font-size: 12px;
  }
  
  #about-us-main .regional-reach .numbers .divider {
    height: 25px;
  }
}
#network-page .map-view {
  padding-top: 250px;
  position: relative;
  height: 470px;
  background-color: white;
  border-radius: 20px;
  width: 98%;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 20px;
}
#network-page .map-view .text {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 10%;
  top: 27%;
  z-index: 10;
}
#network-page .map-view .text p {
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 400;
  color: #112648;
  margin: 0;
}
#network-page .map-view .text h1 {
  font-size: clamp(20px, 6vw, 100px);
  line-height: clamp(20px, 6vw, 132px);
  font-weight: 400;
  color: #112648;
  margin: 0;
  display: flex;
  gap: 5px;
}
#network-page .map-view .text p {
  color: #748296;
  font-size: clamp(12px, 2vw, 20px);
  margin: 0;
}
#network-page .map-view .bottom-text {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  bottom: 10%;
  left: 10.5%;
}
#network-page .map-view .bottom-text img {
  max-width: 112px;
}
#network-page .map-view .bottom-text p {
  color: #112648;
  font-size: clamp(12px, 2vw, 10px);
  line-height: clamp(12px, 2vw, 13px);
  font-weight: 400;
  margin: 0;
}

#network-page .map-view .images {
  display: flex;
  align-items: center;
  justify-content: center;
}
#network-page .map-view .images .background {
  position: absolute;
  z-index: 1;
  width: 100%;
  max-width: 950px;
  max-height: 450px;
}
#network-page .map-view .images .country-map-container {
  width: fit-content;
  height: 100%;
  margin: auto;
  position: relative;
  margin-left: 45%;
}
#network-page .map-view .images .country-map-container .map {
  width: 100%;
  max-width: 655px;
  max-height: 471px;
  margin: auto;
  z-index: 100;
  position: relative;
  margin-left: -8%;
}
#network-page .map-view .images .country-map-container .region-container {
  display: none;
  z-index: 100;
}
#network-page .map-view .images .country-map-container .region-container .chip-map {
  display: flex;
  align-items: center;
  gap: 13px;
  background-color: #fff;
  max-width: 115px;
  border-radius: 32px;
  padding: 6px 10px;
  cursor: pointer;
  position: absolute;
  z-index: 100;
  transition: all 0.1s ease-in-out;
}
#network-page .map-view .images .country-map-container .region-container .chip-map p {
  margin: 0;
  font-weight: 500;
  font-size: clamp(12px, 2vw, 14px);
  color: #112648;
}
#network-page .map-view .images .country-map-container .region-container .chip-map:hover {
  transform: scale(1.1);
}


#network-page .map-view .images .country-map-container #north-america #ar {
  left: 43%;
  bottom: 28%;
}
#network-page .map-view .images .country-map-container #north-america #cl {
  bottom: 25%;
  left: -30%;
}
#network-page .map-view .images .country-map-container #north-america #co {
  top: 3%;
  left: -47%;
}
#network-page .map-view .images .country-map-container #north-america #bo {
  top: 34%;
  left: -19%;
}
#network-page .map-view .images .country-map-container #north-america #uy {
  bottom: 37%;
  right: 0;
}
#network-page .map-view .images .country-map-container #north-america #ve {
  top: -7%;
  right: 46%;
}
#network-page .map-view .images .country-map-container #north-america #pe {
  top: 25%;
  left: -34%;
}
#network-page .map-view .images .country-map-container #north-america #ec {
  top: 13%;
  left: -53%;
}
#network-page .map-view .images .country-map-container #north-america #py {
  top: 39%;
  left: 43%;
}
#network-page .map-view .images .country-map-container #north-america #br {
  top: 21%;
  left: 59%;
}

#network-page .map-view .images .country-map-container .active {
  display: block;
}
#network-page .info-view {
  width: 98%;
  margin: auto;
  margin-bottom: 150px;
  background-color: white;
  border-radius: 20px;
  padding-bottom: 100px;
}

/* Información del país */
#network-page .info-view .country-info {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
}

#network-page .info-view .country-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  width: 80%;
  margin: auto;
}

#network-page .info-view .country-left h1 {
  font-size: clamp(40px, 4vw, 50px);
  font-weight: 400;
  color: #112648;
  margin: 0 0 20px 0;
}

#network-page .info-view .country-left .description {
  font-size: clamp(14px, 1.5vw, 21px);
  line-height: clamp(14px, 1.5vw, 32px);
  color: #112648;
  font-weight: 300;
  margin: 0;
  margin-bottom: 15px;
  width: 70%;
}

#network-page .info-view .services-section h3 {
  font-size: clamp(16px, 1.5vw, 17px);
  font-weight: 300;
  color: #112648;
  margin: 0 0 15px 0;
}

#network-page .info-view .service-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

#network-page .info-view .service-tag {
  background-color: #fff;
  border: 1px solid #112648;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: clamp(12px, 1vw, 15px);
  color: #112648;
  font-weight: 400;
  transition: all 0.3s ease;
  user-select: none;
}

#network-page .info-view .service-tag.service-tag-elogistics {
  white-space: nowrap;
}

#network-page .info-view .last-description {
  font-size: clamp(12px, 1vw, 15px);
  color: #748296;
  font-weight: 300;
  margin: 0;
  width: 73%;
}

#network-page .info-view .country-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

#network-page .info-view .country-image {
  width: 38vw;
  height: 389px;
  border-radius: 15px;
  max-width: 700px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 45px rgba(17, 38, 72, 0.12);
}

/* Grid de ubicaciones */
#network-page .info-view .locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  width: 80%;
  margin: auto;
  align-items: start;
}

#network-page .info-view .tarifario-section {
  width: 80%;
  margin: 40px auto 0;
  background-color: #f8faff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(17, 38, 72, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#network-page .info-view .tarifario-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

#network-page .info-view .tarifario-header h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  color: #112648;
  font-weight: 500;
}

#network-page .info-view .tarifario-office-selector {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(12px, 1vw, 17px);
  color: #748296;
  font-weight: 300;
}


#network-page .info-view .tarifario-office-selector select {
  border: 1px solid #d7ddea;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: clamp(12px, 1vw, 14px);
  color: #112648;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}

#network-page .info-view .tarifario-office-selector select:focus {
  border-color: #2756ff;
}

#network-page .info-view .tarifario-table-wrapper {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(17, 38, 72, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

#network-page .info-view .tarifario-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  overflow: hidden;
  border-radius: 16px;
  margin: 0 auto;
  table-layout: fixed;
}

#network-page .info-view .tarifario-table thead th {
  position: sticky;
  top: 0;
  background-color: #112648;
  z-index: 1;
}

#network-page .info-view .tarifario-table-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

#network-page .info-view .tarifario-table-wrapper::-webkit-scrollbar-track {
  background: #EDF1F7;
  border-radius: 8px;
}

#network-page .info-view .tarifario-table-wrapper::-webkit-scrollbar-thumb {
  background: #112648;
  border-radius: 8px;
}

#network-page .info-view .tarifario-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #154797;
}

#network-page .info-view .tarifario-table thead {
  background-color: #112648;
  color: #ffffff;
}

#network-page .info-view .tarifario-table th,
#network-page .info-view .tarifario-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.45;
  color: #112648;
  border-bottom: 1px solid rgba(17, 38, 72, 0.12);
  white-space: normal;
  word-break: break-word;
}

#network-page .info-view .tarifario-table th {
  font-weight: 400;
  text-transform: uppercase;
  color: white !important;
}

#network-page .info-view .tarifario-table tbody tr:nth-child(even) {
  background-color: rgba(39, 86, 255, 0.04);
}

#network-page .info-view .tarifario-table tbody tr:hover {
  background-color: rgba(39, 86, 255, 0.12);
}

#network-page .info-view .tarifario-table tbody td {
  background-color: #ffffff;
  font-weight: 400;
}

#network-page .info-view .tarifario-table tbody td:first-child {
  font-weight: 500;
}

#network-page .info-view .tarifario-table tbody td:last-child {
  border-bottom: none;
}

#network-page .info-view .tarifario-feedback {
  margin-bottom: 15px;
  font-size: clamp(12px, 1vw, 14px);
  color: #748296;
}

#network-page .info-view .tarifario-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}

#network-page .info-view .claims-book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #112648;
  color: #EDF1F7;
  font-size: clamp(10px, 1vw, 17px);
  font-weight: 400;
  padding: 18px 30px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Helvetica Neue", sans-serif;
}

#network-page .info-view .claims-book-button:hover {
  transform: translateY(-2px);
}

#network-page .info-view .claims-book-button:focus-visible {
  outline: 3px solid rgba(39, 86, 255, 0.4);
  outline-offset: 3px;
}

#network-page .info-view .colombia-actions {
  width: 80%;
  margin: 32px auto 0;
  display: none;
  justify-content: flex-start;
}

#network-page .info-view .data-policy-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #112648;
  color: #EDF1F7;
  font-size: clamp(10px, 1vw, 17px);
  font-weight: 400;
  padding: 18px 30px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Helvetica Neue", sans-serif;
}

#network-page .info-view .data-policy-button i {
  font-size: clamp(14px, 1.2vw, 18px);
}

#network-page .info-view .data-policy-button:hover {
  transform: translateY(-2px);
}

#network-page .info-view .data-policy-button:focus-visible {
  outline: 3px solid rgba(39, 86, 255, 0.4);
  outline-offset: 3px;
}

/* Tarjetas de ubicación */
#network-page .info-view .location-card {
  background-color: #F8FAFF;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

#network-page .info-view .location-card .location-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 20px;
  user-select: none;
}

#network-page .info-view .location-card .location-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

#network-page .info-view .location-card .location-left img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

#network-page .info-view .location-card .location-text p {
  margin: 0;
  font-size: clamp(12px, 1vw, 17px);
  color: #748296;
  font-weight: 300;
}

#network-page .info-view .location-card .location-text h2 {
  margin: 0;
  font-size: clamp(18px, 2vw, 26px);
  color: #112648;
  font-weight: 500;
  margin-top: 3px;
}

#network-page .info-view .location-card .location-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

#network-page .info-view .location-card .toggle-btn {
  background-color: #ECEFF4;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

#network-page .info-view .location-card .toggle-btn img {
  width: 20px;
  height: 20px;
  transform: rotate(270deg);
  transition: transform 0.3s ease-in-out;
}

#network-page .info-view .location-card.active .toggle-btn img {
  transform: rotate(90deg);
}

#network-page .info-view .location-card .location-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}

#network-page .info-view .location-card.active .location-body {
  max-height: 200px;
  padding: 20px;
}

#network-page .info-view .location-card .info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

#network-page .info-view .location-card .info-row:first-child {
  border-bottom: 1px solid #ebeff5;
  padding-bottom: 15px;
}

#network-page .info-view .location-card .info-item p {
  margin: 0;
  font-size: clamp(11px, 1vw, 12px);
  color: #748296;
  font-weight: 300;
}

#network-page .info-view .location-card .info-item p:first-child {
  margin-bottom: 5px;
}

#network-page .info-view .location-card .info-item p strong {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 300;
  color: #112648;
}
@media (max-width: 1000px) {
  #network-page .info-view .locations-grid {
    grid-template-columns: 1fr;
  }
  
  #network-page .info-view .tarifario-section {
    width: 90%;
    padding: 24px;
  }
  
  #network-page .info-view .colombia-actions {
    width: 90%;
  }
  
  #network-page .info-view .tarifario-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  #network-page .info-view .country-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  #network-page .info-view .country-right {
    justify-content: flex-start;
  }
  
  #network-page .info-view .country-image {
    height: 150px;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  #network-page .info-view {
    width: 96%;
  }
  
  #network-page .info-view .tarifario-section {
    width: 96%;
    padding: 20px;
  }
  
  #network-page .info-view .colombia-actions {
    width: 96%;
  }
  
  #network-page .info-view .country-info {
    padding: 20px;
  }
  
  #network-page .info-view .location-card .location-header {
    padding: 15px;
  }
  
  #network-page .info-view .location-card .location-left img {
    width: 35px;
    height: 35px;
  }
  
  #network-page .info-view .location-card .toggle-btn {
    width: 30px;
    height: 30px;
  }
  
  #network-page .info-view .location-card .toggle-btn img {
    width: 16px;
    height: 16px;
  }
  
  #network-page .info-view .location-card .info-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  #network-page .info-view .service-tags {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  #network-page .info-view .tarifario-table-wrapper {
    max-height: none;
    overflow: visible;
    border-radius: 20px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  #network-page .info-view .tarifario-table {
    min-width: 100%;
    border-radius: 0;
    table-layout: auto;
  }

  #network-page .info-view .tarifario-table thead {
    display: none;
  }

  #network-page .info-view .tarifario-table tbody {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #network-page .info-view .tarifario-table tbody tr {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(17, 38, 72, 0.1);
    padding: 18px 20px;
    border: 1px solid rgba(17, 38, 72, 0.08);
  }

  #network-page .info-view .tarifario-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(17, 38, 72, 0.08);
  }

  #network-page .info-view .tarifario-table tbody td::before {
    content: attr(data-label);
    font-weight: 500;
    color: #748296;
    flex: 0 0 55%;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  #network-page .info-view .tarifario-table tbody td:last-child {
    border-bottom: 1px solid rgba(17, 38, 72, 0.08);
  }

  #network-page .info-view .tarifario-table tbody td span,
  #network-page .info-view .tarifario-table tbody td strong {
    margin: 0;
  }
}
@media (max-width: 1250px) {
}
@media (max-width: 650px) {
  
}
@-moz-keyframes slide {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes slide {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-o-keyframes slide {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slide {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-moz-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-o-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-moz-keyframes sonar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes sonar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@-o-keyframes sonar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes sonar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Video hover effects */
.hover-video {
  transition: opacity 0.3s ease-in-out;
  opacity: 0.8;
}

.card:hover .hover-video {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Work with us section */
#work-with-us {
  width: 95%;
  max-width: 1800px;
  margin: 25px auto;
  margin-bottom: 100px;
  display: flex;
  background: linear-gradient(50deg,rgba(27, 77, 158, 1) 0%, rgba(17, 38, 72, 1) 50%);
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
}

#work-with-us .left-content {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px 60px;
}

#work-with-us .left-content .background-image {
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('../images/contact_us_image.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

#work-with-us .left-content .content {
  position: absolute;
  top: 10%;
  right: 0;
  transform: translateX(-50%);
  z-index: 10;
  width: max-content;
}

#work-with-us .left-content h2 {
  font-size: clamp(32px, 4vw, 38px);
  line-height: clamp(32px, 4vw, 125px);
  font-weight: 400;
  color: #F7FAFF;
  margin: 0;
}

#work-with-us .left-content .subtitle {
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(16px, 2vw, 32px);
  font-weight: 300;
  color: #748296;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  margin-top: 20px;
}

#work-with-us .left-content .description {
  font-size: clamp(10px, 1.5vw, 13px);
  line-height: clamp(10px, 1.5vw, 25px);
  font-weight: 300;
  color: #748296;
  max-width: 435px;
  margin: 0;
}

#work-with-us .left-content .branding {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  bottom: 10%;
  left: 40%;
  transform: translateX(-50%);
  z-index: 10;
}

#work-with-us .left-content .branding .logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

#work-with-us .left-content .branding .logo img {
  width: 100px;
}

#work-with-us .left-content .branding p {
  font-size: 10px;
  font-weight: 200;
  color: #F7FAFF;
}

#work-with-us .right-content {
  flex: 0 0 40%;
  padding: 80px 60px 80px 0;
  margin-right: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#work-with-us .right-content form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 80%;
}

#work-with-us .right-content .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#work-with-us .right-content .form-group label {
  color: #748296;
  font-size: clamp(10px, 2vw, 18px);
  font-weight: 300;
}

#work-with-us .right-content .form-group input,
#work-with-us .right-content .form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  font-size: clamp(10px, 2vw, 18px);
  font-weight: 300;
  outline: none;
}

#work-with-us .right-content .form-group input::placeholder,
#work-with-us .right-content .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#work-with-us .right-content .form-group textarea {
  resize: vertical;
}

#work-with-us .right-content .file-upload-btn {
  background: transparent;
  border: 1px solid white;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 45px;
  transition: all 0.3s ease;
  width: fit-content;
  margin: 35px 0;
}

#work-with-us .right-content .file-upload-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

#work-with-us .right-content .file-upload-btn .pdf-icon {
  width: 21px;
}

#work-with-us .right-content .file-upload-btn p {
  font-size: clamp(10px, 3vw, 18px);
  font-weight: 400;
  margin: 0;
  color: #F7FAFF;
  font-family: "kanit", sans-serif;
}

#work-with-us .right-content .checkbox-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
}

#work-with-us .right-content .checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 50%;
  background: white;
  appearance: none;
  cursor: pointer;
  position: relative;
}

#work-with-us .right-content .checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #001E4B;
  border-radius: 50%;
}

#work-with-us .right-content .checkbox-group label {
  font-size: 14px;
  color: #748296;
  cursor: pointer;
  margin: 0;
  font-weight: 300;
}

#work-with-us .right-content .submit-btn {
  background: white;
  color: #1A2B4D;
  border: none;
  border-radius: 41px;
  padding: 17px 80px;
  font-size: 21px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 20px;
  font-family: "kanit", sans-serif;
}

#work-with-us .right-content .submit-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Responsive design for work with us section */
@media (max-width: 1200px) {
  #work-with-us {
    flex-direction: column;
    min-height: auto;
  }
  
  #work-with-us .left-content {
    padding: 60px 40px !important;
    min-height: 300px;
    justify-content: center;
    align-items: center;
  }
  
  #work-with-us .left-content .content {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  #work-with-us .left-content .branding {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 30px;
  }
  
  #work-with-us .right-content {
    flex: none;
    padding: 60px 60px;
    margin-right: 0;
    width: 100%;
  }
  
  #work-with-us .right-content form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #work-with-us {
    margin: 50px auto 100px;
    min-height: auto;
  }
  
  #work-with-us .left-content {
    padding: 50px 30px !important;
    min-height: 250px;
  }
  
  #work-with-us .left-content h2 {
    font-size: clamp(28px, 5vw, 38px);
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  #work-with-us .left-content .subtitle {
    font-size: clamp(14px, 3vw, 16px);
    margin-top: 0;
  }
  
  #work-with-us .left-content .description {
    font-size: clamp(12px, 2.5vw, 13px);
    margin-top: 15px;
  }
  
  #work-with-us .left-content .branding {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  #work-with-us .left-content .branding .logo img {
    width: 80px;
  }
  
  #work-with-us .right-content {
    padding: 50px 40px;
  }
  
  #work-with-us .right-content form {
    gap: 25px;
  }
  
  #work-with-us .right-content .file-upload-btn {
    padding: 15px 30px;
    width: 100%;
    max-width: 300px;
    margin: 25px auto;
  }
  
  #work-with-us .right-content .submit-btn {
    width: 100%;
    max-width: 300px;
    padding: 15px 40px;
    font-size: 18px;
    margin: 20px auto 0;
  }
  
  #work-with-us .right-content .checkbox-group {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  #work-with-us .right-content .checkbox-group label {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  #work-with-us {
    margin: 30px auto 80px;
    width: 100%;
    border-radius: 0;
  }
  
  #work-with-us .left-content {
    padding: 40px 25px !important;
    min-height: 200px;
  }
  
  #work-with-us .left-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  
  #work-with-us .left-content .subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  #work-with-us .left-content .description {
    font-size: 12px;
    line-height: 1.5;
  }
  
  #work-with-us .left-content .branding {
    margin-top: 20px;
    gap: 10px;
  }
  
  #work-with-us .left-content .branding .logo img {
    width: 60px;
  }
  
  #work-with-us .left-content .branding p {
    font-size: 9px;
  }
  
  #work-with-us .right-content {
    padding: 40px 25px;
  }
  
  #work-with-us .right-content form {
    gap: 20px;
  }
  
  #work-with-us .right-content .form-group label {
    font-size: 14px;
  }
  
  #work-with-us .right-content .form-group input,
  #work-with-us .right-content .form-group textarea {
    font-size: 14px;
    padding: 8px 0;
  }
  
  #work-with-us .right-content .file-upload-btn {
    padding: 12px 20px;
    margin: 20px 0;
    gap: 10px;
  }
  
  #work-with-us .right-content .file-upload-btn p {
    font-size: 14px;
  }
  
  #work-with-us .right-content .file-upload-btn .pdf-icon {
    width: 18px;
  }
  
  #work-with-us .right-content .checkbox-group {
    margin-top: 20px;
  }
  
  #work-with-us .right-content .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  
  #work-with-us .right-content .checkbox-group label {
    font-size: 11px;
  }
  
  #work-with-us .right-content .submit-btn {
    padding: 14px 30px;
    font-size: 16px;
    width: 100%;
  }
}

/* ===== FOOTER RESPONSIVE STYLES ===== */

/* Tablet responsive (768px - 1200px) */
@media (max-width: 1200px) {
  footer .top {
    padding: 50px 40px 60px 5%;
    gap: 60px;
    width: 85%;
  }
  
  footer .top .fist-column {
    min-width: 250px;
    margin-right: 5%;
  }
  
  footer .top .second-column,
  footer .top .third-column {
    flex: 1;
  }
  
  footer .top .fourth-column {
    margin-left: 20px;
  }
}

/* Network Page (Offices) Responsive - Tablets */
@media (max-width: 1024px) {
  #network-page .map-view {
    height: 525px;
  }
  #network-page .map-view .text {
    top: 18%;
    gap: 5px;
  }
  #network-page .map-view .text h1 {
    font-size: clamp(20px, 8vw, 100px);
    line-height: clamp(20px, 8vw, 132px);
  }
  #network-page .map-view .bottom-text {
    bottom: 5%;
  }
  #network-page .map-view .images .country-map-container {
    margin-left: 39%;
  }
  #network-page .map-view .images .country-map-container #north-america #ve {
    top: -5%;
  }
}

/* Network Page (Offices) Responsive - Tablets Portrait */
@media (max-width: 768px) {
  
}

/* Network Page (Offices) Responsive - Mobile */
@media (max-width: 480px) {
  #network-page .map-view {
    min-height: 450px;
    padding: 130px 15px 30px;
    width: 86%;
  }

  #network-page .map-view .text h1 {
    font-size: 36px;
    line-height: 42px;
  }

  #network-page .map-view .text p {
    font-size: 14px;
  }

  #network-page .map-view .bottom-text {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }

  #network-page .map-view .bottom-text img {
    max-width: 90px;
  }

  #network-page .map-view .bottom-text p {
    font-size: 9px;
    line-height: 11px;
    text-align: center;
  }

  #network-page .map-view .images {
    min-height: 350px;
  }

  #network-page .map-view .images .background {
    max-width: 100%;
    max-height: 250px;
  }

  #network-page .map-view .images .country-map-container {
    margin-top: 80px;
    margin-left: 32%;
  }

  #network-page .map-view .images .country-map-container .map {
    max-height: 369px;
  }
  

  #network-page .map-view .images .country-map-container .region-container .chip-map {
    gap: 8px;
    padding-left: 8px;
  }

  #network-page .map-view .images .country-map-container .region-container .chip-map img {
    width: 18px;
    height: 18px;
  }

  #network-page .map-view .images .country-map-container .region-container .chip-map p {
    font-size: 11px;
  }

  #network-page .info-view {
    width: 95%;
    margin-bottom: 60px;
    padding-bottom: 40px;
  }

  #network-page .info-view .country-info {
    padding: 25px 15px;
  }

  #network-page .info-view .country-header {
    width: 100%;
    gap: 25px;
  }

  #network-page .info-view .country-left h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  #network-page .info-view .country-left .description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  #network-page .info-view .services-section h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  #network-page .info-view .service-tags {
    gap: 8px;
    margin-bottom: 20px;
  }

  #network-page .info-view .service-tag {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 15px;
  }

  #network-page .info-view .service-tag.service-tag-elogistics {
    white-space: nowrap;
  }

  #network-page .info-view .last-description {
    font-size: 12px;
  }

  #network-page .info-view .placeholder-rectangle {
    height: 200px;
  }

  #network-page .info-view .locations-grid {
    width: 100%;
    gap: 15px;
  }

  #network-page .info-view .location-card .location-header {
    padding: 20px 15px;
    gap: 10px;
  }

  #network-page .info-view .location-card .location-left {
    gap: 12px;
  }

  #network-page .info-view .location-card .location-left img {
    width: 30px;
    height: 30px;
  }

  #network-page .info-view .location-card .location-text p {
    font-size: 12px;
  }

  #network-page .info-view .location-card .location-text h2 {
    font-size: 18px;
    margin-top: 2px;
  }

  #network-page .info-view .location-card .toggle-btn {
    width: 28px;
    height: 28px;
  }

  #network-page .info-view .location-card .toggle-btn img {
    width: 16px;
    height: 16px;
  }

  #network-page .info-view .location-card .location-body {
    padding: 0 15px;
  }

  #network-page .info-view .location-card.active .location-body {
    padding: 15px;
  }

  #network-page .info-view .location-card .info-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 12px;
  }

  #network-page .info-view .location-card .info-row:first-child {
    padding-bottom: 12px;
  }

  #network-page .info-view .location-card .info-item p {
    font-size: 11px;
  }

  #network-page .info-view .location-card .info-item p strong {
    font-size: 12px;
  }

  #network-page .map-view .images .country-map-container #north-america #ve {
    top: -9%;
  }
  #network-page .map-view .images .country-map-container #north-america #pe{
    left: -46%;
  }
  #network-page .map-view .images .country-map-container #north-america #bo {
    left: -25%;
  }
  #network-page .map-view .images .country-map-container #north-america #cl {
    left: -43%;
  }
}

/* Mobile landscape responsive (481px - 910px) */
@media (max-width: 910px) {
  footer .top {
    display: none;
  }
  
  footer .mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background-color: #fff;
  }
  
  footer .mobile .logo {
    max-width: 260px;
    width: 60%;
    margin-bottom: 20px;
  }
  
  footer .mobile .menu-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 22px;
    justify-content: center;
  }
  
  footer .mobile .menu-container a {
    color: #112648;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
  }
  
  footer .mobile .menu-container a:hover {
    color: #375FC8;
  }
  
  footer .mobile .separation {
    width: 95%;
    height: 2px;
    background-color: #dfdfe0;
    margin: 20px auto;
    max-width: 460px;
  }
  
  footer .mobile .footer-bottom {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  footer .mobile .footer-bottom .third-column {
    text-align: center;
  }
  
  footer .mobile .footer-bottom .third-column h4 {
    margin-bottom: 10px;
    color: #112648;
    font-size: 16px;
    font-weight: 500;
  }
  
  footer .mobile .footer-bottom .third-column .email {
    color: #112648;
    font-weight: 400;
    font-size: 14px;
  }
  
  footer .mobile .footer-bottom .third-column img {
    margin: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  footer .mobile .footer-bottom .third-column img:hover {
    transform: scale(1.1);
  }
  
  /* Region Selector Mobile Footer */
  footer .mobile .region_selector_mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 20px auto;
    position: relative;
  }
  
  footer .mobile .region_selector_mobile .region_selector_title {
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
    color: #112648;
    margin: 0 0 10px 0;
    font-family: "Helvetica Neue", sans-serif;
    text-align: center;
  }
  
  footer .mobile .region_selector_mobile .region_display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #d9dfe6;
    border-radius: 31px;
    transition: all 0.2s ease;
  }
  
  footer .mobile .region_selector_mobile .region_display:hover {
    background-color: #f5f6f8;
  }
  
  footer .mobile .region_selector_mobile .region_display p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #112648;
    font-family: "Helvetica Neue", sans-serif;
  }
  
  footer .mobile .region_selector_mobile .region_display img {
    width: 20px;
    height: 20px;
  }
  
  footer .mobile .region_selector_mobile .region_display img.arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(0);
  }
  
  footer .mobile .region_selector_mobile .region_display img.arrow.open {
    transform: rotate(270deg);
  }
  
  footer .mobile .region_selector_mobile .region_dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #BFC7D3;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 8px;
  }
  
  footer .mobile .region_selector_mobile .region_dropdown.show {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
  }
  
  footer .mobile .region_selector_mobile .region_dropdown .region_option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #112648;
    border-bottom: 1px solid #f0f2f5;
  }
  
  footer .mobile .region_selector_mobile .region_dropdown .region_option:last-child {
    border-bottom: none;
  }
  
  footer .mobile .region_selector_mobile .region_dropdown .region_option img {
    width: 18px;
    height: 18px;
  }
  
  footer .mobile .region_selector_mobile .region_dropdown .region_option:hover {
    background-color: #f5f6f8;
  }
  
  footer .mobile .region_selector_mobile .region_dropdown .region_option:first-child {
    border-radius: 8px 8px 0 0;
  }
  
  footer .mobile .region_selector_mobile .region_dropdown .region_option:last-child {
    border-radius: 0 0 8px 8px;
  }
  
  footer .mobile .region_selector_mobile .region_dropdown .region_option span {
    margin: 0;
  }
  
  /* Logos NLO e iCargo para mobile */
  footer .mobile .logos-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    width: 100%;
  }
  
  footer .mobile .nlo_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }
  
  footer .mobile .nlo_logo img {
    width: 40px;
    height: auto;
  }
  
  footer .mobile .nlo_logo p {
    color: #748296;
    font-size: 12px;
    line-height: 14px;
    margin: 0;
    font-weight: 300;
    font-family: "Helvetica Neue", sans-serif;
    text-align: center;
  }
  
  footer .mobile .icargo_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }
  
  footer .mobile .icargo_logo img {
    width: 40px;
    height: auto;
  }
  
  footer .mobile .icargo_logo p {
    color: #748296;
    font-size: 11px;
    line-height: 13px;
    margin: 0;
    font-weight: 300;
    font-family: "Helvetica Neue", sans-serif;
    text-align: center;
    max-width: 150px;
  }
  
  /* Footer bottom responsive */
  footer .bottom {
    padding: 20px 0;
  }
  
  footer .bottom .second-top {
    width: 90%;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  footer .bottom .second-top .msl_logo {
    justify-content: center;
  }
  
  footer .bottom .second-bottom {
    margin-left: 0;
    text-align: center;
    padding: 15px 20px;
  }
}

/* Mobile portrait responsive (320px - 480px) */
@media (max-width: 480px) {
  footer .mobile {
    padding: 30px 15px;
  }
  
  footer .mobile .logo {
    max-width: 200px;
    width: 70%;
  }
  
  footer .mobile .menu-container {
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
  }
  
  footer .mobile .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  footer .mobile .footer-bottom .third-column h4 {
    font-size: 14px;
  }
  
  footer .mobile .footer-bottom .third-column .email {
    font-size: 12px;
  }
  
  /* Logos responsive para mobile portrait */
  footer .mobile .logos-section {
    gap: 15px;
    margin: 15px 0;
  }
  
  footer .mobile .nlo_logo img {
    width: 90px;
  }
  
  footer .mobile .nlo_logo p {
    font-size: 11px;
    line-height: 13px;
  }
  
  footer .mobile .icargo_logo img {
    width: 90px;
  }
  
  footer .mobile .icargo_logo p {
    font-size: 10px;
    line-height: 12px;
    max-width: 120px;
  }
  
  footer .bottom .second-top {
    width: 95%;
    padding: 15px 10px;
  }
  
  footer .bottom .second-top .msl_logo p {
    font-size: 11px;
    margin-left: 10px;
  }
  
  footer .bottom .second-bottom {
    padding: 10px 15px;
  }
  
  footer .bottom .second-bottom p {
    font-size: 10px;
  }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
  footer .mobile {
    padding: 20px 10px;
  }
  
  footer .mobile .logo {
    max-width: 150px;
    width: 80%;
  }
  
  footer .mobile .menu-container {
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
  }
  
  footer .mobile .footer-bottom .third-column h4 {
    font-size: 12px;
  }
  
  footer .mobile .footer-bottom .third-column .email {
    font-size: 11px;
  }
  
  /* Logos responsive para extra small devices */
  footer .mobile .logos-section {
    gap: 10px;
    margin: 10px 0;
  }
  
  footer .mobile .nlo_logo p {
    font-size: 10px;
    line-height: 12px;
  }
  
  footer .mobile .icargo_logo p {
    font-size: 9px;
    line-height: 11px;
    max-width: 100px;
  }
  
  footer .bottom .second-top .msl_logo p {
    font-size: 10px;
    margin-left: 5px;
  }
  
  footer .bottom .second-bottom p {
    font-size: 9px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  footer .mobile .logo,
  footer .top .fist-column .msl_logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print styles */
@media print {
  footer {
    background-color: #fff !important;
    color: #000 !important;
  }
  
  footer .mobile,
  footer .top {
    display: none !important;
  }
  
  footer .bottom {
    display: block !important;
    background-color: #fff !important;
    color: #000 !important;
  }
}
