@charset "UTF-8";
/* agregar aquí todos los archivos sass parciales ej: "_archivo_parcial.sass" */
/* para revisar estilos desde el inspector del navegador, se debe generar un archivo .map
 * que ayuda a identificar en qué lineas de un archivo .sass están los estilos*/
blockquote, q {
  quotes: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption, tfoot, thead, th,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

a:focus {
  outline: 0px dotted !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  line-height: 1;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

ol, ul {
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Para utilizar las variables basta con reemplazar el atributo por el nombre de la variable en nuestro código ej: "color: $main_azul" */
/* al modificar el atributo de cualquier variable afectará a todos los selectores donde se utilizó */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @mixin nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar mixins variables llamar de la siguiente forma: @include nombre_mixin(variable1, variable2, ...) */
.swiper-button-next, .swiper-button-prev {
  background-repeat: no-repeat !important;
  background-size: 24px !important;
  z-index: 1 !important;
  width: 44px !important;
  height: 44px !important;
  top: calc(50% + 12px) !important;
  outline: none !important;
  background-color: rgba(44, 91, 171, 0.05);
}
.swiper-button-next::after, .swiper-button-prev::after {
  content: none !important;
}
@media (max-width: 426px) {
  .swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
}

.swiper-button-next {
  background-image: url("../../imag/v1/icon/ic-arrow-right-b.svg") !important;
  right: 0.5vw !important;
  background-position: 49% center !important;
}

.swiper-button-prev {
  background-image: url("../../imag/v1/icon/ic-arrow-left-b.svg") !important;
  left: 0.5vw !important;
  background-position: 52% center !important;
}

.swiper-button-disabled {
  opacity: 1 !important;
}

.swiper-navigation-icon {
  display: none;
}

.btn__primary.btn-disabled:hover, .btn__primary.btn-disabled {
  background: rgb(227, 227, 227);
  background: -moz-linear-gradient(137deg, rgb(227, 227, 227) 20%, rgb(181, 181, 181) 100%);
  background: -webkit-linear-gradient(137deg, rgb(227, 227, 227) 20%, rgb(181, 181, 181) 100%);
  background: linear-gradient(137deg, rgb(227, 227, 227) 20%, rgb(181, 181, 181) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e3e3e3",endColorstr="#b5b5b5",GradientType=1);
}

.btn__primary {
  display: inline-block;
  font-size: 1.125rem;
  padding: 22px 42px;
  min-height: 49px;
  letter-spacing: 0.2px;
  gap: 3px;
  transition: 0.3s all ease;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f26522, #f7945d);
  border: none;
  border-radius: 4px;
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-family: "BigShoulders-ExtraBold", sans-serif;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 90% 100%, 0 100%);
}
.btn__primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 426px) {
  .btn__primary {
    width: auto;
    padding: 15px 30px;
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__primary {
    width: auto;
    font-size: 0.875rem;
    padding: 15px 30px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .btn__primary {
    padding: 15px 15px;
  }
}
.btn__primary:hover {
  transition: 0.3s all ease;
}
.btn__primary.btn-disabled {
  color: #36424A;
  cursor: inherit;
}
.btn__primary .icon {
  width: 24px;
  height: 24px;
}
.btn__primary--sm {
  padding: 10px 15px;
  font-size: 0.875rem;
  min-height: auto;
  border-radius: 10px;
}
.btn__primary--sm .icon {
  width: 20px;
  height: 20px;
}
.btn__primary--md {
  padding: 15px 30px;
  min-height: auto;
}

.btn {
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .btn {
    gap: 5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn {
    gap: 5px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .btn {
    gap: 5px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .btn {
    gap: 5px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .btn {
    gap: 5px;
  }
}
.btn__center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.btn__center .btn__primary--outline {
  font-size: 1.125rem;
  font-family: "Inter18pt-Regular", sans-serif;
}
.btn__right {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.btn__spacebetween {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.btn__column {
  gap: 10px;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.btn__fixed {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10;
}
.btn__fixed.btn__primary--md {
  padding: 10px 20px;
}
.btn__icon {
  border-radius: 50%;
  background-color: #ffffff;
  padding: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  display: inline-block;
  z-index: 100;
}
@media (max-width: 426px) {
  .btn__icon {
    padding: 8px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .btn__icon {
    padding: 8px;
  }
}
.btn__icon img {
  min-width: 28px;
}
.btn__icon:hover {
  background-color: white;
  transform: scale(1.1);
}
.btn__icon:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.btn .tooltip-text {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: white;
  color: black;
  text-align: center;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: normal;
  word-wrap: break-word;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  max-width: 140px;
}
.btn .tooltip-text::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}
.btn:last-child .tooltip-text {
  left: auto;
  right: 0;
  transform: translateX(0%) translateY(10px);
}
.btn:last-child .tooltip-text::after {
  left: auto;
  right: 20%;
  transform: translateX(50%);
}
@media (max-width: 426px) {
  .btn:last-child .tooltip-text {
    padding: 12px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn:last-child .tooltip-text {
    padding: 12px;
  }
}
@media (min-width: 575px) and (max-width: 616px) {
  .btn:last-child .tooltip-text {
    padding: 7px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .btn:last-child .tooltip-text {
    padding: 12px;
  }
}
.btn:last-child .tooltip-text img {
  width: 28px;
}
@media (max-width: 426px) {
  .btn:last-child .tooltip-text img {
    width: 24px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn:last-child .tooltip-text img {
    width: 24px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .btn:last-child .tooltip-text img {
    width: 24px;
  }
}

.scroll-downs {
  position: absolute;
  z-index: 10000;
  bottom: 80px;
  border-radius: 50%;
  left: calc(50% - 20px);
  border: 1px solid #0098AA;
  padding: 27px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#return-to-top {
  position: fixed;
  bottom: 20px;
  left: calc(50% - 25px);
  border-radius: 5px;
  background-color: #E55302;
  width: 50px;
  height: 50px;
  z-index: 50;
  cursor: pointer;
  text-decoration: none;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 426px) {
  #return-to-top {
    left: 10px;
    width: 40px;
    height: 40px;
    opacity: 0.85;
    bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  #return-to-top {
    left: 10px;
    width: 40px;
    height: 40px;
    opacity: 0.85;
    bottom: 10px;
  }
}
#return-to-top img {
  width: 28px;
  margin: 0 auto;
  top: calc(50% - 14px);
  vertical-align: middle;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 426px) {
  #return-to-top img {
    width: 24px;
    top: calc(50% - 12px);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  #return-to-top img {
    width: 24px;
    top: calc(50% - 12px);
  }
}
#return-to-top:hover {
  background-color: #0098AA;
}
#return-to-top:hover img {
  top: 10px;
}

.block-head {
  padding: 0;
  margin-bottom: 40px;
  z-index: 1;
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 426px) {
  .block-head {
    margin-bottom: 20px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head {
    margin-bottom: 20px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.block-head__epig {
  font-size: 1.5rem;
  color: #000000;
  display: inline-block;
  margin-bottom: 0;
  font-family: "Inter18pt-Regular", sans-serif;
}
.block-head__title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0098AA;
  margin-bottom: 0;
  text-align: left;
  font-family: "BigShoulders-Bold", sans-serif;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .block-head__title {
    font-size: 1.875rem;
    line-height: 1.4;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__title {
    font-size: 1.875rem;
    line-height: 1.4;
  }
}
.block-head__title--lg {
  font-size: 2.875rem;
  color: #0098AA !important;
}
.block-head__title--sm {
  font-size: 34px;
}
.block-head__title--slide, .block-head__title a {
  font-size: 3.125rem;
  line-height: 1.2;
  color: #0098AA;
  margin-bottom: 30px;
  text-align: left;
  font-family: "BigShoulders-Bold", sans-serif;
}
@media (max-width: 426px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 2.375rem;
    margin-bottom: 0;
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 2.375rem;
    line-height: 1.3;
    margin-bottom: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 3.125rem;
  }
}
.block-head__title--slide::after, .block-head__title a::after {
  content: none;
}
.block-head__title--white {
  color: #ffffff;
}
.block-head__description {
  line-height: 1.6;
  font-size: 1.125rem;
  color: #0098AA;
  margin-right: 0;
  max-width: 625px;
  text-align: left;
  font-family: "Inter18pt-Regular", sans-serif;
}
@media (max-width: 426px) {
  .block-head__description {
    font-size: 0.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__description {
    font-size: 0.9375rem;
  }
}
.block-head__center .block-head__title {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.block-head__sm .block-head__title {
  font-size: 1.5rem;
}
@media (max-width: 426px) {
  .block-head__btn-lg {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__btn-lg {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 426px) {
  .block-head__btn-lg .btn__primary {
    margin: 0;
    width: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__btn-lg .btn__primary {
    margin: 0;
    width: auto;
  }
}
.block-head.form-msj {
  background: none !important;
  margin: 0 auto;
  width: 100%;
  min-height: 400px;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .block-head.form-msj {
    min-height: 300px;
    margin-top: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head.form-msj {
    min-height: 300px;
    margin-top: 30px;
  }
}
.block-head.form-msj img {
  width: 90px;
}
.block-head.form-msj .block-head__title, .block-head.form-msj .block-head__description {
  margin-top: 0;
  text-align: center;
}
.block-head.form-msj .block-head__title {
  font-size: 1.875rem;
  font-family: "BigShoulders-Bold", sans-serif;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #36424A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.preloader__inner {
  width: 400px;
  text-align: center;
  color: white;
}
@media (max-width: 426px) {
  .preloader__inner {
    width: 80%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .preloader__inner {
    width: 80%;
  }
}
.preloader__logo {
  width: 360px;
  margin: 0 auto 30px;
}
@media (max-width: 426px) {
  .preloader__logo {
    width: 300px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .preloader__logo {
    width: 300px;
  }
}
.preloader__bar {
  width: 100%;
  height: 4px;
  background: rgba(229, 81, 2, 0.2);
  overflow: hidden;
  margin-bottom: 10px;
}
.preloader__progress {
  width: 0%;
  height: 100%;
  background: #E55302;
}
.preloader__text {
  font-size: 14px;
}

.typing-text {
  overflow: hidden;
}
.typing-text .char {
  opacity: 0;
}

.card {
  transition: 0.3s all ease;
}
.card__auxi {
  height: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__head {
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__head img {
  height: 23px;
  width: auto;
}
.card > a {
  display: block;
}
.card__img {
  width: 100%;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.card__content {
  position: relative;
  width: 100%;
  text-align: left;
  border-radius: 0 0 16px 16px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__date {
  font-size: 1rem;
  color: #ffffff;
  font-family: "Inter18pt-Regular", sans-serif;
}
.card__epig {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}
.card__title {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.4;
  display: inline-block;
  text-align: left;
  font-family: "BigShoulders-Bold", sans-serif;
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__title {
    font-size: 1.125rem;
  }
}
.card__title a {
  color: #ffffff;
}
.card__title--lg {
  font-size: 1.5rem;
}
.card__title--sm {
  font-size: 1.125rem !important;
}
.card__description {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  text-align: left;
  margin-top: 15px;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card .btn__primary {
  margin-top: 30px;
}
@media (max-width: 426px) {
  .card .btn__primary {
    width: auto;
    margin: 20px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card .btn__primary {
    width: auto;
    margin: 20px 0 0;
  }
}
.card .btn__secondary {
  margin-top: 30px;
}
.card .btn {
  margin-top: 30px;
  gap: 5px;
}
@media (max-width: 426px) {
  .card .btn {
    gap: 8px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card .btn {
    gap: 8px;
  }
}
.card .btn .btn__primary {
  margin-top: 0;
}
.card__list {
  margin-top: 20px;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__list--wrap {
  gap: 3px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.card__list-item {
  color: #ffffff;
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.card__list-item a {
  color: #ffffff;
  transition: 0.3s all ease;
}
.card__list-item a:hover {
  opacity: 0.7;
}
.card__list-item img {
  width: 18px;
}
.card__list-item .card__description {
  font-size: 0.875rem;
}
.card__list-item + .card__list-item {
  margin-top: 20px;
}
.card__list-speaker {
  padding: 4px 8px 4px 4px;
  background-color: rgba(194, 207, 211, 0.1);
  border-radius: 3rem;
  gap: 8px;
  color: #ffffff;
  font-size: 0.8125rem;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.card__list-speaker img {
  width: 28px;
  border-radius: 50%;
}
.card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.card__horizontal {
  gap: 70px;
  max-width: 66vw;
  margin-left: -100px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (max-width: 426px) {
  .card__horizontal {
    gap: 20px;
    margin-bottom: 0;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal {
    gap: 20px;
    margin-bottom: 0;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal {
    gap: 20px;
    margin-bottom: 30px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.card__horizontal:last-child {
  margin-bottom: 0;
}
.card__horizontal .card__content {
  -webkit-flex: 0 0 34%;
  flex: 0 0 34%;
}
.card__horizontal .card__epig, .card__horizontal .card__title, .card__horizontal .card__description {
  text-align: left;
}
.card__horizontal .card__title {
  display: block;
  margin-bottom: 30px;
  font-size: 3.125rem;
  color: #0098AA;
  line-height: 1;
  font-family: "BigShoulders-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__horizontal .card__title {
    font-size: 1.875rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__title {
    font-size: 1.875rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal .card__title {
    font-size: 2.5rem;
  }
}
.card__horizontal .card__title .txt-highlight {
  color: #36424A;
}
.card__horizontal .card__description {
  font-size: 1.125rem;
  color: #36424A;
  line-height: 1.4;
  font-family: "Inter18pt-Regular", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal .card__description {
    font-size: 1rem;
  }
}
.card__horizontal .card__img {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  -webkit-flex: 0 0 75%;
  flex: 0 0 75%;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (max-width: 426px) {
  .card__horizontal .card__img {
    flex: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__img {
    flex: none;
  }
}
.card__horizontal .card__img.img__text .cont-tit {
  padding: 90px 70px 90px 120px;
  margin-bottom: 0;
}
.card__horizontal .btn {
  padding-top: 40px;
}
@media (max-width: 426px) {
  .card__horizontal .btn {
    padding-top: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .btn {
    padding-top: 10px;
  }
}
.card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
  box-shadow: none;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (max-width: 426px) {
  .card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
    width: auto;
    padding: 16px 30px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
    width: auto;
    padding: 16px 30px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
    margin-bottom: 10px;
    margin-left: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
    margin-bottom: 10px;
    margin-left: 0;
  }
}
.card__horizontal--md .card__title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media (max-width: 426px) {
  .card__horizontal--md .card__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--md .card__title {
    font-size: 1.5rem;
  }
}
.card__horizontal--md .card__description {
  font-size: 1rem;
}
.card__horizontal--md .card__img {
  -webkit-flex: 0 0 40%;
  flex: 0 0 40%;
}
.card__horizontal--md .btn {
  padding-top: 30px;
}
@media (max-width: 426px) {
  .card__horizontal--sm {
    margin-bottom: 40px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--sm {
    margin-bottom: 40px !important;
  }
}
.card__horizontal--sm .card__auxi {
  gap: 15px;
}
@media (max-width: 426px) {
  .card__horizontal--sm .card__auxi {
    margin-bottom: 0;
    -webkit-box-orient: inline-axis;
    -webkit-box-orient: horizontal;
    -moz-box-orient: inline-axis;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--sm .card__auxi {
    margin-bottom: 0;
    -webkit-box-orient: inline-axis;
    -webkit-box-orient: horizontal;
    -moz-box-orient: inline-axis;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal--sm .card__auxi {
    -webkit-box-orient: inline-axis;
    -webkit-box-orient: horizontal;
    -moz-box-orient: inline-axis;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.card__horizontal--sm .card__epig {
  font-size: 0.8125rem;
}
.card__horizontal--sm .card__title {
  margin-bottom: 0;
  margin-top: 7px;
  font-size: 0.875rem;
}
.card__horizontal--sm .card__content {
  padding: 0;
}
.card__horizontal--sm .card__img {
  -webkit-flex: 1 0 33.13%;
  flex: 1 0 33.13%;
}
.card__horizontal--full {
  border-radius: 0;
  padding: 70px 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
@media (max-width: 426px) {
  .card__horizontal--full {
    padding: 40px 20px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--full {
    padding: 40px 20px 20px;
  }
}
.card__horizontal--full .card__auxi {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 426px) {
  .card__horizontal--full .card__auxi {
    padding: 0;
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--full .card__auxi {
    padding: 0;
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal--full .card__auxi {
    padding: 0 20px;
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal--full .card__auxi {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .card__horizontal--full .card__auxi {
    padding: 0;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .card__horizontal--full .card__auxi {
    max-width: 1250px;
  }
}
@media (min-width: 1399px) {
  .card__horizontal--full .card__auxi {
    max-width: 90%;
  }
}
@media (min-width: 1540px) {
  .card__horizontal--full .card__auxi {
    max-width: 1400px;
  }
}
.card__horizontal--full .card__auxi .card__img {
  -webkit-flex: 1 0 47%;
  flex: 1 0 47%;
}
.card__horizontal--full .card__content {
  width: auto;
  padding: 10px 30px 10px 10px;
  -webkit-flex: 0 0 47%;
  flex: 0 0 47%;
}
@media (max-width: 426px) {
  .card__horizontal--full .card__content {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--full .card__content {
    padding: 0;
  }
}
.card__horizontal--bg {
  overflow: visible;
}
@media (max-width: 426px) {
  .card__horizontal--bg {
    padding: 20px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg {
    padding: 20px 0 0;
  }
}
.card__horizontal--bg .card__auxi {
  background-color: rgba(1, 77, 175, 0.05);
  border-radius: 20px;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 426px) {
  .card__horizontal--bg .card__auxi {
    gap: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg .card__auxi {
    gap: 0;
  }
}
@media (max-width: 426px) {
  .card__horizontal--bg .card__content {
    padding: 40px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg .card__content {
    padding: 40px 20px;
  }
}
.card__horizontal--bg .card__img {
  border-radius: 0;
  -webkit-flex: 0 0 47%;
  flex: 0 0 47%;
}
@media (max-width: 426px) {
  .card__horizontal--bg .card__img {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg .card__img {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.card__horizontal--bg .card__epig {
  color: #ffffff;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: "BigShoulders-Bold", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal--bg .card__epig {
    margin-bottom: 10px;
  }
}
.card__horizontal--bg .card__title {
  font-size: 1.875rem;
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 426px) {
  .card__horizontal--bg .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal--bg .card__title {
    line-height: 1.3;
  }
}
.card__horizontal--bg .card__date {
  font-size: 0.9375rem;
  color: #ffffff;
  margin-top: 30px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal--bg .card__date {
    margin-top: 20px;
  }
}
.card__horizontal--bg .card__description {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 30px;
}
.card__icon {
  position: relative;
  padding: 40px;
  background-color: #ffffff;
}
@media (max-width: 426px) {
  .card__icon {
    padding: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__icon {
    padding: 30px;
  }
}
.card__icon .card__auxi {
  padding: 0;
  background: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
@media (max-width: 426px) {
  .card__icon .card__auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__icon .card__auxi {
    padding: 0;
  }
}
.card__icon .card__img {
  border-radius: 50%;
  width: 74px;
  height: 74px;
  background-color: #0098AA;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.card__icon .card__img img {
  width: 44px;
}
.card__icon .card__title {
  font-size: 1.125rem;
  text-align: left;
  color: #0098AA;
  max-width: 450px;
  font-family: "BigShoulders-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__icon .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__icon .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__icon .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__icon .card__title {
    font-size: 1.25rem;
  }
}
.card__icon .card__description {
  color: #0098AA;
  line-height: 1.5;
  font-size: 0.9375rem;
}
.card__icon .card__content {
  padding: 20px 0 0;
}
@media (max-width: 426px) {
  .card__icon .card__content {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__icon .card__content {
    padding: 0;
  }
}
.card__icon .btn__primary {
  margin-top: 60px;
  width: 100%;
}
.card__bg {
  border: none;
  position: relative;
}
.card__bg .card__img::before {
  content: "";
  transition: 0.3s all ease;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.card__bg .card__img::before {
  z-index: 1;
  background: #001F70;
  background: -webkit-linear-gradient(180deg, rgba(0, 31, 112, 0) 29%, rgb(0, 31, 112) 100%);
  background: -moz-linear-gradient(180deg, rgba(0, 31, 112, 0) 29%, rgb(0, 31, 112) 100%);
  background: linear-gradient(180deg, rgba(0, 31, 112, 0) 29%, rgb(0, 31, 112) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001F70", endColorstr="#001F70", GradientType=0);
}
.card__bg .card__auxi {
  position: relative;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
.card__bg .card__auxi > a {
  display: block;
  width: 100%;
}
.card__bg .card__content {
  padding: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 2;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 426px) {
  .card__bg .card__content {
    padding: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__bg .card__content {
    padding: 30px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__bg .card__content {
    padding: 30px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__bg .card__content {
    padding: 20px;
  }
}
.card__bg .card__title {
  color: #ffffff;
  text-align: left;
  font-size: 1.625rem;
  line-height: 1.1;
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__bg .card__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__bg .card__title {
    font-size: 1.5rem;
  }
}
.card__bg .card__description {
  color: #ffffff;
  text-align: left;
  font-size: 1rem;
}
.card__bg .card__icon {
  margin: 0 auto;
  width: 34px;
  margin-top: 15px;
}
.card__bg .btn__secondary {
  margin-top: 20px;
}
@media (max-width: 426px) {
  .card__bg--full .card__content {
    padding: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__bg--full .card__content {
    padding: 40px;
  }
}
@media (max-width: 426px) {
  .card__bg--full .card__img img {
    height: 428px;
    object-fit: cover;
    object-position: top;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__bg--full .card__img img {
    height: 428px;
    object-fit: cover;
    object-position: top;
  }
}
.card__bg--txt .card__auxi::before {
  background: rgb(27, 35, 43);
  background: -moz-linear-gradient(180deg, rgba(27, 35, 43, 0) 0%, rgba(27, 35, 43, 0.8) 100%);
  background: -webkit-linear-gradient(180deg, rgba(27, 35, 43, 0) 0%, rgba(27, 35, 43, 0.8) 100%);
  background: linear-gradient(180deg, rgba(27, 35, 43, 0) 0%, rgba(27, 35, 43, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b232b",endColorstr="#1b232b",GradientType=1);
}
.card__bg--txt .card__content {
  padding: 20px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.card__bg--sm .card__description {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__bg--sm .card__logo {
  max-width: 180px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.card__bg--programa .card__img::after {
  background: #25856d;
  background: -webkit-linear-gradient(140deg, rgb(37, 133, 109) 0%, rgba(39, 45, 72, 0) 35%);
  background: -moz-linear-gradient(140deg, rgb(37, 133, 109) 0%, rgba(39, 45, 72, 0) 35%);
  background: linear-gradient(140deg, rgb(37, 133, 109) 0%, rgba(39, 45, 72, 0) 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#25856D", endColorstr="#272D48", GradientType=0);
  z-index: 1;
}
.card__link {
  border: 1px solid #0098AA;
  transition: 0.3s all ease;
}
.card__link:hover {
  background-color: #36424A;
}
.card__link .card__img {
  overflow: visible;
  width: auto;
}
.card__link .card__img img {
  width: 32px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__link .card__img img {
    width: 23px;
  }
}
.card__link .card__content {
  width: auto;
  gap: 20px;
  transition: 0.3s all ease;
  display: block;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__link .card__title {
  font-size: 1.125rem;
  color: #0098AA;
  text-transform: uppercase;
  font-family: "BigShoulders-Bold", sans-serif;
}
.card__link .card__description {
  font-size: 1rem;
  margin-top: 10px;
  color: #0098AA;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__link a {
  padding: 20px;
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__link a {
    gap: 10px;
  }
}
@media (max-width: 426px) {
  .card__link--sm a {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__link--sm a {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.card__link--sm .card__title {
  margin-bottom: 0;
}
@media (max-width: 426px) {
  .card__link--sm .card__title {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__link--sm .card__title {
    text-align: center;
  }
}
.card__txt {
  background: #ffffff;
  padding: 30px;
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .card__txt {
    padding: 15px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .card__txt {
    padding: 15px;
  }
}
.card__txt .btn__primary {
  font-family: "Inter18pt-Regular", sans-serif;
}
.card__txt--lg .card__epig {
  font-size: 1rem;
  margin-bottom: 15px;
  font-family: "BigShoulders-Bold", sans-serif;
}
.card__txt--lg .card__title {
  font-size: 1.25rem;
  font-family: "Inter18pt-Regular", sans-serif;
}
.card__txt--lg .btn__primary {
  font-family: "BigShoulders-ExtraBold", sans-serif;
}
.card__cifra {
  border: none;
  min-height: 230px;
  position: relative;
  padding: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-height: 750px) {
  .card__cifra {
    min-height: 200px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__cifra {
    min-height: 220px;
  }
}
@media (min-width: 1660px) {
  .card__cifra {
    min-height: 240px;
  }
}
.card__cifra .card__content {
  padding: 30px;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__cifra .card__content {
    padding: 20px;
  }
}
.card__cifra .card__content::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 1;
}
.card__cifra .card__title {
  font-size: 3.125rem;
  color: #ffffff;
  line-height: 1;
  font-family: "BigShoulders-Bold", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__cifra .card__title {
    font-size: 2.5rem;
  }
}
.card__cifra .card__description {
  font-size: 0.9375rem;
  color: #ffffff;
  text-align: left;
  line-height: 1.2;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  font-family: "JetBrainsMono-Regular", sans-serif;
}
@media (max-width: 426px) {
  .card__cifra .card__description {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__cifra .card__description {
    font-size: 1rem;
  }
}
.card__cifra .card__description::before {
  content: "";
  width: 52px;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  display: block;
}
.card__cifra--ocre {
  background-color: #C4C1A0;
}
.card__cifra--ocre .card__title, .card__cifra--ocre .card__description {
  color: #36424A;
}
.card__cifra--ocre .card__description::before {
  background-color: #36424A;
}
.card__cifra--orange {
  background-color: #E55302;
}
.card__cifra--grey {
  background-color: #36424A;
}
.card__cifra--cyan {
  background-color: #0098AA;
}
.card__gallery {
  position: relative;
}
.card__gallery::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 1;
  background: #000000;
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
.card__gallery .card__title {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  padding-top: 50px;
  font-size: 1.5rem;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto;
  font-family: "Inter18pt-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__gallery .card__title {
    padding: 30px 20px 0;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__gallery .card__title {
    padding: 30px 20px 0;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.card__gallery .card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  font-family: "Inter18pt-Regular", sans-serif;
}

.box-full {
  padding: 0;
  position: relative;
  z-index: 2;
}
.box-full__img:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  position: absolute;
  background: #001C41;
  background: -webkit-linear-gradient(90deg, rgba(0, 28, 65, 0.8) 0%, rgba(0, 28, 65, 0.36) 100%);
  background: -moz-linear-gradient(90deg, rgba(0, 28, 65, 0.8) 0%, rgba(0, 28, 65, 0.36) 100%);
  background: linear-gradient(90deg, rgba(0, 28, 65, 0.8) 0%, rgba(0, 28, 65, 0.36) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001C41", endColorstr="#001C41", GradientType=1);
}
@media (min-width: 767px) and (max-width: 991px) {
  .box-full__img img {
    min-height: 400px;
    object-fit: cover;
    object-position: top center;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box-full__img img {
    min-height: 400px;
    object-fit: cover;
    object-position: top center;
  }
}
.box-full__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 0 70px 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 426px) {
  .box-full__content {
    max-width: 100%;
    padding: 0 15px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-full__content {
    max-width: 100%;
    padding: 0 15px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box-full__content {
    max-width: 100%;
    padding: 0 30px 20px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.box-full__title {
  text-align: left;
  margin-left: 0;
  margin-bottom: 40px;
  font-size: 2.875rem;
  color: #ffffff;
  max-width: 700px;
  line-height: 1.4;
  font-family: "BigShoulders-Bold", sans-serif;
}
@media (max-width: 426px) {
  .box-full__title {
    font-size: 2.375rem;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-full__title {
    font-size: 2.375rem;
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box-full__title {
    max-width: 700px;
    font-size: 2.375rem;
  }
}
.box-full__description {
  max-width: 700px;
  width: 100%;
  margin-left: 0;
  font-size: 1.25rem;
  text-align: left;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter18pt-Regular", sans-serif;
}
@media (max-width: 426px) {
  .box-full__description {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-full__description {
    font-size: 1.25rem;
  }
}

.video-card {
  position: relative;
  width: 347px;
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
}
.video-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease;
}
.video-card__play::before {
  content: "";
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background-image: url("../../imag/ic-play-w.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}
.video-card__ig {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(54, 66, 74, 0.2);
  color: white;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  gap: 10px;
  transition: 0.3s all ease;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.video-card__ig img {
  width: 24px;
}
.video-card__ig:hover {
  backdrop-filter: blur(6px);
  background: rgba(54, 66, 74, 0.6);
}
.video-card.playing .video-card__play {
  opacity: 0;
  pointer-events: none;
}

.map {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 220px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  backdrop-filter: blur(5px);
}
@media (min-width: 1660px) {
  .map {
    width: 230px;
  }
}
@media (max-height: 750px) {
  .map {
    width: 200px;
    bottom: 10px;
    right: 10px;
  }
}
.map img {
  width: 100%;
  height: auto;
  display: block;
}
.map .map-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
}

a {
  text-decoration: none;
  outline: none;
  color: #000000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-image: url("../../imag/v1/icon/chevron-down-n.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 6px) 13px;
  background-size: 28px;
}

.bg-int {
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 0;
}

.bg-extralightblue {
  background-color: #36424A;
}

.bg-white {
  background-color: #ffffff;
}

body.contraste {
  background-color: #000000 !important;
  color: #ffffff !important;
}
body.contraste *, body.contraste article, body.contraste section, body.contraste .form-group .form-control {
  background-color: #000000 !important;
  color: #ffffff !important;
}
body.contraste.home .header .auxi, body.contraste.home .cont-access, body.contraste.home .menu-btn, body.contraste .menu_responsive .menu-btn:checked ~ .menu-icon .navicon, body.contraste .menu-responsive .cont-logo img, body.contraste .menu-responsive .cont-logo,
body.contraste .card__art .art__auxi .cont-btn, body.contraste .menu-responsive .menu-icon, body.contraste .switch__desktop.checked .light-txt, body.contraste .auxi, body.contraste .destacado .swiper-pagination-bullet, body.contraste .cont__row, body.contraste .header.sticky .acc-cont,
body.contraste .menu-responsive.active, body.contraste section .auxi > .cont-btn, body.contraste .dest-main .swiper.swiper-1 .swiper-pagination-bullets, body.contraste .downloads .auxi ul li a, body.contraste .acc-cont .cont-access, body.contraste .switch__desktop.checked .light-txt,
body.contraste .navbar__btns .item-icon.search-cont .search-wrapper.active .input-holder .search-icon, body.contraste .card__bg .cont-txt, body.contraste .card__bg .cont-btn, body.contraste .header .item-icon.search-cont .search-wrapper, body.contraste .hero__content,
body.contraste .hero .btn, body.contraste .card__color .card__title, body.contraste .card__color .card__description, body.contraste .hero .swiper-pagination, body.contraste .btn-icon__title, body.contraste .btn-icon__icon, body.contraste .btn-icon__icon img, body.contraste .hero__row, body.contraste .card__color .btn-group,
body.contraste .card__icon, body.contraste .card__icon img, body.contraste .btn__secondary, body.contraste .card .list, body.contraste .card .list li, body.contraste .card .list li a, body.contraste .card .list .list__content, body.contraste .card .list .list__title, body.contraste .card .list .list__detail,
body.contraste .menu-responsive .menu, body.contraste .menu-responsive .menu__links, body.contraste .menu-responsive .top-bar .btns-sec .icon img, body.contraste .form__group label, body.contraste .footer__social a img, body.contraste .header__txt, body.contraste .header__contact--blue img,
body.contraste .card__img, body.contraste .card__img img, body.contraste .card__bg .card__content, body.contraste .hero__content, body.contraste .card__color .card__title, body.contraste .card__color .card__description, body.contraste #return-to-top img, body.contraste .enc-main__banner .enc-main__content,
body.contraste .card__video .card__content, body.contraste .box__arts--bg .row, body.contraste .menu-responsive .menu__search button, body.contraste .menu-responsive .menu__search button img, body.contraste .card__dark--grad .card__content::before, body.contraste .card__dark--grad .card__content::after,
body.contraste .header .item-icon.search-cont .search-wrapper .input-holder .search-icon, body.contraste .enc-main__content, body.contraste .menu-responsive .top-bar .cont-logo a, body.contraste .footer:before, body.contraste footer:after, body.contraste .card__banner .card__auxi, body.contraste .tools a img {
  background: none !important;
}
body.contraste .menu-responsive .cont-logo, body.contraste .menu-responsive .menu-icon .navicon, body.contraste .menu-responsive .menu-icon .navicon:before, body.contraste .menu-responsive .menu-icon .navicon:after,
body.contraste .menu-responsive .top-bar .btns-sec .open-btn img,
body.contraste .header .nav .nav_cont .search-cont .search-wrapper .close:before, body.contraste .swiper-pagination-bullet-active, body.contraste .swiper-pagination .swiper-pagination-bullet-active,
body.contraste .navbar__btns .item-icon.search-cont .search-wrapper .close:before, body.contraste .navbar__btns .item-icon.search-cont .search-wrapper .close:after, body.contraste .menu-responsive .cont-search button img, body.contraste.formulario .d-flex .btn, body.contraste .step-bar li.active .img-wrap, body.contraste .step-bar li.active:before, body.contraste .wp-pagenavi span.pag_actual, body.contraste .wp-pagenavi span.actual,
body.contraste .box__carousel .swiper-button-prev, body.contraste .box__carousel .swiper-button-next, body.contraste .menu-responsive .top-bar .menu-icon .navicon:before, body.contraste .menu-responsive .top-bar .menu-icon .navicon:after, body.contraste .menu-responsive .top-bar .menu-icon .navicon,
body.contraste .switch .slider:before, body.contraste .card .list li img, body.contraste .phones-box__head .close-btn, body.contraste .menu-responsive .top-bar .btns-sec .icon, body.contraste .swiper-pagination-bullet, body.contraste .menu-responsive .menu__search button,
body.contraste .menu-responsive .accordionItemHeading figure img, body.contraste .menu-responssive .cont-logo, body.contraste .megamenu__toggle span, body.contraste .tools a {
  background-color: #ffffff !important;
}
body.contraste .header__links .sub-menu, body.contraste .header__links > li.desp:hover > a, body.contraste .header__links .sub-menu__row, body.contraste .header__links .sub-menu__row li, body.contraste .header__links .sub-menu__row li a,
body.contraste .header__links .sub-menu__title, body.contraste .header__links .sub-menu__row .sub-menu__content, body.contraste .card__txt .card__pill, body.contraste .card__color .card__content, body.contraste .btn-icon:hover, body.contraste .inner-nav-container .inner-nav .pill.active a,
body.contraste .form__group input, body.contraste .form__group select, body.contraste .form__group textarea, body.contraste .header__contact--blue, body.contraste .header__contact--blue a, body.contraste .card__map .card__content, body.contraste .card__map .card__content *,
body.contraste .card__map .horarios, body.contraste .card__map .horarios *, body.contraste .table-result th, body.contraste .footer, body.contraste .ir-arriba {
  background-color: #000000 !important;
}
body.contraste a, body.contraste p, body.contraste h1, body.contraste h2, body.contraste h3, body.contraste h4, body.contraste input::placeholder, body.contraste .breadcrumbs .breadcrumb a, body.contraste .breadcrumbs .breadcrumb:last-child, body.contraste .form-container.auxi > .auxi .link_back {
  color: #ffffff !important;
}
body.contraste .header .sec-navbar .cont-links .cont-search input, body.contraste .cont-select .auxi form select, body.contraste .form .d-flex .btn-file, body.contraste.formulario .auxi .cont-form form .form-group select, body.contraste.formulario .auxi .cont-form form .form-group input,
body.contraste .btn__main, body.contraste .btn__sec, body.contraste .switch .slider.round, body.contraste .acc-cont .cont-access, body.contraste .menu-responsive .cont-search input, body.contraste .acc-cont.active,
body.contraste .navbar__btns .item-icon.search-cont .search-wrapper .input-holder .search-input, body.contraste.articulo .anclas .subtitulos a, body.contraste .tags__item,
body.contraste .box__auxi .card__art .card__auxi, body.contraste .card__art.card__bg, body.contraste .card__art .art__auxi .cont-btn .btn__sec, body.contraste .card__art .art__auxi, body.contraste .card__art .art__auxi .cont-btn .btn__main,
body.contraste .form-container.auxi > .auxi .link_back, body.contraste .menu-responsive .menu .btn__main, body.contraste .menu-responsive .menu .btn__tert, body.contraste .tags__tag, body.contraste .menujq__head, body.contraste .card__txt--color .card__content,
body.contraste .header__links .desp__int .sub-menu__int, body.contraste .header__links .desp__int:hover > a, body.contraste .btn__primary, body.contraste .table-custom th, body.contraste .table-custom td, body.contraste .card__link, body.contraste .card__dark--grad,
body.contraste .menu-responsive .menu__links .main-link__btn, body.contraste .menu-responsive .menujq .desplegable ul, body.contraste .menu-responsive .menu__search input, body.contraste .header__links .sub-menu,
body.contraste .header .item-icon.search-cont .search-wrapper .input-holder .search-input, body.contraste .CUERPO .table-ugm thead th, body.contraste .CUERPO .table-ugm td, body.contraste .form .d-flex .file-name, body.contraste .ir-arriba {
  border: 1px solid #ffffff !important;
}
body.contraste .destacado .swiper-pagination .swiper-pagination-bullet, body.contraste .header__links .desp__int > a {
  border: 1px solid #000000 !important;
}
body.contraste .header .sec-navbar .cont-links .cont-search button, body.contraste .menu-responsive .menu-btn:checked ~ .menu-icon .navicon, body.contraste .breadcrumbs, body.contraste .destacado .swiper-pagination,
body.contraste .header .sec-navbar .cont-access li a, body.contraste .switch__desktop.checked .dark-txt, body.contraste .btn__secondary .icon, body.contraste .btn__primary .icon, body.contraste .card .btn__primary,
body.contraste .phones-box__head .close-btn img, body.contraste .menu-responsive .top-bar .menu-icon .navicon, body.contraste .box__carousel .swiper-button-prev, body.contraste .box__carousel .swiper-button-next {
  background-color: initial !important;
}
body.contraste.inter .item.destacado .cont-txt, body.contraste .acc-holder .cont-access, body.contraste .table-result thead, body.contraste .menu-responsive .accordionItemContent li a {
  border: none !important;
}
body.contraste .faq .row .cont-tabs ul li a:not(.inactive), body.contraste.formulario .d-flex .btn, body.contraste .wp-pagenavi span.pag_actual, body.contraste .wp-pagenavi span.actual,
body.contraste .btn__primary--white {
  color: #000000 !important;
}
body.contraste .header__links .sub-menu__row li a:hover {
  background-color: #000000 !important;
}
body.contraste .menu-responsive, body.contraste .header__top, body.contraste .header__bottom {
  border-bottom: 1px solid #ffffff;
}
body.contraste .footer, body.contraste .menu_bar, body.contraste .block-tabs .tab-btns a, body.contraste .bottom-bar, body.contraste .alert__cookies {
  border-top: 1px solid #ffffff;
}
body.contraste .header__links .sub-menu__int, body.contraste .header__links .sub-menu__mega {
  border-top: 0 !important;
}
body.contraste .header__links .desp__int:hover > a {
  border-bottom: 0;
}
body.contraste .header__links .sub-menu__mega {
  border-left: 0 !important;
  border-right: 0 !important;
}
body.contraste .header .item-icon .ic-access {
  background-image: url(../../imag/v1/icon/ic-access-w.svg);
}
body.contraste .header .item-icon .ic-access.change {
  background-image: url(../../imag/v1/icon/ic-close-w.svg);
}
body.contraste .form__group select, body.contraste .filter__select select {
  background-image: url(../../imag/v1/icon/chevron-down-w.svg);
}
body.contraste .menu-responsive .menujq__head::after {
  background-image: url(../../imag/v1/icon/chevron-down-w.svg);
}
body.contraste .header .item-icon.search-cont .search-wrapper.active .input-holder .search-icon.btn .ic-search {
  background-image: url("../../imag/v1/icon/ic-search-w.svg") !important;
}
body.contraste .header .menu-responsive .top-bar .menu-icon .navicon {
  background-image: url("../../imag/v1/icon/ic-menu-w.svg");
}
body.contraste .menu-responsive .menu .cont-access .access .switch .slider::after {
  background-image: url(../../imag/v1/icon/ic-sun-w.svg);
}
body.contraste .menu-responsive .top-bar .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
body.contraste .switch__desktop.checked .dark-txt {
  color: #3D434D !important;
}
body.contraste .navbar__btns .item-icon .ic-access:not(.change) {
  background-color: #ffffff !important;
  border-radius: 50%;
}
body.contraste .navbar__btns .item-icon.search-cont .search-wrapper .input-holder .search-icon .ic-search,
body.contraste .navbar__btns .item-icon.search-cont .search-wrapper.active .input-holder .search-icon.btn .ic-search {
  background-image: url(../../imag/v1/icon/ic_search_d_w.svg);
}
body.contraste .header__nav .navbar__links > li.desp > a {
  background-image: url(../../imag/v1/icon/chevron_down_w.svg);
  background-size: 16px;
}
body.contraste .btn__primary--blur {
  background-color: rgba(255, 255, 255, 0.2);
}
body.contraste .txt-light, body.contraste .footer__overlay {
  display: none !important;
}
body.contraste .txt-dark {
  display: block !important;
}

.wp-pagenavi {
  font-size: 0.9375rem;
  font-family: "Inter18pt-Regular", sans-serif;
  margin: 50px 0 0;
  padding: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .wp-pagenavi {
    padding: 0;
    margin-top: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi {
    padding: 0;
    margin-top: 40px;
  }
}
.wp-pagenavi a {
  padding: 14px 18px;
  margin-right: 10px;
  transition: 0.2s all ease;
  display: block;
  border-radius: 10px;
  color: #0098AA;
  background-color: #ffffff;
  font-family: "BigShoulders-Bold", sans-serif;
}
@media (max-width: 426px) {
  .wp-pagenavi a {
    padding: 12px 16px;
    margin-right: 5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi a {
    padding: 12px 16px;
    margin-right: 5px;
  }
}
.wp-pagenavi a:hover {
  background-color: #0098AA;
  color: #ffffff;
}
.wp-pagenavi a.page {
  margin-right: 17px;
}
.wp-pagenavi span {
  display: inline-block;
  padding: 15px 20px;
  margin-right: 10px;
  font-family: "BigShoulders-Bold", sans-serif;
}
@media (max-width: 426px) {
  .wp-pagenavi span {
    padding: 12px 16px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi span {
    padding: 12px 16px;
  }
}

.wp-pagenavi span.pag_actual, .wp-pagenavi span.actual {
  color: #ffffff;
  background-color: #0098AA;
  border-radius: 12px;
}

.menujq > ul > li > ul {
  display: none;
}

.breadcrumbs {
  padding: 0 0 15px;
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 426px) {
  .breadcrumbs {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs .breadcrumb {
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Inter18pt-Regular", sans-serif;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.breadcrumbs .breadcrumb:after {
  content: "/";
  position: relative;
  display: inline-block;
  padding: 0 5px;
  width: 16px;
  height: 16px;
  margin-left: 3px;
  margin-right: 3px;
  color: #ffffff;
}
.breadcrumbs .breadcrumb:last-child:after {
  content: none;
}
.breadcrumbs .breadcrumb a {
  color: #ffffff;
  transition: 0.3s all ease;
  text-decoration: none;
}
.breadcrumbs .breadcrumb a:hover {
  color: #0098AA;
}

.chart-container {
  height: 450px;
}

.bg-blue .apexcharts-text, .bg-blue .apexcharts-title-text, .bg-blue .apexcharts-menu-icon svg {
  fill: #ffffff;
}
.bg-blue .apexcharts-legend-text {
  color: #ffffff !important;
}

.wrap-car {
  position: relative;
}
.wrap-car .swiper-5 {
  margin: 0 50px;
  position: initial;
}
@media (max-width: 426px) {
  .wrap-car .swiper-5 {
    margin: 0 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wrap-car .swiper-5 {
    margin: 0 20px;
  }
}
.wrap-car .swiper-5 .swiper-slide {
  width: 220px;
  height: inherit !important;
}
.wrap-car .swiper-5 .swiper-button-prev, .wrap-car .swiper-5 .swiper-button-next {
  top: calc(50% - 35px);
}

.swiper-container {
  position: static;
  max-width: 92%;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 426px) {
  .swiper-container {
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper-container {
    max-width: 100%;
  }
}
.swiper-container.swiper-6 {
  max-width: 100%;
  padding: 0 2px;
}

.swiper {
  padding: 24px 0;
}
@media (max-width: 426px) {
  .swiper {
    padding: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper {
    padding: 0 !important;
  }
}
.box__carousel .swiper-1sl .swiper-button-disabled {
  opacity: 0 !important;
}

.prod-content {
  position: relative;
  overflow: hidden;
}
.prod-content .swiper-slide {
  height: auto !important;
  margin-bottom: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media (max-width: 426px) {
  .prod-content .swiper-slide {
    width: 60%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .prod-content .swiper-slide {
    width: 60%;
  }
}
.prod-content .swiper-slide .card__art {
  margin-bottom: 0;
}

.swiper-wrapper {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: stretch !important;
  -moz-box-align: stretch !important;
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
  align-items: stretch !important;
  height: auto !important;
}

.swiper-slide {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  height: auto !important;
}
.swiper-slide .cont-txt {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1 1 0%;
  flex: 1 1 0%;
}
.swiper-slide + .swiper-slide {
  margin-top: 0 !important;
}

.swiper-button-next, .swiper-button-prev {
  outline: none;
  margin-top: -40px !important;
}
@media (max-width: 426px) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}

.swiper-pagination {
  position: relative;
  bottom: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .swiper-pagination {
    bottom: 10px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper-pagination {
    bottom: 10px !important;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  height: 10px;
  width: 10px;
  margin: 0 7px !important;
  transition: 0.2s all ease;
  border-radius: 50%;
  opacity: 0.5;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 40px;
  background-color: #E55302;
  border-radius: 3rem;
}

.articulo .art-content .swiper {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  -webkit-flex: 0 1 90%;
  flex: 0 1 90%;
}
@media (max-width: 426px) {
  .articulo .art-content .swiper {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .art-content .swiper {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .art-content .swiper {
    -webkit-flex: 0 1 90%;
    flex: 0 1 90%;
  }
}
.articulo .art-content .gallery-thumbs {
  height: 100px;
  box-sizing: border-box;
  padding: 10px 0;
  margin-top: 10px;
}
.articulo .art-content .gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.articulo .art-content .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.articulo .art-content .swiper-pointer-events {
  touch-action: pan-y;
}
.articulo .art-content .swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0 0 20px 0 !important;
  z-index: 1;
  position: relative;
}
.articulo .art-content .swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.articulo .art-content .swiper-android .swiper-slide, .articulo .art-content .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.articulo .art-content .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.articulo .art-content .swiper-slide {
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  transition-property: transform;
}
.articulo .art-content .mySwiper {
  box-sizing: border-box;
  padding: 10px 0;
}
.articulo .art-content .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition-property: transform;
  background-size: cover;
  background-position: center;
}
@media (max-width: 426px) {
  .articulo .art-content .mySwiper .swiper-slide {
    width: 25% !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .art-content .mySwiper .swiper-slide {
    width: 25% !important;
  }
}
.articulo .art-content .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.articulo .art-content .mySwiper .swiper-slide-thumb-active img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.box__arts .row {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  margin-left: -20px;
  gap: 20px 0;
}
@media (max-width: 426px) {
  .box__arts .row {
    gap: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts .row {
    gap: 0;
  }
}
.box__arts .row .col {
  border-left-width: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.box__arts {
  padding: 60px 0 0;
}
@media (max-width: 426px) {
  .box__arts {
    padding: 30px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts {
    padding: 30px 0 0;
  }
}

.header {
  padding: 30px 4vw;
  z-index: 1000;
  position: fixed;
  transition: 0.3s all ease;
  width: 100%;
}
.header__logo img {
  width: 336px;
}
@media (max-width: 426px) {
  .header__logo img {
    width: 75%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__logo img {
    width: 75%;
  }
}
.header.sticky {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

/* --- Mega menu desplegable --- */
.megamenu {
  position: absolute;
  top: 0;
  right: 0;
  width: 660px;
  background-color: #ffffff;
  overflow: hidden;
  height: 100vh;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  transform: translateX(100%);
}
@media (max-width: 426px) {
  .megamenu {
    width: 85%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .megamenu {
    width: 85%;
  }
}
.megamenu.active {
  opacity: 1;
  right: 0;
  transform: translateX(0);
}
.megamenu {
  /* --- Icono hamburguesa --- */
}
.megamenu__toggle {
  background-color: #E55302;
  padding: 8px 12px;
  gap: 9px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .megamenu__toggle {
    top: 30px;
    right: 25px;
  }
}
@media (min-width: 1024px) and (max-width: 1470px) {
  .megamenu__toggle {
    right: 25px;
  }
}
.megamenu__toggle {
  /* --- Animación X --- */
}
.megamenu__toggle.active .megamenu__button span:nth-child(1) {
  width: 100%;
  transform: rotate(45deg) translate(7px, 6px);
}
.megamenu__toggle.active .megamenu__button span:nth-child(2) {
  opacity: 0;
}
.megamenu__toggle.active .megamenu__button span:nth-child(3) {
  width: 100%;
  transform: rotate(-45deg) translate(7px, -6px);
}
.megamenu__text {
  color: #ffffff;
  font-size: 0.9375rem;
  font-family: "JetBrainsMono-Medium", sans-serif;
}
@media (max-width: 426px) {
  .megamenu__text {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .megamenu__text {
    display: none;
  }
}
.megamenu__button {
  width: 30px;
  height: 30px;
  transition: 0.3s all ease;
  padding: 5px 2px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.megamenu__button span {
  display: block;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  width: 100%;
}
.megamenu__button span:first-child {
  width: 60%;
}
.megamenu__button span:nth-child(2) {
  width: 80%;
}
.megamenu {
  /* --- Contenido del menú --- */
}
.megamenu__inner {
  gap: 30px;
  padding: 27px 20px;
  height: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.megamenu__column {
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  padding-right: 10px;
}
@media (max-width: 426px) {
  .megamenu__column {
    overflow-y: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .megamenu__column {
    overflow-y: auto;
  }
}
.megamenu__column::-webkit-scrollbar {
  width: 10px;
}
.megamenu__column::-webkit-scrollbar-track {
  background: #dae7f0;
  border-radius: 10px;
}
.megamenu__column::-webkit-scrollbar-thumb {
  background: #a0b0bb;
  border-radius: 10px;
}
.megamenu__column::-webkit-scrollbar-thumb:hover {
  background: #738898;
}
.megamenu__column {
  /* SOLO Firefox */
}
@supports (scrollbar-width: thin) {
  .megamenu__column {
    scrollbar-width: thin;
    scrollbar-color: #a0b0bb #dae7f0;
  }
}
.megamenu__link {
  display: block;
  font-size: 1rem;
  color: #36424A;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  gap: 15px;
  padding: 12px 15px;
  background-color: rgba(229, 83, 2, 0.05);
  line-height: 1.3;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Inter18pt-Medium", sans-serif;
}
@media (max-width: 426px) {
  .megamenu__link {
    font-size: 0.9375rem;
    padding: 9px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .megamenu__link {
    font-size: 0.9375rem;
    padding: 9px 15px;
  }
}
.megamenu__link:hover {
  color: #E55302;
}
.megamenu__link img {
  width: 28px;
}
.megamenu__link + .megamenu__link {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.megamenu__number {
  color: #E55302;
  font-size: 1.375rem;
  font-family: "BigShoulders-Bold", sans-serif;
}
.megamenu__title {
  text-transform: uppercase;
  font-size: 1.875rem;
  color: #36424A;
  font-family: "BigShoulders-Bold", sans-serif;
}

/* --- Responsivo --- */
@media (max-width: 900px) {
  .megamenu__inner {
    flex-direction: column;
    gap: 3rem;
  }
  .megamenu__link {
    font-size: 1rem;
  }
}
.footer {
  padding: 30px 0;
  position: relative;
  z-index: 0;
  background-color: #36424A;
  overflow: hidden;
}
@media (max-width: 426px) {
  .footer {
    padding: 30px 0 60px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer {
    padding: 40px 0 50px;
  }
}
.footer .auxi {
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 426px) {
  .footer .auxi {
    padding: 0 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .auxi {
    padding: 0 18px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer .auxi {
    gap: 50px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .footer .auxi {
    gap: 50px;
    max-width: 100% !important;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .footer .auxi {
    max-width: 1250px !important;
  }
}
@media (min-width: 1399px) {
  .footer .auxi {
    max-width: 90% !important;
  }
}
.footer__logo {
  gap: 60px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .footer__logo {
    gap: 30px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__logo {
    gap: 30px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.footer__logo img {
  width: 150px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 426px) {
  .footer__logo img {
    width: 130px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__logo img {
    width: 130px;
  }
}
/* HERO */
.hero {
  position: relative;
  transition: 0.3s all ease;
  height: 100vh;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.hero::before, .hero::after {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.hero::before {
  background: #000000;
  background: -webkit-linear-gradient(65deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -moz-linear-gradient(65deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(65deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  z-index: 2;
}
.hero::after {
  z-index: 1;
  background: rgb(0, 0, 0);
  background: -webkit-linear-gradient(145deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  background: -moz-linear-gradient(145deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
.hero .video video {
  display: block;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 426px) {
  .hero .video video {
    min-height: 520px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .video video {
    min-height: 520px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero .video video {
    min-height: 500px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero .video video {
    height: 700px;
  }
}
.hero__content {
  text-align: center;
  max-width: 900px;
  display: block;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 5rem 4vw;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .hero__content {
    max-width: 100vw;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
    margin-bottom: 0;
    padding: 20px 20px 60px;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__content {
    margin-bottom: 0;
    padding: 20px 20px 60px;
    width: 100%;
    max-width: 100vw;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__content {
    padding: 20px 20px 60px;
    max-width: 100vw;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__content {
    padding: 2rem 20px;
    max-width: 100vw;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.hero__title {
  font-size: 5.625rem;
  color: #ffffff;
  line-height: 1;
  text-align: left;
  overflow: hidden;
  text-transform: uppercase;
  font-family: "BigShoulders-ExtraBold", sans-serif;
}
@media (max-width: 426px) {
  .hero__title {
    font-size: 3.125rem;
    line-height: 1.3;
  }
}
@media (max-width: 380px) {
  .hero__title {
    font-size: 36px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__title {
    font-size: 3.125rem;
    line-height: 1.3;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__title {
    font-size: 3.125rem;
    line-height: 1.3;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__title {
    font-size: 4.375rem;
    line-height: 1.2;
  }
}
.hero__title .txt-highlight {
  color: #ffffff;
  font-family: "BigShoulders-Bold", sans-serif;
}
.hero__description {
  color: #ffffff;
  padding: 0;
  line-height: 1.4;
  margin-top: 20px;
  text-align: left;
  font-size: 1.125rem;
  font-family: "Inter18pt-Medium", sans-serif;
}
@media (max-width: 426px) {
  .hero__description {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__description {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__description {
    max-width: 700px;
  }
}
.hero__img {
  width: 100%;
  flex: none;
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__img img {
  display: block;
  height: 104vh;
  width: 100%;
  position: relative;
  object-position: 50% 20%;
  object-fit: cover;
  min-height: 100vh;
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__img img {
    min-height: 460px;
    object-position: top center;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__img img {
    min-height: 460px;
    object-position: top center;
  }
}
.hero .btn {
  margin-top: 40px;
}
@media (max-width: 426px) {
  .hero .btn {
    width: 100%;
    margin-top: 30px;
    gap: 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .btn {
    width: 100%;
    margin-top: 30px;
    gap: 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 426px) {
  .hero .btn .btn__primary {
    width: 100%;
    margin: 0 auto;
    max-width: 450px;
    min-height: 63px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .btn .btn__primary {
    width: 100%;
    margin: 0 auto;
    max-width: 450px;
    min-height: 63px;
  }
}

.section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: auto;
  padding-left: 5vw;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
  padding: 120px 0;
  background-color: #36424A;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.section::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
}
.section__dark .section__title, .section__dark .section__description {
  color: #ffffff;
}
.section__dark::before {
  background: #36424A;
  background: -webkit-linear-gradient(70deg, rgba(54, 66, 74, 0.6) 20%, rgba(54, 66, 74, 0) 80%);
  background: -moz-linear-gradient(70deg, rgba(54, 66, 74, 0.6) 20%, rgba(54, 66, 74, 0) 80%);
  background: linear-gradient(70deg, rgba(54, 66, 74, 0.6) 20%, rgba(54, 66, 74, 0) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#36424A", endColorstr="#36424A", GradientType=0);
}
@media (max-width: 426px) {
  .section__dark::before {
    background: linear-gradient(168deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .section__dark::before {
    background: linear-gradient(168deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .section__dark::before {
    background: linear-gradient(168deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.section__dark .bg-overlay {
  background: rgba(54, 66, 74, 0.95);
}
.section__light .section__title, .section__light .section__description {
  color: #36424A;
}
.section__light::before {
  background: rgba(255, 255, 255, 0);
  background: -webkit-linear-gradient(100deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.6) 70%);
  background: -moz-linear-gradient(100deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.6) 70%);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.6) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF00", endColorstr="#FFFFFF", GradientType=0);
}
@media (max-width: 426px) {
  .section__light::before {
    background: linear-gradient(249deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 91%);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .section__light::before {
    background: linear-gradient(249deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 91%);
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .section__light::before {
    background: linear-gradient(249deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 91%);
  }
}
.section__light .bg-overlay {
  background: rgba(255, 255, 255, 0.7);
}
.section .grid {
  width: 100%;
}
.section__bg {
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.section__header {
  z-index: 3;
  top: 30%;
  position: relative;
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 426px) {
  .section__header {
    top: 0;
    padding: 0 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .section__header {
    top: 0;
    padding: 0 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .section__header {
    top: 0;
    padding: 0 20px;
  }
}
.section__header--right {
  -ms-flex-align: end;
  -moz-box-align: end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.section__header--right .section__title, .section__header--right .section__description {
  text-align: right;
}
.section__header--right .section__wrapper {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  -moz-box-align: end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.section__wrapper {
  max-width: 49%;
  padding: 0 4vw;
}
@media (max-width: 426px) {
  .section__wrapper {
    max-width: 100%;
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .section__wrapper {
    max-width: 100%;
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .section__wrapper {
    max-width: 100%;
    padding: 0;
  }
}
.section__title {
  font-size: 5.625rem;
  color: #ffffff;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  font-family: "BigShoulders-ExtraBold", sans-serif;
}
@media (max-height: 750px) {
  .section__title {
    font-size: 4.375rem;
  }
}
@media (max-width: 426px) {
  .section__title {
    font-size: 42px;
    line-height: 1.3;
  }
}
@media (max-width: 380px) {
  .section__title {
    font-size: 36px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .section__title {
    font-size: 42px;
    line-height: 1.3;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .section__title {
    font-size: 2.375rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .section__title {
    font-size: 3.125rem;
  }
}
.section__title .txt-highlight {
  color: #ffffff;
  font-family: "BigShoulders-Bold", sans-serif;
}
.section__description {
  color: #ffffff;
  padding: 0;
  line-height: 1.4;
  margin-top: 40px;
  text-align: left;
  font-size: 1.125rem;
  max-width: 540px;
  font-family: "Inter18pt-Regular", sans-serif;
}
@media (max-width: 426px) {
  .section__description {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .section__description {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .section__description {
    font-size: 1rem;
  }
}

.bg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.hero,
.section {
  position: relative;
  overflow: hidden;
}

.hero__img,
.section__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cifras {
  z-index: 2;
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 426px) {
  .cifras {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cifras {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cifras__wrapper {
  gap: 40px;
  max-width: 700px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (max-height: 750px) {
  .cifras__wrapper {
    gap: 20px;
  }
}
@media (max-width: 426px) {
  .cifras__wrapper {
    gap: 30px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cifras__wrapper {
    gap: 30px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .cifras__wrapper {
    max-width: 450px;
    gap: 20px;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .cifras__wrapper {
    max-width: 600px;
  }
}
@media (min-width: 1660px) {
  .cifras__wrapper {
    max-width: 800px;
  }
}
.cifras__col {
  gap: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-height: 750px) {
  .cifras__col {
    gap: 20px;
  }
}
@media (max-width: 426px) {
  .cifras__col {
    gap: 30px;
    padding: 0 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cifras__col {
    gap: 30px;
    padding: 0 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .cifras__col {
    gap: 50px;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
.cifras__col:first-child {
  padding-top: 120px;
}
@media (max-width: 426px) {
  .cifras__col:first-child {
    padding-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cifras__col:first-child {
    padding-top: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .cifras__col:first-child {
    padding-top: 80px;
  }
}
.cifras__right {
  padding-right: 40px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 426px) {
  .cifras__right {
    padding-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cifras__right {
    padding-right: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cifras__left {
  padding-left: 40px;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 426px) {
  .cifras__left {
    padding-left: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cifras__left {
    padding-left: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cifras__left .cifras__col:first-child {
  padding-top: 0 !important;
}
.cifras__left .cifras__col:last-child {
  padding-top: 120px;
}
@media (max-width: 426px) {
  .cifras__left .cifras__col:last-child {
    padding-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cifras__left .cifras__col:last-child {
    padding-top: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .cifras__left .cifras__col:last-child {
    padding-top: 80px;
  }
}
@media (max-width: 426px) {
  .cifras .card__cifra {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cifras .card__cifra {
    max-width: 400px;
    margin: 0 auto;
  }
}

.box__carousel {
  z-index: 3;
}
.box__carousel .swiper-slide {
  max-width: 1090px;
  width: auto;
}
.box__carousel .pagination-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .box__carousel .pagination-container {
    bottom: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .pagination-container {
    bottom: 40px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .pagination-container {
    bottom: 40px;
  }
}
.box__carousel .swiper-pagination {
  background-color: rgba(54, 66, 74, 0.9);
  border-radius: 3rem;
  padding: 15px;
  position: relative;
  bottom: 0;
  width: auto;
}
@media (max-width: 426px) {
  .box__carousel .swiper-pagination {
    padding: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .swiper-pagination {
    padding: 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .swiper-pagination {
    padding: 15px;
  }
}
@media (max-width: 426px) {
  .box__carousel .swiper-slide {
    max-width: 75%;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .swiper-slide {
    max-width: 75%;
    width: 100%;
  }
}
@media (max-width: 426px) {
  .box__carousel .video-card, .box__carousel .card__gallery {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .video-card, .box__carousel .card__gallery {
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .video-card {
    width: 270px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .card__gallery {
    height: 480px;
  }
}

.section__header,
.cifras,
.box__carousel {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 3;
}

@media (max-width: 1023px) {
  .section {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  .section__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .section__content {
    position: relative;
    z-index: 3;
    gap: 60px;
    padding: 100px 0;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .section__header,
  .cifras,
  .box__carousel {
    position: relative !important;
    transform: none !important;
  }
  .hero {
    transform: none !important;
    inset: 0px auto auto 0px !important;
  }
  .map {
    bottom: 10px;
    right: 10px;
    width: 45vw;
    max-width: 220px;
  }
}

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