@charset "UTF-8";
@import "../fonts/aller/stylesheet.css";
header nav {
  background-color: transparent;
  padding: 24px 0px !important;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: none;
}
header nav.header-active {
  background-color: #020638;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1803921569);
}
header nav .container {
  padding-left: 12px;
  padding-right: 12px;
}
header nav .container .nav-list {
  display: flex;
  gap: 60px;
}
header nav .container .nav-list .nav-links {
  display: flex;
  gap: 6px;
}
header nav .container .nav-list .nav-links .nav-link {
  color: #fff;
  padding: 12px 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: center;
  border-radius: 6px;
  border: 0px;
}
header nav .container .nav-list .nav-links .nav-link:hover {
  background-color: rgba(72, 182, 255, 0.2);
}
header nav .container .nav-list .nav-button {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
header nav .container .nav-list .nav-button a {
  display: block;
  width: 100%;
  background-color: #1369EB;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  padding: 12px 16px;
  border-radius: 5px;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
header nav .container .nav-list .nav-button a:hover {
  background-color: rgb(15.1850393701, 83.9173228346, 187.8149606299);
  border-color: rgb(15.1850393701, 83.9173228346, 187.8149606299);
}
header nav .container .nav-list .nav-button a.translucid {
  background-color: transparent;
  color: #fff;
  border: 1px solid #5EAEEB;
  transition: all 0.3s ease-in-out;
}
header nav .container .nav-list .nav-button a.translucid:hover {
  background-color: #fff;
  color: #020638;
  border-color: #fff;
}

@media (max-width: 768px) {
  header nav {
    padding: 16px 0px !important;
    position: absolute !important;
    top: 0;
    background-color: #020638 !important;
    width: 100%;
  }
  header nav .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  header nav .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    background-color: #020638;
    z-index: 9999;
    transform: translateX(100%);
    /* Start hidden off-screen */
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
  }
  header nav .mobile-menu.active {
    transform: translateX(0);
    /* Slide in */
  }
  header nav .mobile-menu .close-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  header nav .mobile-menu .nav-link {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px;
    width: 100%;
    text-align: center;
  }
  header nav .mobile-menu .nav-link:hover {
    color: #1369EB;
  }
  header nav .mobile-menu .btn-rastreo {
    background-color: transparent;
    color: #fff;
    border: 1px solid #5EAEEB;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 14px 24px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    margin-top: 12px;
  }
  header nav .mobile-menu .btn-rastreo:hover {
    background-color: #fff;
    color: #020638;
    border-color: #fff;
  }
  header nav .mobile-menu .btn-cotizacion {
    background-color: #1369EB;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 14px 24px;
    border-radius: 8px;
    text-align: center;
    margin-top: 24px;
    width: 80%;
  }
  header nav .mobile-menu .btn-cotizacion:hover {
    background-color: rgb(15.1850393701, 83.9173228346, 187.8149606299);
  }
}
#home #hero {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#home #hero .hero-bg-tilt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(1.66deg, rgba(86, 138, 189, 0) 1.41%, rgba(4, 33, 79, 0.6) 98.59%), url("../images/home_hero_desktop.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
  pointer-events: none;
}
#home #hero .container {
  position: relative;
  z-index: 2;
  padding-left: 72px;
  padding-right: 72px;
}
#home #hero .container .hero-title {
  font-weight: 700;
  font-size: 80px;
  line-height: 80px;
  color: #fff;
  margin: 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
#home #services .card {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #E2E4E9;
  border-radius: 6px;
  overflow: hidden;
  margin: 0px 12px;
  height: 480px;
  transition: transform 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
#home #services .card .image-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
#home #services .card .card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 30px 24px;
  background: linear-gradient(180deg, rgba(15, 42, 82, 0) 0%, rgba(15, 42, 82, 0.8) 60%, #0F2A52 100%);
  transition: background 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
#home #services .card .card-content .card-titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  box-sizing: border-box;
}
#home #services .card .card-content .card-titles .card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 21px;
  letter-spacing: 0%;
  color: #fff;
  margin: 0px;
  transition: transform 0.3s ease;
}
#home #services .card .card-content .card-titles .card-subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
  margin: 0px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease-in-out, max-height 0.4s ease-in-out, margin-top 0.4s ease-in-out;
  will-change: opacity, max-height;
}
#home #services .card .card-content .card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease-in-out, max-height 0.4s ease-in-out;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  justify-content: end;
  white-space: nowrap;
}
#home #services .card .card-content .card-link .card-arrow-hover {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 769px) {
  #home #services .card:hover {
    transform: translateY(-5px);
  }
  #home #services .card:hover .image-card {
    transform: scale(1.05);
  }
}
#home #services .card:hover .card-content {
  background: linear-gradient(180deg, rgba(15, 42, 82, 0) 0%, rgba(15, 42, 82, 0.8) 40%, #0F2A52 100%);
}
#home #services .card:hover .card-content .card-titles .card-subtitle {
  opacity: 1;
  max-height: 280px;
  margin-top: 10px;
}
#home #services .card:hover .card-content .card-titles .card-link {
  opacity: 1;
  max-height: 50px;
  margin-top: 20px;
}
#home #services .card:hover .card-content .card-titles .card-link .card-arrow-hover {
  transform: none !important;
}
#home #services {
  background-color: #E0F2FE;
  padding-top: 60px;
  padding-bottom: 90px;
}
#home #services .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}
#home #services .services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  padding-left: 12px;
  padding-right: 12px;
}
#home #services .services-header .top-header {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 9px 24px;
  background-color: #fff;
  border-radius: 100px;
  border: 0px;
}
#home #services .services-header .top-header .services-header-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #0569A0;
  margin: 0px;
}
#home #services .services-header .top-titles {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}
#home #services .services-header .top-titles .services-title {
  font-weight: 700;
  font-size: 46px;
  line-height: 52px;
  letter-spacing: 0.14px;
  text-align: center;
  margin: 0px;
  color: #0F2A52;
}
#home #services .services-header .top-titles .services-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: center;
  margin: 0px;
  color: #5A6A85;
}
#home #services .services-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  margin: 60px;
}
#home #traffics {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 90px;
}
#home #traffics .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}
#home #traffics .container .traffics-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  padding-left: 12px;
  padding-right: 12px;
}
#home #traffics .container .traffics-header .top-header {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 9px 24px;
  background-color: #E0F2FE;
  border-radius: 100px;
  border: 0px;
}
#home #traffics .container .traffics-header .top-header .traffics-header-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #0569A0;
  margin: 0px;
}
#home #traffics .container .traffics-header .top-titles {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}
#home #traffics .container .traffics-header .top-titles .traffics-title {
  font-weight: 700;
  font-size: 46px;
  line-height: 52px;
  letter-spacing: 0.14px;
  text-align: center;
  margin: 0px;
  color: #0F2A52;
}
#home #traffics .container .traffics-header .top-titles .traffics-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: center;
  margin: 0px;
  color: #5A6A85;
}
#home #traffics .container .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#home #traffics .container .accordion .accordion-item {
  border: 2px solid #DCE8FA;
  border-radius: 6px;
  padding: 12px;
}
#home #traffics .container .accordion .accordion-item[data-color=sam-color-active]:has(.accordion-header[aria-expanded=true]) {
  border-color: #65BC08;
}
#home #traffics .container .accordion .accordion-item[data-color=sam-color-active]:has(.accordion-header[aria-expanded=true]) .accordion-body {
  background-color: rgba(101, 188, 8, 0.1);
}
#home #traffics .container .accordion .accordion-item[data-color=ase-color-active]:has(.accordion-header[aria-expanded=true]) {
  border-color: #1369EB;
}
#home #traffics .container .accordion .accordion-item[data-color=ase-color-active]:has(.accordion-header[aria-expanded=true]) .accordion-body {
  background-color: rgba(19, 105, 235, 0.1);
}
#home #traffics .container .accordion .accordion-item[data-color=zgt-color-active]:has(.accordion-header[aria-expanded=true]) {
  border-color: #F59008;
}
#home #traffics .container .accordion .accordion-item[data-color=zgt-color-active]:has(.accordion-header[aria-expanded=true]) .accordion-body {
  background-color: rgba(245, 144, 8, 0.1);
}
#home #traffics .container .accordion .accordion-item[data-color=mercosur-color-active]:has(.accordion-header[aria-expanded=true]) {
  border-color: #C90633;
}
#home #traffics .container .accordion .accordion-item[data-color=mercosur-color-active]:has(.accordion-header[aria-expanded=true]) .accordion-body {
  background-color: rgba(201, 6, 51, 0.1);
}
#home #traffics .container .accordion .accordion-item:has(.accordion-button[aria-expanded=true]) {
  box-shadow: 0px 8px 24px -4px rgba(14, 165, 233, 0.2509803922);
}
#home #traffics .container .accordion .accordion-item .accordion-header {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#home #traffics .container .accordion .accordion-item .accordion-header .accordion-button {
  background-color: #fff;
  align-items: start;
  border: 0px;
  padding: 0px;
  box-shadow: unset;
}
#home #traffics .container .accordion .accordion-item .accordion-header .accordion-button::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url("../images/accordion-down-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.3s ease-in-out;
  margin-left: auto;
}
#home #traffics .container .accordion .accordion-item .accordion-header .accordion-button .accordion-button-text h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #0F2A52;
}
#home #traffics .container .accordion .accordion-item .accordion-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #5A6A85;
  margin: 0px;
}
#home #traffics .container .accordion .accordion-item .accordion-header[aria-expanded=true] .accordion-button::after {
  transform: rotate(-180deg);
}
#home #traffics .container .accordion .accordion-item .accordion-header[aria-expanded=false] .accordion-button::after {
  transform: rotate(0deg);
}
#home #traffics .container .accordion .accordion-item .accordion-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: #E0F2FE;
  padding: 12px;
  border: 0px;
  border-radius: 5px;
}
#home #traffics .container .accordion .accordion-item .accordion-body h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0%;
  color: #18244E;
}
#home #traffics .container .accordion .accordion-item .accordion-body p {
  font-family: Aller;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0%;
  color: #5A6A85;
  margin: 0px;
}
#home #traffics .container .accordion .accordion-item .accordion-body p strong {
  color: #18244E;
}
#home #traffics .container .accordion .accordion-item .mobile-map {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  box-shadow: 0px 2px 8px 2px rgba(213, 223, 229, 0.7490196078);
  border-radius: 5px;
  border: 0px;
  width: -webkit-fill-available;
}
#home #traffics .container .maps-container {
  display: grid;
  grid-template-areas: "map";
}
#home #traffics .container .maps-container .map-img {
  grid-area: map;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
#home #traffics .container .maps-container .map-img.active {
  opacity: 1;
}

#accordionTraffics .accordion-button:not(.collapsed) {
  pointer-events: none;
  cursor: default;
}

@media (max-width: 768px) {
  #home #hero {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
  #home #hero .hero-bg-tilt {
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(180deg, rgba(7, 28, 78, 0) 81.73%, rgba(7, 28, 78, 0.4) 100%), url("../images/home_hero_mobile.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.5);
    will-change: transform;
    pointer-events: none;
  }
  #home #hero .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  #home #hero .container .hero-title {
    font-size: 50px;
    line-height: 58px;
    text-align: center;
  }
  #home #hero .conocer-mas {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
  }
  #home #hero .conocer-mas a {
    padding: 10px 30px 9px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: rgba(10, 48, 76, 0.3019607843);
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    border: 0px;
    color: #fff;
    text-decoration: unset;
  }
  #home #traffics .container {
    padding-bottom: 40px;
  }
  #home #traffics .container .traffics-header {
    gap: 30px;
  }
  #home #traffics .container .traffics-header .traffics-titles .traffics-title {
    font-size: 40px;
    line-height: 46px;
  }
  #home #traffics .container .traffics-header .traffics-titles .traffics-subtitle {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 992px) {
  #home #services {
    padding-bottom: 40px;
  }
  #home #services .container {
    padding-left: 0;
    padding-right: 0;
  }
  #home #services .container .services-header {
    gap: 30px;
  }
  #home #services .container .services-header .top-titles .services-title {
    font-size: 40px;
    line-height: 46px;
  }
  #home #services .container .services-header .top-titles .services-subtitle {
    font-size: 18px;
    line-height: 18px;
  }
  #home #services .container .services-mobile-scroll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 60px 0 60px 0;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-wrapper .card-scroll-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
    display: flex;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-wrapper .card-scroll-item .card {
    width: 100%;
    height: 430px;
    margin: 0;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-wrapper .card-scroll-item .card .card-content {
    background: linear-gradient(180deg, rgba(15, 42, 82, 0) 0%, rgba(15, 42, 82, 0.8) 40%, #0F2A52 100%);
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-wrapper .card-scroll-item .card .card-content .card-titles .card-subtitle {
    opacity: 1;
    max-height: 240px;
    margin-top: 10px;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-wrapper .card-scroll-item .card .card-content .card-link {
    opacity: 1;
    max-height: 50px;
    margin-top: 20px;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-wrapper .card-scroll-item .card .card-content .card-link .card-arrow-hover {
    display: block;
    transform: none !important;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-wrapper::before, #home #services .container .services-mobile-scroll .mobile-scroll-wrapper::after {
    content: "";
    flex: 0 0 7.5%;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-indicators .indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0569A0;
    border: none;
    padding: 0;
    opacity: 0.5;
    transition: opacity 0.3s;
  }
  #home #services .container .services-mobile-scroll .mobile-scroll-indicators .indicator.active {
    opacity: 1;
  }
}
#cotizacion #title {
  background-color: #020638;
  background-image: linear-gradient(90deg, #020638 0%, #020638 50%, rgba(2, 6, 56, 0.7) 70%, rgba(2, 6, 56, 0.3) 100%), url("../images/cotizacion-header.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% 100%, 50% auto;
}
#cotizacion #title .titles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 90px;
  padding-bottom: 90px;
}
#cotizacion #title .titles .main-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 52px;
  letter-spacing: 0.14px;
  color: #90D0FF;
  margin: 0px;
}
#cotizacion #title .titles .sub-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #E5F4FF;
  margin: 0px;
}
#cotizacion #main-content {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(225, 234, 240, 0.12);
}
#cotizacion #main-content .formulario {
  padding: 48px 48px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #fff;
  border: 1px solid #E1EAF0;
  border-radius: 6px;
}
#cotizacion #main-content .formulario .form-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #0F0F2C;
}
#cotizacion #main-content .formulario .form-label {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #071C4E;
}
#cotizacion #main-content .formulario .form-control {
  padding: 10px 18px;
  border: 1px solid #B9B9CE;
  border-radius: 6px;
  background-color: #F6F9FB;
}
#cotizacion #main-content .formulario textarea::-moz-placeholder, #cotizacion #main-content .formulario input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #B9BACE;
}
#cotizacion #main-content .formulario textarea::placeholder,
#cotizacion #main-content .formulario input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #B9BACE;
}
#cotizacion #main-content .formulario textarea {
  min-height: 100px;
}
#cotizacion #main-content .formulario .form-button button {
  padding: 16px 24px;
  border: 0px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0px;
  color: #fff;
  background-color: #1369EB;
}
#cotizacion #main-content .dudas {
  padding: 60px;
  border: 1px solid #E9EFF4;
  border-radius: 6px;
  background-color: rgba(233, 239, 244, 0.48);
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  justify-content: center;
}
#cotizacion #main-content .dudas .titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
#cotizacion #main-content .dudas .titles .main-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: 0.14px;
  text-align: center;
  color: #071C4E;
}
#cotizacion #main-content .dudas .titles .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  color: #5A6A85;
}
#cotizacion #main-content .dudas .buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}
#cotizacion #main-content .dudas .buttons a {
  padding: 9px 24px;
  border: 1px solid rgba(7, 28, 78, 0.7);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0px;
  cursor: pointer;
  position: relative;
  color: #071C4E;
  transition: all 0.3s ease;
  text-decoration: none;
}
#cotizacion #main-content .dudas .buttons a .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
#cotizacion #main-content .dudas .buttons a .icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: none;
}
#cotizacion #main-content .dudas .buttons a .icon-wrapper .duda-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
#cotizacion #main-content .dudas .buttons a .icon-wrapper .duda-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#cotizacion #main-content .dudas .buttons a:hover {
  background-color: #1369EB;
  border-color: #1369EB;
  color: white;
}
#cotizacion #main-content .dudas .buttons a:hover .icon-wrapper .duda-icon {
  opacity: 0;
}
#cotizacion #main-content .dudas .buttons a:hover .icon-wrapper .duda-icon-hover {
  opacity: 1;
}
#cotizacion #main-content .dudas .buttons a.whatsapp-bg:hover {
  background-color: #25D366;
  border-color: #25D366;
}
@media (max-width: 768px) {
  #cotizacion #title {
    background: linear-gradient(rgba(2, 6, 56, 0.8), rgba(2, 6, 56, 0.8)), #020638 url("./../images/title-bg-mobile.png") no-repeat right center/contain;
    padding-top: 40px;
  }
  #cotizacion #title .titles .main-title {
    font-weight: 400;
    font-size: 42px;
  }
  #cotizacion #title .titles .sub-title {
    font-weight: 400;
    font-size: 20px;
  }
}

#contacto #title {
  background-color: #020638;
  background-image: linear-gradient(90deg, #020638 0%, #020638 50%, rgba(2, 6, 56, 0.7) 70%, rgba(2, 6, 56, 0.3) 100%), url("../images/contacto-header-desktop.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% 100%, 50% auto;
}
#contacto #title .titles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 90px;
  padding-bottom: 90px;
}
#contacto #title .titles .main-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 52px;
  letter-spacing: 0.14px;
  color: #90D0FF;
  margin: 0px;
}
#contacto #title .titles .sub-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #E5F4FF;
  margin: 0px;
}
#contacto #main-content {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(225, 234, 240, 0.12);
}
#contacto #main-content .formulario {
  padding: 48px 48px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #fff;
  border: 1px solid #E1EAF0;
  border-radius: 6px;
}
#contacto #main-content .formulario .form-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #0F0F2C;
}
#contacto #main-content .formulario .form-label {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #071C4E;
}
#contacto #main-content .formulario .form-select,
#contacto #main-content .formulario .form-control {
  padding: 10px 18px;
  border: 1px solid #B9B9CE;
  border-radius: 6px;
  background-color: #F6F9FB;
}
#contacto #main-content .formulario textarea::-moz-placeholder, #contacto #main-content .formulario input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #B9BACE;
}
#contacto #main-content .formulario textarea::placeholder,
#contacto #main-content .formulario input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #B9BACE;
}
#contacto #main-content .formulario textarea {
  min-height: 100px;
}
#contacto #main-content .formulario .form-button button {
  padding: 16px 24px;
  border: 0px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0px;
  color: #fff;
  background-color: #1369EB;
}
#contacto #main-content .dudas {
  padding: 60px;
  border: 1px solid #E9EFF4;
  border-radius: 6px;
  background-color: rgba(233, 239, 244, 0.48);
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  justify-content: center;
}
#contacto #main-content .dudas .titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
#contacto #main-content .dudas .titles .main-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  letter-spacing: 0.14px;
  text-align: center;
  color: #071C4E;
}
#contacto #main-content .dudas .titles .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  color: #5A6A85;
}
#contacto #main-content .dudas .buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}
#contacto #main-content .dudas .buttons a {
  padding: 9px 24px;
  border: 1px solid rgba(7, 28, 78, 0.7);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0px;
  cursor: pointer;
  position: relative;
  color: #071C4E;
  transition: all 0.3s ease;
  text-decoration: none;
}
#contacto #main-content .dudas .buttons a img {
  width: 18px;
}
#contacto #main-content .dudas .buttons a .duda-icon-hover {
  display: none;
}
#contacto #main-content .dudas .buttons a:hover {
  background-color: #1369EB;
  border-color: #1369EB;
  color: white;
}
#contacto #main-content .dudas .buttons a:hover .duda-icon {
  display: none;
}
#contacto #main-content .dudas .buttons a:hover .duda-icon-hover {
  display: inline-block;
}
#contacto #main-content .dudas .buttons a.whatsapp-bg:hover {
  background-color: #25D366;
  border-color: #25D366;
}
#contacto #ayudarte {
  background-color: #EFF3F7;
  padding-top: 60px;
  padding-bottom: 60px;
}
#contacto #ayudarte .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.14px;
  color: #071C4E;
}
#contacto #ayudarte .help-text-container {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  padding-right: 12px;
  gap: 9px;
}
#contacto #ayudarte .help-text-container .footer-title {
  margin: 0px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #071C4E;
}
#contacto #ayudarte .help-text-container .subitems {
  display: flex;
  flex-direction: column;
}
#contacto #ayudarte .help-text-container .subitems .item-with-icon {
  padding-left: 12px;
  padding-right: 12px;
}
#contacto #ayudarte .help-text-container .subitems span {
  margin: 0px;
  padding: 6px 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0px;
  color: #071C4E;
  white-space: nowrap;
}
#contacto #ayudarte {
  /* Estilo de los links */
}
#contacto #ayudarte .help-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
#contacto #ayudarte .help-link:hover {
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  #contacto #title {
    background: linear-gradient(rgba(2, 6, 56, 0.8), rgba(2, 6, 56, 0.8)), #020638 url("./../images/title-bg-mobile.png") no-repeat right center/contain;
    padding-top: 40px;
  }
  #contacto #title .titles .main-title {
    font-weight: 400;
    font-size: 42px;
  }
  #contacto #title .titles .sub-title {
    font-weight: 400;
    font-size: 20px;
  }
}

#sobre-nosotros #title {
  background-color: #020638;
  background-image: linear-gradient(90deg, #020638 0%, #020638 50%, rgba(2, 6, 56, 0.7) 70%, rgba(2, 6, 56, 0.3) 100%), url("../images/nosotros-header-desktop.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% 100%, 50% auto;
}
#sobre-nosotros #title .titles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 90px;
  padding-bottom: 90px;
}
#sobre-nosotros #title .titles .main-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 52px;
  letter-spacing: 0.14px;
  color: #90D0FF;
  margin: 0px;
}
#sobre-nosotros #title .titles .sub-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #E5F4FF;
  margin: 0px;
}
#sobre-nosotros #quienes-somos {
  padding-top: 90px;
  padding-bottom: 90px;
  color: #071C4E;
}
#sobre-nosotros #quienes-somos .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0px;
}
#sobre-nosotros #quienes-somos .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
}
#sobre-nosotros #quienes-somos img {
  border-radius: 6px;
  border: 0px;
  width: 100%;
}
#sobre-nosotros #que-hacemos {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 90px;
  color: #071C4E;
  background-color: #E5F4FF;
}
#sobre-nosotros #que-hacemos .img-back {
  position: absolute;
  right: -30%;
  top: 50%;
  transform: translateY(-50%);
  width: 105%;
  z-index: 0;
}
#sobre-nosotros #que-hacemos .card-float {
  z-index: 1;
  background-color: #fff;
  border: 0px;
  border-radius: 6px;
}
#sobre-nosotros #que-hacemos .card-float .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0px;
}
#sobre-nosotros #que-hacemos .card-float .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
}
#sobre-nosotros #nuestro-equipo {
  padding-top: 60px;
  padding-bottom: 60px;
  color: #071C4E;
}
#sobre-nosotros #nuestro-equipo .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0px;
}
#sobre-nosotros #nuestro-equipo .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
}
#sobre-nosotros #nuestro-equipo img {
  border-radius: 6px;
  border: 0px;
  width: 100%;
}
#sobre-nosotros #trabajemos {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(233, 239, 244, 0.48);
}
#sobre-nosotros #trabajemos .titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
#sobre-nosotros #trabajemos .titles .main-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #071C4E;
}
#sobre-nosotros #trabajemos .titles .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: center;
  color: #5A6A85;
}
#sobre-nosotros #trabajemos a {
  padding: 9px 24px;
  border: 1px solid rgba(7, 28, 78, 0.7);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0px;
  cursor: pointer;
  position: relative;
  color: #071C4E;
  transition: all 0.3s ease;
  text-decoration: none;
}
#sobre-nosotros #trabajemos a .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
#sobre-nosotros #trabajemos a .icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: none;
}
#sobre-nosotros #trabajemos a .icon-wrapper .duda-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
#sobre-nosotros #trabajemos a .icon-wrapper .duda-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#sobre-nosotros #trabajemos a:hover {
  background-color: #1369EB;
  border-color: #1369EB;
  color: white;
}
#sobre-nosotros #trabajemos a:hover .icon-wrapper .duda-icon {
  opacity: 0;
}
#sobre-nosotros #trabajemos a:hover .icon-wrapper .duda-icon-hover {
  opacity: 1;
}
#sobre-nosotros #trabajemos a.whatsapp-bg:hover {
  background-color: #25D366;
  border-color: #25D366;
}
#sobre-nosotros #trabajemos a.cotizacion-bg {
  background-color: #1369EB;
  border-color: #1369EB;
  color: white;
}
#sobre-nosotros #trabajemos a.cotizacion-bg:hover {
  background-color: rgb(15.1850393701, 83.9173228346, 187.8149606299);
  border-color: rgb(15.1850393701, 83.9173228346, 187.8149606299);
}
@media (max-width: 768px) {
  #sobre-nosotros #title {
    background: linear-gradient(rgba(2, 6, 56, 0.8), rgba(2, 6, 56, 0.8)), #020638 url("./../images/title-bg-mobile.png") no-repeat right center/contain;
    padding-top: 40px;
  }
  #sobre-nosotros #title .titles .main-title {
    font-weight: 400;
    font-size: 42px;
  }
  #sobre-nosotros #title .titles .sub-title {
    font-weight: 400;
    font-size: 20px;
  }
}

#servicios #title {
  background-color: #020638;
  background-image: linear-gradient(90deg, #020638 0%, #020638 50%, rgba(2, 6, 56, 0.7) 70%, rgba(2, 6, 56, 0.3) 100%), url("../images/nosotros-header-desktop.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% 100%, 50% auto;
}
#servicios #title .titles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 90px;
  padding-bottom: 90px;
}
#servicios #title .titles .main-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 52px;
  letter-spacing: 0.14px;
  color: #90D0FF;
  margin: 0px;
}
#servicios #title .titles .sub-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #E5F4FF;
  margin: 0px;
}
#servicios #servicios-cards {
  padding: 60px 0;
  background-color: #F4F8FB;
}
#servicios #servicios-cards .service-card {
  display: flex;
  flex-direction: row;
  min-height: 400px;
  margin-bottom: 3rem;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 0 10px;
}
#servicios #servicios-cards .service-card .service-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  padding: 0px;
}
#servicios #servicios-cards .service-card .service-img-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
#servicios #servicios-cards .service-card .service-content-col {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
#servicios #servicios-cards .service-card .service-content-col .service-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #071C4E;
  margin-bottom: 25px;
}
#servicios #servicios-cards .service-card .service-content-col .service-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #7D8599;
  margin-bottom: 40px;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 15px;
  padding: 0px 15px;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid #7D8599;
  border-radius: 6px;
  background: transparent;
  color: #071C4E;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-whatsapp .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-whatsapp .icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: none;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-whatsapp .icon-wrapper .duda-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-whatsapp .icon-wrapper .duda-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-whatsapp:hover {
  background-color: #25D366;
  border-color: #25D366;
  color: #fff;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-whatsapp:hover .icon-wrapper .duda-icon {
  opacity: 0;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-whatsapp:hover .icon-wrapper .duda-icon-hover {
  opacity: 1;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background-color: #1369EB;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #1369EB;
  cursor: pointer;
  justify-content: center;
}
#servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-quote:hover {
  background-color: rgb(15.1850393701, 83.9173228346, 187.8149606299);
  border-color: rgb(15.1850393701, 83.9173228346, 187.8149606299);
}
#servicios #trabajemos {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
#servicios #trabajemos .titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
#servicios #trabajemos .titles .main-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #071C4E;
}
#servicios #trabajemos .titles .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: center;
  color: #5A6A85;
}
#servicios #trabajemos a {
  padding: 9px 24px;
  border: 1px solid rgba(7, 28, 78, 0.7);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0px;
  cursor: pointer;
  position: relative;
  color: #071C4E;
  transition: all 0.3s ease;
  text-decoration: none;
}
#servicios #trabajemos a .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
#servicios #trabajemos a .icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: none;
}
#servicios #trabajemos a .icon-wrapper .duda-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
#servicios #trabajemos a .icon-wrapper .duda-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#servicios #trabajemos a:hover {
  background-color: #1369EB;
  border-color: #1369EB;
  color: white;
}
#servicios #trabajemos a:hover .icon-wrapper .duda-icon {
  opacity: 0;
}
#servicios #trabajemos a:hover .icon-wrapper .duda-icon-hover {
  opacity: 1;
}
#servicios #trabajemos a.whatsapp-bg:hover {
  background-color: #25D366;
  border-color: #25D366;
}
#servicios #trabajemos a.cotizacion-bg {
  background-color: #1369EB;
  border-color: #1369EB;
  color: white;
}
#servicios #trabajemos a.cotizacion-bg:hover {
  background-color: rgb(15.1850393701, 83.9173228346, 187.8149606299);
  border-color: rgb(15.1850393701, 83.9173228346, 187.8149606299);
}
@media (max-width: 992px) {
  #servicios #servicios-cards .service-card {
    flex-direction: column;
    flex-wrap: wrap;
  }
  #servicios #servicios-cards .service-card .service-content-col .service-buttons {
    flex-wrap: wrap;
  }
  #servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-whatsapp,
  #servicios #servicios-cards .service-card .service-content-col .service-buttons .btn-quote {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #servicios #title {
    background: linear-gradient(rgba(2, 6, 56, 0.8), rgba(2, 6, 56, 0.8)), #020638 url("./../images/title-bg-mobile.png") no-repeat right center/contain;
    padding-top: 40px;
  }
  #servicios #title .titles .main-title {
    font-weight: 400;
    font-size: 42px;
  }
  #servicios #title .titles .sub-title {
    font-weight: 400;
    font-size: 20px;
  }
}

#noticias #title {
  background-color: #020638;
  background-image: linear-gradient(90deg, #020638 0%, #020638 50%, rgba(2, 6, 56, 0.7) 70%, rgba(2, 6, 56, 0.3) 100%), url("../images/noticias-header-desktop.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100% 100%, 50% auto;
}
#noticias #title .titles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 90px;
  padding-bottom: 90px;
}
#noticias #title .titles .main-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 52px;
  letter-spacing: 0.14px;
  color: #90D0FF;
  margin: 0px;
}
#noticias #title .titles .sub-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #E5F4FF;
  margin: 0px;
}
#noticias .section-title {
  color: #071C4E;
  font-weight: 700;
}
#noticias .featured-news {
  padding: 40px;
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}
#noticias .featured-news .badge-destacada {
  background-color: #020638;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
}
#noticias .featured-news .featured-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #071C4E;
  margin-bottom: 15px;
}
#noticias .featured-news .featured-date {
  font-weight: 600;
  font-size: 14px;
  color: #071C4E;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  border: 1px solid #071C4E;
  padding: 5px 15px;
  border-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
#noticias .featured-news .featured-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #7D8599;
  margin-bottom: 25px;
}
#noticias .featured-news .btn-featured {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #071C4E;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}
#noticias .featured-news .btn-featured:hover {
  color: #1369EB;
}
#noticias .featured-news .btn-featured:hover img {
  transform: translateX(5px);
}
#noticias .featured-news .btn-featured img {
  transition: transform 0.3s ease;
}
#noticias .featured-news .img-container {
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
#noticias .featured-news .img-container img {
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
#noticias #cards {
  padding: 70px 0px;
  background-color: #F4F8FB;
}
#noticias #cards a {
  text-decoration: none;
}
#noticias #cards .card {
  height: 100%;
  border: 1px solid #E1EAF0;
  border-radius: 6px;
}
#noticias #cards .card:hover {
  box-shadow: 0px 8px 24px -4px #D5E0E5;
}
#noticias #cards .card:hover .card-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}
#noticias #cards .card .card-img-top {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
#noticias #cards .card .card-body {
  display: flex;
  flex-direction: column;
}
#noticias #cards .card .card-body .card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #071C4E;
}
#noticias #cards .card .card-body .card-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #7D8599;
}
#noticias #cards .card .card-body .btn-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 6px;
  background-color: rgba(214, 230, 255, 0.5019607843);
  color: #071C4E;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0px;
  cursor: pointer;
  text-decoration: none;
}
#noticias #cards .btn-ver-todas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 0;
  color: #071C4E;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
#noticias #cards .btn-ver-todas:hover {
  color: #1369EB;
}
#noticias #cards .btn-ver-todas:hover img {
  transform: translateX(5px);
}
#noticias #cards .btn-ver-todas img {
  transition: transform 0.3s ease;
}
#noticias #cards .extra-news {
  display: block;
}
@media (min-width: 992px) {
  #noticias #cards .extra-news {
    display: none;
    opacity: 0;
    transform: translateY(20px);
  }
  #noticias #cards .extra-news.extra-news-visible {
    display: block;
    animation: fadeInUpNews 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}
@media (max-width: 768px) {
  #noticias #title {
    background: linear-gradient(rgba(2, 6, 56, 0.8), rgba(2, 6, 56, 0.8)), #020638 url("./../images/title-bg-mobile.png") no-repeat right center/contain;
    padding-top: 40px;
  }
  #noticias #title .titles .main-title {
    font-weight: 400;
    font-size: 42px;
  }
  #noticias #title .titles .sub-title {
    font-weight: 400;
    font-size: 20px;
  }
}

@keyframes fadeInUpNews {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#noticia #header {
  padding: 60px 0px;
  background-color: #F4F8FB;
}
#noticia #header a {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #071C4E;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}
#noticia #header a:hover {
  border-bottom: 2px solid #071C4E;
}
#noticia #header h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  letter-spacing: 0.14px;
  color: #071C4E;
}
#noticia #header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #7D8599;
}
#noticia #header .header-img {
  width: 100%;
  height: auto;
  max-height: 510px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  border-radius: 6px;
  border: none;
}
#noticia #content {
  padding: 60px 0px;
  background-color: #fff;
}
#noticia #content .content-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #071C4E;
}
#noticia #content .content-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #071C4E;
}
#noticia #content .content-img {
  width: 100%;
  border-radius: 6px;
  border: none;
}
#noticia #content .table-responsive {
  position: relative;
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(2, 6, 56, 0.06);
}
#noticia #content .table-responsive .noticias-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E2E4E9;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
}
#noticia #content .table-responsive .noticias-table th,
#noticia #content .table-responsive .noticias-table td {
  padding: 16px 20px;
  vertical-align: middle;
  border: none;
}
#noticia #content .table-responsive .noticias-table .noticias-header-main {
  background: linear-gradient(135deg, #020638 0%, #0F2A52 100%);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 22px 24px;
  border: none;
}
#noticia #content .table-responsive .noticias-table .noticias-header-sub {
  background-color: #F6F9FB;
  color: #071C4E;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 16px;
  border-bottom: 2px solid #DCE8FA;
  border-right: 1px solid #E2E4E9;
}
#noticia #content .table-responsive .noticias-table .noticias-header-sub:last-child {
  border-right: none;
}
#noticia #content .table-responsive .noticias-table tbody tr {
  transition: background-color 0.25s ease;
}
#noticia #content .table-responsive .noticias-table tbody tr:hover td {
  background-color: rgba(229, 244, 255, 0.35);
}
#noticia #content .table-responsive .noticias-table tbody td {
  background-color: #fff;
  border-bottom: 1px solid #E2E4E9;
  border-right: 1px solid rgba(226, 228, 233, 0.5);
  transition: background-color 0.25s ease;
}
#noticia #content .table-responsive .noticias-table .col-traffic {
  width: 45%;
}
#noticia #content .table-responsive .noticias-table .noticias-region {
  font-weight: 700;
  text-transform: uppercase;
  color: #071C4E;
  text-align: center;
  background-color: #fff;
  transition: background-color 0.25s ease;
}
#noticia #content .table-responsive .noticias-table .noticias-row-light {
  color: #071C4E;
}
#noticia #content .table-responsive .noticias-table .noticias-rate {
  text-align: center;
  font-weight: bold;
}
#noticia #content .table-responsive .noticias-table .noticias-rate .currency {
  font-size: 11px;
  color: #7D8599;
  font-weight: 600;
  margin-right: 3px;
}
#noticia #content .table-responsive .noticias-table .noticias-rate .amount {
  font-size: 18px;
  font-weight: 700;
  color: #0E1A36;
}
#noticia #content .table-responsive .noticias-table .noticias-rate .unit {
  font-size: 11px;
  color: #7D8599;
  font-weight: 400;
  margin-left: 3px;
}
#noticia #content .table-responsive .noticias-table .noticias-rate .empty-rate {
  color: #B9BACE;
  font-weight: normal;
  font-size: 16px;
}
@media (max-width: 768px) {
  #noticia #content .table-responsive .noticias-table {
    font-size: 13px;
  }
  #noticia #content .table-responsive .noticias-table th, #noticia #content .table-responsive .noticias-table td {
    padding: 12px 10px;
  }
  #noticia #content .table-responsive .noticias-table .noticias-header-main {
    font-size: 15px;
    padding: 16px 12px;
  }
  #noticia #content .table-responsive .noticias-table .noticias-header-sub {
    font-size: 10px;
    padding: 10px 8px;
    letter-spacing: 0.4px;
  }
  #noticia #content .table-responsive .noticias-table .noticias-rate .amount {
    font-size: 14px;
  }
  #noticia #content .table-responsive .noticias-table .noticias-rate .currency, #noticia #content .table-responsive .noticias-table .noticias-rate .unit {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  #noticia #content .table-responsive.is-scrollable::before {
    content: "↔ Deslizar para ver tarifas";
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #0E1A36;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeScrollHint 5s ease-in-out forwards;
  }
  #noticia #content .table-responsive.no-zone .noticias-table {
    min-width: 100%;
  }
  #noticia #content .table-responsive.has-zone .noticias-table {
    min-width: 100%;
  }
}
#noticia #content .content-glosary {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #071C4E;
}
#noticia #content .content-glosary p {
  margin-bottom: 10px;
}
#noticia #noticias {
  background-color: #F4F8FB;
}
#noticia #noticias #cards .related-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #071C4E;
}

@media screen and (max-width: 768px) {
  #noticia #header {
    padding-top: 90px;
    padding-bottom: 20px;
  }
  #noticia #header h1 {
    font-size: 24px;
    line-height: 30px;
  }
}
@keyframes fadeScrollHint {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  10% {
    opacity: 0.95;
    transform: translateY(0);
  }
  80% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
  }
}
footer {
  background: linear-gradient(rgba(2, 6, 56, 0.8), rgba(2, 6, 56, 0.8)), #020638 url("./../images/footer-bg-desktop-2.png") no-repeat right center/cover;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 70px 0 48px 0;
}
footer .container .logos-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
}
footer .container .nosotros-footer {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  flex-direction: row;
}
footer .container .nosotros-footer span {
  font-size: 10px;
}
footer .container .nosotros-footer img {
  padding-bottom: 3px;
}
footer .container .footer-text-container {
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  padding-right: 12px;
  gap: 9px;
}
footer .container .footer-text-container .footer-title {
  margin: 0px;
  padding: 6px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #fff;
}
footer .container .footer-text-container .subitems {
  display: flex;
  flex-direction: column;
}
footer .container .footer-text-container .subitems .item-with-icon {
  padding-left: 12px;
  padding-right: 12px;
}
footer .container .footer-text-container .subitems a {
  margin: 0px;
  padding: 6px 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0px;
  color: #A6D1F2;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .container .footer-text-container .subitems a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  footer {
    background: linear-gradient(rgba(2, 6, 56, 0.8), rgba(2, 6, 56, 0.8)), #020638 url("./../images/footer-bg-mobile.png") no-repeat center bottom/cover;
  }
  footer .container {
    padding: 60px 24px 36px 24px;
  }
  footer .container .nosotros-footer {
    justify-content: start;
  }
  .scroll-to-top {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }
  .scroll-to-top.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  .scroll-to-top img {
    width: 100%;
    height: 100%;
    display: block;
  }
}
html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Aller", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

.main-offset {
  padding-top: 108px;
}
@media (max-width: 768px) {
  .main-offset {
    padding-top: 0;
  }
}

/* Para Chrome, Safari, Edge y Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Para Firefox */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}/*# sourceMappingURL=app.css.map */