:root {
  /* Colors */
  --digital-palette-dark-blue-2: #050627;
  --digital-palette-dark-blue: #041637;
  --digital-palette-moody-blue-1: #263652;
  --digital-palette-moody-blue-2: #1e4d75;
  --digital-palette-electric-blue: #0000fc;
  --digital-palette-sky-blue: #00aaff;
  --digital-palette-storm-gray: #aeb3bb;
  --digital-palette-cloud-gray: #e8e8e8;
  --digital-palette-error-orange: #d87e2a;
  --brand-palette-signature-black: #000000;
  --brand-palette-signature-blue: #1e09b4;
  --brand-palette-signature-white: #ffffff;

  /* Fonts */
  --desktop-h2-nb-r-44-font-family: NbInternationalPro-Regular, sans-serif;
  --desktop-h2-nb-r-44-font-size: 44px;
  --desktop-h2-nb-r-44-line-height: 110%;
  --desktop-h2-nb-r-44-font-weight: 400;
  --desktop-h2-nb-r-44-font-style: normal;
  --desktop-h3-nb-r-23-font-family: NbInternationalPro-Regular, sans-serif;
  --desktop-h3-nb-r-23-font-size: 23px;
  --desktop-h3-nb-r-23-line-height: 110%;
  --desktop-h3-nb-r-23-font-weight: 400;
  --desktop-h3-nb-r-23-font-style: normal;
  --desktop-h4-al-r-17-font-family: AllianceNo1-Regular, sans-serif;
  --desktop-h4-al-r-17-font-size: 17px;
  --desktop-h4-al-r-17-line-height: 130%;
  --desktop-h4-al-r-17-font-weight: 400;
  --desktop-h4-al-r-17-font-style: normal;
  --desktop-h5-al-r-15-font-family: AllianceNo1-Regular, sans-serif;
  --desktop-h5-al-r-15-font-size: 15px;
  --desktop-h5-al-r-15-line-height: 155%;
  --desktop-h5-al-r-15-font-weight: 400;
  --desktop-h5-al-r-15-font-style: normal;
  --desktop-h1-nb-r-50-font-family: NbInternationalPro-Regular, sans-serif;
  --desktop-h1-nb-r-50-font-size: 50px;
  --desktop-h1-nb-r-50-line-height: 110%;
  --desktop-h1-nb-r-50-font-weight: 400;
  --desktop-h1-nb-r-50-font-style: normal;
  --mobile-h1-nb-r-39-font-family: NbInternationalPro-Regular, sans-serif;
  --mobile-h1-nb-r-39-font-size: 39px;
  --mobile-h1-nb-r-39-line-height: 115%;
  --mobile-h1-nb-r-39-font-weight: 400;
  --mobile-h1-nb-r-39-font-style: normal;
  --mobile-h2-nb-r-33-font-family: NbInternationalPro-Regular, sans-serif;
  --mobile-h2-nb-r-33-font-size: 33px;
  --mobile-h2-nb-r-33-line-height: 115%;
  --mobile-h2-nb-r-33-font-weight: 400;
  --mobile-h2-nb-r-33-font-style: normal;
  --mobile-h3-nb-r-20-font-family: NbInternationalPro-Regular, sans-serif;
  --mobile-h3-nb-r-20-font-size: 20px;
  --mobile-h3-nb-r-20-line-height: 125%;
  --mobile-h3-nb-r-20-font-weight: 400;
  --mobile-h3-nb-r-20-font-style: normal;
  --mobile-h4-al-r-17-font-family: AllianceNo1-Regular, sans-serif;
  --mobile-h4-al-r-17-font-size: 17px;
  --mobile-h4-al-r-17-line-height: 150%;
  --mobile-h4-al-r-17-font-weight: 400;
  --mobile-h4-al-r-17-font-style: normal;
  --mobile-h5-al-r-15-font-family: AllianceNo1-Regular, sans-serif;
  --mobile-h5-al-r-15-font-size: 15px;
  --mobile-h5-al-r-15-line-height: 160%;
  --mobile-h5-al-r-15-font-weight: 400;
  --mobile-h5-al-r-15-font-style: normal;
}
@font-face {
  font-family: 'AllianceNo1-Regular';
  src: url('../webfonts/AllianceNo1-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NbInternationalPro-Regular';
  src: url('../webfonts/NBInternationalRegularWebfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}
body{
  background: var(--digital-palette-dark-blue-2, #050627);
}
menu, ol, ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.d-none{
  display: none!important;
}
.espace-80{
  padding: 80px 0;
}
@media (max-width: 575px){
  .espace-80{
    padding: 60px 0;
  }
}

/* -----------------------------
   Brands marquee (Home)
   ----------------------------- */
.brands-marquee{
  width: 100%;
  margin-top: 40px;
  background: var(--digital-palette-dark-blue-2, #050627);
  height: 40px;
  position: relative;
  overflow: hidden;
}

.brands-marquee__viewport{
  height: 100%;
  overflow: hidden;
}

.brands-marquee__track{
  height: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  will-change: transform;
  animation: brands-marquee var(--brands-marquee-duration, 35s) linear infinite;
}

.brands-marquee__logo {
  height: 40px;
  width: auto;
  display: block;
  opacity: 0.6;
  filter: grayscale(1);
  max-width: 140px;
  object-fit: contain;
}

@keyframes brands-marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(calc(-1 * var(--brands-marquee-distance, 0px))); }
}

@media (prefers-reduced-motion: reduce){
  .brands-marquee__track{ animation: none; transform: none; }
}
/* -----------------------------
   Simple helpers (no build step)
   ----------------------------- */
.container-1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.w-100{
  width: 100%;
}
.overhidden{
  position: relative;
  overflow: hidden;
}
.p-relative{
  position: relative;
}
.t-h2 {
  font-family: var(--desktop-h2-nb-r-44-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h2-nb-r-44-font-size, 44px);
  line-height: var(--desktop-h2-nb-r-44-line-height, 110%);
  font-weight: var(--desktop-h2-nb-r-44-font-weight, 400);
  letter-spacing: var(--desktop-h2-nb-r-44-letter-spacing, -0.02em);
}
.t-h3 {
  font-family: var(--desktop-h3-nb-r-23-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h3-nb-r-23-font-size, 23px);
  line-height: var(--desktop-h3-nb-r-23-line-height, 110%);
  font-weight: var(--desktop-h3-nb-r-23-font-weight, 400);
  letter-spacing: var(--desktop-h3-nb-r-23-letter-spacing, -0.02em);
}
.t-h4 {
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  font-weight: var(--desktop-h4-al-r-17-font-weight, 400);
  letter-spacing: var(--desktop-h4-al-r-17-letter-spacing, -0.02em);
}
.t-h5 {
  font-family: var(--desktop-h5-al-r-15-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h5-al-r-15-font-size, 15px);
  line-height: var(--desktop-h5-al-r-15-line-height, 155%);
  font-weight: var(--desktop-h5-al-r-15-font-weight, 400);
  letter-spacing: var(--desktop-h5-al-r-15-letter-spacing, -0.02em);
}
@media (max-width: 768px){
  .t-h2{
    font-size: 33px;
  }
  .t-h4{
    font-size: 15px;
  }
  .t-h3{
    font-size: 20px;
  }
}
.bg-dark {
  background: var(--digital-palette-dark-blue-2, #050627);
}
.bg-electric {
  background: var(--digital-palette-electric-blue, #0000fc);
}
.text-cloud {
  color: var(--digital-palette-cloud-gray, #e8e8e8);
}
.text-sky {
  color: var(--digital-palette-sky-blue, #00aaff);
}
.text-storm {
  color: var(--digital-palette-storm-gray, #aeb3bb);
}
.text-muted {
  color: rgba(232, 232, 232, 0.6);
}
.text-cloud a {
  color: var(--digital-palette-sky-blue, #00aaff);
  text-underline-offset: 3px;
  transition: all 0.3s;
}
.text-cloud a:hover {
  color: var(--brand-palette-signature-white, #ffffff);
}

header .list-principal{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
header .list-principal .menu-item a{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  padding: 15px 0;
  transition: color 0.3s;
}
header .list-principal .menu-item a:hover,
header .list-principal .menu-item.current-menu-item a:hover{
  color: var(--digital-palette-sky-blue, #00aaff);
}
header .site-header-menu{
  margin-left: auto;
  margin-right: 4%;
}
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  background: rgba(5, 6, 39, 0.8);
  backdrop-filter: blur(6px);
}
.site-header__inner {
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header__logo img {
  height: 25px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-nav a {
  color: var(--digital-palette-cloud-gray, #e8e8e8);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px 9px;
  border-radius: 40px;
}
.btn-pill--light {
  background: var(--digital-palette-cloud-gray, #e8e8e8);
  color: var(--digital-palette-dark-blue-2, #050627);
}
.btn-pill--light img {
  width: 12px;
  height: 12px;
}
.lang {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang button {
  width: 40px;
  height: 25px;
  border-radius: 20px;
  transition: all 0.3s;
  border: 2px solid rgba(174, 179, 187, 0.15);
  color: var(--digital-palette-cloud-gray, #e8e8e8);
}
.lang button.is-active,
.lang button:hover{
  border-color: var(--digital-palette-storm-gray, #aeb3bb);
}
.header-spacer {
  height: 70px;
}
@media (max-width: 480px){
  .btn-pill{
    padding: 10px 17px 11px;
    font-size: 15px!important;
  }
}
/* -----------------------------
   Header responsive drawer (<=1150px)
   ----------------------------- */
.site-header__burger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-header__burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--digital-palette-cloud-gray, #e8e8e8);
  transform: translateY(0);
  transition: top 0.25s ease, transform 0.25s ease;
  width: 42px;
}

.site-header__burger-line:first-child{ top: 16px; }
.site-header__burger-line:last-child{ top: 26px; }

/* Open state: both lines move to the middle and overlap (1 line). */
.site-header.is-open .site-header__burger-line{
  top: 50%;
  transform: translateY(-50%);
}

.site-header__drawer{
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  height: calc(100vh - 70px);
  background: var(--digital-palette-dark-blue-2, #050627);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  z-index: 998;
  pointer-events: none;
}
.site-header__drawer-inner{
  height: 100%;
  padding: 22px 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.site-header.is-open .site-header__drawer{
  transform: translateY(0);
  pointer-events: auto;
}
.site-header.is-open .site-header__drawer-inner{
  opacity: 1;
  transition-delay: 0.36s;
}
.site-header__drawer-top{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.site-header__drawer-menu{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.site-header__drawer-menu a{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  transition: color 0.3s;
}
.site-header__drawer-menu a:hover{
  color: var(--digital-palette-sky-blue, #00aaff);
}

@media (max-width: 1150px){
  header .site-header-menu,
  .site-header__actions{
    display: none;
  }

  .site-header__burger{
    display: inline-flex;
    margin-left: auto;
  }

  .site-header__inner{
    padding: 0 20px;
  }
}

@media (min-width: 1151px){
  .site-header__drawer{ display: none; }
}

/* -----------------------------
   CSP helpers (no inline styles)
   ----------------------------- */
.u-mt-40{ margin-top: 40px; }

.timeline-card__year{ letter-spacing: -0.02em; }
.pagina-404 {
  padding-top: 150px;
}
.page-404__content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 80px;
}
.page-404__content a{
  word-break: normal !important;
}
.page-404__content h2{
  display: flex;
}
.page-404__content h2 span{
    font-size: unset;
    margin: 0;
    line-height: unset;
    color: unset;
    margin-left: 5px;
}
.page-404__image {
  width: 100%;
  max-width: 1440px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1440 / 635.29;
}
@media (max-width: 767px){
  .pagina-404 {
    padding-top: 120px;
  }
}
@media (max-width: 575px){
  .page-404 .page-404__image.desktop{
    display: none;
  }
  .page-404 .page-404__image.mobil{
    display: block!important;
    aspect-ratio: unset;
  }
  .pagina-404 {
    padding-top: 80px;
  }
  .page-404__content h2 {
    flex-direction: column;
  }
  .page-404__content h2 span{
    margin-left: 0;
  }
}
@media (max-width: 480px){
  .pagina-404 {
    padding-top: 60px;
  }
  .page-404__content {
      padding: 0 20px 60px;
  }
}



/* Utility */
.backdrop-blur-10 {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: table;
}

/* -----------------------------
   News page (simplified markup)
   ----------------------------- */

.page-news {
  padding-top: 80px;
  padding-bottom: 0;
}
.page-news__inner {
  padding-left: 40px;
  padding-right: 40px;
}
.news-hero {
  padding-bottom: 40px;
}
.news-panel {
  position: relative;
  background: transparent;
  padding: 40px 0 80px;
}
.news-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--digital-palette-dark-blue, #041637);
  z-index: -1;
}
.news-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}

/* Custom year select (scoped to News page) */
.page-news .js-news-select {
  position: relative;
  min-width: 440px;
}

.page-news .js-news-select .news-select__native {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.page-news .js-news-select .news-select__btn {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 56px 0 16px;
  border-radius: 20px;
  border: 2px solid var(--digital-palette-moody-blue-1, #263652);
  background: var(--digital-palette-dark-blue, #041637);
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  cursor: pointer;
  position: relative;
  max-width: 440px;
}

.page-news .js-news-select .news-select__value {
  margin-left: auto;
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
}

.page-news .js-news-select .news-select__btn::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 40px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 16px;
  border: 2px solid var(--digital-palette-moody-blue-1, #263652);
  background:
    linear-gradient(var(--digital-palette-cloud-gray, #e8e8e8), var(--digital-palette-cloud-gray, #e8e8e8)) center/12px 2px no-repeat,
    linear-gradient(var(--digital-palette-cloud-gray, #e8e8e8), var(--digital-palette-cloud-gray, #e8e8e8)) center/2px 12px no-repeat;
  pointer-events: none;
}

.page-news .js-news-select.is-open .news-select__btn {
  border-radius: 20px 20px 0 0;
  border-bottom: 0;
}

/* When open, keep the trigger clean (values appear after closing) */
.page-news .js-news-select.is-open .news-select__value {
  display: none;
}

.page-news .js-news-select.is-open .news-select__btn::after {
  background:
    linear-gradient(var(--digital-palette-cloud-gray, #e8e8e8), var(--digital-palette-cloud-gray, #e8e8e8)) center/12px 2px no-repeat;
}

.page-news .js-news-select .news-select__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  margin-top: -2px;
  border: 2px solid var(--digital-palette-moody-blue-1, #263652);
  border-radius: 0 0 20px 20px;
  background: var(--digital-palette-dark-blue-2, #050627);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.55s ease, opacity 0.55s ease, transform 0.55s ease, visibility 0s linear 0.55s;
  z-index: 5;
}

.page-news .js-news-select.is-open .news-select__panel {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: max-height 0.55s ease, opacity 0.55s ease, transform 0.55s ease;
}

.page-news .js-news-select .news-select__menu {
  margin: 0;
  padding: 10px 0 24px;
}

.page-news .js-news-select .news-select__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  cursor: pointer;
  position: relative;
  user-select: none;
}
.page-news .js-news-select .news-select__option::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid rgba(232, 232, 232, 0.25);
  background: rgba(232, 232, 232, 0.1);
}
.page-news .js-news-select .news-select__option[aria-selected="true"]::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--digital-palette-cloud-gray, #e8e8e8);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.news-clear {
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  border-bottom: 1.5px solid var(--digital-palette-cloud-gray, #e8e8e8);
  padding-bottom: 4px;
  cursor: pointer;
}
.news-clear:hover {
  color: var(--digital-palette-sky-blue, #00aaff);
  border-bottom-color: var(--digital-palette-sky-blue, #00aaff);
}
.news-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 20px;
}
.news-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.3s;
}

.news-item:hover .news-item__meta::before {
  border-top-color: var(--digital-palette-sky-blue, #00aaff);
}
.news-item:hover .news-date {
  border-color: var(--digital-palette-sky-blue, #00aaff);
  color: var(--digital-palette-sky-blue, #00aaff);
}
.news-item:hover .news-more {
  color: var(--digital-palette-sky-blue, #00aaff);
}
.news-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.news-item__meta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 2px solid rgba(232, 232, 232, 0.15);
  transition: border-top-color 0.3s;
}
.news-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 20px;
  border: 2px solid rgba(232, 232, 232, 0.15);
  position: relative;
  z-index: 1;
  background: var(--digital-palette-dark-blue, #041637);
  transition: border-color 0.3s;
}
.news-divider {
  display: none;
}
.news-title {
  width: 100%;
  color: inherit;
}
.news-item__content {
  width: min(555px, 100%);
  color: var(--digital-palette-cloud-gray, #e8e8e8);
}
.news-item__content .news-title {
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  min-height: 65px;
}
.news-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 0;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  transition: border-bottom-color 0.3s, color 0.3s;
}

.news-item:hover .news-more {
  border-bottom-color: var(--digital-palette-sky-blue, #00aaff);
}
.news-pagination {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.news-pagination button {
  width: 40px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  cursor: pointer;
  position: relative;
}

.news-pagination button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 35px;
    height: 30px;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    border: 2px solid rgba(232, 232, 232, 0.35);
    transition: border-color 0.2s ease;
    pointer-events: none;
}

.news-pagination button:hover::before,
.news-pagination button:focus-visible::before {
  border-color: #e8e8e8;
}

.news-pagination span {
  display: inline-flex;
  align-items: center;
}

.news-pagination__muted{
  color: rgba(232, 232, 232, 0.8);
}
.news-pagination svg {
  display: block;
  width: 40px;
  height: 30px;
}

.news-pagination svg rect {
  display: none;
}

.news-pagination svg path {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.2s ease;
}
.news-pagination button[aria-label="Previous page"]:hover svg path,
.news-pagination button[aria-label="Previous page"]:focus-visible svg path {
  transform: translateX(-3px);
}
.news-pagination button[aria-label="Next page"]:hover svg path,
.news-pagination button[aria-label="Next page"]:focus-visible svg path {
  transform: translateX(3px);
}
@media (max-width: 767px){
  .news-grid{
    grid-template-columns: 1fr;
  }
  .news-item__content {
    width: 100%;
  }
  .news-item .news-date {
    border-color: var(--digital-palette-sky-blue, #00aaff);
    color: var(--digital-palette-sky-blue, #00aaff);
  }
  .news-item .news-item__meta::before {
    border-top-color: var(--digital-palette-sky-blue, #00aaff);
  }
  .news-pagination {
    margin-top: 60px;
  }
  .news-panel{
    padding: 40px 0 60px;
  }
}
@media (max-width: 650px){
  .news-filters{
      align-items: end;
      flex-direction: column-reverse;
  }
}
@media (max-width: 575px){
  .page-news {
      padding-top: 60px;
  }
  .page-news__inner{
    padding-left: 20px;
    padding-right: 20px;
  }
  .news-item__content .news-title {
    min-height: auto;
  }
  .news-grid{
      margin-top: 35px;
      gap: 40px 20px;
  }
}
@media (max-width: 520px){
  .news-more,
  .news-item__content .news-title {
    font-size: 15px;
  }
}
@media (max-width: 500px){
  .page-news .js-news-select .news-select__btn{
    max-width: 100%;
    height: 41px;
  }
  .page-news .js-news-select .news-select__btn::after {
    top: 49%;
  }
  .page-news .js-news-select {
    min-width: 100%;
  }
}


.footer-newsletter {
  padding: 30px 40px;
}
.footer-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-newsletter .newsletter-form {
  gap: 16px;
}
.newsletter-form input {
  width: min(520px, 46vw);
  height: 41px;
  padding: 0 17px;
  border-radius: 40px;
  border: 2px solid rgba(232, 232, 232, 0.2);
  background: rgba(232, 232, 232, 0.15);
  color: var(--digital-palette-cloud-gray, #e8e8e8);
}
.newsletter-form input:hover{
  border-color: #e8e8e8;
}
.footer-newsletter .newsletter-form input {
  width: min(440px, 42vw);
}
.footer-newsletter .btn-pill--light {
  color: var(--digital-palette-electric-blue, #0000fc);
  transition: background-color 0.3s;
}
.footer-newsletter .btn-pill--light:hover{
    background-color: #0000fc;
    color: #e8e8e8;
}
.newsletter-form input::placeholder {
  color: rgba(232, 232, 232, 0.75);
}
.footer-main {
  position: relative;
  overflow: hidden;
}
.footer-main .footer-main__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-image: url('../img/fondo-footer.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}
.footer-main__inner {
  position: relative;
  padding: 80px 40px 40px;
  min-height: 609px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 440px);
  gap: 40px;
  align-items: start;
  flex: 1;
}
.footer-contact {
  width: 440px;
  max-width: 100%;
  margin-left: auto;
  padding-top: 10px;
}
.footer-field {
  margin-top: 30px;
}
.footer-contact .t-h2 {
  margin-bottom: 10px;
}
.footer-field a {
  color: var(--digital-palette-storm-gray, #aeb3bb);
}
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
}
.footer-links--spaced {
  margin-top: 70px;
}
.footer-links a {
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  opacity: 0.85;
}
.footer-bottom {
  margin-top: auto;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  z-index: 3;
}
.footer-bottom__left {
  flex: 1;
  padding: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
}
.footer-bottom__right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  width: 440px;
  max-width: 100%;
  margin-left: auto;
}
.footer-bottom__right a {
  color: var(--digital-palette-storm-gray, #aeb3bb);
}
footer .footer-bottom-link2 a{
  margin-left: 15px;
}
@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    margin-left: 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom__right {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .site-header__inner,
  .page-404__content,
  .footer-newsletter,
  .footer-main__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.bg-blue-suave{
  background: var(--digital-palette-dark-blue, #041637);
}
.company-movement .mapa{
  position: absolute;
  top: 0;
  left: 75%;
  transform: translateX(-50%);
  width: 57%;
  z-index: 0;
}

/* -----------------------------
   Map zoom controls (no build step)
   ----------------------------- */
/* Home map (Section 4) */
.home-map{
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 700px;
  margin: 0 auto;
  overflow: hidden;
}
.home-map__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-map__hotspot{
  position: absolute;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.home-map__hotspot--1{ left: 32.3%; top: 13%; }
.home-map__hotspot--2{ left: 58%; top: 55%; }
.home-map__hotspot--3{ left: 56%; top: 82%; }
.home-map__hotspot--4{ left: 45.5%; top: 39%; }

.home-map__blur{
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.home-map__pin{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 37px;
  height: 37px;
  padding: 5px;
  border-radius: 999px;
  border: 2px solid var(--digital-palette-electric-blue, #0000fc);
  background: color-mix(in srgb, var(--digital-palette-electric-blue, #0000fc) 12%, transparent);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-map__pin-core{
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--digital-palette-electric-blue, #0000fc);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  transition: width 180ms ease, height 180ms ease;
}

/* Hover state (second capture): small center dot */
.home-map__hotspot:hover .home-map__pin-core,
.home-map__hotspot:focus-within .home-map__pin-core{
  width: 15px;
  height: 15px;
}

.home-map__zoom{
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 5;
  background: rgba(4, 22, 55, 0.9);
  border-radius: 20px;
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.home-map__zoom-group{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-map__zoom-in,
.home-map__zoom-out,
.home-map__zoom-toggle{
  width: 40px;
  height: 30px;
  border-radius: 20px;
  border: 2px solid rgba(232, 232, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-map__zoom-in:hover,
.home-map__zoom-out:hover,
.home-map__zoom-toggle:hover{
  border-color: #fff;
}
.home-map__zoom-in{
  border: none;
  width: 40px;
  height: 30px;
}
.home-map__zoom-out span{
  width: 12px;
  height: 2.5px;
  background: var(--digital-palette-cloud-gray, #e8e8e8);
  display: block;
}
.home-map__zoom-toggle img{
  width: 12px;
  height: 12px;
}

/* Home map panel (right) */
.home-map-panel{
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 440px;
  max-width: calc(100% - 80px);
  background: rgba(4, 22, 55, 0.70);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.home-map-panel__header{
  background: rgba(30, 77, 117, 0.50);
  border-radius: 12px;
  padding: 10px;
}
.home-map-panel__header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.home-map-panel__title{
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-map-panel__country{
  font-family: var(--desktop-h3-nb-r-23-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h3-nb-r-23-font-size, 23px);
  line-height: var(--desktop-h3-nb-r-23-line-height, 110%);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--digital-palette-cloud-gray, #e8e8e8);
}
.home-map-panel__nav{
  width: 40px;
  height: 30px;
}
.home-map-panel__units{
  display: flex;
  gap: 10px;
}
.home-map-panel__unit{
  width: 40px;
  height: 25px;
  border-radius: 20px;
  border: 2px solid rgba(174, 179, 187, 0.15);
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  letter-spacing: -0.02em;
  padding-top: 1px;
}
.home-map-panel__unit.is-active{
  border-color: var(--digital-palette-storm-gray, #aeb3bb);
}
.home-map-panel__stats{
  border-top: 1px solid var(--digital-palette-cloud-gray, #e8e8e8);
  margin-top: 15px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.home-map-panel__stat{
  width: 100px;
}
.home-map-panel__stat-value{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  letter-spacing: -0.02em;
}
.home-map-panel__stat-label{
  color: rgba(232, 232, 232, 0.80);
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.home-map-panel__posts{
  margin-top: 10px;
  height: 483px;
  overflow-y: auto;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.home-map-panel__posts::-webkit-scrollbar{
  width: 5px;
}
.home-map-panel__posts::-webkit-scrollbar-track{
  background: rgba(232, 232, 232, 0.10);
  border-radius: 5px;
}
.home-map-panel__posts::-webkit-scrollbar-thumb{
  background: rgba(232, 232, 232, 0.30);
  border-radius: 5px;
}

.home-map-post{
  background: rgba(4, 22, 55, 0.80);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.home-map-post__content{
  width: 175px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-map-post__meta {
  margin-bottom: 0;
}
.home-map-post__link {
  margin-top: auto !important;
}
.home-map-post__name,
.home-map-post__meta{
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  letter-spacing: -0.02em;
}
.home-map-post__name{ color: var(--digital-palette-cloud-gray, #e8e8e8); }
.home-map-post__meta{ color: rgba(232, 232, 232, 0.80); margin-top: 0; }
.home-map-post__link{
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding-bottom: 0;
  border-bottom: 1.5px solid var(--digital-palette-cloud-gray, #e8e8e8);
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  letter-spacing: -0.02em;
}
.home-map-post__img{
  flex: 1;
  height: 124px;
  border-radius: 5px;
  object-fit: cover;
}

.js-map-scene{
  position: absolute;
  inset: 0;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 260ms ease;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){
  .js-map-scene{ transition: none; }
}

.js-map-zoom{
  z-index: 5;
  user-select: none;
}
.js-map-zoom img{
  pointer-events: auto;
}
.js-map-zoom [role="button"]{
  cursor: pointer;
}

/* Accordion: hide + / - group when collapsed, keep arrow visible */
.js-map-zoom > div:first-child{
  overflow: hidden;
  max-height: 120px;
  opacity: 1;
  transition: max-height 220ms ease, opacity 220ms ease;
}
.js-map-zoom.is-collapsed > div:first-child{
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.js-map-zoom.is-collapsed{
  gap: 0;
}
.js-map-zoom > div:last-child img{
  transition: transform 220ms ease;
  transform-origin: 50% 50%;
}
.js-map-zoom.is-collapsed > div:last-child img{
  transform: rotate(180deg);
}

/* Center the right-side info panel inside the map */
.js-map-overlay--center{
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

/* -----------------------------
   Content standard (blue pages)
   ----------------------------- */
.content-standar-blue{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
}
.container-900{
  max-width: 900px;
  margin: 0 auto;
}
.content-standar-blue h1,
.content-standar-blue h2,
.content-standar-blue h3,
.content-standar-blue h4,
.content-standar-blue h5,
.content-standar-blue h6{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.content-standar-blue h1{
  font-family: var(--desktop-h1-nb-r-50-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h1-nb-r-50-font-size, 50px);
  line-height: var(--desktop-h1-nb-r-50-line-height, 110%);
}
.content-standar-blue h2{
  font-family: var(--desktop-h2-nb-r-44-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h2-nb-r-44-font-size, 44px);
  line-height: var(--desktop-h2-nb-r-44-line-height, 110%);
}
.content-standar-blue h3{
  font-family: var(--desktop-h3-nb-r-23-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h3-nb-r-23-font-size, 23px);
  line-height: var(--desktop-h3-nb-r-23-line-height, 110%);
}
.content-standar-blue h4{
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
}
.content-standar-blue h5{
  font-family: var(--desktop-h5-al-r-15-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h5-al-r-15-font-size, 15px);
  line-height: var(--desktop-h5-al-r-15-line-height, 155%);
  letter-spacing: 0;
}
.content-standar-blue p{
  font-family: var(--desktop-h5-al-r-15-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h5-al-r-15-font-size, 15px);
  line-height: var(--desktop-h5-al-r-15-line-height, 155%);
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(232, 232, 232, 0.8);
}
.content-standar-blue span{
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  font-weight: inherit;
  letter-spacing: -0.02em;
  color: rgba(232, 232, 232, 0.8);
}
.content-standar-blue a{
  color: var(--digital-palette-sky-blue, #00aaff);
}
.content-standar-blue ul{
  list-style: unset;
  margin: 20px 0 0 20px;
}
.content-standar-blue h1 + p,
.content-standar-blue h2 + p,
.content-standar-blue h3 + p,
.content-standar-blue h4 + p,
.content-standar-blue h5 + p,
.content-standar-blue h6 + p,
.content-standar-blue ul + p{
  margin-top: 15px;
}

.content-standar-blue p + h2,
.content-standar-blue p + h3,
.content-standar-blue p + h4,
.content-standar-blue p + h5,
.content-standar-blue p + h6,
.content-standar-blue ul + h2,
.content-standar-blue ul + h3,
.content-standar-blue ul + h4,
.content-standar-blue ul + h5,
.content-standar-blue ul + h6{
  margin-top: 28px;
}
.content-standar-blue span{
  margin-top: 20px;
  display: table;
}
.content-standar-blue span + p{
  margin-top: 5px;
}
.content-standar-blue p + p{
  margin-top: 12px;
}

.content-standar-blue .highlight{
  color: var(--digital-palette-sky-blue, #00aaff);
}

@media (max-width: 768px){
  .content-standar-blue h1{
    font-family: var(--mobile-h1-nb-r-39-font-family, NbInternationalPro-Regular, sans-serif);
    font-size: var(--mobile-h1-nb-r-39-font-size, 39px);
    line-height: var(--mobile-h1-nb-r-39-line-height, 115%);
  }
  .content-standar-blue h2{
    font-family: var(--mobile-h2-nb-r-33-font-family, NbInternationalPro-Regular, sans-serif);
    font-size: var(--mobile-h2-nb-r-33-font-size, 33px);
    line-height: var(--mobile-h2-nb-r-33-line-height, 115%);
  }
  .content-standar-blue h3{
    font-family: var(--mobile-h3-nb-r-20-font-family, NbInternationalPro-Regular, sans-serif);
    font-size: var(--mobile-h3-nb-r-20-font-size, 20px);
    line-height: var(--mobile-h3-nb-r-20-line-height, 125%);
  }
  .content-standar-blue h4{
    font-family: var(--mobile-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
    font-size: var(--mobile-h4-al-r-17-font-size, 17px);
    line-height: var(--mobile-h4-al-r-17-line-height, 150%);
    letter-spacing: -0.02em;
  }
  .content-standar-blue h5{
    font-family: var(--mobile-h5-al-r-15-font-family, AllianceNo1-Regular, sans-serif);
    font-size: var(--mobile-h5-al-r-15-font-size, 15px);
    line-height: var(--mobile-h5-al-r-15-line-height, 160%);
    letter-spacing: 0;
  }
  .content-standar-blue p{
    font-family: var(--mobile-h5-al-r-15-font-family, AllianceNo1-Regular, sans-serif);
    font-size: var(--mobile-h5-al-r-15-font-size, 15px);
    line-height: var(--mobile-h5-al-r-15-line-height, 160%);
    letter-spacing: 0;
  }
}
@media (max-width: 480px){
  .content-standar-blue a{
    word-break: break-all;
  }
}

/* -----------------------------
   News interno (cleanup)
   ----------------------------- */
.page-news-interno-hero{
  background: var(--digital-palette-dark-blue-2, #050627);
  width: 1440px;
  overflow: hidden;
  margin: 0 auto;
}

.page-news-interno-hero__stack{
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.page-news-interno-hero__row{
  width: 1360px;
  padding-top: 80px;
  padding-right: 230px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.page-news-interno-hero__back{
  width: 95px;
  height: 15px;
  position: relative;
  flex-shrink: 0;
}
.page-news-interno-hero__back a:hover,
.page-news-interno-hero__back a:focus-visible{
  color: var(--digital-palette-sky-blue, #00aaff);
  transition: color 0.2s ease;
}

.page-news-interno-hero__back-link-wrap{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
}

.page-news-interno-hero__content{
  width: 900px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  flex-shrink: 0;
}

.page-news-interno-hero__heading{
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.page-news-interno-hero__date{
  height: 25px;
  border-radius: 20px;
  border: 2px solid rgba(232, 232, 232, 0.15);
  padding: 5px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Hero typography (keeps HTML clean, preserves design) */
.page-news-interno-hero__back a{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  font-weight: var(--desktop-h4-al-r-17-font-weight, 400);
}

.page-news-interno-hero__date p{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-family: var(--desktop-h5-al-r-15-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h5-al-r-15-font-size, 15px);
  line-height: var(--desktop-h5-al-r-15-line-height, 155%);
  font-weight: var(--desktop-h5-al-r-15-font-weight, 400);
  letter-spacing: 0;
}

/* Match previous markup: title used H2 (44px) scale */
.page-news-interno-hero__heading h1{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-family: var(--desktop-h2-nb-r-44-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h2-nb-r-44-font-size, 44px);
  line-height: var(--desktop-h2-nb-r-44-line-height, 110%);
  font-weight: var(--desktop-h2-nb-r-44-font-weight, 400);
  letter-spacing: -0.02em;
}

/* Match previous markup: subtitle used H3 (23px) scale + sky-blue */
.page-news-interno-hero__intro h2{
  color: var(--digital-palette-sky-blue, #00aaff);
  font-family: var(--desktop-h3-nb-r-23-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h3-nb-r-23-font-size, 23px);
  line-height: var(--desktop-h3-nb-r-23-line-height, 110%);
  font-weight: var(--desktop-h3-nb-r-23-font-weight, 400);
  letter-spacing: -0.02em;
}


/* Keep .content-standar-blue typography without forcing 75ch width here */
.page-news-interno-hero .content-standar-blue h4,
.page-news-interno-hero .content-standar-blue h5,
.page-news-interno-hero .content-standar-blue p,
.page-news-interno-content .content-standar-blue h4,
.page-news-interno-content .content-standar-blue h5,
.page-news-interno-content .content-standar-blue p{
  max-width: none;
}

@media (max-width: 1439px){
  .page-news-interno-hero{
    width: 100%;
    max-width: 1440px;
  }

  .page-news-interno-hero__row{
    width: 100%;
    max-width: 1360px;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }

  .page-news-interno-hero__content{
    width: 100%;
    max-width: 900px;
  }

  .page-news-interno__hero-image{
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1024px){
  .page-news-interno-hero__row{
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-news-interno-hero__back{
    width: auto;
    height: auto;
  }

  .page-news-interno-hero__back-link-wrap{
    position: static;
  }

  .page-news-interno-hero__content{
    max-width: none;
    gap: 40px;
  }
}
@media (max-width: 991px){
  .page-news-interno-hero__row{
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px){
  .page-news-interno-hero__content{
    gap: 30px;
  }

  .page-news-interno-hero__heading{
    gap: 20px;
  }

  .page-news-interno-hero__intro{
    gap: 24px;
  }

  .page-news-interno-hero__heading h1{
    font-family: var(--mobile-h2-nb-r-33-font-family, NbInternationalPro-Regular, sans-serif);
    font-size: var(--mobile-h2-nb-r-33-font-size, 33px);
    line-height: var(--mobile-h2-nb-r-33-line-height, 115%);
    font-weight: var(--mobile-h2-nb-r-33-font-weight, 400);
  }

  .page-news-interno-hero__intro h2{
    font-family: var(--mobile-h3-nb-r-20-font-family, NbInternationalPro-Regular, sans-serif);
    font-size: var(--mobile-h3-nb-r-20-font-size, 20px);
    line-height: var(--mobile-h3-nb-r-20-line-height, 125%);
    font-weight: var(--mobile-h3-nb-r-20-font-weight, 400);
  }
}
@media (max-width: 575px){
  .page-news-interno__hero-image .desktop{
    display: none;
  }
  .page-news-interno__hero-image .mobil{
    display: block!important;
  }
}

/* -----------------------------
   News interno content (cleanup)
   ----------------------------- */
.page-news-interno-content{
  background: var(--digital-palette-dark-blue, #041637);
  width: 100%;
  overflow: hidden;
}

.page-news-interno-content__container{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.page-news-interno-content__inner{
  background: transparent;
  padding: 80px 25px;
}

.page-news-interno-content__block--center{
  align-items: center;
}

.page-news-interno-content__text{
  color: rgba(232, 232, 232, 0.8);
  font-family: var(--desktop-h5-al-r-15-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h5-al-r-15-font-size, 15px);
  line-height: var(--desktop-h5-al-r-15-line-height, 155%);
  font-weight: 400;
}

.page-news-interno-content__title{
  width: 1130px;
  max-width: 100%;
}

.page-news-interno-content__title.highlight{
  color: var(--digital-palette-sky-blue, #00aaff);
}

/* Portfolio: match screenshot layout (centered card, title aligned with card) */
.news-section-content{
  padding: 60px 20px 20px;
}
.news-section-content .page-news-interno-content__block {
  max-width: 900px;
  margin: 0 auto;
}
.page-news-interno-content .news-section-company__content h3{
  font-weight: 400;
}
/* -----------------------------
   News interno: Investor Relations Contacts
   ----------------------------- */
.news-section-company__card{
    padding: 40px 20px 80px;
    max-width: 945px;
    margin: 0 auto;
}
.news-section-company__content h3{
  margin-bottom: 26px;
}

.news-section-company__contact + .news-section-company__contact{
  margin-top: 28px;
}

.news-section-company__name{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  font-weight: var(--desktop-h4-al-r-17-font-weight, 400);
  letter-spacing: -0.02em;
}

.news-section-company__contact p{
  margin-top: 6px;
}

.news-section-company__contact p + p{
  margin-top: 4px;
}

.news-section-company__source{
  margin-top: 26px;
}

.news-section-company__footer{
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.news-section-company__footer-link{
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--digital-palette-cloud-gray, #e8e8e8);
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  font-weight: var(--desktop-h4-al-r-17-font-weight, 400);
  letter-spacing: -0.02em;
}

.news-section-company__footer-link:hover{
  color: var(--digital-palette-sky-blue, #00aaff);
  border-bottom-color: var(--digital-palette-sky-blue, #00aaff);
}
.news-section-company .news-section-company__contact p {
    margin-top: 0;
}
.news-section-company .news-section-company__contact .news-section-company__name{
  margin-bottom: 5px;
}
@media (max-width: 1439px){
  .page-news-interno-content__inner{
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px){
  .page-news-interno-content__inner{
    padding: 60px 20px;
    gap: 40px;
  }

  .news-section-company__footer{
    margin-top: 50px;
  }

  .page-news-interno-content__block{
    gap: 30px;
  }
  .news-section-company__card {
    padding: 40px 20px 60px;
  }
}
@media (max-width: 575px){
  .news-section-company__footer-link{
    font-size: 15px;
  }
}

/* News interno tables (Portfolio / Revenues / Expenses) */
.news-table-card {
  background: rgba(232, 232, 232, 0.15);
  border-radius: 20px;
  padding: 0;
  margin-top: 30px;

  /* Scroll is handled by the outer card (not the inner wrapper) */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.news-table-card::-webkit-scrollbar{
  height: 0;
}

.news-table-card__scroll {
  display: inline-block;
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  overflow: visible;
  font-size: 15px;
}

.news-table-card__scrollbar{
  display: none;
  margin-top: 20px;
  padding: 0 10px;
}

.news-table-card__scrollbar-track{
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(232, 232, 232, 0.15);
}

.news-table-card__scrollbar-thumb{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40px;
  border-radius: inherit;
  background: rgba(232, 232, 232, 0.45);
  transform: translateX(0);
  cursor: grab;
}

.news-table-card__scrollbar-thumb:active{
  cursor: grabbing;
}

.news-table-card__scrollbar.is-hidden{
  display: none;
}

@media (max-width: 1024px){
  .news-table-card__scrollbar{
    display: block;
  }
}

.news-table {
  min-width: 920px;
}

.news-table__meta {
  border-bottom: 2px solid rgba(232, 232, 232, 0.25);
  padding: 0 10px 20px;
  display: flex;
  justify-content: flex-end;
}

.news-table__cols {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 2px solid rgba(232, 232, 232, 0.25);
}

.news-table__label {
  flex: 1;
  padding: 15px 10px;
}

.news-table__col-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.news-table__col {
  width: 185px;
  padding: 15px 10px;
}

.news-table__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-table__row {
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.news-table__row--alt {
  background: rgba(232, 232, 232, 0.1);
}

.news-table__row--total {
  background: #e8e8e8;
  padding-top: 13px;
  padding-bottom: 13px;
}

.news-table__nums {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 15px 10px;
}

.news-table__num {
  width: 185px;
}

/* Portfolio table (semantic <table>) */
.news-fin-table {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0;
}

.news-fin-table__meta {
  display: flex;
  justify-content: flex-end;
  padding: 0 10px 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 10px;
}

.news-fin-table__head {
  text-align: right;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  padding: 0 10px 10px;
  font-weight: inherit;
}

.news-fin-table__head--label {
  text-align: left;
}

.news-fin-table tbody th,
.news-fin-table tbody td {
  padding: 7px 10px;
  vertical-align: top;
}

.news-fin-table tbody th {
  text-align: left;
  font-weight: inherit;
}

.news-fin-table tbody td {
  text-align: right;
  width: 185px;
}

.news-fin-table tbody tr th:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.news-fin-table tbody tr td:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.news-fin-table tbody tr:nth-child(even) th,
.news-fin-table tbody tr:nth-child(even) td {
  background: rgba(232, 232, 232, 0.1);
}
.news-fin-table__total td,
.news-fin-table__total th {
  background: #ffffff;
}

.news-fin-table tbody tr.news-fin-table__total th,
.news-fin-table tbody tr.news-fin-table__total td {
  background: #ffffff;
}

.news-section-table h3{
  color: var(--digital-palette-sky-blue, #00aaff);
  font-family: var(--desktop-h3-nb-r-23-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h3-nb-r-23-font-size, 23px);
  line-height: var(--desktop-h3-nb-r-23-line-height, 110%);
  padding: 30px 0 0;
}
.news-section-table .page-news-interno-content__block{
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.news-section-table .page-news-interno-content__block .item{
  padding-top: 20px;
}
@media (max-width: 1024px) {
  .news-table {
    min-width: 860px;
  }

  .news-fin-table {
    min-width: 860px;
  }
}

@media (max-width: 640px) {
  .news-table {
    min-width: 780px;
  }

  .news-fin-table {
    min-width: 780px;
  }

  .news-table__meta {
    padding-bottom: 15px;
  }
}
@media (max-width: 575px){
  .news-section-table .page-news-interno-content__block .item h3{
    font-size: 20px;
  }
}

/* -----------------------------
   Home: Video section (Section 7)
   ----------------------------- */
.section-home-7{
  padding: 20px 0 60px;
}

/* -----------------------------
   Home: Partnerships section (Section 6)
   ----------------------------- */
.section-home-6{
  background: var(--digital-palette-dark-blue-2, #050627);
  padding: 0 0 60px;
  overflow: hidden;
}

.home-partnerships__pattern{
  width: 100%;
  height: 281px;
  position: relative;
  overflow: hidden;
  background-color: var(--digital-palette-dark-blue-2, #050627);
  background-image: url('../img/pattern1.svg');
  background-repeat: repeat-x;
  background-size: 740px 654.36px;
  background-position: -12.48px 0;
}

.home-partnerships__pattern::before,
.home-partnerships__pattern::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 6, 39, 1) 0%, rgba(5, 6, 39, 0) 100%);
}

.home-partnerships__pattern::before{
  top: 0;
}

.home-partnerships__pattern::after{
  bottom: 0;
  transform: scaleY(-1);
}

.home-partnerships{
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: flex-start;
}

.home-partnerships__header{
  width: 100%;
  max-width: 1360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 20px;
}

.home-partnerships__title{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  font-family: var(--desktop-h2-nb-r-44-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h2-nb-r-44-font-size, 44px);
  line-height: var(--desktop-h2-nb-r-44-line-height, 110%);
  font-weight: var(--desktop-h2-nb-r-44-font-weight, 400);
  letter-spacing: -0.02em;
}

.home-partnerships__carousel{
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.home-partnerships__card{
  width: 670px;
  max-width: min(670px, calc(100vw - 40px));
  background: rgba(4, 22, 55, 0.8);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  justify-content: flex-start;
}

.home-partnerships__slide:nth-child(even) .home-partnerships__card{
  background: var(--digital-palette-dark-blue, #041637);
}

.home-partnerships__quote{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  text-align: center;
  font-family: var(--desktop-h3-nb-r-23-font-family, NbInternationalPro-Regular, sans-serif);
  font-size: var(--desktop-h3-nb-r-23-font-size, 23px);
  line-height: var(--desktop-h3-nb-r-23-line-height, 110%);
  font-weight: var(--desktop-h3-nb-r-23-font-weight, 400);
  letter-spacing: -0.02em;
}

.home-partnerships__author{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
  text-align: center;
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  font-weight: var(--desktop-h4-al-r-17-font-weight, 400);
  letter-spacing: -0.02em;
}

/* Home Partnerships (Slick) */
.section-home-6 .home-partnerships__arrows{
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: flex-end;
  height: 33px;
}

.section-home-6 .home-partnerships__slider{
  width: 100%;
}

.section-home-6 .home-partnerships__slide{
  width: 670px;
}

.section-home-6 .home-partnerships__slider.slick-slider{
  width: 100%;
}

.section-home-6 .home-partnerships__slider .slick-list{
  overflow: visible;
}

.section-home-6 .home-partnerships__slider .slick-slide{
  padding: 0 25px;
  margin: 0 8px;
}

.section-home-6 .home-partnerships__card{
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.section-home-6 .home-partnerships__slider .slick-slide .home-partnerships__card{
  opacity: 0.7;
  filter: blur(2.5px);
}

.section-home-6 .home-partnerships__slider .slick-center .home-partnerships__card{
  opacity: 1;
  filter: none;
}
.section-home-6 .home-partnerships__dots{
  margin-top: 20px;
}

.section-home-6 .home-partnerships__dots .slick-dots{
  position: static;
  display: flex;
  gap: 5px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.section-home-6 .home-partnerships__dots .slick-dots li{
  width: auto;
  height: auto;
  margin: 0;
}

.section-home-6 .home-partnerships__dots .slick-dots li button{
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--digital-palette-cloud-gray, #e8e8e8);
  opacity: 0.4;
  text-indent: -9999px;
  overflow: hidden;
}

.section-home-6 .home-partnerships__dots .slick-dots li.slick-active button{
  width: 16px;
  height: 6px;
  opacity: 1;
}
@media (max-width: 991px) {
  .section-home-6 .home-partnerships__slide {
      width: 550px;
  }
  .home-partnerships__card {
    width: 550px;
  }
}
@media (max-width: 767px) {
  .section-home-6 .home-partnerships__slide {
      width: 450px;
  }
  .home-partnerships__card {
    width: 450px;
  }
  .section-home-6 .home-partnerships__dots {
    margin-top: 0;
  }
  .home-partnerships__carousel{
    gap: 10px;
  }
  .section-home-6 .home-partnerships__slider .home-partnerships__card .home-partnerships__quote,
  .section-home-6 .home-partnerships__slider .home-partnerships__card .home-partnerships__author{
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .section-home-6 .home-partnerships__slider .slick-slide .home-partnerships__card,
  .section-home-6 .home-partnerships__slider .slick-center .home-partnerships__card {
    opacity: 1 !important;
    filter: none !important;
  }
  .section-home-6 .home-partnerships__slide {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    display: flex;
    justify-content: center;
    padding: 0 15px!important;
  }
  .section-home-6 .home-partnerships__card {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    border-radius: 16px;
    box-sizing: border-box;
  }
  .section-home-6 .home-partnerships__carousel {
    padding-left: 0;
    padding-right: 0;
  }
  .section-home-6 .home-partnerships__arrows{
    display: none;
  }
}


.home-video{
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1360 / 635;
}

.home-video__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-video__btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--digital-palette-cloud-gray, #e8e8e8);
  border-radius: 40px;
  padding: 10px 17px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.home-video__btn:hover{
    background: var(--digital-palette-moody-blue-2, #1e4d75);
}

.home-video__btn:hover .home-video__btn-text{
  color: var(--digital-palette-cloud-gray, #e8e8e8);
}

.home-video__btn:focus-visible{
  outline: 2px solid var(--digital-palette-sky-blue, #00aaff);
  outline-offset: 3px;
}

.home-video__btn-text{
  color: var(--digital-palette-electric-blue, #0000fc);
  font-family: var(--desktop-h4-al-r-17-font-family, AllianceNo1-Regular, sans-serif);
  font-size: var(--desktop-h4-al-r-17-font-size, 17px);
  line-height: var(--desktop-h4-al-r-17-line-height, 130%);
  font-weight: var(--desktop-h4-al-r-17-font-weight, 400);
  letter-spacing: -0.02em;
}

@media (max-width: 768px){
  .section-home-7{
    padding: 40px 0;
  }
}
@media (max-width: 575px){
  .home-partnerships{
    margin-top: 40px;
    gap: 40px;
  }
  .home-partnerships__header{
    flex-direction: column;
    align-items: flex-start;
  }
  .home-partnerships__title{
    font-family: var(--mobile-h2-nb-r-33-font-family, NbInternationalPro-Regular, sans-serif);
    font-size: var(--mobile-h2-nb-r-33-font-size, 33px);
    line-height: var(--mobile-h2-nb-r-33-line-height, 115%);
    font-weight: var(--mobile-h2-nb-r-33-font-weight, 400);
  }
  .home-partnerships__card{
    padding: 30px 20px;
    gap: 50px;
  }
  .home-partnerships__quote{
    font-family: var(--mobile-h3-nb-r-20-font-family, NbInternationalPro-Regular, sans-serif);
    font-size: var(--mobile-h3-nb-r-20-font-size, 20px);
    line-height: var(--mobile-h3-nb-r-20-line-height, 125%);
  }
  .home-video__btn {
    padding: 11px 17px 10px;
  }
  .home-video__btn-text{
    font-size: 15px;
  }
}

@media (max-width: 1350px){
  .BtnArrowTop {
    font-size: 15px;
    padding: 8px 17px !important;
  }
  .BtnArrowTop img{
    width: 10px;
    height: 10px;
  }
  .lang button{
    width: 36px;
    font-size: 15px;
  }
  header .site-header-menu{
    margin-right: 15px;
  }
  .site-header__actions{
    gap: 22px;
  }
  header .list-principal .menu-item a{
    font-size: 16px;
  }
  header .list-principal{
    gap: 20px;
  }
}
@media (max-width: 1150px){
  header .site-header__inner{
    z-index: 9999;
    position: relative;
    background: var(--digital-palette-dark-blue-2, #050627);
  }
  header .site-header__drawer-top{
    gap: 140px;
  }
  header.site-header.is-open .site-header__drawer{
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}
@media (max-width: 575px){
  header .site-header__drawer-top {
    gap: 0;
    justify-content: space-between;
  }
  header .site-header__drawer-menu.t-h4{
    font-size: 18px;
  }
  .lang button{
    padding-top: 1px;
  }
  .footer-main__inner{
    padding-top: 0;
    padding-bottom: 100px;
  }
  .footer-links{
    gap: 8px;
  }
  .footer-bottom__left{
    order: 2;
    margin-top: 25px;
  }
  .footer-main .footer-main__inner::before{
    bottom: -70px;
    background-position: left bottom;
    background-size: 100%;
    background-image: url('../img/decoration-footer.png');
  }
  footer .footer-bottom-link2 a{
    margin-left: 0;
    margin-right: 20px;
  }
  footer .lang{
    margin-right: 100px;
  }
  footer .footer-bottom{
    padding-top: 100px;
    gap: 12px 20px;
  }
  .footer-links {
    margin-top: 40px;
  }
  .footer-field {
    margin-top: 25px;
  }
}
.caja-suscribete{
  max-width: 555px;
}
.caja-suscribete p{
  font-size: 14px;
  color: #fff;
}
@media (max-width: 991px){
  .footer-newsletter__inner {
    flex-direction: column;
  }
}
@media (max-width: 640px){
  .caja-suscribete{
    width: 100%;
  }
  .footer-newsletter .newsletter-form{
    gap: 10px;
  }
  .footer-newsletter .newsletter-form input {
    width: min(440px, 100%);
  }
  .footer-newsletter .btn-pill--light{
    width: 130px;
    text-align: center;
    justify-content: center;
  }
  .footer-newsletter__inner {
    align-items: start;
  }
}
@media (max-width: 580px){
  .section-home-7{
    padding: 0;
  }
}

.content-standar-blue--narrow h4 + p,
.content-standar-blue--narrow h5 + p,
.content-standar-blue--narrow h6 + p{
  margin-top: 5px;
}
.content-standar-blue--narrow h1 + p,
.content-standar-blue--narrow h2 + p,
.content-standar-blue--narrow h3 + p{
  margin-top: 20px;
}

/* -----------------------------
   Company: Map section (<=767px)
   - Remove top/bottom gradient fades
   - Render map as pseudo-element behind blue text
   - Reduce vertical empty space
   ----------------------------- */
@media (max-width: 767px){
  .section-company-map .company-movement{
    height: auto !important;
    padding: 60px 0 0 !important;
  }

  /* Stop vertical centering that creates big gaps */
  .section-company-map .company-movement__content{
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 520px;
    height: auto !important;
    min-height: 500px;
    padding-left: 20px !important;
    padding-right: 20px !important;
    justify-content: space-between !important;
    gap: 0 !important;
    z-index: 2;
  }

  .section-company-map .company-movement__top{
    gap: 24px !important;
  }

  /* Remove gradient fades from custom.css */
  .section-company-map .company-movement::before{
    content: none !important;
  }

  /* Hide the inline image and use pseudo-element instead */
  .section-company-map img.mobile {
    display: block !important;
    position: absolute;
    bottom: auto;
    right: 0;
    transform: none;
    left: auto;
    max-width: 340px;
  }
  .company-movement .desktop{
    display: none;
  }
  .section-company-map .descripcion {
    min-height: 450px;
    align-content: center;
    max-width: 75vw;
    padding: 40px 0;
  }
}
@media (max-width: 700px){
  .section-company-map img.mobile {
    max-width: 240px;
    bottom: 0;
    top: auto;
    width: 100%;
  }
}
@media (max-width: 575px){
  .section-company-map .descripcion {
    max-width: 53vw;
    min-height: 460px;
  }
}
@media (max-width: 991px){
  .section-home-4{
    background: #283652;
    padding-bottom: 40px;
  }
  .section-home-4 .home-map-panel{
    background: transparent;
  }
}
@media (max-width: 575px){
  .section-home-4 .home-map__bg.desktop{
    display: none;
  }
  .section-home-4 .home-map__bg.mobile{
    display: block !important;
    position: relative;
  }
}
@media (max-width: 1400px){
  .home-map__hotspot--1 {
    left: 31.3%;
    top: 15%;
  }
  .home-map__hotspot--2 {
    left: 56%;
    top: 54%;
  }
  .home-map__hotspot--3 {
    left: 55%;
    top: 80%;
  }
  .home-map__hotspot--4{
    top: 38%;
  }
}
@media (max-width: 1200px){
  .home-map__hotspot--3 {
    left: 54%;
    top: 76%;
  }
}
@media (max-width: 1080px){
  .home-map__hotspot--1 {
    left: 29.3%;
    top: 22%;
  }
  .home-map__hotspot--3 {
    left: 54%;
    top: 73%;
  }
}
@media (max-width: 900px){
  .home-map__hotspot--1 {
    left: 25.3%;
    top: 16%;
  }
  .home-map__hotspot--4 {
    left: 44.5%;
    top: 39%;
  }
  .home-map__hotspot--2 {
    left: 57%;
    top: 53%;
  }
}
@media (max-width: 800px){
  .home-map__hotspot--1 {
    left: 21%;
  }
}
@media (max-width: 680px){
  .home-map__hotspot--1 {
    left: 15%;
  }
}
@media (max-width: 575px){
  .section-home-4 .home-map__hotspot--3 {
    left: 67%;
    top: 92%;
  }
  .section-home-4 .home-map__hotspot--2 {
    left: 71%;
    top: 58%;
  }
  .section-home-4 .home-map__hotspot--1 {
    left: 7%;
    top: 9%;
  }
  .section-home-4 .home-map__hotspot--4 {
    left: 44%;
    top: 39%;
  }
}
