@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-position: center !important;
  background-size: 35px !important;
  border-radius: 1rem;
  z-index: 1 !important;
  width: 54px !important;
  height: 54px !important;
  top: calc(50% + 12px) !important;
  outline: none !important;
}
.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-l-circle-g.svg") !important;
  right: 0.5vw !important;
}

.swiper-button-prev {
  background-image: url("../../imag/v1/icon/ic-arrow-r-circle-g.svg") !important;
  left: 0.5vw !important;
}

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

.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: 1rem;
  padding: 10px 18px;
  border-radius: 3rem;
  background-color: #2A455E;
  gap: 3px;
  border: 1px solid #2A455E;
  transition: 0.3s all ease;
  color: #ffffff;
  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: "Roboto-Regular", sans-serif;
}
@media (max-width: 426px) {
  .btn__primary {
    margin: 10px auto;
    line-height: 20px;
    max-width: 300px;
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__primary {
    margin: 10px auto;
    line-height: 20px;
    max-width: 300px;
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    padding: 15px 10px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .btn__primary {
    padding: 15px 20px;
  }
}
.btn__primary:hover {
  transition: 0.3s all ease;
}
.btn__primary.btn-disabled {
  color: #666666;
  cursor: inherit;
}
.btn__primary .icon {
  width: 24px;
  height: 24px;
}
.btn__primary--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn__primary--white {
  background-color: #ffffff;
  color: #0f69c4;
  border-color: #ffffff;
}
.btn__primary--blue {
  background-color: #0f69c4;
  color: #ffffff;
  border-color: #0f69c4;
}
.btn__primary--outline-white {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}
.btn__primary--outline-blue, .btn__primary--outline {
  background: none;
  color: #0f69c4;
  border-color: #0f69c4;
}
.btn__primary--outline-blue:hover, .btn__primary--outline:hover {
  background-color: #0f69c4;
  color: #ffffff;
}

.btn__secondary {
  font-size: 1rem;
  color: #0f69c4;
  line-height: 1.3;
  transition: 0.2s all ease;
  font-family: "Roboto-Medium", sans-serif;
  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;
}
@media (max-width: 426px) {
  .btn__secondary {
    font-size: 0.875rem;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__secondary {
    font-size: 0.875rem;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.btn__secondary:hover {
  color: #0f69c4;
}
.btn__secondary--white {
  color: #ffffff;
}
.btn__secondary--white:hover {
  opacity: 0.8;
  color: #ffffff;
}
.btn__secondary .icon {
  background-color: #FF4731;
  border-radius: 50%;
}

.btn-icon {
  padding: 15px;
  border-radius: 5px;
  display: block;
  transition: 0.3s all ease;
}
.btn-icon:hover {
  background-color: #0f69c4;
}
.btn-icon:hover .btn-icon__w {
  display: block;
}
.btn-icon:hover .btn-icon__b {
  display: none;
}
.btn-icon:hover .btn-icon__title {
  color: #ffffff;
}
.btn-icon__w {
  display: none;
}
.btn-icon__icon {
  margin-bottom: 10px;
}
.btn-icon__icon img {
  width: 53px;
  margin: 0 auto;
}
.btn-icon__title {
  font-size: 1.1875rem;
  color: #000000;
  line-height: 1.3;
  text-align: center;
  margin-top: 5px;
  font-family: "Roboto-Medium", sans-serif;
}
.btn-icon__static .btn-icon__subtit {
  text-align: center;
  color: #ffffff;
  font-size: 55px;
  font-family: "Roboto-Medium", sans-serif;
}
.btn-icon__static .btn-icon__title {
  font-size: 1rem;
  color: #ffffff;
  font-family: "Roboto-Regular", sans-serif;
}
.btn-icon.color-blue:hover {
  background-color: #0f69c4;
}

.btn {
  gap: 26px;
  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: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn {
    gap: 10px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .btn {
    gap: 15px;
  }
}
.btn__center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.btn__right {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.btn__fixed {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10;
}

section .auxi > .cont-btn {
  text-align: center;
}
@media (max-width: 426px) {
  section .auxi > .cont-btn .btn__sec {
    max-width: 400px;
    padding: 20px 35px;
    width: 90%;
    -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) {
  section .auxi > .cont-btn .btn__sec {
    max-width: 400px;
    padding: 20px 35px;
    width: 90%;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  z-index: 1;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  position: relative;
  display: inline-block;
  flex: none;
}
.icon__right {
  margin-left: 10px;
}
.icon__left {
  margin-right: 10px;
}
.icon__arrow-right-w {
  background-image: url("../../imag/v1/icon/ic-arrow-r-w.svg");
}
.icon__arrow-right-b {
  background-image: url("../../imag/v1/icon/ic-arrow-r-b.svg");
}
.icon__arrow-top-b {
  background-image: url("../../imag/v1/icon/arrow-top-b.svg");
}
.icon__chevron-down-w {
  background-image: url("../../imag/v1/icon/ic-chevron-down-w.svg");
}

.chip {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  background-color: #0f69c4;
  position: relative;
  padding: 12px 15px;
  border-radius: 3rem;
  transition: 0.2s all ease;
  cursor: pointer;
  font-family: "Roboto-Medium", sans-serif;
}
@media (max-width: 426px) {
  .chip {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .chip {
    font-size: 0.875rem;
  }
}
.chip:hover {
  background-color: #0f69c4;
  color: #ffffff;
}

.enc-main {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.enc-main .auxi {
  text-align: center;
  position: relative;
  padding: 30px 0;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main .auxi {
    padding: 30px 15px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .enc-main .auxi {
    padding: 20px 15px;
  }
}
.enc-main__content {
  text-align: left;
}
.enc-main__epig {
  text-align: left;
  color: #1A2B3B;
  font-size: 1.1875rem;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: "Roboto-Regular", sans-serif;
}
@media (max-width: 426px) {
  .enc-main__epig {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__epig {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}
.enc-main__title {
  padding-top: 30px;
  color: #000000;
  line-height: 1.3;
  margin-left: 0;
  font-size: 3rem;
  font-family: "Roboto-Bold", sans-serif;
}
@media (max-width: 426px) {
  .enc-main__title {
    padding-top: 20px;
    font-size: 1.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__title {
    padding-top: 20px;
    font-size: 1.9375rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .enc-main__title {
    font-size: 2.25rem;
  }
}
.enc-main__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  max-width: 800px;
  margin: 40px auto 0;
  font-family: "Roboto-Regular", sans-serif;
}
@media (max-width: 426px) {
  .enc-main__description {
    margin-top: 20px;
    font-size: 0.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__description {
    margin-top: 20px;
    font-size: 0.9375rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__description {
    font-size: 1.1875rem;
  }
}
.enc-main__caption {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.54);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
  line-height: 1.3;
}
.enc-main .img-wrap {
  margin-top: 40px;
}
@media (max-width: 426px) {
  .enc-main .img-wrap {
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main .img-wrap {
    margin-top: 20px;
  }
}
.enc-main__bg {
  position: relative;
}
@media (max-width: 426px) {
  .enc-main__bg {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__bg {
    padding: 0 15px;
  }
}
.enc-main__bg:before {
  content: "";
  background-color: rgba(31, 79, 101, 0.8);
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.enc-main__bg .breadcrumb, .enc-main__bg .breadcrumb a {
  color: #ffffff !important;
}
.enc-main__bg .breadcrumb:after, .enc-main__bg .breadcrumb a:after {
  color: #ffffff !important;
}
.enc-main__bg--grad:before {
  background: rgb(31, 79, 101);
  background: -moz-linear-gradient(90deg, rgb(31, 79, 101) 0%, rgba(31, 79, 101, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgb(31, 79, 101) 0%, rgba(31, 79, 101, 0) 100%);
  background: linear-gradient(90deg, rgb(31, 79, 101) 0%, rgba(31, 79, 101, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f4f65",endColorstr="#1f4f65",GradientType=1);
}
.enc-main__bg--grad .enc-main__content {
  text-align: left;
}
.enc-main__bg--grad .enc-main__description {
  margin-left: 0;
}
.enc-main__center .enc-main__title {
  text-align: center;
}
.enc-main .btn__tert {
  background-color: #ffffff;
  position: absolute;
  left: 0;
}
@media (max-width: 426px) {
  .enc-main .btn__tert {
    max-width: 220px;
    margin: 20px auto 0;
    position: relative;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main .btn__tert {
    max-width: 220px;
    margin: 20px auto 0;
    position: relative;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main .btn__tert {
    max-width: 220px;
    margin: 20px auto 0;
    position: relative;
  }
}
.enc-main .btn__tert:hover {
  background-color: #000000;
}

.enc-txt {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .enc-txt {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-txt {
    padding: 30px 0;
  }
}
.enc-txt .auxi {
  text-align: center;
  padding-bottom: 0;
}
.enc-txt .auxi .tit {
  font-size: 3rem;
  line-height: 130%;
  color: #000000;
  font-family: "Roboto-Bold", sans-serif;
}
@media (max-width: 426px) {
  .enc-txt .auxi .tit {
    font-size: 2.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-txt .auxi .tit {
    font-size: 2.25rem;
  }
}
.enc-txt .auxi .baj {
  font-size: 1.625rem;
  line-height: 1.7;
  letter-spacing: 0.5px;
  max-width: 85%;
  margin: 20px auto 0;
  color: #000000;
  font-family: "Roboto-Medium", sans-serif;
}
@media (max-width: 426px) {
  .enc-txt .auxi .baj {
    font-size: 1.1875rem;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-txt .auxi .baj {
    font-size: 1.1875rem;
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-txt .auxi .baj {
    font-size: 1.1875rem;
    max-width: 100%;
  }
}

.block-head {
  padding: 0;
  margin-bottom: 40px;
  z-index: 1;
  gap: 30px;
  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 {
    -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) {
  .block-head {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.block-head__epig {
  padding: 0 0 5px;
  font-size: 1rem;
  color: #000000;
  display: inline-block;
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: "Roboto-Regular", sans-serif;
}
.block-head__title {
  font-size: 1.9375rem;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 0;
  text-align: left;
  font-family: "Roboto-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.5rem;
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
.block-head__title--blanco {
  color: #ffffff;
  font-size: 2.25rem;
}
.block-head__title--lg {
  font-size: 2.8125rem;
  color: #2A455E !important;
}
.block-head__title--slide, .block-head__title a {
  font-size: 3rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: left;
  font-family: "Roboto-Bold", sans-serif;
}
@media (max-width: 426px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 2.25rem;
    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.25rem;
    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: 3rem;
  }
}
.block-head__title--slide::after, .block-head__title a::after {
  content: none;
}
.block-head__subtitle {
  font-size: 1.1875rem;
  color: #000000;
  font-family: "Roboto-Medium", sans-serif;
}
.block-head__description {
  line-height: 1.6;
  font-size: 1.25rem;
  color: #666666;
  margin: 30px 0 0;
  max-width: 990px;
  text-align: left;
  font-family: "Roboto-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;
  -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;
}
.block-head.form-msj img {
  width: 90px;
}
.block-head.form-msj .block-head__title, .block-head.form-msj .block-head__description {
  text-align: center;
  margin-top: 0;
}

.block-info {
  padding: 40px 0;
}
.block-info__row {
  gap: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -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-info__row {
    gap: 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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-info__row {
    gap: 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;
  }
}
.block-info__pref {
  color: #2A455E;
  font-size: 0.9375rem;
}
.block-info__txt {
  margin-top: 10px;
  font-size: 1.1875rem;
  line-height: 1.3;
  font-family: "Roboto-Medium", sans-serif;
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-info__txt {
    font-size: 1rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .block-info__txt {
    font-size: 1rem;
  }
}
.block-info__title {
  font-size: 1.1875rem;
  text-transform: uppercase;
  font-family: "Roboto-Bold", sans-serif;
}
.block-info__group {
  margin-top: 20px;
}
.block-info__group .block-info__txt {
  margin-top: 0;
  font-size: 1.1875rem;
  margin-bottom: 10px;
}
.block-info__group .block-info__pref {
  line-height: 1.4;
  font-size: 1.1875rem;
}
.block-info .btn {
  margin-top: 55px;
}
@media (max-width: 426px) {
  .block-info .btn {
    margin-top: 30px;
    gap: 20px;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-info .btn {
    margin-top: 30px;
    gap: 20px;
    flex-direction: column;
  }
}
@media (max-width: 426px) {
  .block-info .btn .btn__primary {
    padding: 15px 10px;
    margin: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-info .btn .btn__primary {
    padding: 15px 10px;
    margin: 0;
  }
}

.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__img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.card__pill {
  padding: 5px 10px;
  font-size: 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #0f69c4;
  z-index: 2;
  display: inline-block;
  gap: 5px;
  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;
}
.card__pill img {
  width: 21px;
}
.card__month {
  font-size: 1rem;
  color: #ffffff;
  font-family: "Roboto-Medium", sans-serif;
}
.card__content {
  position: relative;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  background-color: #ffffff;
  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__content--icon {
  padding: 15px 0;
  gap: 10px;
  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;
}
.card__content--icon img {
  width: 24px;
}
.card__epig {
  font-size: 0.9375rem;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.12);
}
.card__date {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: 10px;
  font-family: "Roboto-Regular", sans-serif;
}
.card__title {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.4;
  display: inline-block;
  text-align: left;
  font-family: "Roboto-Regular", sans-serif;
}
@media (max-width: 426px) {
  .card__title {
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__title {
    line-height: 1.3;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__title {
    font-size: 1.1875rem;
  }
}
.card__title--lg {
  font-size: 1.5rem;
}
.card__description {
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  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: 30px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card .btn__primary {
    width: auto;
    margin: 30px 0 0;
  }
}
.card__list {
  background-color: #0f69c4;
  padding: 20px;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__list-item {
  color: #ffffff;
}
.card__list-item a {
  color: #ffffff;
  transition: 0.3s all ease;
}
.card__list-item a:hover {
  opacity: 0.7;
}
.card__list-item + .card__list-item {
  margin-top: 20px;
}
.card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.card__categories {
  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;
}
@media (max-width: 426px) {
  .card__categories {
    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: 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) {
  .card__categories {
    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: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.card__breadcrumbs {
  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;
}
.card__horizontal .card__auxi {
  gap: 40px;
  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-width: 426px) {
  .card__horizontal .card__auxi {
    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 .card__auxi {
    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 .card__auxi {
    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.inv .card__auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 426px) {
  .card__horizontal.inv .card__auxi {
    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.inv .card__auxi {
    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.inv .card__auxi {
    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 {
  padding: 10px;
}
.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: 2.125rem;
  color: #000000;
  line-height: 1.5;
  font-family: "Roboto-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__horizontal .card__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal .card__title {
    font-size: 2.5rem;
  }
}
.card__horizontal .card__description {
  font-size: 1.1875rem;
  color: #666666;
  line-height: 1.6;
}
@media (max-width: 426px) {
  .card__horizontal .card__description {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__description {
    display: none;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal .card__description {
    font-size: 1rem;
  }
}
.card__horizontal .card__img {
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
  -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 {
  -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: 100%;
    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: 100%;
    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__icon {
  padding: 20px;
  background-color: #ffffff;
  box-shadow: none;
  border-radius: 50%;
  height: 220px !important;
  width: 220px;
  margin: 0 auto;
}
@media (max-width: 426px) {
  .card__icon {
    width: 190px;
    height: 190px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__icon {
    width: 190px;
    height: 190px !important;
  }
}
.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 {
  margin: 0 auto;
  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;
}
.card__icon .card__img img {
  width: 130px;
}
@media (max-width: 426px) {
  .card__icon .card__img img {
    width: 100px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__icon .card__img img {
    width: 100px;
  }
}
.card__icon .card__title {
  font-size: 1.1875rem;
  color: #000000;
  line-height: 1.2;
  text-transform: none;
  background: none;
  text-align: center;
  max-width: 140px;
  font-family: "Roboto-Bold", sans-serif;
}
.card__icon .card__description {
  color: #0f69c4;
  line-height: 1.8;
  margin-top: 20px;
}
.card__icon .card__content {
  padding: 0;
  background: none;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.card__txt .card__content {
  background: none;
  padding: 0;
}
@media (max-width: 426px) {
  .card__txt .card__content {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__txt .card__content {
    padding: 0;
  }
}
.card__txt .card__content a {
  padding: 0;
}
.card__txt + .card__txt {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.card__bg {
  position: relative;
}
.card__bg .card__img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s all ease;
  background: rgb(27, 35, 43);
  background: -moz-linear-gradient(180deg, rgba(27, 35, 43, 0) 0%, rgba(27, 35, 43, 0.4) 100%);
  background: -webkit-linear-gradient(180deg, rgba(27, 35, 43, 0) 0%, rgba(27, 35, 43, 0.4) 100%);
  background: linear-gradient(180deg, rgba(27, 35, 43, 0) 0%, rgba(27, 35, 43, 0.4) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b232b",endColorstr="#1b232b",GradientType=1);
}
.card__bg .card__auxi {
  position: relative;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
.card__bg .card__auxi:hover .card__img:before {
  background: rgba(27, 35, 43, 0.6);
}
.card__bg .card__auxi:hover .card__hiden-box {
  opacity: 1;
  visibility: visible;
  max-height: 100%;
}
.card__bg .card__auxi > a {
  display: block;
  width: 100%;
}
.card__bg .card__content {
  padding: 20px;
  position: absolute;
  background: none;
  left: 0;
  bottom: 0;
  right: 0;
  top: auto;
  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: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .card__bg .card__content {
    padding: 15px;
    top: auto;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__bg .card__content {
    padding: 15px;
    top: auto;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__bg .card__content {
    padding: 20px;
  }
}
.card__bg .card__hiden-box {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: 0.3s all ease;
}
@media (max-width: 426px) {
  .card__bg .card__hiden-box {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__bg .card__hiden-box {
    display: none;
  }
}
.card__bg .card__title {
  color: #ffffff;
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Roboto-Regular", sans-serif;
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__bg .card__title {
    font-size: 1.25rem;
  }
}
.card__bg .card__description {
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
}
.card__bg .card__icon {
  margin: 0 auto;
  width: 34px;
  margin-top: 15px;
}
.card__bg .btn__primary {
  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__banner {
  position: relative;
}
.card__banner .card__img {
  position: relative;
}
.card__banner .card__img::before {
  content: "";
  transition: 0.3s all ease;
  z-index: 0;
  background: rgb(31, 79, 101);
  background: -moz-linear-gradient(90deg, rgb(31, 79, 101) 0%, rgba(31, 79, 101, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgb(31, 79, 101) 0%, rgba(31, 79, 101, 0) 100%);
  background: linear-gradient(90deg, rgb(31, 79, 101) 0%, rgba(31, 79, 101, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f4f65",endColorstr="#1f4f65",GradientType=1);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.card__banner .card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 426px) {
  .card__banner .card__overlay {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__overlay {
    display: none;
  }
}
.card__banner .card__content {
  padding: 60px 4vw;
  position: absolute;
  max-width: 720px;
  left: 0;
  z-index: 2;
  bottom: 0;
  top: 0;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .card__banner .card__content {
    padding: 30px;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__content {
    padding: 30px;
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__banner .card__content {
    padding: 30px 4vw;
  }
}
.card__banner .card__title {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Roboto-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__banner .card__title {
    font-size: 1.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__title {
    font-size: 1.9375rem;
  }
}
.card__banner .card__description {
  font-size: 1.1875rem;
  color: #ffffff;
  line-height: 1.7;
  margin-top: 20px;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 426px) {
  .card__banner .card__description {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__description {
    font-size: 1rem;
  }
}
.card__banner .btn__primary {
  height: auto;
}
@media (max-width: 426px) {
  .card__banner .btn__primary {
    padding: 15px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .btn__primary {
    padding: 15px 20px;
  }
}
.card__banner--img .card__img::before {
  content: none;
}
.card__cifra {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.card__cifra .card__content {
  padding: 30px;
  background: none;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .card__cifra .card__content {
    padding: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__cifra .card__content {
    padding: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__cifra .card__content {
    padding: 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__cifra .card__content {
    padding: 20px;
  }
}
.card__cifra .card__title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 5px solid #FF4731;
  font-family: "Roboto-Regular", sans-serif;
}
.card__cifra .card__number {
  font-size: 72px;
  color: #ffffff;
  margin-top: 5px;
  font-family: "Roboto-Bold", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__cifra .card__number {
    font-size: 2.125rem;
  }
}
.card__cifra .card__description {
  font-size: 1rem;
  color: #ffffff;
  font-family: "Roboto-Regular", sans-serif;
}
.card__link {
  background-color: #ffffff;
  transition: 0.3s all ease;
}
.card__link:hover {
  transform: translateY(-2px);
}
.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: 0.875rem;
}
.card__link .card__description {
  font-size: 0.875rem;
  margin-top: 2px;
  color: #0f69c4;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__link .card__size {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #0f69c4;
}
.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: cente;
  }
}
.card__link--blue {
  background-color: #2A455E;
}
.card__link--blue a {
  padding: 10px 20px;
  border-bottom: 10px solid #0f69c4;
  -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;
}
.card__link--blue .card__content {
  background: none;
}
.card__link--blue .card__title {
  background: none;
  font-size: 1.1875rem;
  color: #ffffff;
}
.card__result {
  background-color: rgba(15, 105, 196, 0.1);
  padding: 40px 60px;
}
@media (max-width: 426px) {
  .card__result {
    padding: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__result {
    padding: 20px;
  }
}
.card__result .card__auxi {
  gap: 20px;
  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-width: 426px) {
  .card__result .card__auxi {
    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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__result .card__auxi {
    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;
  }
}
.card__result .card__img {
  -webkit-flex: 0 0 260px;
  flex: 0 0 260px;
}
.card__result .card__content {
  background: none;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 426px) {
  .card__result .card__content {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__result .card__content {
    padding: 0;
  }
}
.card__result .card__date {
  color: #0f69c4;
}
.card__result .card__title {
  font-size: 1.9375rem;
}
.card__result .card__categories {
  margin-bottom: 20px;
}
.card__result + .card__result {
  margin-top: 20px;
}

.box__full {
  padding: 70px;
  position: relative;
  z-index: 2;
}
@media (max-width: 426px) {
  .box__full {
    padding: 60px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__full {
    padding: 60px 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__full {
    padding: 60px 15px;
  }
}
.box__full .bg-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 1;
  display: block !important;
}
@media (max-width: 426px) {
  .box__full .bg-img {
    border-radius: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__full .bg-img {
    border-radius: 0;
  }
}
.box__full .bg-img::before {
  content: "";
  background-color: rgba(16, 36, 84, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.box__full .auxi {
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .box__full .auxi {
    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 .auxi {
    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 .auxi {
    max-width: 100%;
    -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 .cont-tit {
  padding-right: 100px;
  text-align: left;
  margin-bottom: 70px;
  display: block;
}
@media (max-width: 426px) {
  .box__full .cont-tit {
    padding-right: 0;
    text-align: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__full .cont-tit {
    padding-right: 0;
    text-align: left;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__full .cont-tit {
    padding-right: 0;
  }
}
.box__full .cont-tit .tit {
  text-align: left;
  margin-left: 0;
  margin-bottom: 30px;
  font-size: 3rem;
  display: block;
}
.box__full .cont-tit .tit::after {
  content: none;
}
@media (max-width: 426px) {
  .box__full .cont-tit .tit {
    font-size: 2.25rem;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__full .cont-tit .tit {
    font-size: 2.25rem;
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__full .cont-tit .tit {
    max-width: 100%;
    font-size: 3rem;
  }
}
.box__full .cont-tit .baj {
  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: "Roboto-Medium", sans-serif;
}
@media (max-width: 426px) {
  .box__full .cont-tit .baj {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__full .cont-tit .baj {
    font-size: 1.25rem;
  }
}
.box__full .btn__main {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__full .btn__main {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.box__full .btn__sec {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.box__full .navbar-buttons__links > li {
  -webkit-flex: 1 0 25%;
  flex: 1 0 25%;
}

.banner {
  padding: 40px 0;
}
.banner .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -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) {
  .banner .auxi {
    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) {
  .banner .auxi {
    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: 767px) and (max-width: 991px) {
  .banner .auxi {
    gap: 30px;
  }
}
.banner__content {
  max-width: 1000px;
}
.banner__title {
  color: #ffffff;
  font-size: 1.625rem;
  font-family: "Roboto-Medium", sans-serif;
}
.banner__description {
  color: #ffffff;
  line-height: 1.5;
  margin-top: 20px;
}
.banner .btn__primary {
  width: auto;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 426px) {
  .banner .btn__primary {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .banner .btn__primary {
    margin-left: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .banner .btn__primary {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

.timeline-item {
  padding: 40px 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;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.timeline-item__title {
  color: #000000;
  line-height: 1.4;
  padding-bottom: 20px;
}
.timeline-item__year {
  position: relative;
  padding-top: 22px;
  font-size: 2.25rem;
  color: #2A455E;
  font-family: "Roboto-Medium", sans-serif;
}
.timeline-item__year::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 0;
  height: 16px;
  width: 16px;
  top: 0;
  background-image: url("../../imag/v1/icon/ic-triangle-b.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}

.list a {
  gap: 20px;
  padding: 8px 15px;
  background-color: #ffffff;
  line-height: 1.4;
  text-align: left;
  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;
}
.list a:hover {
  background-color: rgba(15, 105, 196, 0.1);
}
.list a img {
  width: 18px;
}
.list li + li {
  margin-top: 10px;
}
.list img {
  width: 40px;
}
.list__title {
  font-size: 1.1875rem;
  color: #0f69c4;
  transition: 0.3s all ease;
}
.list__btns {
  gap: 5px;
  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 (max-width: 426px) {
  .list__btns {
    overflow: auto;
    padding-left: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list__btns {
    overflow: auto;
    padding-left: 15px;
  }
}
@media (max-width: 426px) {
  .list__btns li {
    -webkit-flex: 0 0 100px;
    flex: 0 0 100px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list__btns li {
    -webkit-flex: 0 0 100px;
    flex: 0 0 100px;
  }
}
.list__btns li + li {
  margin-top: 0;
}
.list__btns a {
  padding: 10px 15px;
  background-color: rgba(15, 105, 196, 0.1);
  border-radius: 3rem;
  font-size: 0.875rem;
  color: #2A455E;
  text-align: center;
  display: block;
}
.list__btns .active a {
  background-color: #2A455E;
  color: #ffffff;
}
.list__scroll {
  height: 393px;
  overflow-y: auto;
}
@media (max-width: 426px) {
  .list__scroll {
    height: auto;
    overflow: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list__scroll {
    height: auto;
    overflow: auto;
  }
}
.list__links a {
  text-align: left;
  color: #2A455E;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.list__links img {
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}

.horarios {
  background-color: #ffffff;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}
.horarios.show-horarios {
  opacity: 1;
  visibility: visible;
}
.horarios__content {
  padding: 15px;
}
.horarios__list + .horarios__list {
  margin-top: 20px;
}
.horarios__title {
  font-size: 0.9375rem;
  margin-bottom: 4px;
  font-family: "Roboto-Bold", sans-serif;
}
.horarios__item {
  font-size: 0.9375rem;
  line-height: 1.3;
}

.form {
  width: 100%;
  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;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 426px) {
  .form {
    gap: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form {
    gap: 20px;
  }
}
.form__title {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: "Roboto-Bold", sans-serif;
}
.form__group {
  position: relative;
}
.form__group label {
  color: #000000;
  font-size: 1rem;
  display: block;
  margin-bottom: 10px;
  font-family: "Roboto-Bold", sans-serif;
}
.form__group input, .form__group select, .form__group textarea {
  width: 100%;
  padding: 10px 12px;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.26);
  width: 100%;
  border-radius: 4px;
  font-size: 1rem;
  transition: 0.3s all ease;
  background-color: #ffffff;
  resize: none;
}
.form__group input::-webkit-input-placeholder, .form__group select::-webkit-input-placeholder, .form__group textarea::-webkit-input-placeholder {
  color: #000000;
}
.form__group input:-moz-placeholder, .form__group select:-moz-placeholder, .form__group textarea:-moz-placeholder {
  color: #000000;
}
.form__group input::-moz-placeholder, .form__group select::-moz-placeholder, .form__group textarea::-moz-placeholder {
  color: #000000;
}
.form__group input:-ms-input-placeholder, .form__group select:-ms-input-placeholder, .form__group textarea:-ms-input-placeholder {
  color: #000000;
}
.form__group input:focus, .form__group input:focus-visible, .form__group select:focus, .form__group select:focus-visible, .form__group textarea:focus, .form__group textarea:focus-visible {
  border-color: #0f69c4;
  transition: 0.5s all ease;
  outline: none;
}
.form__group select {
  padding: 10px 12px;
  border-color: #d1d1d1;
  background-image: url("../../imag/v1/icon/ic-chevron-down-b.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) 10px;
  background-size: 24px;
}
.form__group--error input, .form__group--error select, .form__group--error textarea {
  border-color: #CD1E2C;
}
.form__group--icon input {
  padding-left: 45px;
}
.form__group--icon a {
  position: absolute;
  left: 15px;
  top: 38px;
}
.form__group--icon a img {
  width: 20px;
}
.form__caption {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.3;
  text-align: left;
  margin-top: 4px;
}
.form__caption--error {
  color: #CD1E2C;
}
.form .__validator-alert {
  left: 0px;
  top: 0;
}
.form .__validator-alert span {
  position: relative;
  background: none;
  box-shadow: none;
  color: #CD1E2C;
  padding: 5px 0 0;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: left;
  margin-top: 4px;
}
.form__checkbox {
  display: block;
  margin-bottom: 35px;
  margin-top: 15px;
  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: 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;
}
.form__checkbox .__validator-alert span {
  padding: 12px 0 0;
}
.form__checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.form__checkbox input:checked + label:before {
  border-color: #0f69c4;
  background-color: #0f69c4;
}
.form__checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form__checkbox label {
  position: relative;
  cursor: pointer;
  color: #666666;
  gap: 10px;
  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;
}
.form__checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #0f69c4;
  border-radius: 2px;
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: 0.2s all ease;
  position: relative;
  bottom: 0;
}
.form__checkbox a {
  color: #0f69c4;
  text-decoration: underline;
  display: inline-flex;
}
.form__checkbox-txt {
  line-height: 1.4;
  font-size: 0.875rem;
}
.form .msj p {
  text-align: center;
  color: #000000;
}
.form .btn {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.form .d-flex {
  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;
}
.form .d-flex .file {
  display: none;
}
.form .d-flex .file-name {
  position: relative;
  overflow: hidden;
  line-height: 30px;
  padding: 8px 20px;
  box-sizing: border-box;
  font-size: 0.75rem;
  vertical-align: middle;
  background-color: #ffffff;
  width: 100%;
  cursor: inherit;
  border: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form .d-flex .btn-file {
  background-color: #1A2B3B;
  border: 1px solid #1A2B3B;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-sizing: border-box;
  padding: 14px 20px;
  transition: all 0.6s;
  color: #ffffff;
  font-size: 0.75rem;
  vertical-align: middle;
  margin-right: 0;
  cursor: pointer;
  width: 180px;
}
.form .d-flex .btn-file:hover {
  background: #0f69c4;
  border-color: #0f69c4;
  color: #ffffff;
}

.banner-full {
  padding: 20px 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;
}
.banner-full img {
  width: auto;
  max-width: 100%;
}

.table-responsive {
  margin: 20px 0;
  overflow: auto;
  width: 100%;
}
@media (min-width: 426px) and (max-width: 767px) {
  .table-responsive .table-responsive {
    padding: 20px 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .table-responsive .table-responsive {
    padding: 20px 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .table-responsive .table-responsive {
    padding: 20px 0;
  }
}

.table-custom {
  border-collapse: collapse;
  color: #000000;
  font-weight: normal;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.9;
  vertical-align: top;
  clear: both;
  margin: 20px auto;
  empty-cells: show;
  border: none;
  background: #ffffff;
  width: 1280px;
  font-style: normal;
  font-family: "Roboto-Regular", sans-serif;
}
@media (max-width: 426px) {
  .table-custom {
    font-size: 0.9375rem;
    width: 1000px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .table-custom {
    width: 1000px;
  }
}
.table-custom__title {
  text-transform: uppercase;
  font-size: 1.1875rem;
  font-family: "Roboto-Bold", sans-serif;
}
.table-custom__subtitle {
  font-size: 0.9375rem;
  text-transform: uppercase;
  font-family: "Roboto-Bold", sans-serif;
}
.table-custom td {
  border-collapse: collapse;
  color: #000000;
  font-weight: normal;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 20px;
  vertical-align: middle;
  border-right: 1px solid rgba(27, 35, 43, 0.05);
  width: 25%;
  font-family: "Roboto-Regular", sans-serif;
}
@media (max-width: 426px) {
  .table-custom td {
    font-size: 0.9375rem;
  }
}
.table-custom td:last-child {
  border-right: 0;
}
.table-custom tr, .table-custom th {
  padding: 0;
}
.table-custom tr:last-child {
  border-bottom: 0;
}
.table-custom th {
  color: #ffffff;
  font-size: 0.875rem;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
  font-style: normal;
  font-weight: initial;
  background-color: #0f69c4;
  width: 25%;
  font-family: "Roboto-Bold", sans-serif;
}
.table-custom th span {
  display: block;
}
.table-custom th a {
  color: #ffffff;
}
.table-custom a {
  border-bottom: none;
}
.table-custom thead {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.table-custom tbody {
  padding: 20px;
}
.table-custom tr:first-child {
  border-top: none;
}
.table-custom tr:last-child {
  border-bottom: none;
}

.menujq.open {
  max-height: 1000px;
}
.menujq > ul {
  margin-left: 0 !important;
  list-style: none;
}
.menujq > ul > li {
  list-style: none !important;
  overflow: hidden;
  margin-bottom: 15px;
}
.menujq > ul > li.active {
  border-color: #0f69c4;
}
.menujq > ul > li.active .menujq__head:after {
  transform: rotate(180deg);
}
.menujq > ul > li:first-child > ul {
  display: block;
}
.menujq__head {
  position: relative;
  margin: 0;
  padding: 25px 50px 25px 25px;
  gap: 10px;
  background-color: rgba(15, 105, 196, 0.1);
  border-radius: 0;
  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) {
  .menujq__head {
    padding: 15px 50px 15px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__head {
    padding: 15px 50px 15px 15px;
  }
}
.menujq__head:after {
  content: "";
  position: absolute;
  right: 10px;
  width: 27px;
  height: 27px;
  background-image: url("../../imag/v1/icon/ic-chevron-down-b.svg");
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 100%;
  bottom: calc(50% - 12px);
  transition: 0.2s all ease;
  right: 15px;
}
@media (max-width: 426px) {
  .menujq__head:after {
    width: 20px;
    height: 20px;
    top: calc(50% - 7px);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__head:after {
    width: 20px;
    height: 20px;
    top: calc(50% - 7px);
  }
}
.menujq__tit {
  font-size: 1.25rem;
  color: #2A455E;
  line-height: 1.3;
  font-family: "Roboto-Medium", sans-serif;
}
@media (max-width: 426px) {
  .menujq__tit {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__tit {
    font-size: 1rem;
  }
}
.menujq__content {
  border: 1px solid rgba(15, 105, 196, 0.1);
  border-top: none;
}
.menujq .CUERPO {
  padding: 20px 30px 30px;
}
.menujq .CUERPO p, .menujq .CUERPO ul li, .menujq .CUERPO ol li {
  font-size: 1.1875rem;
  line-height: 1.6;
}
@media (max-width: 426px) {
  .menujq .CUERPO p, .menujq .CUERPO ul li, .menujq .CUERPO ol li {
    padding: 20px 20px 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq .CUERPO p, .menujq .CUERPO ul li, .menujq .CUERPO ol li {
    padding: 20px 20px 30px;
  }
}
.menujq .CUERPO p, .menujq .CUERPO ul li, .menujq .CUERPO ol li {
  font-size: 1.1875rem;
  line-height: 1.6;
}
@media (max-width: 426px) {
  .menujq .CUERPO p, .menujq .CUERPO ul li, .menujq .CUERPO ol li {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq .CUERPO p, .menujq .CUERPO ul li, .menujq .CUERPO ol li {
    font-size: 1rem;
  }
}
.menujq__item a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8125rem;
  color: #0f69c4;
  transition: 0.3s all ease;
  border-radius: 10px;
  line-height: 1.4;
}
.menujq__item + .menujq__item {
  margin-top: 15px;
}
.menujq__item.item-active a {
  background-color: #2A455E;
  color: rgba(0, 0, 0, 0.54);
  font-family: "Roboto-Medium", sans-serif;
}
.menujq__auxi {
  padding: 0 0 0 20px;
}
.menujq__auxi ul {
  display: block !important;
}
.menujq__description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.54);
}
.menujq .desplegable ul {
  list-style: none;
  background-color: #ffffff;
}
.menujq .desplegable ul li {
  list-style: none !important;
}
.menujq .desplegable .CUERPO ul li {
  list-style-type: disc !important;
}
.menujq__comite {
  padding-top: 30px;
}
@media (max-width: 426px) {
  .menujq__comite {
    max-height: 100%;
    overflow: visible;
    transition: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__comite {
    max-height: 100%;
    overflow: visible;
    transition: none;
  }
}
.menujq__comite .menujq__avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 80px;
}
@media (max-width: 426px) {
  .menujq__comite .menujq__head {
    padding: 10px 40px 10px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__comite .menujq__head {
    padding: 10px 40px 10px 10px;
  }
}
.menujq__comite .menujq__head::before {
  content: none;
}
.menujq__comite .menujq__head::after {
  width: 32px;
  height: 32px;
  background-image: url("../../imag/v1/icon/chevron-down-g.svg");
}
@media (max-width: 426px) {
  .menujq__comite .menujq__head::after {
    top: 27px;
    right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__comite .menujq__head::after {
    top: 27px;
    right: 0;
  }
}
.menujq__comite .menujq__subtit {
  font-size: 1rem;
  font-family: "Roboto-Bold", sans-serif;
}
.menujq__comite .menujq__auxi {
  padding: 0 20px;
}
.menujq__comite > ul > li {
  margin-bottom: 25px;
}

.tabs {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .tabs {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs {
    padding: 30px 0;
  }
}
@media (max-width: 426px) {
  .tabs .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs .auxi {
    padding: 0;
  }
}
.tabs__row {
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 426px) {
  .tabs__row {
    -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) {
  .tabs__row {
    -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) {
  .tabs__row {
    -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;
  }
}
.tabs__btns {
  gap: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 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 (max-width: 426px) {
  .tabs__btns {
    overflow-x: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs__btns {
    overflow-x: auto;
  }
}
.tabs__btns a {
  padding: 15px 20px;
  font-size: 1.1875rem;
  color: rgba(0, 0, 0, 0.54);
  display: block;
  border-bottom: 3px solid transparent;
}
.tabs__btns .active a {
  color: #2A455E;
  border-color: #FF4731;
}
.tabs__content {
  -webkit-flex: 0 0 53.6%;
  flex: 0 0 53.6%;
}
@media (max-width: 426px) {
  .tabs__content .card__bg {
    margin: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs__content .card__bg {
    margin: 0 15px;
  }
}
.tabs .list__btns {
  margin-top: 20px;
}
.tabs .list__scroll {
  margin-top: 20px;
}
@media (max-width: 426px) {
  .tabs .block-head {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs .block-head {
    padding: 0 15px;
  }
}
.tabs .countries {
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .tabs .countries {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .tabs .countries {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (max-width: 426px) {
  .tabs .countries .block-head__subtitle {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs .countries .block-head__subtitle {
    padding: 0 15px;
  }
}

.filter {
  padding: 40px 0;
}
.filter select, .filter input {
  min-height: 42px;
}
.filter__center .search {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.filter__container {
  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: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .filter__container {
    gap: 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) {
  .filter__container {
    gap: 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: 991px) and (max-width: 1277px) {
  .filter__container {
    gap: 20px;
  }
}
.filter .form__group {
  -webkit-flex: 0 1 260px;
  flex: 0 1 260px;
}
@media (max-width: 426px) {
  .filter .form__group {
    width: 100%;
    max-width: 450px;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter .form__group {
    width: 100%;
    max-width: 450px;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .filter .form__group {
    width: 100%;
    justify-content: center;
  }
}
.filter .form__group input {
  padding: 10px 12px;
  background-color: #ffffff;
  font-size: 1rem;
  width: 100%;
  border-radius: 4px;
  color: #000000;
  border: none;
  border-radius: 0;
}
.filter .search {
  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: 0 1 400px;
  flex: 0 1 400px;
}
@media (max-width: 426px) {
  .filter .search {
    width: 100%;
    max-width: 450px;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter .search {
    width: 100%;
    max-width: 450px;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .filter .search {
    width: 100%;
    justify-content: center;
  }
}
.filter .search__input {
  padding: 10px 12px;
  background-color: #ffffff;
  font-size: 1rem;
  width: 100%;
  border-radius: 4px;
  color: #000000;
}
.filter__btn {
  background-color: #2A455E;
  padding: 10px 18px;
  color: #ffffff;
  font-size: 1rem;
}

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-blue {
  background-color: #0f69c4;
}
.bg-blue .block-head__title, .bg-blue .block-head__description {
  color: #ffffff;
}

.bg-mediumblue {
  background-color: #2A455E;
}
.bg-mediumblue .block-head__title, .bg-mediumblue .block-head__description {
  color: #ffffff;
}

.bg-green {
  background-color: #0f69c4;
}

.bg-lightgreen {
  background-color: #2A455E;
}

.bg-red {
  background-color: #FF4731;
}
.bg-red .block-head__title, .bg-red .block-head__description {
  color: #ffffff;
}

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

.bg-lightgrey {
  background-color: rgba(0, 0, 0, 0.12);
}

.bg-lightblue {
  background-color: rgba(15, 105, 196, 0.1);
}

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 .header .item-icon.search-cont .search-wrapper .input-holder .search-icon, body.contraste .enc-main__content, body.contraste .header__search button {
  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 .menu-responsive .accordionItemHeading img,
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 #return-to-top, body.contraste .swiper-pagination-bullet, body.contraste .menu-responsive .menu__search button {
  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 {
  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 .header__search input,
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 .filter .form__group input, body.contraste .filter .search__input {
  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 {
  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 {
  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/ic-chevron-down-w.svg);
}
body.contraste .menu-responsive .menujq__head::after {
  background-image: url(../../imag/v1/icon/ic-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 .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);
}

.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 .pref {
  color: #000000;
  font-size: 0.8125rem;
  margin-right: 8px;
}
.breadcrumbs .breadcrumb {
  color: #000000;
  font-size: 0.875rem;
  font-family: "Roboto-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;
}
.breadcrumbs .breadcrumb:last-child:after {
  content: none;
}
.breadcrumbs .breadcrumb a {
  text-decoration: underline;
}
.breadcrumbs .breadcrumb a:hover {
  opacity: 0.5;
}

.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 {
  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 .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: 55%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .prod-content .swiper-slide {
    width: 55%;
  }
}
.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: 40px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper-pagination {
    bottom: 40px !important;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  height: 16px;
  width: 16px;
  margin: 0 7px !important;
  transition: 0.2s all ease;
  border-radius: 50%;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF4731;
}

.mySwiper {
  box-sizing: border-box;
  padding: 10px 0;
}
.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;
}
.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.mySwiper .swiper-slide-thumb-active img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.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;
  }
}

.prod-content {
  position: relative;
}

.header {
  padding: 0;
  position: fixed;
  z-index: 1001;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #ffffff;
}
.header .auxi {
  padding: 0;
  transition: 0.2s all ease;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .header .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .header .desktop {
    display: none !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .header .mobile {
    display: block !important;
  }
}
.header.sticky {
  position: fixed;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}
.header.sticky .header__logo {
  -webkit-flex: 0 1 200px;
  flex: 0 1 200px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header.sticky .header__bottom {
    padding: 20px 20px 0;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header.sticky .header__bottom {
    padding: 30px 2vw 0;
  }
}
.header.sticky .header__lins li a {
  color: #0f69c4;
  padding: 24px 10px 40px;
}
.header.sticky .header__btns .desp {
  padding-bottom: 30px;
}
.header.sticky .header__btns .access-top {
  padding-bottom: 20px;
}
.header.sticky .item-icon.search-cont .search-icon.ic span {
  position: relative;
}
.header.sticky .menu-responsive.active .navbar__links {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.header.sticky .menu-responsive .navbar__links {
  display: none;
}
@media (max-width: 426px) {
  .header__cont {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -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) {
  .header__cont {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.header__top {
  background-color: #1A2B3B;
  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) {
  .header__top {
    padding: 5px 0;
    background-color: #2A455E;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__top {
    padding: 5px 0;
    background-color: #2A455E;
  }
}
.header__main {
  background-color: #2A455E;
}
.header__main .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header__group {
  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;
}
.header__social {
  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;
}
.header__search {
  width: 400px;
  position: relative;
}
.header__search input {
  width: 100%;
  padding: 9px 16px;
  position: relative;
  color: #2A455E;
  border-radius: 3rem;
  font-size: 1rem;
  background-color: #ffffff;
}
.header__search button {
  position: absolute;
  top: 0px;
  right: 4px;
  padding: 8px 12px;
  font-size: 17px;
}
.header__search button img {
  width: 24px;
}
.header__logo {
  transition: 0.3s all ease;
  padding-bottom: 10px;
  -webkit-flex: 0 0 226px;
  flex: 0 0 226px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__logo {
    -webkit-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__logo {
    -webkit-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
.header__logo a {
  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;
}
.header__bottom {
  transition: 0.3s all ease;
  background-color: #ffffff;
}
.header__bottom .auxi {
  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-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) {
  .header__bottom .auxi {
    gap: 10px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__bottom .auxi {
    gap: 30px;
  }
}
.header__links {
  gap: 10px;
  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-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.header__links .desp:hover .sub-menu {
  display: grid;
}
.header__links > li:last-child a {
  margin-right: 0;
}
.header__links > li:hover .sub-menu {
  display: grid;
}
.header__links > li a {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 0;
  line-height: 1.4;
  color: #2A455E;
  padding: 20px 10px;
  position: relative;
  font-family: "Roboto-Regular", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__links > li a {
    font-size: 0.875rem;
    padding: 15px 10px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__links > li a {
    font-size: 0.9375rem;
  }
}
.header__links > li a.selected {
  font-family: "Roboto-Medium", sans-serif;
}
.header__links > li img {
  max-width: 60px;
  width: 100%;
}
.header__links > li.desp a {
  padding-right: 34px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 97% 19px;
  background-size: 24px;
  background-image: url("../../imag/v1/icon/ic-chevron-down-b.svg");
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__links > li.desp a {
    padding-right: 20px;
    background-position: 100% 17px;
    background-size: 20px;
  }
}
.header__links > li.desp__sm {
  position: relative;
}
.header__links .sub-menu {
  display: none;
  position: absolute;
  z-index: 30;
  min-width: 200px;
  max-width: 350px;
  width: 100%;
  top: 100%;
  padding: 0;
  border-radius: 0;
  background: #ffffff;
  transition: 0.2s all ease;
  -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);
}
.header__links .sub-menu li {
  width: 100%;
}
.header__links .sub-menu li a {
  gap: 15px;
  padding: 9px 15px;
  color: #000000;
  font-size: 1rem;
  ctransition: 0.3s all ease;
  background-image: none !important;
  font-family: "Roboto-Regular", sans-serif;
  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;
}
.header__links .sub-menu li a:hover {
  background: none;
  background-color: rgba(0, 0, 0, 0.05);
}
.header__links .sub-menu li a + a {
  margin-top: 5px;
}
.header__links .ic-access {
  display: inline-block;
  background-image: url("../../imag/v1/icon/ic-access-b.svg");
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 100%;
  width: 24px;
  height: 24px;
  transition: 0.2s all ease;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__links .ic-access {
    width: 28px;
    height: 28px;
  }
}
.header__links .ic-access.change {
  background-image: url("../../imag/v1/icon/ic-close-b.svg");
}
.header__links-sec {
  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;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .header__links-sec li {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__links-sec li {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .header__links-sec li {
    display: none;
  }
}
@media (max-width: 426px) {
  .header__links-sec li:last-child {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__links-sec li:last-child {
    display: block;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .header__links-sec li:last-child {
    display: block;
  }
}
.header__links-sec li > a {
  padding: 8px 10px;
  color: #ffffff;
}
.header__translate button {
  gap: 5px;
  color: #ffffff;
  padding-right: 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;
}
.header__translate img {
  width: 32px;
}
.header .class-menu-translate {
  gap: 10px;
  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;
}
.header .disclaimer-box {
  display: none;
  background-color: #ffffff;
  position: absolute;
  padding: 50px 30px 30px;
  right: 0;
  top: 39px;
  width: 320px;
  z-index: 1;
  -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) {
  .header .disclaimer-box__fondo {
    margin: 0 auto;
    left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header .disclaimer-box__fondo {
    margin: 0 auto;
    left: 0;
  }
}
.header .disclaimer-box .tit {
  color: #2A455E;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  margin-top: 15px;
  font-family: "Roboto-Bold", sans-serif;
}
.header .disclaimer-box .baj {
  color: #555559;
  font-size: 1rem;
  line-height: 1.3;
  margin-top: 5px;
  text-align: center;
}
.header .disclaimer-box .btn-main {
  background-color: #2A455E;
  border-radius: 3rem;
  color: #ffffff;
  margin: 20px auto 0;
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
}
.header .disclaimer-box .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 15px;
}
.header .disclaimer-box .btn-close img {
  width: auto;
}
.header .disclaimer-box .goog-te-gadget-simple {
  background: none;
  border: 1px solid #808080;
  border-radius: 6px;
  padding: 6px 15px;
}
.header .disclaimer-box .goog-te-gadget-icon {
  background-image: url(/consulados/imag/v1/icon/ic_translate_g.svg) !important;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center !important;
  width: auto;
}
.header .disclaimer-box .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  color: #666666 !important;
}
.header .disclaimer-box .goog-te-gadget-simple {
  background: none;
  border: 1px solid #808080;
  border-radius: 6px;
  padding: 6px 15px;
}
.header .disclaimer-box .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  color: #666666 !important;
  font-size: 16px;
  border: none !important;
}
.header .disclaimer-box img {
  display: inline-block !important;
  width: 1px;
}

.acc-cont {
  transition: 0.2s all ease;
  overflow: hidden;
}
.acc-cont.active {
  width: 190px;
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.acc-cont .cont-access {
  padding: 10px 0;
  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;
}
.acc-cont .cont-access li {
  padding: 0 20px;
  position: relative;
  min-height: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
.acc-cont .cont-access li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  left: 0;
  top: 3px;
  background-color: #ffffff;
}
.acc-cont .cont-access li:last-child::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  left: auto;
  right: 0;
  top: 3px;
  background-color: #ffffff;
}
.acc-cont .cont-access li .acc-icon {
  cursor: pointer;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 100%;
  width: 30px;
  height: 30px;
  transition: 0.2s all ease;
}
.acc-cont .cont-access li .ic-text-lg {
  background-image: url("../../imag/v1/icon/ic-text-plus.svg");
}
.acc-cont .cont-access li .ic-text-sm {
  background-image: url("../../imag/v1/icon/ic-text-minus.svg");
}
.acc-cont .cont-access .switch {
  top: 5px;
}
.acc-cont .cont-access__buttons {
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}

.switch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 20px;
  margin-left: 30px;
}
.switch.desktop {
  position: absolute;
  top: 33vh;
  left: 10px;
  z-index: 10;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 3px;
  background-color: #2A455E;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 25px;
  left: -30px;
  bottom: 0;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 100%;
  background-image: url("../../imag/v1/icon/ic-sun-w.svg");
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
}
.switch input:checked + .slider::after {
  background-image: url("../../imag/v1/icon/ic-moon.svg");
}

.menu-responsive {
  position: relative;
  top: 0;
  z-index: 100;
  padding: 0;
  background-color: #1A2B3B;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.2s all ease;
  width: 100%;
}
@media (min-width: 767px) and (max-width: 991px) {
  .menu-responsive {
    display: block !important;
  }
}
.menu-responsive.active .menu {
  max-height: 90vh;
  height: 88vh;
}
.menu-responsive .top-bar {
  padding: 10px 15px;
  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;
}
.menu-responsive .top-bar .cont-logo {
  display: inline-block;
}
.menu-responsive .top-bar .cont-logo a {
  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;
}
.menu-responsive .top-bar .cont-logo img {
  width: 180px;
}
.menu-responsive .top-bar .btns-sec {
  gap: 20px;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.menu-responsive .top-bar .menu-icon {
  cursor: pointer;
  display: inline-block;
  position: relative;
  user-select: none;
  padding: 0;
}
.menu-responsive .top-bar .menu-icon .navicon {
  border-radius: 5px;
  display: block;
  position: relative;
  transition: background 0.2s ease-out;
  width: 40px;
  height: 40px;
  background-image: url("../../imag/v1/icon/ic-menu.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}
.menu-responsive .top-bar .menu-icon .navicon:before, .menu-responsive .top-bar .menu-icon .navicon:after {
  border-radius: 5px;
  background: #ffffff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 24px;
  right: 4px;
  opacity: 0;
  height: 2px;
  top: 20px;
}
.menu-responsive .top-bar .menu-btn {
  display: none;
}
.menu-responsive .top-bar .menu-btn:checked ~ .menu {
  max-height: 90vh;
  height: 90vh;
}
.menu-responsive .top-bar .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.menu-responsive .top-bar .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
  width: 80%;
  opacity: 1;
}
.menu-responsive .top-bar .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
  width: 80%;
  opacity: 1;
}
.menu-responsive .menu {
  clear: both;
  padding: 0;
  max-height: 0;
  width: 100%;
  transition: max-height 0.3s ease-in-out;
  margin: 0;
  list-style: none;
  overflow-y: auto;
  margin: 0 auto;
  position: relative;
  background-color: #ffffff;
}
@media (min-width: 767px) and (max-width: 991px) {
  .menu-responsive .menu {
    max-width: 100%;
  }
}
.menu-responsive .menu__links {
  padding: 30px 0;
  max-width: 100%;
}
@media (min-width: 767px) and (max-width: 991px) {
  .menu-responsive .menu__links {
    margin: 0;
  }
}
.menu-responsive .menu__links li {
  position: relative;
  float: none;
}
.menu-responsive .menu__links li a {
  padding: 25px 15px;
  text-decoration: none;
}
.menu-responsive .menu__links li a > img {
  width: 18px;
}
.menu-responsive .menu__links > li > a {
  padding: 15px 20px;
  color: #2A455E;
  font-size: 1rem;
  line-height: 1.3;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  font-family: "Roboto-Medium", sans-serif;
}
.menu-responsive .menu .cont-access {
  padding: 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;
}
.menu-responsive .menu .cont-access .access {
  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;
}
.menu-responsive .menu .cont-access .access .switch {
  margin-right: 10px;
}
.menu-responsive .menu .cont-access .access .switch input:checked + .slider::after {
  background-image: url(../../imag/v1/icon/ic-moon.svg);
}
.menu-responsive .menu .cont-access .access .switch .slider {
  background-color: #2A455E;
}
.menu-responsive .menu .cont-access .access .switch .slider:after {
  width: 25px;
  height: 25px;
  background-image: url(../../imag/v1/icon/ic-sun-b.svg);
}
.menu-responsive .menu .cont-access .access .switch .slider::before {
  background-color: #ffffff;
}
.menu-responsive .menu .cont-access .txt-light {
  color: #2A455E;
  display: block;
}
.menu-responsive .menu .cont-access .txt-dark {
  color: #ffffff;
  display: none;
}
.menu-responsive .menu__search {
  width: 90%;
  margin: 15px auto 0;
  position: relative;
  max-width: 400px;
}
.menu-responsive .menu__search input {
  width: 100%;
  padding: 15px;
  position: relative;
  color: #2A455E;
  border-radius: 3rem;
  font-size: 1rem;
  background-color: #ffffff;
  border: 1px solid #2A455E;
}
.menu-responsive .menu__search input::-webkit-input-placeholder {
  color: #2A455E;
}
.menu-responsive .menu__search input:-moz-placeholder {
  color: #2A455E;
}
.menu-responsive .menu__search input::-moz-placeholder {
  color: #2A455E;
}
.menu-responsive .menu__search input:-ms-input-placeholder {
  color: #2A455E;
}
.menu-responsive .menu__search button {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 10px;
  padding-left: 12px;
  font-size: 17px;
}
.menu-responsive .menu__search button img {
  width: 24px;
}
.menu-responsive .accordionItemContent {
  background-color: #ffffff;
  border-radius: 16px;
}
.menu-responsive .accordionItemContent .menu__title {
  padding: 0;
  font-size: 1.1875rem;
}
.menu-responsive .accordionItemContent .menu__title a {
  line-height: 1.4;
  font-family: "Roboto-Bold", sans-serif;
}
.menu-responsive .accordionItemContent li a {
  padding: 12px 30px;
  color: #2A455E;
  display: block;
  font-size: 0.9375rem;
  text-transform: none;
  background: none;
  font-family: "Roboto-Regular", sans-serif;
}
.menu-responsive .menujq__head {
  border-radius: 12px 12px 0 0;
  transition: 0.3s all ease;
}
.menu-responsive .menujq__head::after {
  width: 18px;
  height: 18px;
  margin-right: 0;
  top: 10px;
  right: 14px;
}
.menu-responsive .menujq .desplegable ul {
  background-color: #0f69c4;
  padding: 10px 0;
  border-radius: 0 0 12px 12px;
}
.menu-responsive .menujq .desplegable ul li .menujq__link-dest {
  font-family: "Roboto-Bold", sans-serif;
}
.menu-responsive .menujq .desplegable ul li a {
  font-size: 0.875rem;
  color: #ffffff;
}
.menu-responsive .menujq > ul {
  margin: 0 15px !important;
}
.menu-responsive .menujq > ul li a {
  padding: 12px 30px 12px 20px;
}
.menu-responsive .accordionItemHeading {
  width: auto;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.menu-responsive .accordionItemHeading figure {
  position: relative;
  margin-left: 10px;
}
.menu-responsive .accordionItemHeading img {
  width: 20px;
  transition: 0.2s all ease;
  position: relative;
  bottom: 1px;
}
.menu-responsive .accordionItemHeading .hide {
  display: none !important;
}
.menu-responsive .accordionItemHeading .show {
  display: block !important;
}
.menu-responsive .open .main-link {
  transition: 0.2s all ease;
}
.menu-responsive .open .accordionItemHeading img {
  transform: rotate(180deg);
}
.menu-responsive .open .accordionItemHeading .hide {
  display: block !important;
}
.menu-responsive .open .accordionItemHeading .show {
  display: none !important;
}
.menu-responsive .open .accordionItemContent {
  padding-bottom: 15px;
  width: 100%;
  display: block;
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  -o-transition: -o-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  box-sizing: border-box;
}
.menu-responsive .close .accordionItemContent {
  height: 0px;
  transition: height 1s ease-out;
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  display: block;
  padding: 0;
}

.footer {
  padding: 70px 0;
  position: relative;
  z-index: 0;
  background-color: #1A2B3B;
}
@media (max-width: 426px) {
  .footer {
    padding: 30px 0 60px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer {
    padding: 30px 0 60px;
  }
}
.footer .auxi {
  position: relative;
}
@media (max-width: 426px) {
  .footer .auxi {
    -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;
    padding: 0 18px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .auxi {
    -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;
    padding: 0 18px 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer .auxi {
    gap: 50px;
    -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 (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__top {
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  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-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 426px) {
  .footer__top {
    -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__top {
    -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 {
  display: block;
  width: 463px;
  -webkit-flex: 0 0 383px;
  flex: 0 0 383px;
}
@media (max-width: 426px) {
  .footer__logo {
    flex: 0 0 auto;
    width: 326px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__logo {
    flex: 0 0 auto;
    width: 326px;
  }
}
@media (max-width: 426px) {
  .footer__logo img {
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__logo img {
    margin: 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__logo img {
    margin: 0 auto;
  }
}
.footer__btns {
  gap: 44px;
  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__btns {
    width: 100%;
    -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__btns {
    width: 100%;
    -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 .btn__primary--white {
  color: #2A455E;
}
.footer__social {
  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;
}
.footer__social img {
  width: 24px;
}
.footer__title {
  color: #ffffff;
  font-size: 1.1875rem;
  text-transform: uppercase;
}
.footer__description {
  margin-top: 10px;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Roboto-Medium", sans-serif;
}
.footer__row {
  margin: 40px 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media (max-width: 426px) {
  .footer__row {
    -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__row {
    -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) {
  .footer__row {
    gap: 60px 0;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer__col {
  padding: 0 60px;
}
@media (max-width: 426px) {
  .footer__col {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__col {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__col {
    -webkit-flex: 0 1 49%;
    flex: 0 1 49%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .footer__col {
    padding: 0 20px;
  }
}
.footer__col:first-child {
  padding-left: 0;
}
.footer__col:nth-child(2) {
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__col:nth-child(2) {
    -webkit-flex: 0 1 49%;
    flex: 0 1 49%;
  }
}
.footer__col:nth-child(3) {
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__col:nth-child(3) {
    border-left: 0 !important;
    padding-left: 0 !important;
    -webkit-flex: 0 1 49%;
    flex: 0 1 49%;
  }
}
.footer__col:last-child {
  padding-right: 0;
}
.footer__col + .footer__col {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 426px) {
  .footer__col + .footer__col {
    border: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__col + .footer__col {
    border: none;
  }
}
.footer__col li + li {
  margin-top: 20px;
}
.footer__col .footer__title {
  margin-bottom: 30px;
}
.footer__col a {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
}
.footer__bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__bottom .footer__title {
  text-transform: none;
  margin-bottom: 30px;
}
.footer .footer__txt {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
}
.footer .footer__txt + .footer__txt {
  margin-top: 20px;
}

.hero {
  padding: 20px 0;
}
@media (max-width: 426px) {
  .hero .swiper-wrapper {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .swiper-wrapper {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
}
@media (max-width: 426px) {
  .hero .swiper-button-next, .hero .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .swiper-button-next, .hero .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero .swiper-button-next, .hero .swiper-button-prev {
    display: none;
  }
}
.hero .swiper-button-prev {
  left: 0;
  background-image: url("../../imag/v1/icon/ic-arrow-l-circle-w.svg") !important;
}
.hero .swiper-button-next {
  right: 0;
  background-image: url("../../imag/v1/icon/ic-arrow-r-circle-w.svg") !important;
}
.hero .swiper-pagination {
  position: absolute;
  bottom: 30px !important;
}
@media (max-width: 426px) {
  .hero .swiper-pagination {
    bottom: 40px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .swiper-pagination {
    bottom: 40px !important;
  }
}
.hero .swiper-pagination-bullet {
  background-color: #ffffff;
}
.hero .swiper-slide {
  position: relative;
}
.hero .swiper-slide:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: #000000;
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 44%);
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 44%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 44%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
@media (max-width: 426px) {
  .hero .swiper-slide {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .swiper-slide {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  flex: none;
}
.hero__img-wrap img {
  display: block;
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__img-wrap img {
    height: 500px;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__img-wrap img {
    height: 450px;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 50% 20%;
  }
}

.prod-content .swiper {
  max-width: 90%;
  position: static !important;
}
@media (max-width: 426px) {
  .prod-content .swiper {
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .prod-content .swiper {
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .prod-content .swiper {
    max-width: 100%;
    padding: 30px 10px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .prod-content .swiper {
    max-width: 100%;
  }
}

.swiper.swiper-3s {
  padding: 30px 20px !important;
}
@media (max-width: 426px) {
  .swiper.swiper-3s {
    padding: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper.swiper-3s {
    padding: 0 !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .swiper.swiper-3s {
    padding: 0 !important;
  }
}

@media (max-width: 426px) {
  .home .hero__description {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .hero__description {
    display: none;
  }
}
.home .box__arts--bg {
  padding-top: 40px;
}
.home .box__arts--bg::before {
  content: none;
}
.home .box__arts--bg .block-head {
  padding-bottom: 40px;
}
@media (max-width: 426px) {
  .home .box__arts--bg .block-head {
    padding-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .box__arts--bg .block-head {
    padding-bottom: 0;
  }
}
@media (max-width: 426px) {
  .home .box__arts--bg .grid {
    margin-top: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .box__arts--bg .grid {
    margin-top: 30px;
  }
}

.arts {
  position: relative;
  padding: 40px 0;
}
@media (max-width: 426px) {
  .arts {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts {
    padding: 30px 0;
  }
}
@media (max-width: 426px) {
  .arts {
    padding-bottom: 120px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts {
    padding-bottom: 120px;
  }
}
.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;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.arts .row .col {
  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;
}
@media (max-width: 426px) {
  .arts .row .col {
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts .row .col {
    margin-bottom: 20px;
  }
}
.arts .auxi {
  z-index: 2;
}
.arts__pad40 .card {
  margin-bottom: 40px;
}

@media (max-width: 426px) {
  .arts article + article, .box__arts article + article {
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts article + article, .box__arts article + article {
    margin-top: 20px;
  }
}
.arts article + article > a, .box__arts article + article > a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (max-width: 426px) {
  .arts .card__color + .card__color, .box__arts .card__color + .card__color {
    margin-top: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts .card__color + .card__color, .box__arts .card__color + .card__color {
    margin-top: 40px;
  }
}
.arts .btn__center, .box__arts .btn__center {
  margin-top: 45px;
}
.arts .btn__center .btn__primary, .box__arts .btn__center .btn__primary {
  margin: 0 auto;
  width: auto;
}

.box__title {
  font-size: 2.25rem;
  padding: 40px 0;
}
.box__arts {
  position: relative;
  padding: 40px 0;
}
@media (max-width: 426px) {
  .box__arts {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts {
    padding: 30px 0;
  }
}
@media (max-width: 426px) {
  .box__arts:has(.block-hor) {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts:has(.block-hor) {
    padding: 20px 0;
  }
}
@media (max-width: 426px) {
  .box__arts .swiper-slide {
    width: 85%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts .swiper-slide {
    width: 85%;
  }
}
@media (max-width: 426px) {
  .box__arts .block-hor {
    padding: 0;
    gap: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts .block-hor {
    padding: 0;
    gap: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__arts .block-hor .block-hor__content {
    padding: 0;
  }
}
.box__arts--bg {
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.box__carousel {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .box__carousel {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel {
    padding: 30px 0;
  }
}
@media (max-width: 426px) {
  .box__carousel .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .auxi {
    padding: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel .auxi .swiper {
    max-width: 100%;
  }
}
.box__carousel .swiper-button-next, .box__carousel .swiper-button-prev {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 35px !important;
  border-radius: 1rem;
  z-index: 1 !important;
  width: 54px !important;
  height: 54px !important;
  top: calc(50% + 12px) !important;
  outline: none !important;
}
.box__carousel .swiper-button-next::after, .box__carousel .swiper-button-prev::after {
  content: none !important;
}
@media (max-width: 426px) {
  .box__carousel .swiper-button-next, .box__carousel .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .swiper-button-next, .box__carousel .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
}
.box__carousel .swiper-button-next {
  background-image: url("../../imag/v1/icon/ic-arrow-r-circle-g.svg") !important;
  right: 0.5vw !important;
}
.box__carousel .swiper-button-prev {
  background-image: url("../../imag/v1/icon/ic-arrow-l-circle-g.svg") !important;
  left: 0.5vw !important;
}
.box__carousel .swiper-button-disabled {
  opacity: 1 !important;
}
.box__carousel .swiper-button-prev {
  left: 0 !important;
}
@media (max-width: 426px) {
  .box__carousel .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .swiper-button-prev {
    display: none;
  }
}
.box__carousel .swiper-button-next {
  right: 0 !important;
}
@media (max-width: 426px) {
  .box__carousel .swiper-button-next {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .swiper-button-next {
    display: none;
  }
}
.box__carousel .swiper-pagination {
  position: relative;
  margin-top: 45px;
  top: 0;
}
.box__carousel .swiper-slide article {
  height: 100%;
}
.box__carousel .swiper-slide .list {
  max-width: 290px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 426px) {
  .box__carousel .block-head {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .block-head {
    padding: 0 15px;
  }
}
@media (max-width: 426px) {
  .box__carousel .btn {
    margin-top: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .btn {
    margin-top: 30px;
  }
}
@media (max-width: 426px) {
  .box__carousel .btn .btn__primary {
    max-width: 300px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .btn .btn__primary {
    max-width: 300px;
  }
}
.box__carousel--timeline .auxi {
  padding: 0;
}
.box__carousel--timeline .swiper {
  padding-bottom: 0 !important;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel--timeline .swiper {
    max-width: 90%;
  }
}
.box__carousel--timeline .swiper::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.12);
  bottom: 95px;
}
.box__carousel--timeline .swiper .swiper-button-prev {
  left: 10px !important;
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel--timeline .swiper .swiper-button-prev {
    left: 0 !important;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel--timeline .swiper .swiper-button-prev {
    left: 0 !important;
  }
}
.box__carousel--timeline .swiper .swiper-button-next {
  right: 10px !important;
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel--timeline .swiper .swiper-button-next {
    right: 0 !important;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel--timeline .swiper .swiper-button-next {
    right: 0 !important;
  }
}
.box__logos {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .box__logos {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__logos {
    padding: 30px 0;
  }
}
.box__logos .container {
  gap: 150px;
  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) {
  .box__logos .container {
    display: flex;
    gap: 40px 130px;
    max-width: 345px;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__logos .container {
    display: flex;
    gap: 40px 130px;
    max-width: 345px;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
  }
}
.box__logos .logo {
  display: block;
}
@media (max-width: 426px) {
  .box__logos .logo {
    flex: 0 1 27%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__logos .logo {
    flex: 0 1 27%;
  }
}
.box__logos .logo img {
  max-width: 130px;
}
.box__faq {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .box__faq {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__faq {
    padding: 30px 0;
  }
}
.box__faq .auxi {
  max-width: 1000px;
}
.box__faq + .downloads {
  margin-top: 0;
}
.hero {
  position: relative;
}
@media (max-width: 426px) {
  .hero {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero {
    padding: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero {
    padding: 0;
  }
}
.hero .auxi {
  position: relative;
}
@media (max-width: 426px) {
  .hero .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .auxi {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero .auxi {
    padding: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero .auxi {
    padding: 0;
  }
}
.hero__content {
  text-align: center;
  max-width: 860px;
  display: block;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: auto;
  z-index: 2;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  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 {
    padding: 0;
    max-width: 85vw;
    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 0 100%;
    flex: 1 0 100%;
    margin-bottom: 0;
    padding: 20px;
    width: 100%;
    left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__content {
    margin-bottom: 0;
    padding: 20px;
    width: 100%;
    margin-bottom: 0;
    max-width: 85vw;
    left: 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;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__content {
    padding: 20px 20px 40px;
    max-width: 100vw;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__content {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100vw;
  }
}
.hero__content--left {
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  text-align: left;
  max-width: 650px;
  margin-left: 60px;
}
@media (max-width: 426px) {
  .hero__content--left {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__content--left {
    margin-left: 0;
  }
}
.hero__content--right {
  -ms-flex-align: end;
  -moz-box-align: end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  text-align: right;
  max-width: 650px;
  margin-right: 60px;
}
@media (max-width: 426px) {
  .hero__content--right {
    margin-right: 0;
    text-align: left;
    -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__content--right {
    margin-right: 0;
    text-align: left;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.hero__epig {
  font-size: 1rem;
  margin-bottom: 5px;
}
.hero__title {
  font-size: 2.25rem;
  color: #000000;
  line-height: 1.3;
  text-align: left;
  font-size: 30px;
  line-height: 1.3;
  font-family: "Roboto-Medium", sans-serif;
}
@media (max-width: 426px) {
  .hero__title {
    font-size: 1.625rem;
    text-align: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__title {
    font-size: 1.625rem;
    text-align: left;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__title {
    font-size: 2.25rem;
  }
}
.hero__title .bold {
  color: #2A455E;
  font-family: "Roboto-Bold", sans-serif;
}
.hero__description {
  color: #ffffff;
  padding: 0;
  line-height: 1.5;
  margin-top: 32px;
  max-width: 500px;
  text-align: left;
  font-size: 1.1875rem;
}
@media (max-width: 426px) {
  .hero__description {
    text-align: left;
    font-size: 1rem;
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__description {
    text-align: left;
    font-size: 1rem;
    margin-top: 20px;
  }
}
.hero .video {
  overflow: hidden;
  max-height: 540px;
  display: block;
  object-fit: cover;
}
@media (max-width: 426px) {
  .hero .video {
    min-height: 520px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .video {
    min-height: 520px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero .video {
    min-height: 500px;
  }
}
.hero .video::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}
.hero__sm .swiper-slide {
  min-height: auto !important;
}
@media (max-width: 426px) {
  .hero__sm .swiper-slide {
    min-height: 570px !important;
    align-items: stretch !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__sm .swiper-slide {
    min-height: 570px !important;
    align-items: stretch !important;
  }
}
.hero__sm .swiper-slide .auxi {
  margin-top: 70px;
}
@media (max-width: 426px) {
  .hero__sm .swiper-slide .auxi {
    padding: 0 40px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__sm .swiper-slide .auxi {
    padding: 0 40px !important;
  }
}
@media (max-width: 426px) {
  .hero__sm .swiper-slide .auxi .cont-tit__baj {
    display: block !important;
    font-size: 1.1875rem;
    margin-top: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__sm .swiper-slide .auxi .cont-tit__baj {
    display: block !important;
    font-size: 1.1875rem;
    margin-top: 30px;
  }
}
@media (max-width: 426px) {
  .hero__sm .swiper-button-next, .hero__sm .swiper-button-prev {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__sm .swiper-button-next, .hero__sm .swiper-button-prev {
    display: block;
  }
}
.hero__sm .tit--slide, .hero__sm .tit--slide a {
  font-size: 3rem;
}
@media (max-width: 426px) {
  .hero__sm .tit--slide, .hero__sm .tit--slide a {
    font-size: 1.625rem;
    line-height: 1.4;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__sm .tit--slide, .hero__sm .tit--slide a {
    font-size: 1.625rem;
    line-height: 1.4;
  }
}
.hero__block-hor .swiper-slide::before {
  content: none;
}
.hero__banner .hero__img-wrap::before {
  content: none;
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__banner .hero__img-wrap img {
    height: auto;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__banner .hero__img-wrap img {
    height: auto;
  }
}
@media (max-width: 426px) {
  .hero__links {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__links {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__links {
    padding: 0;
  }
}
@media (max-width: 426px) {
  .hero__links .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__links .auxi {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__links .auxi {
    padding: 0;
  }
}
.hero__links .auxi::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.hero__links .auxi:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: #000000;
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 44%);
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 44%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 44%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
.hero__links .hero__content {
  left: 0;
  bottom: 0;
  padding: 30px;
  background: none;
}
.hero__links .hero__links {
  margin-top: 20px;
}
.hero__links .hero__link {
  color: #ffffff;
  padding: 5px 0;
  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;
}
.hero__links .hero__link img {
  width: 24px;
}
.hero__links .hero__link + .hero__link {
  margin-top: 5px;
}
.hero__links .hero__flag {
  width: 50px;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.hero__links .hero__title {
  font-size: 3rem;
  color: #ffffff;
  font-family: "Roboto-Bold", sans-serif;
}

.block-hor {
  gap: 60px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -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-hor {
    margin-bottom: 0;
    padding: 20px;
    gap: 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) {
  .block-hor {
    margin-bottom: 0;
    padding: 20px;
    gap: 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) {
  .block-hor {
    gap: 30px;
  }
}
.block-hor + .block-hor {
  margin-top: 0;
}
.block-hor:last-child {
  margin-bottom: 0;
}
.block-hor .chip {
  margin-bottom: 20px;
}
.block-hor__title, .block-hor__description {
  text-align: left;
}
.block-hor__title {
  display: block;
  line-height: 1.3;
  font-size: 2.25rem;
  font-family: "Roboto-Medium", sans-serif;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 426px) {
  .block-hor__title {
    font-size: 1.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__title {
    font-size: 1.9375rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor__title {
    font-size: 2.125rem;
  }
}
.block-hor__title .txt-dest {
  color: rgba(27, 35, 43, 0.5);
}
.block-hor__description {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-top: 40px;
  color: #0f69c4;
  font-family: "Roboto-Regular", sans-serif;
}
@media (max-width: 426px) {
  .block-hor__description {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__description {
    font-size: 1rem;
  }
}
.block-hor__content {
  padding: 80px 2vw 80px 5vw;
  -webkit-flex: 0 1 50%;
  flex: 0 1 50%;
  -ms-flex-item-align: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
@media (max-width: 426px) {
  .block-hor__content {
    flex: none;
    padding: 0;
    padding-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__content {
    flex: none;
    padding: 0;
    padding-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor__content {
    padding: 40px 0 40px 2vw;
  }
}
.block-hor__img {
  position: relative;
  -webkit-flex: 0 1 50%;
  flex: 0 1 50%;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (max-width: 426px) {
  .block-hor__img {
    flex: none;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__img {
    flex: none;
    width: 100%;
  }
}
.block-hor__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.block-hor .btn {
  margin-top: 30px;
}
@media (max-width: 426px) {
  .block-hor .btn .btn__primary {
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor .btn .btn__primary {
    margin-top: 0;
  }
}
.block-hor .btn__primary {
  width: auto;
}
@media (max-width: 426px) {
  .block-hor .btn__primary {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor .btn__primary {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor .btn__primary {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.block-hor .CUERPO {
  padding-bottom: 0;
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor .CUERPO p {
    font-size: 1rem;
  }
}
.block-hor.inv .block-hor__content {
  padding: 80px 5vw 80px 2vw;
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor.inv .block-hor__content {
    padding: 40px 5vw 40px 2vw;
  }
}
.block-hor__full .block-hor__title {
  font-size: 2.25rem;
  text-transform: uppercase;
  color: #0f69c4;
  font-family: "Roboto-Bold", sans-serif;
}
.block-hor__full .block-hor__title--sm {
  font-size: 28px;
  text-transform: none;
}
.block-hor__full .block-hor__title--sm + .block-hor__description {
  margin-top: 20px;
}
.block-hor__full--white .block-hor__title, .block-hor__full--white .block-hor__description {
  color: #ffffff;
}
@media (max-width: 426px) {
  .block-hor__full--inv {
    -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) {
  .block-hor__full--inv {
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.block-hor__txt {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .block-hor__txt {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__txt {
    padding: 30px 0;
  }
}
.block-hor__txt .auxi {
  gap: 40px;
  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 (max-width: 426px) {
  .block-hor__txt .auxi {
    margin-bottom: 0;
    padding: 20px;
    gap: 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) {
  .block-hor__txt .auxi {
    margin-bottom: 0;
    padding: 20px;
    gap: 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) {
  .block-hor__txt .auxi {
    gap: 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-hor__txt .block-hor__content {
  padding: 0;
}
.block-hor__txt .block-hor__title {
  color: #0f69c4;
  text-transform: uppercase;
  font-size: 2.25rem;
  font-family: "Roboto-Bold", sans-serif;
}
.block-hor__txt .block-hor__description {
  margin: 0;
  color: #0f69c4;
  line-height: 1.8;
}
.block-hor__txt .btn__secondary {
  margin-top: 40px;
}

.formulario .form-content {
  padding: 0;
  background-color: rgba(15, 105, 196, 0.1);
  padding: 60px;
  max-width: 1014px;
  margin: 40px auto;
}
@media (max-width: 426px) {
  .formulario .form-content {
    padding: 20px;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .formulario .form-content {
    padding: 20px;
    margin: 0 auto;
  }
}
.formulario .form-content .auxi {
  max-width: 700px;
  margin-bottom: 0 !important;
  -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 (max-width: 426px) {
  .formulario .form-content .auxi {
    max-width: 90%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .formulario .form-content .auxi {
    max-width: 90%;
  }
}
.formulario .form-content .CUERPO {
  margin-bottom: 0;
  padding-bottom: 0;
}
.formulario .enc-main__title {
  padding-top: 0;
  text-align: left;
}
.formulario .enc-main__description {
  text-align: left;
  margin: 40px 0;
}
.formulario .CUERPO p, .formulario .CUERPO a, .formulario .CUERPO strong, .formulario .CUERPO ul li, .formulario .CUERPO ol li, .formulario .CUERPO span {
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 426px) {
  .formulario .CUERPO p, .formulario .CUERPO a, .formulario .CUERPO strong, .formulario .CUERPO ul li, .formulario .CUERPO ol li, .formulario .CUERPO span {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .formulario .CUERPO p, .formulario .CUERPO a, .formulario .CUERPO strong, .formulario .CUERPO ul li, .formulario .CUERPO ol li, .formulario .CUERPO span {
    font-size: 1rem;
  }
}
.formulario .form {
  max-width: 500px;
  margin: 40px auto 0;
}
.formulario .msj {
  padding-bottom: 0;
  display: block;
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: italic;
  font-family: "Roboto-Regular", sans-serif;
}

.search-data {
  margin-top: 10px;
  padding: 0;
  position: relative;
  text-align: left;
}
.search-data__content {
  margin-bottom: 10px;
  font-family: "Roboto-Regular", sans-serif;
}
.search-data__pref {
  font-size: 3rem;
  color: #000000;
  line-height: 1.4;
  font-family: "Roboto-Bold", sans-serif;
}
@media (max-width: 426px) {
  .search-data__pref {
    font-size: 1.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .search-data__pref {
    font-size: 1.9375rem;
  }
}
.search-data__criteria {
  color: #0f69c4;
  font-size: 3rem;
  font-family: "Roboto-Bold", sans-serif;
}
@media (max-width: 426px) {
  .search-data__criteria {
    font-size: 1.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .search-data__criteria {
    font-size: 1.9375rem;
  }
}
.search-data__detail {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1.4;
}

.results .enc-main .auxi, .taxport .enc-main .auxi {
  padding-bottom: 0;
}
@media (max-width: 426px) {
  .results .enc-main .auxi, .taxport .enc-main .auxi {
    padding: 30px 15px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .enc-main .auxi, .taxport .enc-main .auxi {
    padding: 30px 15px 0;
  }
}

.results .enc-main__title {
  padding-top: 0;
  font-size: 1.9375rem;
}
@media (max-width: 426px) {
  .results .enc-main__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .enc-main__title {
    font-size: 1.5rem;
  }
}
.results + .box__arts {
  padding-top: 40px;
}

.wp-pagenavi {
  font-size: 0.9375rem;
  font-family: "Roboto-Medium", 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: 12px 15px;
  margin-right: 5px;
  transition: 0.2s all ease;
  display: block;
  color: #2A455E;
  font-family: "Roboto-Regular", sans-serif;
}
@media (max-width: 426px) {
  .wp-pagenavi a {
    margin-right: 5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi a {
    margin-right: 5px;
  }
}
.wp-pagenavi a:hover {
  background-color: #2A455E;
  color: #ffffff;
}
.wp-pagenavi a.page {
  margin-right: 5px;
}
.wp-pagenavi span {
  display: inline-block;
  padding: 12px 15px;
  margin-right: 5px;
  font-family: "Roboto-Regular", 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: #2A455E;
}

.error {
  padding-bottom: 0;
  background-color: rgba(15, 105, 196, 0.1);
}
.error .auxi {
  margin: 0 auto;
  padding: 90px 0;
  min-height: 80vh;
  max-width: 1300px;
  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) {
  .error .auxi {
    padding: 30px 15px;
    min-height: 60vh;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error .auxi {
    padding: 30px 15px;
    min-height: 60vh;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .error .auxi {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.error__img {
  max-width: 350px;
  width: 100%;
}
@media (max-width: 426px) {
  .error__img {
    max-width: 300px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__img {
    max-width: 300px;
  }
}
.error__content {
  text-align: left;
  margin-left: 30px;
  -webkit-flex: 1 1 65%;
  flex: 1 1 65%;
}
@media (max-width: 426px) {
  .error__content {
    margin-left: 0;
    text-align: center;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__content {
    margin-left: 0;
    text-align: center;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.error__subtit {
  font-size: 3.75rem;
  padding-bottom: 15px;
  color: #1A2B3B;
  font-family: "Roboto-Bold", sans-serif;
}
@media (max-width: 426px) {
  .error__subtit {
    font-size: 2.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__subtit {
    font-size: 2.25rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .error__subtit {
    font-size: 2.25rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .error__subtit {
    font-size: 2.25rem;
  }
}
.error__baj {
  font-size: 2.25rem;
  color: #2A455E;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "Roboto-Regular", sans-serif;
}
@media (max-width: 426px) {
  .error__baj {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__baj {
    font-size: 1.25rem;
  }
}
.error p:not(.error__baj) {
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  max-width: 1000px;
}
@media (max-width: 426px) {
  .error p:not(.error__baj) {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error p:not(.error__baj) {
    font-size: 0.875rem;
  }
}
.error p:not(.error__baj) + p {
  margin-top: 20px;
}
.error a {
  color: #0f69c4;
  text-decoration: underline;
  font-family: "Roboto-Bold", sans-serif;
}

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