@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ó */
@font-face {
  font-family: "DMSans-Regular";
  font-style: woff2 woff;
  font-weight: normal;
  src: url("../fonts/dm-sans/DMSans-Regular.woff2") format("woff2"), url("../fonts/dm-sans/DMSans-Regular.woff") format("woff");
}
@font-face {
  font-family: "DMSans-Medium";
  font-style: woff2 woff;
  font-weight: normal;
  src: url("../fonts/dm-sans/DMSans-Medium.woff2") format("woff2"), url("../fonts/dm-sans/DMSans-Medium.woff") format("woff");
}
@font-face {
  font-family: "DMSans-Bold";
  font-style: woff2 woff;
  font-weight: normal;
  src: url("../fonts/dm-sans/DMSans-Bold.woff2") format("woff2"), url("../fonts/dm-sans/DMSans-Bold.woff") format("woff");
}
/* 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;
  backdrop-filter: blur(10px);
  background-color: rgba(207, 207, 207, 0.54);
  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/arrow-right-b.svg") !important;
  right: 1vw !important;
}

.swiper-button-prev {
  background-image: url("../../imag/v1/icon/arrow-left-b.svg") !important;
  left: 1vw !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: 15px 40px;
  border-radius: 3rem;
  letter-spacing: 0.2px;
  gap: 3px;
  border: 1px solid;
  transition: 0.3s all ease;
  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;
}
@media (max-width: 426px) {
  .btn__primary {
    margin: 10px auto;
    line-height: 20px;
    width: 90%;
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__primary {
    margin: 10px auto;
    line-height: 20px;
    width: 90%;
    text-align: center;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .btn__primary {
    padding: 15px 30px;
  }
}
.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: 14px 36px;
  font-size: 0.875rem;
}
.btn__primary--blue {
  color: #ffffff;
  background-color: #1B232B;
  border-color: #1B232B;
}
.btn__primary--blue:hover {
  background-color: #222D62;
  border-color: #222D62;
}
.btn__primary--medblue {
  color: #ffffff;
  background-color: #222D62;
  border-color: #222D62;
}
.btn__primary--medblue:hover {
  background-color: #1B232B;
  border-color: #1B232B;
}
.btn__primary--white {
  background-color: #ffffff;
  color: #1B232B;
  border-color: #ffffff;
}
.btn__primary--blur {
  color: #ffffff;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
}
.btn__primary--blur:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.btn__primary--outline-white {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}
.btn__primary--outline-blue, .btn__primary--outline {
  background: none;
  color: #1B232B;
  border-color: #1B232B;
}
.btn__primary--outline-blue:hover, .btn__primary--outline:hover {
  background-color: #1B232B;
  color: #ffffff;
}
.btn__primary--outline-blue:hover .icon__arrow-top-b, .btn__primary--outline:hover .icon__arrow-top-b {
  background-image: url("../../imag/v1/icon/arrow-top-w.svg");
}
.btn__primary--outline-blue:hover .icon__download-b, .btn__primary--outline:hover .icon__download-b {
  background-image: url("../../imag/v1/icon/ic-download-file-w.svg");
}
.btn__primary--purple {
  background-color: #5233CC;
  color: #ffffff;
}

.btn__secondary {
  font-size: 1rem;
  color: #1B232B;
  transition: 0.2s all ease;
  font-family: "DMSans-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 {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__secondary {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.btn__secondary:hover {
  color: #1B232B;
}
.btn__secondary--white {
  color: #ffffff;
}
.btn__secondary--white:hover {
  opacity: 0.8;
  color: #ffffff;
}

.btn-icon {
  padding: 15px;
  border-radius: 5px;
  display: block;
  transition: 0.3s all ease;
}
.btn-icon:hover {
  background-color: #1B232B;
}
.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.125rem;
  color: #000000;
  line-height: 1.3;
  text-align: center;
  margin-top: 5px;
  font-family: "DMSans-Medium", sans-serif;
}
.btn-icon__static .btn-icon__subtit {
  text-align: center;
  color: #ffffff;
  font-size: 55px;
  font-family: "DMSans-Medium", sans-serif;
}
.btn-icon__static .btn-icon__title {
  font-size: 1rem;
  color: #ffffff;
  font-family: "DMSans-Regular", sans-serif;
}
.btn-icon.color-blue:hover {
  background-color: #1B232B;
}

.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;
}
.btn__center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.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;
}
.icon__right {
  margin-left: 10px;
}
.icon__left {
  margin-right: 10px;
}
.icon__arrow-right-b {
  background-image: url("../../imag/v1/icon/chevron-right-b.svg");
}
.icon__arrow-top-w {
  background-image: url("../../imag/v1/icon/arrow-top-w.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/chevron-down-w.svg");
}
.icon__info-w {
  background-image: url("../../imag/v1/icon/ic-info-w.svg");
}
.icon__download-b {
  background-image: url("../../imag/v1/icon/ic-download-file-b.svg");
}

.chip {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  background-color: #222D62;
  position: relative;
  padding: 12px 15px;
  border-radius: 3rem;
  transition: 0.2s all ease;
  cursor: pointer;
  font-family: "DMSans-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: #1B232B;
  color: #ffffff;
}

#return-to-top {
  position: fixed;
  bottom: 180px;
  right: 2%;
  border-radius: 50%;
  background-color: #2c3640;
  width: 50px;
  height: 50px;
  z-index: 50;
  cursor: pointer;
  text-decoration: none;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top img {
  width: 25px;
  margin: 0 auto;
  top: calc(50% - 12px);
  vertical-align: middle;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background-color: #222D62;
}
#return-to-top:hover img {
  top: 10px;
}

.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 60px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main .auxi {
    padding: 30px 15px 60px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .enc-main .auxi {
    padding: 0 15px 60px;
  }
}
.enc-main__content {
  text-align: center;
}
.enc-main__epig {
  color: #ffffff;
  font-family: "DMSans-Bold", sans-serif;
}
.enc-main__title {
  padding-top: 30px;
  color: #ffffff;
  line-height: 1.3;
  font-size: 3.125rem;
  margin-left: 0;
  font-family: "DMSans-Medium", sans-serif;
}
@media (max-width: 426px) {
  .enc-main__title {
    padding-top: 20px;
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__title {
    padding-top: 20px;
    font-size: 1.875rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__title {
    font-size: 2.1875rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .enc-main__title {
    font-size: 2.1875rem;
  }
}
.enc-main__description {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #ffffff;
  max-width: 800px;
  margin: 30px auto 0;
  font-family: "DMSans-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.125rem;
  }
}
.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-img, .enc-main__banner {
  position: relative;
}
.enc-main__bg-img:before, .enc-main__banner:before {
  content: "";
  background-color: rgba(27, 35, 43, 0.5);
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.enc-main__bg-img .breadcrumb, .enc-main__bg-img .breadcrumb a, .enc-main__bg-img .pref, .enc-main__banner .breadcrumb, .enc-main__banner .breadcrumb a, .enc-main__banner .pref {
  color: #ffffff !important;
}
.enc-main__bg-img .breadcrumb:after, .enc-main__bg-img .breadcrumb a:after, .enc-main__bg-img .pref:after, .enc-main__banner .breadcrumb:after, .enc-main__banner .breadcrumb a:after, .enc-main__banner .pref:after {
  color: #ffffff !important;
}
.enc-main__bg-img .auxi, .enc-main__banner .auxi {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 426px) {
  .enc-main__bg-img .auxi, .enc-main__banner .auxi {
    padding: 30px 15px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__bg-img .auxi, .enc-main__banner .auxi {
    padding: 30px 15px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.enc-main__bg-img .img-wrap, .enc-main__banner .img-wrap {
  margin-top: 0;
}
.enc-main__bg-img .img-wrap img, .enc-main__banner .img-wrap img {
  min-height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.enc-main__banner .auxi {
  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) {
  .enc-main__banner .auxi {
    padding: 0 15px;
    max-width: 85%;
    margin-left: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__banner .auxi {
    padding: 0 15px;
    max-width: 85%;
    margin-left: 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.enc-main__banner .enc-main__content {
  text-align: left;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 426px) {
  .enc-main__banner .enc-main__content {
    padding: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__banner .enc-main__content {
    padding: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.enc-main__banner .enc-main__title {
  font-size: 3.125rem;
  padding-top: 0;
}
@media (max-width: 426px) {
  .enc-main__banner .enc-main__title {
    font-size: 1.875rem;
    line-height: 1.3;
    font-family: "DMSans-Medium", sans-serif;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__banner .enc-main__title {
    font-size: 1.875rem;
    line-height: 1.3;
    font-family: "DMSans-Medium", sans-serif;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__banner .enc-main__title {
    font-size: 2.1875rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .enc-main__banner .enc-main__title {
    font-size: 2.1875rem;
  }
}
.enc-main__banner .enc-main__description {
  font-size: 1.25rem;
}
@media (max-width: 426px) {
  .enc-main__banner .enc-main__description {
    font-size: 1.125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__banner .enc-main__description {
    font-size: 1.125rem;
  }
}
@media (max-width: 426px) {
  .enc-main__banner .btn__primary {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__banner .btn__primary {
    margin-left: 0;
  }
}
.enc-main__banner .img-wrap img {
  min-height: auto;
}
.enc-main__banner--nobg::before {
  content: none;
}
.enc-main__banner--nobg .enc-main__title {
  color: #1B232B;
  padding-top: 0;
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__banner--nobg .enc-main__title {
    font-size: 1.625rem;
  }
}
.enc-main__banner--nobg .enc-main__description {
  color: #1B232B;
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__banner--nobg .enc-main__description {
    font-size: 1rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__banner--nobg .img-wrap img {
    height: 220px;
  }
}
@media (max-width: 426px) {
  .enc-main__banner--sm .auxi {
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__banner--sm .auxi {
    max-width: 100%;
  }
}
.enc-main__banner--sm .enc-main__content {
  width: 100%;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 426px) {
  .enc-main__banner--sm .enc-main__content {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__banner--sm .enc-main__content {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.enc-main__short .img-wrap img {
  max-height: 300px;
  min-height: auto;
}
@media (max-width: 426px) {
  .enc-main__short .img-wrap img {
    max-height: 200px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__short .img-wrap img {
    max-height: 200px;
  }
}
.enc-main__slider .enc-main__content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  padding-left: 80px;
  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-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .enc-main__slider .enc-main__content {
    padding-left: 15px;
    text-align: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__slider .enc-main__content {
    padding-left: 20px;
    text-align: left;
  }
}
.enc-main__slider .enc-main__title {
  padding-top: 0;
}
.enc-main__slider--bottom .enc-main__content {
  padding-bottom: 30px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.enc-main__slider--bottom .enc-main__title {
  font-size: 2.125rem;
}
@media (max-width: 426px) {
  .enc-main__slider--bottom .enc-main__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__slider--bottom .enc-main__title {
    font-size: 1.875rem;
  }
}

.enc-btn {
  padding: 70px 0;
}
@media (max-width: 426px) {
  .enc-btn {
    padding: 40px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-btn {
    padding: 40px 0;
  }
}
.enc-btn .cont-txt {
  width: 100%;
  position: relative;
  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;
}
@media (max-width: 426px) {
  .enc-btn .cont-txt {
    -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) {
  .enc-btn .cont-txt {
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-btn .cont-txt {
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.enc-btn .cont-txt .tit {
  font-size: 3.125rem;
  color: #000000;
  font-family: "DMSans-Bold", sans-serif;
}
@media (max-width: 426px) {
  .enc-btn .cont-txt .tit {
    font-size: 2.5rem;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-btn .cont-txt .tit {
    font-size: 2.5rem;
    margin: 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-btn .cont-txt .tit {
    margin: 0 auto;
  }
}
.enc-btn .btn__tert {
  background-color: #ffffff;
  position: absolute;
  left: 0;
}
@media (max-width: 426px) {
  .enc-btn .btn__tert {
    max-width: 220px;
    margin: 20px auto 0;
    position: relative;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-btn .btn__tert {
    max-width: 220px;
    margin: 20px auto 0;
    position: relative;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-btn .btn__tert {
    max-width: 220px;
    margin: 20px auto 0;
    position: relative;
  }
}
.enc-btn .btn__tert:hover {
  background-color: #000000;
}

.enc-txt {
  padding: 70px 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: 3.125rem;
  line-height: 130%;
  color: #000000;
  font-family: "DMSans-Bold", sans-serif;
}
@media (max-width: 426px) {
  .enc-txt .auxi .tit {
    font-size: 2.1875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-txt .auxi .tit {
    font-size: 2.1875rem;
  }
}
.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: "DMSans-Medium", sans-serif;
}
@media (max-width: 426px) {
  .enc-txt .auxi .baj {
    font-size: 1.125rem;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-txt .auxi .baj {
    font-size: 1.125rem;
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-txt .auxi .baj {
    font-size: 1.125rem;
    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;
}
.block-head__section {
  margin-bottom: 0;
  padding: 70px 0;
}
@media (max-width: 426px) {
  .block-head__section {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__section {
    padding: 30px 0;
  }
}
.block-head__section .block-head__title {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.block-head__section .block-head__description {
  margin: 30px auto 0;
}
.block-head__epig {
  padding: 0 0 5px;
  font-size: 1rem;
  color: #000000;
  display: inline-block;
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: "DMSans-Regular", sans-serif;
}
.block-head__title {
  font-size: 2.1875rem;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 0;
  text-align: left;
  font-family: "DMSans-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;
}
@media (max-width: 426px) {
  .block-head__title {
    font-size: 1.5625rem;
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__title {
    font-size: 1.5625rem;
    line-height: 1.3;
  }
}
.block-head__title--blanco {
  color: #ffffff;
  font-size: 2.1875rem;
}
.block-head__title--lg {
  font-size: 2.8125rem;
}
.block-head__title--slide, .block-head__title a {
  font-size: 3.125rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: left;
  font-family: "DMSans-Bold", sans-serif;
}
@media (max-width: 426px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 2.1875rem;
    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.1875rem;
    line-height: 1.3;
    margin-bottom: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 3.125rem;
  }
}
.block-head__title--slide::after, .block-head__title a::after {
  content: none;
}
.block-head__description {
  line-height: 1.6;
  font-size: 1.25rem;
  color: #666666;
  margin: 30px 0 0;
  max-width: 990px;
  text-align: left;
  font-family: "DMSans-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.5625rem;
}
@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;
  margin-bottom: 20px;
}
.block-head.form-msj .block-head__title, .block-head.form-msj .block-head__description {
  text-align: center;
}

.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: #2c3640;
  font-size: 0.9375rem;
}
.block-info__txt {
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.3;
  font-family: "DMSans-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.125rem;
  text-transform: uppercase;
  font-family: "DMSans-Bold", sans-serif;
}
.block-info__group {
  margin-top: 20px;
}
.block-info__group .block-info__txt {
  margin-top: 0;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.block-info__group .block-info__pref {
  line-height: 1.4;
  font-size: 1.125rem;
}
.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 {
  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 > a {
  display: block;
}
.card__img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.card__pill {
  left: 15px;
  top: 15px;
  position: absolute;
  padding: 8px 10px;
  font-size: 0.75rem;
  background: #2c3640;
  border-radius: 3px;
  z-index: 2;
  display: inline-block;
}
.card__block-date {
  left: 0;
  top: 0;
  position: absolute;
  padding: 20px;
  background: #222D62;
  z-index: 2;
  text-align: center;
  display: inline-block;
}
.card__day {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 5px;
  font-family: "DMSans-Medium", sans-serif;
}
.card__month {
  font-size: 1rem;
  color: #ffffff;
  font-family: "DMSans-Medium", sans-serif;
}
.card__content {
  position: relative;
  width: 100%;
  padding: 30px 0;
  text-align: left;
  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__epig {
  font-size: 0.9375rem;
  line-height: 1.3;
  color: #f3f4f4;
}
.card__title {
  font-size: 1.375rem;
  color: #000000;
  line-height: 1.6;
  display: inline-block;
  text-align: left;
  font-family: "DMSans-Medium", 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.125rem;
  }
}
.card__title--lg {
  font-size: 1.5625rem;
}
.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: #1B232B;
  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__dark .card__title {
  color: #ffffff;
}
.card__dark .card__block-date {
  color: #ffffff;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
}
.card__full .card__auxi .content .cont-txt {
  padding: 50px 0;
  max-width: 85%;
  margin: 0 auto;
  left: 0;
}
@media (max-width: 426px) {
  .card__full .card__auxi .content .cont-txt {
    padding: 30px 0;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__full .card__auxi .content .cont-txt {
    padding: 30px 0;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__full .card__auxi .content .cont-txt {
    max-width: 95%;
  }
}
@media (max-width: 426px) {
  .card__full .card__auxi .content .cont-txt .cont-tit {
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__full .card__auxi .content .cont-txt .cont-tit {
    margin-bottom: 15px;
  }
}
@media (max-width: 426px) {
  .card__full .card__auxi .content .cont-txt .box__chips {
    padding-top: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__full .card__auxi .content .cont-txt .box__chips {
    padding-top: 10px;
  }
}
@media (max-width: 426px) {
  .card__full .card__auxi .content .cont-txt .box__chips .pref {
    display: block;
    width: 100%;
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__full .card__auxi .content .cont-txt .box__chips .pref {
    display: block;
    width: 100%;
    font-size: 0.875rem;
  }
}
@media (max-width: 426px) {
  .card__full .card__auxi .content .cont-txt .box__chips li {
    margin: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__full .card__auxi .content .cont-txt .box__chips li {
    margin: 0;
  }
}
.card__full .card__auxi .content .block-list {
  margin-top: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 426px) {
  .card__full .card__auxi .content .block-list {
    margin-top: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__full .card__auxi .content .block-list {
    margin-top: 10px;
  }
}
.card__full .card__auxi .content .list {
  margin-left: 25px;
  max-width: 300px;
}
@media (max-width: 426px) {
  .card__full .card__auxi .content .list {
    margin-left: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__full .card__auxi .content .list {
    margin-left: 15px;
  }
}
.card__full .card__auxi .content .list + .list {
  margin-left: 90px;
}
@media (max-width: 426px) {
  .card__full .card__auxi .content .list + .list {
    margin-left: 25px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__full .card__auxi .content .list + .list {
    margin-left: 25px;
  }
}
.card__full .card__auxi .content .list li {
  list-style-type: disc;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "DMSans-Regular", sans-serif;
}
@media (max-width: 426px) {
  .card__full .card__auxi .content .list li {
    font-size: 0.8125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__full .card__auxi .content .list li {
    font-size: 0.8125rem;
  }
}
.card__full .card__auxi .content .list li + li {
  margin-top: 15px;
}
.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: "DMSans-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.125rem;
  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.5625rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--md .card__title {
    font-size: 1.5625rem;
  }
}
.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 .card__auxi {
  padding: 0;
  background: none;
  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__content {
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.card__icon .card__img {
  max-width: 70px;
  margin: 0 auto;
}
.card__icon .card__title {
  text-align: center;
  margin: 0 auto;
  font-size: 28px;
  line-height: 1.3;
}
.card__icon .card__description {
  text-align: center;
}
.card__txt .card__pill {
  position: relative;
  left: 0;
  top: 0;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.card__txt .card__suf {
  margin-top: 20px;
  color: #666666;
  font-size: 0.875rem;
}
@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__color {
  background-color: #1B232B;
}
.card__color .card__pill {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 15px;
}
.card__color .card__content {
  padding: 30px;
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__color .card__content {
    padding: 20px;
  }
}
.card__color .card__title, .card__color .card__description {
  color: #ffffff;
}
.card__color.bg-lightgrey .card__title, .card__color.bg-lightgrey .card__description {
  color: #000000;
}
.card__color .btn-group {
  padding-top: 60px;
}
.card__color .btn__secondary {
  display: block;
}
.card__color .btn__secondary + .btn__secondary {
  margin-top: 15px;
}
.card__color:not(.bg-lightgrey) .btn__primary {
  background: none;
  border-color: #ffffff !important;
}
.card__form {
  max-width: 496px;
  width: 100%;
  padding: 60px;
}
@media (max-width: 426px) {
  .card__form {
    padding: 30px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__form {
    padding: 30px 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__form {
    padding: 40px;
  }
}
.card__form .form .btn__primary {
  max-width: 200px;
  margin-top: 0;
  padding: 15px 40px;
  -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) {
  .card__form .form .btn__primary {
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__form .form .btn__primary {
    margin-top: 20px;
  }
}
.card__form .form__group input {
  border: none;
  border-radius: 0;
  padding: 12px 10px;
  border-bottom: 2px solid #666666;
}
.card__form .form__title {
  line-height: 1.3;
  font-size: 28px;
  text-align: left;
  font-family: "DMSans-Regular", sans-serif;
}
@media (max-width: 426px) {
  .card__form .form__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__form .form__title {
    font-size: 1.25rem;
  }
}
.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: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 2;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: 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: 30px;
}
@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__video {
  position: relative;
}
.card__video .card__img:hover a:before {
  background-color: rgba(27, 35, 43, 0.6);
}
.card__video .card__img:hover .card__play {
  background-color: #1B232B;
}
@media (max-width: 426px) {
  .card__video .card__img a > img {
    height: 600px;
    object-fit: cover;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__video .card__img a > img {
    height: 600px;
    object-fit: cover;
  }
}
.card__video a::before {
  content: "";
  transition: 0.3s all ease;
  z-index: 0;
  background-color: rgba(27, 35, 43, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.card__video .card__play {
  width: 160px;
  height: 160px;
  padding: 10px;
  margin: 0 auto;
  position: absolute;
  top: calc(50% - 80px);
  left: calc(50% - 80px);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 0.3s all ease;
  z-index: 2;
  backdrop-filter: blur(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;
}
@media (max-width: 426px) {
  .card__video .card__play {
    width: 120px;
    height: 120px;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__video .card__play {
    width: 120px;
    height: 120px;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__video .card__play {
    width: 120px;
    height: 120px;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
  }
}
.card__video .card__play img {
  width: 40px;
}
.card__video .card__content {
  padding: 60px 4vw;
  position: absolute;
  z-index: 2;
  bottom: 0;
}
@media (max-width: 426px) {
  .card__video .card__content {
    padding: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__video .card__content {
    padding: 30px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__video .card__content {
    padding: 30px 4vw;
  }
}
.card__video .card__title {
  color: #ffffff;
  font-size: 3.75rem;
  line-height: 1.2;
  font-family: "DMSans-Medium", sans-serif;
}
@media (max-width: 426px) {
  .card__video .card__title {
    font-size: 2.8125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__video .card__title {
    font-size: 2.8125rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__video .card__title {
    font-size: 2.8125rem;
  }
}
.card__video .card__description {
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 8px;
}
@media (max-width: 426px) {
  .card__video .card__description {
    font-size: 1.125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__video .card__description {
    font-size: 1.125rem;
  }
}
.card__revista a {
  display: block !important;
}
.card__portrait > a {
  display: block !important;
}
@media (max-width: 426px) {
  .card__portrait + .card__portrait {
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__portrait + .card__portrait {
    margin-top: 20px;
  }
}
.card__portrait .card__img {
  -webkit-flex: 0 0 48%;
  flex: 0 0 48%;
}
.card__portrait .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;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.card__portrait .card__content {
  padding: 15px;
  background-color: #f3f4f4;
  width: auto;
  text-align: center;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__portrait .card__title {
  margin-top: 0;
  font-size: 1rem;
  font-family: "DMSans-Bold", sans-serif;
}
.card__portrait .card__description {
  margin-top: 5px;
  font-size: 0.75rem;
}
.card__portrait .card__title, .card__portrait .card__description {
  text-align: left;
}
.card__portrait .btn {
  margin-top: 30px;
  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;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.card__portrait .btn__primary {
  margin-top: 0;
}
.card__link .card__content {
  padding: 20px 40px;
  background-color: #ffffff;
  gap: 20px;
  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;
  -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__link .card__title {
  font-size: 1rem;
}
.card__link a {
  transition: 0.3s all ease;
}
.card__link a:hover {
  transform: translateY(-2px);
}
.card__link a:hover .card__content {
  -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);
}

.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: 3.125rem;
  display: block;
}
.box__full .cont-tit .tit::after {
  content: none;
}
@media (max-width: 426px) {
  .box__full .cont-tit .tit {
    font-size: 2.1875rem;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__full .cont-tit .tit {
    font-size: 2.1875rem;
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__full .cont-tit .tit {
    max-width: 100%;
    font-size: 3.125rem;
  }
}
.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: "DMSans-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: "DMSans-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;
  }
}

.list a {
  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;
}
.list a:hover .list__title {
  color: #1B232B;
}
.list li + li {
  margin-top: 24px;
}
.list img {
  width: 40px;
}
.list__title {
  font-size: 1.125rem;
  color: #1B232B;
  transition: 0.3s all ease;
}
.list__detail {
  font-size: 0.75rem;
  margin-top: 4px;
  color: #1B232B;
}

.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: "DMSans-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 {
  font-size: 0.875rem;
  margin-bottom: 20px;
  color: #1B232B;
  font-family: "DMSans-Bold", sans-serif;
}
.form__group {
  position: relative;
}
.form__group label {
  color: #666666;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 10px;
}
.form__group input, .form__group select, .form__group textarea {
  width: 100%;
  padding: 15px 20px;
  color: #000000;
  border: 2px solid #666666;
  width: 100%;
  border-radius: 12px;
  font-size: 1rem;
  transition: 0.3s all ease;
}
.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: #222D62;
  transition: 0.5s all ease;
  outline: none;
}
.form__group select {
  padding: 15px 20px;
  border-color: #666666;
  background-image: url("../../imag/v1/icon/chevron-down-b.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 15px;
  background-size: 20px;
}
.form__group--error input, .form__group--error select, .form__group--error textarea {
  border-color: #e2425f;
}
.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.6875rem;
  color: #666666;
  line-height: 1.3;
  text-align: left;
  margin-top: 4px;
}
.form__caption--error {
  color: #e2425f;
}
.form .__validator-alert {
  left: 0px;
  top: 0;
}
.form .__validator-alert span {
  position: relative;
  background: none;
  box-shadow: none;
  color: #e2425f;
  padding: 5px 0 0;
  width: 100%;
  font-size: 0.6875rem;
  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: #1B232B;
  background-color: #1B232B;
}
.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 #1B232B;
  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: #1B232B;
  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 .btn__primary {
  padding: 13px 60px;
}
.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: #f3f4f4;
  width: 100%;
  cursor: inherit;
  border: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form .d-flex .btn-file {
  background-color: #1B232B;
  border: 1px solid #1B232B;
  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: #1B232B;
  border-color: #1B232B;
  color: #ffffff;
}

.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: "DMSans-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.125rem;
  font-family: "DMSans-Bold", sans-serif;
}
.table-custom__subtitle {
  font-size: 0.9375rem;
  text-transform: uppercase;
  font-family: "DMSans-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: "DMSans-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: #1B232B;
  width: 25%;
  font-family: "DMSans-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 #f3f4f4;
}
.table-custom tbody {
  padding: 20px;
}
.table-custom tr:first-child {
  border-top: none;
}
.table-custom tr:last-child {
  border-bottom: none;
}

.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1B232B;
  z-index: 1000;
  display: none;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media (max-width: 426px) {
  .bottom-bar {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .bottom-bar {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
.bottom-bar__button {
  padding: 10px;
  gap: 7px;
  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-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex: 0 1 33.33333%;
  flex: 0 1 33.33333%;
}
.bottom-bar img {
  width: 24px;
}
.bottom-bar__text {
  color: #ffffff;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.3;
  font-family: "DMSans-Medium", sans-serif;
}

.menujq > ul {
  margin-left: 0 !important;
  list-style: none;
}
.menujq > ul > li {
  list-style: none !important;
  overflow: hidden;
  margin-bottom: 3px;
}
.menujq > ul > li ul {
  display: none;
}
.menujq > ul > li ul a {
  color: #1B232B;
  text-decoration: underline;
  font-family: "DMSans-Bold", sans-serif;
}
.menujq > ul > li ul p {
  color: #000000;
}
.menujq > ul > li ul p + p {
  margin-top: 15px;
}
.menujq__head {
  position: relative;
  display: block;
  margin: 0;
  padding: 25px 50px 25px 25px;
  color: #1B232B;
  background-color: #f3f4f4;
}
@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;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-image: url("../../imag/v1/icon/chevron-down-b.svg");
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 100%;
  bottom: calc(50% - 12px);
  transition: 0.2s all ease;
}
@media (max-width: 426px) {
  .menujq__head:after {
    top: calc(50% - 7px);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__head:after {
    top: calc(50% - 7px);
  }
}
.menujq__tit {
  color: #1B232B;
  font-size: 1.25rem;
  line-height: 1.4;
}
@media (max-width: 426px) {
  .menujq__tit {
    font-size: 0.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__tit {
    font-size: 0.9375rem;
  }
}
.menujq .desplegable ul {
  list-style: none;
  padding: 30px 30px;
}
@media (max-width: 426px) {
  .menujq .desplegable ul {
    padding: 20px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq .desplegable ul {
    padding: 20px 15px;
  }
}
.menujq .desplegable ul li {
  list-style: none !important;
}
.menujq .desplegable ul li p {
  line-height: 1.5;
}
@media (max-width: 426px) {
  .menujq .desplegable ul li p {
    font-size: 0.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq .desplegable ul li p {
    font-size: 0.9375rem;
  }
}
.menujq .desplegable.active .menujq__head {
  color: #ffffff;
  background-color: #1B232B;
}
.menujq .desplegable.active .menujq__head .menujq__tit {
  color: #ffffff;
}
.menujq .desplegable.active .menujq__head:after {
  transform: rotate(180deg);
  background-image: url("../../imag/v1/icon/chevron-down-w.svg");
}
.menujq .list ul {
  padding: 20px 0;
  list-style: none;
  display: block !important;
}
.menujq .list ul li {
  list-style: none !important;
}
.menujq .list ul li a {
  background: none;
  color: #1B232B;
  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;
}
.menujq .list ul li a:after {
  content: none;
}
.menujq .list ul li a img {
  width: 23px;
  margin-right: 8px;
}
.menujq__faq {
  margin: 40px 0;
}
.menujq__faq > ul > li:first-child > ul {
  display: block;
}
.menujq__faq .menujq__head {
  padding: 25px 25px 25px 70px;
  background-color: #ffffff !important;
}
@media (max-width: 426px) {
  .menujq__faq .menujq__head {
    padding: 15px 15px 15px 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__faq .menujq__head {
    padding: 15px 15px 15px 40px;
  }
}
.menujq__faq .menujq__head:after {
  width: 60px;
  height: 60px;
  background-image: url("../../imag/v1/icon/chevron-faq-left.svg");
  transition: 0.3s all ease;
  top: 8px;
  right: auto;
  left: 0;
  margin-right: 0;
}
@media (max-width: 426px) {
  .menujq__faq .menujq__head:after {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__faq .menujq__head:after {
    width: 30px;
    height: 30px;
  }
}
.menujq__faq .menujq__head h2 {
  font-size: 1.375rem;
  font-weight: bold;
  color: #000000;
  line-height: 120%;
}
@media (max-width: 426px) {
  .menujq__faq .menujq__head h2 {
    font-size: 1.125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__faq .menujq__head h2 {
    font-size: 1.125rem;
  }
}
.menujq__faq .desplegable ul {
  padding-top: 0 !important;
}
.menujq__faq .desplegable .CUERPO p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #1B232B;
}
.menujq__faq .desplegable .CUERPO ul {
  display: block !important;
}
.menujq__faq .desplegable .CUERPO ul li {
  line-height: 1.4;
  list-style: disc !important;
  color: #1B232B;
  font-size: 1.125rem;
}
.menujq__faq .desplegable .CUERPO ol li {
  line-height: 1.4;
  list-style: decimal !important;
  color: #1B232B;
  font-size: 1.125rem;
}
.menujq__faq .desplegable.active .menujq__head:after {
  transform: rotate(90deg);
  background-image: url("../../imag/v1/icon/chevron-faq-left.svg");
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.inner-nav-container {
  margin: 0 auto;
}
@media (max-width: 426px) {
  .inner-nav-container {
    flex-direction: column;
    background-color: #1B232B;
    position: relative;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .inner-nav-container {
    margin-bottom: 60px;
    background-color: #1B232B;
    position: relative;
  }
}
.inner-nav-container .inner-nav {
  text-align: center;
  margin: 0 auto;
  position: relative;
  width: 100%;
  gap: 20px;
  padding: 15px 0;
  background-color: #1B232B;
  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;
}
@media (max-width: 426px) {
  .inner-nav-container .inner-nav {
    overflow-x: scroll;
    padding: 10px 0;
    -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) {
  .inner-nav-container .inner-nav {
    overflow-x: scroll;
    padding: 10px 0;
    -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) {
  .inner-nav-container .inner-nav {
    gap: 10px;
  }
}
@media (max-width: 426px) {
  .inner-nav-container .inner-nav .pill {
    text-align: left;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .inner-nav-container .inner-nav .pill {
    text-align: left;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .inner-nav-container .inner-nav .pill {
    width: 100%;
    text-align: left;
  }
}
.inner-nav-container .inner-nav .pill.active a {
  background-color: #ffffff;
  color: #1B232B;
}
.inner-nav-container .inner-nav .pill a {
  padding: 12px 20px;
  display: block;
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.3;
  transition: 0.3s all ease;
  height: 100%;
  border-radius: 3rem;
  font-family: "DMSans-Medium", sans-serif;
}
@media (min-width: 767px) and (max-width: 991px) {
  .inner-nav-container .inner-nav .pill a {
    font-size: 0.875rem;
    padding: 10px;
  }
}
.inner-nav-container .inner-nav .pill a:hover {
  background-color: #2c3640;
}
.inner-nav-container__sm {
  margin-bottom: 0;
}
.inner-nav-container__sm .inner-nav {
  justify-content: left;
  gap: 5px;
  padding: 0;
  background-color: #2c3640;
  border-top: 1px solid #666666;
  text-align: left;
}
.inner-nav-container__sm .inner-nav .pill a {
  font-size: 0.8125rem;
  padding: 10px;
  font-family: "DMSans-Regular", sans-serif;
}
.inner-nav-container__sm .inner-nav .pill__first {
  padding-left: 15px;
}
.inner-nav-container__sm .inner-nav .pill__last {
  padding-right: 15px;
}
.inner-nav-container__sm .inner-nav .pill-sm {
  background-color: #414B56;
  padding: 5px 25px 5px 60px;
  min-width: 210px;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
}
@media (max-width: 426px) {
  .inner-nav-container__sm .inner-nav .pill-sm {
    padding: 5px 25px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .inner-nav-container__sm .inner-nav .pill-sm {
    padding: 5px 25px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .inner-nav-container__sm .inner-nav .pill-sm {
    padding: 5px 25px;
  }
}
.inner-nav-container__sm .inner-nav .pill-sm p {
  font-size: 0.8125rem;
  color: #ffffff;
}

.block-tabs {
  padding: 70px 0;
}
@media (max-width: 426px) {
  .block-tabs {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs {
    padding: 30px 0;
  }
}
.block-tabs .auxi {
  max-width: 1095px;
}
@media (max-width: 426px) {
  .block-tabs .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .auxi {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .auxi {
    padding: 0;
  }
}
@media (min-width: 1399px) {
  .block-tabs .auxi {
    max-width: 1200px;
  }
}
.block-tabs .block-hor {
  padding: 70px;
  background-color: #ffffff;
  border: 1px solid #EBEBEB;
}
@media (max-width: 426px) {
  .block-tabs .block-hor {
    padding: 20px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .block-hor {
    padding: 20px 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .block-hor {
    padding: 40px;
    gap: 30px;
  }
}
.block-tabs .block-hor__img {
  -webkit-flex: 0 0 34%;
  flex: 0 0 34%;
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .block-hor__img {
    -webkit-flex: 0 0 40%;
    flex: 0 0 40%;
  }
}
.block-tabs .block-hor__description {
  margin-top: 25px;
}
.block-tabs .block-hor .btn__secondary {
  margin-top: 25px;
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tabs {
    max-width: 95%;
    margin: 0 auto;
  }
}
.block-tabs .tab-btns {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 426px) {
  .block-tabs .tab-btns {
    overflow: auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .tab-btns {
    overflow: auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tab-btns {
    overflow: auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
.block-tabs .tab-btns a {
  font-size: 1rem;
  color: #CCC;
  background-color: #ffffff;
  position: relative;
  padding: 30px;
  border-right: 1px solid #EBEBEB;
  border-bottom: 4px solid rgba(255, 255, 255, 0);
  transition: 0.3s all ease;
}
@media (max-width: 426px) {
  .block-tabs .tab-btns a {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .tab-btns a {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tab-btns a {
    padding: 25px;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.block-tabs .tab-btns a:last-child {
  border-right: none;
}
.block-tabs .tab-btns a.active {
  color: #1B232B;
  border-bottom-color: #1B232B;
}
.block-tabs .tab-btns a:not(.active):hover {
  color: #222D62;
  border-bottom-color: #222D62;
}
.block-tabs .tab-content {
  visibility: hidden;
  height: 0;
  opacity: 0;
  background-color: #ffffff;
  transition: opacity 600ms, visibility 600ms;
}
@media (max-width: 426px) {
  .block-tabs .tab-content {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .tab-content {
    padding: 0;
  }
}
.block-tabs .tab-content .block-full-hor {
  display: none;
}
.block-tabs .tab-content.active {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.block-tabs .tab-content.active .block-full-hor {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}

.filter {
  padding: 40px 0;
}
.filter select, .filter input {
  min-height: 54px;
}
.filter__center .search {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .filter .block-head {
    margin-bottom: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter .block-head {
    margin-bottom: 40px;
  }
}
.filter__container {
  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) {
  .filter__container {
    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) {
  .filter__container {
    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) {
  .filter__container {
    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;
    -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) {
  .filter__container {
    gap: 20px;
  }
}
.filter__container--center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.filter__container--center .filter__select {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.filter__container--center .filter__select select {
  -webkit-flex: 0 1 280px;
  flex: 0 1 280px;
}
@media (max-width: 426px) {
  .filter__container--center .filter__select select {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter__container--center .filter__select select {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.filter__container--tags {
  gap: 12px;
  padding-top: 30px;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 426px) {
  .filter__container--tags {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -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;
    -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) {
  .filter__container--tags {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -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;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .filter__container--tags {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -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;
  }
}
.filter__select {
  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-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 426px) {
  .filter__select {
    max-width: 450px;
    width: 100%;
    -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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter__select {
    max-width: 450px;
    width: 100%;
    -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;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .filter__select {
    width: 100%;
    justify-content: center;
  }
}
.filter__select select {
  border-color: #CCCCCC;
  font-size: 1rem;
  -webkit-flex: 0 0 250px;
  flex: 0 0 250px;
}
@media (max-width: 426px) {
  .filter__select select {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter__select select {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.filter__pref {
  font-family: "DMSans-Bold", sans-serif;
}
.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: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 426px) {
  .filter .search {
    width: 100%;
    max-width: 450px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter .search {
    width: 100%;
    max-width: 450px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .filter .search {
    width: 100%;
    justify-content: center;
  }
}
.filter .search__input {
  border: 1px solid #2c3640;
  border-right: none;
  padding: 15px 30px;
  border-radius: 4px 0 0 4px;
  background-color: #ffffff;
  font-size: 1.125rem;
  -webkit-flex: 0 0 500px;
  flex: 0 0 500px;
}
@media (max-width: 426px) {
  .filter .search__input {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter .search__input {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .filter .search__input {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.filter .search__button {
  background-color: #1B232B;
  padding: 10px;
  border-radius: 0 4px 4px 0;
  border: 1px solid #0079C8;
}
.filter .search__button img {
  width: 34px;
}
.filter__tag {
  padding: 12px 15px;
  border: 1px solid #2c3640;
  display: block;
  font-size: 1rem;
  border-radius: 4px;
  transition: 0.3s all ease;
}
.filter__tag.active {
  background-color: #1B232B;
  color: #ffffff;
}
.filter__tag:hover {
  background-color: #2c3640;
}

html {
  -webkit-text-size-adjust: none;
  font-size: 16px;
}

body {
  position: relative;
  font-family: "DMSans-Regular", sans-serif;
}

* {
  box-sizing: border-box;
  font-variant: none !important;
  font-family: "DMSans-Regular", sans-serif;
}
*:after, *:before {
  box-sizing: border-box;
}

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

textarea {
  resize: none;
}
textarea:focus {
  border: 2px solid #1B232B;
}
button, input {
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

.img-wrap img {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

.separa {
  width: 100%;
  clear: both;
  height: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.hide {
  display: none !important;
}

.aleft {
  float: left;
}

.text-center {
  text-align: center !important;
}

.container {
  width: 100%;
}

.main {
  z-index: 1;
  position: relative;
}

.auxi {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 426px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .auxi {
    max-width: 1250px;
  }
}
@media (min-width: 1399px) {
  .auxi {
    max-width: 90%;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .auxi--md {
    max-width: 75%;
  }
}
@media (min-width: 1399px) {
  .auxi--md {
    max-width: 75%;
  }
}
@media (max-width: 426px) {
  .auxi__main {
    padding: 0;
    margin-top: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi__main {
    padding: 0;
    margin-top: 15px;
  }
}

.responsive {
  display: none;
}

.access1 {
  height: 0;
  width: 100%;
  color: rgba(255, 255, 255, 0);
  overflow: hidden;
}

@media (max-width: 426px) {
  .desktop {
    display: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .desktop {
    display: none !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .desktop {
    display: block;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .desktop {
    display: block;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .desktop {
    display: block;
  }
}
@media (min-width: 1399px) {
  .desktop {
    display: block;
  }
}

@media (max-width: 426px) {
  .mobile {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .mobile {
    display: block;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .mobile {
    display: none !important;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .mobile {
    display: none !important;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .mobile {
    display: none !important;
  }
}
@media (min-width: 1399px) {
  .mobile {
    display: none !important;
  }
}

.reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.bold, b {
  font-family: "DMSans-Bold", sans-serif;
}

.art-row article {
  margin-bottom: 0;
}

.txt-dest {
  color: #1B232B;
}

.pt-40 {
  padding-top: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-90 {
  padding-top: 90px;
}

.mb-0 {
  margin-bottom: 0;
}

.bg-dark-blue {
  background-color: #1B232B;
}

.bg-blue {
  background-color: #1B232B;
}
.bg-blue .block-head__title, .bg-blue .block-head__description {
  color: #ffffff;
}

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

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

.bg-blur {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.7);
}

.bg-lightgrey {
  background-color: #f3f4f4;
}

.media {
  position: relative;
  padding-bottom: 51.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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 {
  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, body.contraste.articulo .swiper-button-prev, body.contraste.articulo .swiper-button-next {
  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 .card__link .card__content, body.contraste .table-custom th, body.contraste .table-custom td,
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 {
  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/chevron-down-w.svg);
}
body.contraste .icon__arrow-top-b {
  background-image: url("../../imag/v1/icon/arrow-top-w.svg");
}
body.contraste .menu-responsive .menujq__head::after {
  background-image: url(../../imag/v1/icon/chevron-down-w.svg);
}
body.contraste .header .item-icon.search-cont .search-wrapper.active .input-holder .search-icon.btn .ic-search {
  background-image: url("../../imag/v1/icon/ic-search-w.svg") !important;
}
body.contraste .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);
}

.wp-pagenavi {
  font-size: 0.9375rem;
  font-family: "DMSans-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: 14px 18px;
  margin-right: 10px;
  transition: 0.2s all ease;
  display: block;
  border-radius: 12px;
  color: #1B232B;
  background-color: #f3f4f4;
  font-family: "DMSans-Bold", sans-serif;
}
@media (max-width: 426px) {
  .wp-pagenavi a {
    padding: 12px 16px;
    margin-right: 5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi a {
    padding: 12px 16px;
    margin-right: 5px;
  }
}
.wp-pagenavi a:hover {
  background-color: #1B232B;
  color: #ffffff;
}
.wp-pagenavi a.page {
  margin-right: 17px;
}
.wp-pagenavi span {
  display: inline-block;
  padding: 14px 18px;
  margin-right: 10px;
  font-family: "DMSans-Bold", sans-serif;
}
@media (max-width: 426px) {
  .wp-pagenavi span {
    padding: 12px 16px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi span {
    padding: 12px 16px;
  }
}

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

.breadcrumbs {
  margin-top: 20px;
  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: "DMSans-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;
}

.inv {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.grid {
  gap: 20px;
  display: grid;
}
@media (max-width: 426px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.grid__col-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 426px) {
  .grid__col-4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .grid__col-4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .grid__col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid__col-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 426px) {
  .grid__col-3 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .grid__col-3 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .grid__col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid__col-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 426px) {
  .grid__col-2 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .grid__col-2 {
    grid-template-columns: 1fr;
  }
}

.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 {
  overflow: hidden;
}

.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: 60%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .prod-content .swiper-slide {
    width: 60%;
  }
}
.prod-content .swiper-slide .card__art {
  margin-bottom: 0;
}

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

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

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

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

.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 .gallery-top {
  height: 80%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
body.articulo .gallery-top .swiper-slide {
  background-size: cover;
  background-position: center;
}
body.articulo .gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
body.articulo .swiper-button-next, body.articulo .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.6);
}
body.articulo .swiper-button-next {
  right: 25px !important;
}
body.articulo .swiper-button-prev {
  left: 25px !important;
}
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 !important;
  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;
}

.home .header {
  background: none;
  position: fixed;
}
@media (max-width: 426px) {
  .home .header {
    position: relative;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .header {
    position: relative;
  }
}
.home .header__top {
  background-color: rgba(27, 35, 43, 0.6);
}
.home .header__bottom {
  background: none;
}
.home .header__links li a {
  color: #ffffff;
}
.home .header__links li.desp a {
  background-image: url("../../imag/v1/icon/chevron-down-w.svg");
}
.home .header--congreso {
  position: relative;
}
.home .header--congreso.sticky .header__top {
  background-color: #162252;
}

.articulo .header--congreso {
  position: relative;
}
.articulo .header--congreso.sticky .header__top {
  background-color: #162252;
}

.header {
  padding: 0;
  position: relative;
  z-index: 1001;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.header .auxi {
  padding: 10px 0;
  transition: 0.2s all ease;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header .auxi {
    padding: 20px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .header .auxi {
    padding: 20px 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .header .desktop {
    display: none !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;
  background-color: #1B232B;
}
.header.sticky .header__logo {
  -webkit-flex: 0 1 180px;
  flex: 0 1 180px;
}
.header.sticky .header__bottom {
  padding: 20px 4vw 0;
}
@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__bottom .header__links > li > a:not(.btn__primary) {
  padding-bottom: 37px;
}
.header.sticky .header__top {
  background-color: rgba(54, 66, 78, 0.6);
}
.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;
}
.header__cont {
  position: relative;
  z-index: 2;
}
.header__top {
  background-color: #2c3640;
  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: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.header__top .header__links {
  margin-right: 4vw;
}
.header__top .header__links li:hover > a {
  background-color: #1B232B;
}
.header__top .header__links li:hover > a::before {
  content: none;
}
.header__top .header__links li a {
  color: #ffffff;
  padding: 10px;
  font-size: 0.875rem;
  transition: 0.3s all ease;
  font-family: "DMSans-Regular", sans-serif;
}
.header__top .header__links li.desp {
  position: relative;
}
.header__top .header__links li.desp a {
  padding-right: 25px;
  background-position: 95% 14px;
  background-size: 12px;
}
.header__top .header__links .sub-menu {
  min-width: 250px;
  width: 100%;
  top: 100%;
  padding: 10px;
  border-radius: 0 12px 12px;
  background-color: #1B232B;
}
.header__top .header__links .sub-menu a {
  color: #ffffff;
  font-size: 0.875rem;
  padding: 9px 10px !important;
}
.header__top .header__links .sub-menu a:hover {
  background-color: #ffffff;
  color: #1B232B;
}
.header__btn-group {
  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: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.header__group {
  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) {
  .header__group {
    gap: 10px;
  }
}
.header__btns {
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.header__btns.header__links {
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header__btns .desp, .header__btns .access-top {
  padding-bottom: 30px;
}
.header__btns .item-icon.search-cont {
  margin-bottom: 30px;
}
.header__btns .btn__primary {
  padding: 15px 40px;
  margin-right: 15px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__btns .btn__primary {
    font-size: 0.875rem;
    padding: 13px 20px;
    margin-right: 0;
  }
}
.header__btns .btn__primary span {
  width: 15px;
}
.header__btns .sub-menu {
  max-width: 250px !important;
}
.header__contact a {
  gap: 10px;
  padding: 14px;
  color: #ffffff;
  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__contact img {
  width: 24px;
}
.header__contact--blue {
  background-color: #1B232B;
}
.header__bottom {
  padding: 30px 4vw 0;
  gap: 30px;
  transition: 0.3s all ease;
  background-color: #1B232B;
  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 {
    gap: 10px;
    padding: 20px 20px 0;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__bottom {
    gap: 30px;
    padding: 30px 2vw 0;
  }
}
.header__bottom .btn__primary {
  white-space: nowrap;
  min-height: 52px;
}
.header__bottom .btn__primary .icon__right {
  margin-left: 2px;
}
.header__logo {
  transition: 0.3s all ease;
  -webkit-flex: 0 0 210px;
  flex: 0 0 210px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__logo {
    -webkit-flex: 0 0 160px;
    flex: 0 0 160px;
  }
}
.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__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;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__links {
    gap: 10px;
  }
}
.header__links .desp:hover .sub-menu {
  display: grid;
}
.header__links .desp:hover .btn__primary--blur {
  background-color: rgba(255, 255, 255, 0.4);
}
.header__links .desp__int {
  position: relative;
}
.header__links .desp__int > a {
  border-radius: 12px 0 0 12px !important;
}
.header__links .desp__int:hover .sub-menu__int {
  display: block;
}
.header__links .desp__int:hover > a {
  background-color: #1B232B;
  color: #ffffff !important;
}
.header__links .desp__int:hover > a:hover {
  background-color: #1B232B !important;
}
.header__links .desp__int:hover > a .icon__arrow-top-b {
  background-image: url("../../imag/v1/icon/arrow-top-w.svg");
}
.header__links .desp__int > a {
  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;
}
.header__links > li:last-child a {
  margin-right: 0;
}
.header__links > li:hover .sub-menu {
  display: grid;
}
.header__links > li:hover > a:before {
  background-color: #ffffff;
}
.header__links > li a {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 0;
  line-height: 1.4;
  color: #ffffff;
  padding: 15px 10px 47px;
  position: relative;
  font-family: "DMSans-Regular", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__links > li a {
    font-size: 0.875rem;
  }
}
.header__links > li a.selected {
  font-family: "DMSans-Bold", sans-serif;
}
.header__links > li a img {
  max-width: 60px;
  width: 100%;
}
.header__links > li > a::before {
  content: "";
  left: 10px;
  width: 40%;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  bottom: 30px;
  background: transparent;
  transition: 0.3s all ease;
}
.header__links > li.desp a {
  padding-right: 30px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 95% 18px;
  background-size: 15px;
  background-image: url("../../imag/v1/icon/chevron-down-w.svg");
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__links > li.desp a {
    padding-right: 20px;
    background-position: 100% 18px;
  }
}
.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: 88%;
  padding: 20px 10px;
  border-radius: 15px;
  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__row {
  gap: 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.header__links .sub-menu__row li {
  width: 100%;
}
.header__links .sub-menu__row li a {
  gap: 15px;
  padding: 9px 15px;
  color: #1B232B;
  font-size: 0.9375rem;
  transition: 0.3s all ease;
  border-radius: 12px;
  background-image: none !important;
  font-family: "DMSans-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__row li a:hover {
  background: none;
  background-color: #1B232B;
  color: #ffffff;
}
.header__links .sub-menu__row li a + a {
  margin-top: 5px;
}
.header__links .sub-menu__row:last-child .sub-menu__int {
  right: 100%;
  left: auto;
  border-radius: 12px 0 12px 12px;
}
.header__links .sub-menu__row:last-child .desp__int > a {
  border-radius: 0 12px 12px 0 !important;
}
.header__links .sub-menu__row .sub-menu__title a {
  color: #1B232B;
  font-size: 1rem;
  margin-bottom: 6px;
  line-height: 1.4;
  font-family: "DMSans-Bold", sans-serif;
}
.header__links .sub-menu__int {
  display: none;
  position: absolute;
  z-index: 30;
  width: 80%;
  left: 100%;
  right: auto;
  top: 0;
  padding: 20px 10px;
  border-radius: 0 12px 12px;
  background: #1B232B;
  transition: 0.2s all ease;
}
.header__links .sub-menu__int a {
  padding: 10px !important;
  color: #ffffff !important;
}
.header__links .sub-menu__int a:hover {
  background-color: #2c3640 !important;
}
.header__links .sub-menu__mega {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  padding: 50px 4vw;
  top: 100%;
  background: #ffffff;
  transition: 0.2s all ease;
  gap: 60px;
  border-radius: 0;
  grid-template-columns: 1fr 1fr 1fr;
}
.header__links .sub-menu__mega .sub-menu__row li {
  width: auto;
}
.header__links .sub-menu__mega .sub-menu__row li a {
  padding: 13px;
  color: #1B232B;
  font-size: 1rem;
  transition: 0.3s all ease;
}
.header__links .sub-menu__mega .sub-menu__row li a:hover {
  background-color: #1B232B;
  color: #ffffff;
}
.header .item-icon {
  position: relative;
}
.header .item-icon a span {
  transform: none !important;
}
.header .item-icon a::before, .header .item-icon a:after {
  content: none;
}
.header .item-icon a img {
  width: 24px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header .item-icon a img {
    width: 20px;
  }
}
.header .item-icon .ic-access {
  display: inline-block;
  background-image: url("../../imag/v1/icon/ic-access-w.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 .item-icon .ic-access {
    width: 28px;
    height: 28px;
  }
}
.header .item-icon .ic-access.change {
  background-image: url("../../imag/v1/icon/ic-close-w.svg");
}
.header .item-icon.search-cont {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header .item-icon.search-cont {
    margin-left: 0;
  }
}
.header .item-icon.search-cont .search-wrapper {
  position: absolute;
  right: 0;
}
.header .item-icon.search-cont .search-wrapper.active .close {
  right: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition-delay: 0.5s;
}
.header .item-icon.search-cont .search-wrapper.active .input-holder {
  width: 22vw;
  margin-right: 15px;
  background-color: #ffffff;
  border: none;
  transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
}
.header .item-icon.search-cont .search-wrapper.active .input-holder .search-input {
  opacity: 1;
  padding: 12px 30px;
  outline: none;
  color: #1B232B;
}
.header .item-icon.search-cont .search-wrapper.active .input-holder .search-icon {
  border: none;
}
.header .item-icon.search-cont .search-wrapper.active .input-holder .search-icon.btn {
  padding: 10px 20px;
  top: 0;
  display: block;
}
.header .item-icon.search-cont .search-wrapper.active .input-holder .search-icon.btn .ic-search {
  background-image: url("../../imag/v1/icon/ic-search-b.svg");
}
.header .item-icon.search-cont .search-wrapper.active .input-holder .search-icon.ic {
  display: none;
}
.header .item-icon.search-cont .search-wrapper .close {
  position: absolute;
  z-index: 0;
  opacity: 0;
  top: 15px;
  right: 10px;
  cursor: pointer;
  transform: rotate(-180deg);
  transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
  transition-delay: 0.2s;
  margin-top: 0;
  font-size: 1.25rem;
}
.header .item-icon.search-cont .search-wrapper .close::before {
  width: 2px;
  height: 20px;
  left: 3px;
  top: -5px;
}
.header .item-icon.search-cont .search-wrapper .close::after {
  width: 20px;
  height: 2px;
  left: -6px;
  top: 4px;
}
.header .item-icon.search-cont .search-wrapper .input-holder {
  top: -7px;
  height: 45px;
  width: 32px;
  right: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  border-radius: 8px;
}
.header .item-icon.search-cont .search-wrapper .input-holder .search-input {
  width: 100%;
  opacity: 0;
  position: absolute;
  background: transparent;
  outline: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition-delay: 0.3s;
  height: 100%;
  border-radius: 8px;
}
.header .item-icon.search-cont .search-wrapper .input-holder .search-input:focus {
  outline: none;
}
.header .item-icon.search-cont .search-wrapper .input-holder .search-input::placeholder {
  color: #000000;
}
.header .item-icon.search-cont .search-wrapper .input-holder .search-input::-webkit-input-placeholder {
  color: #000000;
}
.header .item-icon.search-cont .search-wrapper .input-holder .search-input:-ms-input-placeholder {
  color: #000000;
}
.header .item-icon.search-cont .search-wrapper .input-holder .search-icon {
  top: calc(50% - 12px);
  font-size: 1.25rem;
  border: none;
  border-radius: 6px;
  padding: 0px;
  outline: none;
  position: relative;
  z-index: 2;
  float: right;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.header .item-icon.search-cont .search-wrapper .input-holder .search-icon .ic-search {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../../imag/v1/icon/ic-search.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}
.header .item-icon.search-cont .search-wrapper .close:before, .header .item-icon.search-cont .search-wrapper .close:after {
  position: absolute;
  content: "";
  background: #ffffff;
}
.header .item-icon.search-cont .search-icon.btn {
  display: none;
}
.header .item-icon.search-cont .search-icon.ic {
  text-align: center;
}
.header .item-icon.search-cont .search-icon.ic span {
  top: 4px;
}
.header--congreso {
  background-color: #1D2A61;
  position: relative;
}
.header--congreso .header__top {
  background-color: #162252;
}
.header--congreso .header__bottom {
  background-color: #1D2A61;
}
.header--congreso .header__btns .header__logo img {
  width: 194px;
}
.header--congreso .menu-responsive {
  background-color: #1D2A61;
}

.acc-cont {
  position: absolute;
  right: 38px;
  top: -50%;
  width: 0;
  background-color: #222D62;
  border-radius: 12px;
  transition: 0.2s all ease;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  border: 1px solid #222D62;
}
.acc-cont.active {
  width: 190px;
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.acc-cont .cont-access {
  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;
}
.acc-cont .cont-access li {
  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 .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_l.svg");
}
.acc-cont .cont-access li .ic-text-sm {
  background-image: url("../../imag/v1/icon/ic_text_s.svg");
}

.switch {
  position: relative;
  display: inline-block;
  width: 43px;
  height: 25px;
  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: #f3f4f4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 5px;
  bottom: 4px;
  background-color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider::after {
  position: absolute;
  content: "";
  height: 25px;
  width: 25px;
  left: -34px;
  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 {
  background-color: #1B232B;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}
.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: #1B232B;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.2s all ease;
}
@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: 200px;
}
.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;
  margin-left: 10px;
  padding: 12px 0;
}
.menu-responsive .top-bar .menu-icon .navicon {
  border-radius: 5px;
  display: block;
  position: relative;
  transition: background 0.2s ease-out;
  width: 45px;
  height: 45px;
  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 {
  padding: 15px 20px;
  color: #1B232B;
  font-size: 1rem;
  min-height: 55px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  font-family: "DMSans-Bold", sans-serif;
}
.menu-responsive .menu__links .main-link__btn {
  background-color: rgba(54, 66, 78, 0.22);
  color: #1B232B;
  border-radius: 12px;
  margin: 15px 20px 0;
}
.menu-responsive .menu__links-sec {
  padding-top: 0;
}
.menu-responsive .menu__links-sec li a {
  font-size: 0.9375rem;
  color: #2c3640;
  padding: 14px 20px;
  min-height: auto;
  font-family: "DMSans-Regular", sans-serif;
}
.menu-responsive .menu .cont-access {
  padding: 20px;
  background: #f3f4f4;
  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: #000000;
}
.menu-responsive .menu .cont-access .access .switch .slider:after {
  width: 18px;
  height: 18px;
  bottom: 4px;
  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: #000000;
  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: 20px;
  position: relative;
  color: #000000;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #f3f4f4;
}
.menu-responsive .menu__search button {
  position: absolute;
  top: 8px;
  right: 10px;
  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.125rem;
}
.menu-responsive .accordionItemContent .menu__title a {
  line-height: 1.4;
  font-family: "DMSans-Bold", sans-serif;
}
.menu-responsive .accordionItemContent li a {
  padding: 12px 30px;
  color: #000000;
  display: block;
  font-size: 0.9375rem;
  text-transform: none;
  background: none;
  font-family: "DMSans-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: #1B232B;
  padding: 10px 0;
  border-radius: 0 0 12px 12px;
}
.menu-responsive .menujq .desplegable ul li .menujq__link-dest {
  font-family: "DMSans-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 90px;
  position: relative;
  z-index: 0;
  background-color: #1B232B;
}
@media (max-width: 426px) {
  .footer {
    padding: 30px 0 100px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer {
    padding: 30px 0 100px;
  }
}
.footer .auxi {
  position: relative;
  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;
  -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 .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;
  }
}
@media (max-width: 426px) {
  .footer .auxi .col-reverse {
    flex-direction: column-reverse;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .auxi .col-reverse {
    flex-direction: column-reverse;
  }
}
.footer__top {
  margin-bottom: 80px;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  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) {
  .footer__top {
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__top {
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__top {
    gap: 30px;
    flex-direction: column;
  }
}
.footer__info {
  gap: 25px;
  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 0 20%;
  flex: 0 0 20%;
}
@media (max-width: 426px) {
  .footer__info {
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__info {
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__info {
    width: 100%;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
    -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;
    -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 (min-width: 991px) and (max-width: 1277px) {
  .footer__info {
    gap: 20px;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.footer__info .logo {
  display: block;
  max-width: 230px;
  -webkit-flex: 0 0 230px;
  flex: 0 0 230px;
}
@media (max-width: 426px) {
  .footer__info .logo {
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__info .logo {
    flex: 0 0 auto;
  }
}
@media (max-width: 426px) {
  .footer__info .logo img {
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__info .logo img {
    margin: 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__info .logo img {
    margin: 0 auto;
  }
}
.footer__info .logo__acred {
  max-height: 90px;
  width: auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 426px) {
  .footer__info .logo__acred img {
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__info .logo__acred img {
    margin: 0 auto;
  }
}
.footer__social {
  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) {
  .footer__social {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__social {
    width: 100%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .footer__social {
    gap: 10px;
  }
}
.footer__social a {
  border-radius: 50%;
  padding: 4px;
  display: block;
  transition: 0.3s all ease;
}
.footer__social a:hover {
  background-color: #222D62;
}
.footer__social a img {
  width: 24px;
  height: 24px;
}
.footer__links {
  gap: 30px 100px;
  max-width: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -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;
}
@media (max-width: 426px) {
  .footer__links {
    text-align: center;
    order: 2;
    -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) {
  .footer__links {
    text-align: center;
    order: 2;
    -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) {
  .footer__links {
    gap: 60px;
    -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) {
  .footer__links {
    gap: 40px;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .footer__links {
    gap: 40px;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.footer__links .desktop {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -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;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .footer__links .desktop {
    gap: 20px;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.footer__links .footer__tit {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 20px;
  -webkit-flex: 1 0 100%;
  flex: 1 0 100%;
  font-family: "DMSans-Bold", sans-serif;
}
.footer__links > .footer__col {
  -webkit-flex: 0 1 290px;
  flex: 0 1 290px;
}
.footer__links.menujq {
  order: 1;
  width: 100%;
}
.footer__links.menujq > ul {
  width: 100%;
  text-align: left;
}
.footer__links.menujq > ul .subtit {
  color: #ffffff;
  padding: 15px 0;
  display: block;
  position: relative;
}
.footer__links.menujq > ul .subtit::after {
  content: "";
  position: absolute;
  right: 0;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 100%;
  bottom: calc(50% - 12px);
  transition: 0.2s all ease;
  background-image: url("../../imag/v1/icon/chevron-down-w.svg") !important;
}
.footer__links.menujq > ul > li {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}
.footer__links.menujq > ul > li.active {
  background: none;
}
.footer__links.menujq > ul > li.active .subtit:after {
  transform: rotate(180deg);
}
.footer__links.menujq > ul > li ul {
  padding: 10px 0 20px;
}
.footer__links.menujq > ul > li ul li + li {
  margin-top: 10px;
}
.footer__links.menujq > ul > li ul a {
  color: #ffffff;
  padding: 8px 12px;
  display: block;
  font-size: 0.875rem;
  text-decoration: none;
}
.footer__links.menujq > ul > li:first-child > ul {
  display: none;
}
.footer__col {
  -webkit-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
}
@media (max-width: 426px) {
  .footer__col {
    gap: 12px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__col {
    gap: 12px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .footer__col {
    -webkit-flex: 0 1 30%;
    flex: 0 1 30%;
  }
}
.footer__col ul {
  gap: 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;
}
.footer__col li {
  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 auto;
  flex: 0 1 auto;
}
@media (max-width: 426px) {
  .footer__col li {
    text-align: center;
    line-height: 1.3;
    -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) {
  .footer__col li {
    text-align: center;
    line-height: 1.3;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__col li {
    -webkit-flex: 0 0 22%;
    flex: 0 0 22%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .footer__col li {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.footer__col li a {
  font-size: 0.9375rem;
  color: #ffffff;
  transition: 0.3s all ease;
  line-height: 1.5;
  font-family: "DMSans-Regular", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .footer__col li a {
    font-size: 1rem;
  }
}
.footer__col li a:hover {
  text-decoration: underline;
}
.footer .contact {
  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 (max-width: 426px) {
  .footer .contact {
    -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) {
  .footer .contact {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.footer .contact img {
  width: 24px;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (max-width: 426px) {
  .footer .contact__content {
    text-align: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .contact__content {
    text-align: left;
  }
}
.footer .contact__prefix {
  color: #ffffff;
  font-size: 0.9375rem;
  margin-bottom: 5px;
}
.footer .contact__subtit {
  color: #ffffff;
  line-height: 1.3;
  font-size: 1.125rem;
  font-family: "DMSans-Regular", sans-serif;
}
.footer .btn__primary {
  margin-bottom: 40px;
  width: 100%;
  max-width: 388px;
}
.footer--congreso {
  padding: 40px 0;
  background-color: #1D2A61;
}
.footer--congreso .footer__info {
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.footer--congreso .logo {
  width: auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.footer--congreso .logo img {
  width: 194px;
}
.footer--congreso .footer__center {
  text-align: center;
  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-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--congreso .footer__txt {
  color: #ffffff;
  font-size: 24px;
  text-align: center;
}
.footer--congreso .footer__txt-copy {
  text-align: center;
  margin-top: 60px;
}
.footer--congreso .footer__txt-copy p, .footer--congreso .footer__txt-copy a {
  color: #ffffff;
  font-size: 0.875rem;
  text-align: center;
}

@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-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: rgb(0, 0, 0);
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  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 .swiper-slide::before {
  z-index: 1;
  opacity: 0.8;
}
.hero .swiper-slide .video {
  max-height: 695px;
}
@media (max-width: 426px) {
  .hero .swiper-slide .video {
    max-height: 456px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .swiper-slide .video {
    max-height: 456px;
  }
}
.hero .swiper-slide video {
  display: block;
  object-fit: cover;
}
@media (max-width: 426px) {
  .hero .swiper-slide video {
    min-height: 520px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .swiper-slide video {
    min-height: 520px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero .swiper-slide video {
    min-height: 500px;
  }
}
.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%;
  }
}
.hero__content {
  text-align: center;
  max-width: 1280px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 5rem;
  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: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 426px) {
  .hero__content {
    padding: 0;
    max-width: 100vw;
    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: 50px 15px 80px;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__content {
    margin-bottom: 0;
    padding: 50px 15px 80px;
    width: 100%;
    margin-bottom: 30px;
    max-width: 100vw;
    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__title {
  font-size: 3.75rem;
  color: #ffffff;
  line-height: 1.4;
  text-align: left;
  font-family: "DMSans-Regular", sans-serif;
}
@media (max-width: 426px) {
  .hero__title {
    font-size: 1.875rem;
    text-align: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__title {
    font-size: 1.875rem;
    text-align: left;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__title {
    font-size: 2.1875rem;
  }
}
.hero__description {
  color: #ffffff;
  padding: 0;
  line-height: 1.5;
  margin-top: 32px;
  max-width: 500px;
  text-align: left;
  font-size: 1.125rem;
}
@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 .btn {
  margin-top: 50px;
}
@media (max-width: 426px) {
  .hero .btn {
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .btn {
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 426px) {
  .hero .btn .btn__primary {
    width: 100%;
    margin: 0;
    display: block;
    max-width: 240px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .btn .btn__primary {
    width: 100%;
    margin: 0;
    max-width: 240px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero .auxi {
    padding-top: 60px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero .auxi {
    max-width: 90%;
    padding-top: 60px;
  }
}
.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;
  }
}

.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: 80px;
}
.home .box__arts--bg::before {
  content: none;
}
.home__congreso .hero .swiper-slide::before {
  content: none;
}
.home__congreso .hero .swiper-slide.overlay::before {
  content: "";
}
.home__congreso .hero__img-wrap img {
  height: 82vh;
  object-fit: cover;
  object-position: 50%;
}
@media (max-width: 426px) {
  .home__congreso .box__arts .CUERPO {
    padding-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home__congreso .box__arts .CUERPO {
    padding-bottom: 0;
  }
}
.home__congreso .block-hor {
  gap: 0;
}
.home__congreso .block-hor__content {
  padding: 50px 5vw 20px 5vw;
}
@media (max-width: 426px) {
  .home__congreso .block-hor__content {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home__congreso .block-hor__content {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0 !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .home__congreso .block-hor__content {
    padding: 40px 3vw 20px 3vw;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .home__congreso .block-hor__content {
    padding: 40px 3vw 20px 3vw;
  }
}
.home__congreso .block-hor .CUERPO .btn-group {
  margin-top: 30px;
  gap: 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;
}
@media (max-width: 426px) {
  .home__congreso .block-hor .CUERPO .btn-group {
    -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) {
  .home__congreso .block-hor .CUERPO .btn-group {
    -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: 767px) and (max-width: 991px) {
  .home__congreso .block-hor .CUERPO .btn-group {
    -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;
  }
}
.home__congreso .block-hor .CUERPO .btn-group .btn__primary {
  margin-top: 0;
}
.home__congreso .block-hor .CUERPO .btn__primary {
  color: #ffffff;
  text-decoration: none;
}
.home__congreso .block-hor.inv .block-hor__content {
  padding: 50px 5vw 20px 5vw;
}
@media (max-width: 426px) {
  .home__congreso .block-hor.inv .block-hor__content {
    padding-bottom: 20px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home__congreso .block-hor.inv .block-hor__content {
    padding-bottom: 20px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .home__congreso .block-hor.inv .block-hor__content {
    padding: 40px 3vw 20px 3vw;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .home__congreso .block-hor.inv .block-hor__content {
    padding: 40px 3vw 20px 3vw;
  }
}
@media (max-width: 426px) {
  .home__congreso .block-hor .btn__primary {
    margin: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home__congreso .block-hor .btn__primary {
    margin: 0;
  }
}
@media (max-width: 426px) {
  .home__congreso .block-hor .block-hor__title + .btn__primary {
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home__congreso .block-hor .block-hor__title + .btn__primary {
    margin-top: 20px;
  }
}
@media (max-width: 426px) {
  .home__congreso .block-hor .btn {
    gap: 15px;
    -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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home__congreso .block-hor .btn {
    gap: 15px;
    -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;
  }
}

.arts {
  position: relative;
  padding: 70px 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.1875rem;
  padding: 40px 0;
}
.box__arts {
  position: relative;
  padding: 70px 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 {
    padding: 60px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts {
    padding: 60px 0;
  }
}
.box__arts:not(.box__arts--icons, .box__carousel, .box__arts--bg) .auxi {
  max-width: 1360px;
}
@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--icons {
    padding: 15px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--icons {
    padding: 15px 0;
  }
}
.box__arts--icons .row {
  margin-left: -60px !important;
  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;
}
@media (max-width: 426px) {
  .box__arts--icons .row {
    margin-left: -20px !important;
    gap: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--icons .row {
    margin-left: -20px !important;
    gap: 30px 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__arts--icons .row {
    margin-left: -20px !important;
  }
}
.box__arts--icons .col {
  border-left-width: 60px !important;
  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;
  -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) {
  .box__arts--icons .col {
    border-left-width: 20px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--icons .col {
    border-left-width: 20px !important;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__arts--icons .col {
    border-left-width: 20px !important;
  }
}
.box__arts--icons .btn-icon {
  width: 100%;
  height: 100%;
}
.box__arts--bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 120px 0;
}
@media (max-width: 426px) {
  .box__arts--bg {
    padding: 15px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--bg {
    padding: 15px 0;
  }
}
.box__arts--bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(27, 35, 43, 0.9);
}
.box__arts--bg .auxi {
  position: relative;
}
.box__arts--bg .row {
  gap: 20px 0;
}
@media (max-width: 426px) {
  .box__arts--bg .row {
    margin-left: -15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--bg .row {
    margin-left: -15px;
  }
}
@media (max-width: 426px) {
  .box__arts--bg .col {
    border-left-width: 15px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--bg .col {
    border-left-width: 15px !important;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__arts--bg .col {
    border-left-width: 15px !important;
  }
}
@media (max-width: 426px) {
  .box__arts--bg .card__bg {
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--bg .card__bg {
    margin-top: 0;
  }
}
.box__arts--full {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 426px) {
  .box__arts--full {
    -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__arts--full {
    -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__arts--full .card__bg {
  width: 100%;
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .box__arts--30 .row {
    margin-left: -30px;
  }
}
@media (min-width: 1399px) {
  .box__arts--30 .row {
    margin-left: -30px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .box__arts--30 .row .col {
    border-left-width: 30px;
  }
}
@media (min-width: 1399px) {
  .box__arts--30 .row .col {
    border-left-width: 30px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .box__arts--40 .row {
    margin-left: -40px;
  }
}
@media (min-width: 1399px) {
  .box__arts--40 .row {
    margin-left: -40px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .box__arts--40 .row .col {
    border-left-width: 40px;
  }
}
@media (min-width: 1399px) {
  .box__arts--40 .row .col {
    border-left-width: 40px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .box__arts--50 .row {
    margin-left: -50px;
  }
}
@media (min-width: 1399px) {
  .box__arts--50 .row {
    margin-left: -50px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .box__arts--50 .row .col {
    border-left-width: 50px;
  }
}
@media (min-width: 1399px) {
  .box__arts--50 .row .col {
    border-left-width: 50px;
  }
}
@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: 1399px) {
  .box__carousel .auxi {
    max-width: 90%;
  }
}
@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;
  backdrop-filter: blur(10px);
  background-color: rgba(207, 207, 207, 0.54);
  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/arrow-right-b.svg") !important;
  right: 1vw !important;
}
.box__carousel .swiper-button-prev {
  background-image: url("../../imag/v1/icon/arrow-left-b.svg") !important;
  left: 1vw !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;
}
@media (max-width: 426px) {
  .box__carousel--grid {
    padding: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--grid {
    padding: 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel--grid .prod-content .swiper {
    padding: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel--grid .prod-content .swiper {
    padding: 0;
  }
}
@media (max-width: 426px) {
  .box__carousel--grid .swiper-pagination {
    padding: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--grid .swiper-pagination {
    padding: 15px;
  }
}
.box__logos {
  padding: 70px 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: 70px 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;
}

.hero {
  position: relative;
}
.hero__row {
  gap: 40px;
  margin-top: 40px;
  max-width: 1090px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 426px) {
  .hero__content {
    max-width: 100%;
    -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 {
    max-width: 100%;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.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__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.125rem;
    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.125rem;
    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: 3.125rem;
}
@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;
  }
}
@media (max-width: 426px) {
  .hero__single {
    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) {
  .hero__single {
    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;
  }
}
.hero__single .hero__content {
  padding: 90px 0;
}
@media (max-width: 426px) {
  .hero__single .hero__content {
    position: relative;
    padding: 40px 15px 15px;
    background-color: #f3f4f4;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__single .hero__content {
    position: relative;
    padding: 40px 15px;
    background-color: #f3f4f4;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__single .hero__content {
    padding: 90px 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__single .hero__content {
    padding: 90px 20px;
  }
}
@media (max-width: 426px) {
  .hero__single .hero__title {
    font-size: 2.5rem;
    text-align: center;
    color: #000000;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__single .hero__title {
    font-size: 2.5rem;
    text-align: center;
    color: #000000;
  }
}
@media (max-width: 426px) {
  .hero__single .hero__description {
    display: block;
    color: #000000;
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__single .hero__description {
    display: block;
    color: #000000;
    text-align: center;
  }
}
@media (max-width: 426px) {
  .hero__single .hero__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) {
  .hero__single .hero__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;
  }
}
.hero__single .hero__row .card {
  margin-bottom: 0;
}
@media (max-width: 426px) {
  .hero__single .hero__img-wrap::before {
    content: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__single .hero__img-wrap::before {
    content: none;
  }
}
@media (max-width: 426px) {
  .hero__single .hero__img-wrap img {
    height: 240px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__single .hero__img-wrap img {
    height: 240px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__single .hero__img-wrap img {
    height: 600px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__single .hero__img-wrap img {
    height: 550px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
.hero__cols .hero__content {
  padding: 3rem 5rem;
  max-width: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -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) {
  .hero__cols .hero__content {
    gap: 40px;
    padding: 30px 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) {
  .hero__cols .hero__content {
    gap: 40px;
    padding: 30px 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) {
  .hero__cols .hero__content {
    padding: 20px;
  }
}
.hero__cols .hero__txt {
  max-width: 500px;
  text-align: left;
}
.hero__cols .hero__title {
  text-align: left;
  font-size: 2.8125rem;
}
@media (max-width: 426px) {
  .hero__cols .hero__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__cols .hero__title {
    font-size: 1.875rem;
  }
}
.hero__cols .hero__description {
  text-align: left;
}
@media (max-width: 426px) {
  .hero__cols .hero__description {
    display: block;
    margin-top: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__cols .hero__description {
    display: block;
    margin-top: 30px;
  }
}
.hero__cols .hero__img-wrap {
  position: relative;
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__cols .hero__img-wrap img {
    height: 600px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__cols .hero__img-wrap img {
    height: 650px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .hero__cols .hero__img-wrap img {
    height: 680px;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
.hero__cols .hero__img-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(27, 35, 43, 0.4);
  z-index: 0;
}
.hero__block-hor .swiper-slide::before {
  content: none;
}
.hero__cards.swiper {
  padding: 70px 0;
}
@media (max-width: 426px) {
  .hero__cards.swiper {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__cards.swiper {
    padding: 30px 0;
  }
}
.hero__cards .swiper-slide::before {
  content: none;
}

.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.5rem;
  font-family: "DMSans-Medium", sans-serif;
}
@media (max-width: 426px) {
  .block-hor__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__title {
    font-size: 1.875rem;
  }
}
@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.125rem;
  line-height: 1.5;
  margin-top: 40px;
  color: #000000;
  font-family: "DMSans-Regular", sans-serif;
}
@media (max-width: 426px) {
  .block-hor__description {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__description {
    display: none;
  }
}
.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 5vw;
  }
}
.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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__img {
    flex: none;
  }
}
.block-hor__img:hover .block-hor__play {
  background-color: #222D62;
}
.block-hor__play {
  position: absolute;
  left: calc(50% - 32px);
  top: calc(50% - 32px);
  border-radius: 50%;
  background-color: #1B232B;
  padding: 15px;
  transition: 0.3s all ease;
}
.block-hor__play img {
  width: 34px;
}
.block-hor .btn__primary {
  margin-top: 30px;
  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;
  }
}
@media (max-width: 426px) {
  .block-hor__full--show .block-hor__description {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__full--show .block-hor__description {
    display: block;
  }
}
.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;
  }
}

.gallery {
  padding: 70px 0;
}
@media (max-width: 426px) {
  .gallery {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .gallery {
    padding: 30px 0;
  }
}
.gallery .auxi {
  max-width: 1000px;
}
.gallery .mySwiper2 {
  padding-bottom: 20px;
}

.formulario .form-content {
  padding: 0;
}
.formulario .form-content.art-content {
  padding-top: 60px;
}
.formulario .form-content.art-content .auxi {
  max-width: 700px;
  -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.art-content .auxi {
    max-width: 90%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .formulario .form-content.art-content .auxi {
    max-width: 90%;
  }
}
.formulario .form-content.art-content .CUERPO {
  margin-bottom: 0;
  padding-bottom: 0;
}
.formulario .msj {
  padding-bottom: 0;
  padding-top: 15px;
  display: block;
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: italic;
  font-family: "DMSans-Regular", sans-serif;
}

.CUERPO img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 426px) {
  .CUERPO img {
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .CUERPO img {
    max-width: 100%;
  }
}
.CUERPO img.responsive-img {
  max-width: 100%;
  height: auto !important;
}
.CUERPO img.no-responsive-img {
  width: auto !important;
}
@media (max-width: 426px) {
  .CUERPO img.no-responsive-img {
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .CUERPO img.no-responsive-img {
    max-width: 100%;
  }
}
.CUERPO iframe {
  width: 100%;
}
@media (max-width: 426px) {
  .CUERPO iframe {
    width: 100% !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .CUERPO iframe {
    width: 100% !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .CUERPO iframe {
    width: 100% !important;
  }
}
.CUERPO .autoridades-box {
  display: flex;
  gap: 30px;
  margin: 0 0 20px 0;
  justify-content: center;
}
@media (max-width: 426px) {
  .CUERPO .autoridades-box {
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .CUERPO .autoridades-box {
    flex-direction: column;
  }
}
.CUERPO .autoridades__column {
  flex: 0 1 auto;
  padding: 0;
  box-sizing: border-box;
  border-left-width: 0;
}
.CUERPO .autoridades__column .column__content {
  padding: 0;
  display: flex;
  flex-direction: row;
  background: #f3f4f4;
}
.CUERPO .autoridades__column .content__item {
  padding: 0;
  margin-bottom: 0;
}
.CUERPO .autoridades__column .content__item a:hover {
  opacity: 1;
}
.CUERPO .autoridades__column .content__item img {
  width: 120px;
  height: auto;
  max-width: 120px;
}
.CUERPO .autoridades__column .content__item.info {
  padding: 12px 10px;
}
.CUERPO .autoridades__column h3 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 1rem;
  font-family: "DMSans-Bold", sans-serif;
}
@media (max-width: 426px) {
  .CUERPO .autoridades__column h3 {
    font-size: 1.125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .CUERPO .autoridades__column h3 {
    font-size: 1.125rem;
  }
}
.CUERPO .autoridades__column p {
  margin-top: 5px;
  font-size: 0.75rem;
  margin-bottom: 0;
  line-height: 1.4;
}
@media (max-width: 426px) {
  .CUERPO .autoridades__column p {
    font-size: 0.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .CUERPO .autoridades__column p {
    font-size: 0.9375rem;
  }
}
.CUERPO .autoridades__column p a {
  text-decoration: none;
  font-family: "DMSans-Regular", sans-serif;
}
.CUERPO .titulo-grande {
  width: 100%;
  display: block;
  margin: 0;
  padding: 40px 0 0;
  color: #1B232B;
  font-size: 2rem;
  letter-spacing: 0.1px;
  line-height: 1.5;
  font-family: "DMSans-Bold", sans-serif;
}

.articulo__congreso .enc-main__bg-img::before {
  background-color: rgba(96, 38, 128, 0.4);
}
.articulo__congreso .enc-main__bg-img .enc-main__title {
  font-size: 3.125rem;
  font-family: "DMSans-Bold", sans-serif;
}
@media (max-width: 426px) {
  .articulo__congreso .enc-main__bg-img .enc-main__title {
    font-size: 1.5625rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo__congreso .enc-main__bg-img .enc-main__title {
    font-size: 1.5625rem;
  }
}
.articulo .main {
  padding-bottom: 70px;
}
.articulo .img-art {
  padding-bottom: 20px;
}
.articulo .art-content .auxi {
  max-width: 82%;
  margin: 0 auto;
}
@media (max-width: 426px) {
  .articulo .art-content .auxi {
    padding: 0 15px;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .art-content .auxi {
    padding: 0 15px;
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .art-content .auxi {
    padding: 0 20px;
    max-width: 100%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .articulo .art-content .auxi {
    max-width: 95%;
    padding: 0 15px 0;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .articulo .art-content .auxi {
    padding: 0 15px;
    max-width: 1250px;
  }
}
@media (min-width: 1399px) {
  .articulo .art-content .auxi {
    padding: 0 15px;
    max-width: 1250px;
  }
}
.articulo .arts {
  padding-bottom: 80px;
}
.articulo .arts .cont-tit {
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.articulo .arts .cont-tit .tit {
  text-align: center;
  font-size: 3.125rem;
}
@media (max-width: 426px) {
  .articulo .arts .cont-tit .tit {
    font-size: 1.625rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .arts .cont-tit .tit {
    font-size: 1.625rem;
  }
}
.articulo .art-content {
  padding-top: 40px;
  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;
}
@media (max-width: 426px) {
  .articulo .art-content {
    -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) {
  .articulo .art-content {
    -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) {
  .articulo .art-content {
    -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;
  }
}
.articulo .art-content > .auxi {
  margin-bottom: 80px;
  gap: 110px;
  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;
}
@media (max-width: 426px) {
  .articulo .art-content > .auxi {
    margin-bottom: 0;
    max-width: 100%;
    padding: 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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .art-content > .auxi {
    margin-bottom: 0;
    max-width: 100%;
    padding: 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;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .art-content > .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;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .articulo .art-content > .auxi {
    gap: 40px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .articulo .art-content > .auxi {
    gap: 40px;
  }
}
.articulo .art-content .art-col {
  max-width: 750px;
  -webkit-flex: 0 1 70%;
  flex: 0 1 70%;
}
@media (max-width: 426px) {
  .articulo .art-content .art-col {
    max-width: 100%;
    padding: 0 15px;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .art-content .art-col {
    max-width: 100%;
    padding: 0 15px;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .art-content .art-col {
    max-width: 100%;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .articulo .art-content .art-col {
    max-width: 750px;
  }
}
@media (min-width: 992px) and (max-width: 1150px) {
  .articulo .art-content .art-col {
    max-width: 640px;
  }
}
.articulo .art-content .art-sidebar {
  -webkit-flex: 0 0 360px;
  flex: 0 0 360px;
}
@media (max-width: 426px) {
  .articulo .art-content .art-sidebar {
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .art-content .art-sidebar {
    margin-top: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .art-content .art-sidebar {
    margin-top: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .articulo .art-content .art-sidebar {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (max-width: 426px) {
  .articulo .art-content .block-head {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .art-content .block-head {
    padding: 0 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .art-content .block-head {
    margin-top: 30px;
  }
}
.articulo .art-content .block-head__title {
  font-size: 1.5625rem;
  text-transform: none;
}
@media (max-width: 426px) {
  .articulo .art-content .block-head__title {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .art-content .block-head__title {
    margin-left: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .relacionados {
    gap: 20px;
    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;
  }
}
.articulo .relacionados .auxi {
  max-width: 1250px;
}
.articulo .relacionados .block-head {
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .relacionados .block-head {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.articulo .relacionados .block-head__title {
  text-align: left;
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .relacionados .card {
    -webkit-flex: 0 1 48%;
    flex: 0 1 48%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .relacionados .desktop {
    gap: 15px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
.articulo .relacionados .swiper-container {
  position: relative;
}
@media (max-width: 426px) {
  .articulo .relacionados .swiper-slide, .articulo .relacionados article {
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .relacionados .swiper-slide, .articulo .relacionados article {
    margin-top: 0;
  }
}
.articulo .relacionados .swiper-slide .card, .articulo .relacionados article .card {
  margin-bottom: 0;
}
.articulo .relacionados .swiper-pagination {
  position: relative;
  margin-top: 30px;
}
.articulo .anclas {
  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;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 426px) {
  .articulo .anclas {
    margin: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .anclas {
    margin: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .articulo .anclas {
    margin: 30px 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .articulo .anclas {
    margin: 30px 0;
  }
}
.articulo .anclas .subtitulos {
  font-weight: normal;
}
.articulo .anclas .subtitulos a {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  border-radius: 3rem;
  margin: 0.3rem 4px;
  padding: 11px 16px;
  box-sizing: border-box;
  background-color: #1B232B;
  font-family: "DMSans-Medium", sans-serif;
}
@media (max-width: 426px) {
  .articulo .anclas .subtitulos a {
    padding: 10px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .anclas .subtitulos a {
    padding: 10px 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .articulo .anclas .subtitulos a {
    font-size: 0.8125rem;
  }
}
.articulo .anclas .subtitulos a:hover {
  text-decoration: none;
  background-color: #000000;
  color: #ffffff;
  transition: 0.2s all ease;
}
.articulo .contsubtit {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  line-height: 1;
  width: 100%;
  padding: 0.8em 0;
}
@media (max-width: 426px) {
  .articulo .contsubtit {
    padding: 0.8em 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .contsubtit {
    padding: 0.8em 0;
  }
}
.articulo .contsubtit .titsubtit {
  text-decoration: none;
  color: #000000;
  font-size: 1.5625rem;
  max-width: 90%;
  line-height: 1.3;
  font-family: "DMSans-Medium", sans-serif;
}
.articulo .contsubtit .linksubtit {
  margin: 0;
  display: block;
  padding: 5px;
  border-radius: 9px;
  background-color: #f3f4f4;
}
.articulo .contsubtit .linksubtit .arrow-up {
  width: 30px;
  height: 30px;
  display: block;
}
@media (max-width: 426px) {
  .articulo .contsubtit .linksubtit .arrow-up {
    width: 25px;
    height: 25px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .contsubtit .linksubtit .arrow-up {
    width: 25px;
    height: 25px;
  }
}
.articulo .contsubtit .linksubtit:hover {
  transform: translateY(-3px);
  transition: 0.2s all ease;
}
.articulo .media {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
}
.articulo .cont_video iframe {
  width: 100%;
}
.articulo .media iframe, .articulo .media object, .articulo .media embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.articulo figure.wp-block-embed-youtube, .articulo .wp-block-embed:not(.wp-block-embed-twitter) {
  display: block;
}
.articulo figure.wp-block-embed-youtube .wp-block-embed__wrapper, .articulo .wp-block-embed:not(.wp-block-embed-twitter) .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
}
.articulo figure.wp-block-embed-youtube .wp-block-embed__wrapper iframe, .articulo .wp-block-embed:not(.wp-block-embed-twitter) .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.articulo .relacionados {
  padding-bottom: 0;
}
.articulo .relacionados .row {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.articulo .relacionados .row article {
  margin-bottom: 20px;
}
.articulo .relacionados .row article:last-child {
  margin-bottom: 0;
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .articulo .relacionados .row article {
    margin-bottom: 0;
  }
}
@media (min-width: 1399px) {
  .articulo .relacionados .row article {
    margin-bottom: 0;
  }
}
.articulo .relacionados .swiper-container {
  overflow: hidden;
}
.articulo .relacionados .swiper-container .swiper-slide {
  width: 85%;
}

.preguntas {
  padding-top: 30px;
}

.tags {
  margin-top: 50px;
}
.tags .block-head {
  margin-bottom: 25px;
  -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) {
  .tags .block-head .block-head__title {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tags .block-head .block-head__title {
    margin-left: 0;
  }
}
.tags__content {
  gap: 8px 8px;
  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;
}
.tags__tag {
  font-size: 0.875rem;
  padding: 11px 20px;
  color: #ffffff;
  transition: 0.2s all ease;
  border-radius: 3rem;
  background-color: #222D62;
  font-family: "DMSans-Medium", sans-serif;
}
.tags__tag:hover {
  background-color: #1B232B;
}

.downloads {
  margin-top: 50px;
}
@media (max-width: 426px) {
  .downloads {
    margin: 20px 0 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .downloads {
    margin: 20px 0 30px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .downloads {
    margin: 20px 20px 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .downloads {
    margin: 20px 20px 0;
  }
}
.downloads__link .download__title {
  text-decoration: underline;
}
.downloads .block-head {
  margin-bottom: 25px;
  -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) {
  .downloads .block-head .block-head__title {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .downloads .block-head .block-head__title {
    margin-left: 0;
  }
}
.downloads__content {
  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;
}
.downloads__item + .downloads__item {
  margin-top: 20px;
}
.downloads__item a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 426px) {
  .downloads__item a {
    -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) {
  .downloads__item a {
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.downloads__item a h3 {
  font-size: 1.125rem;
  color: #1B232B;
  line-height: 1.8;
  display: inline-block;
  font-family: "DMSans-Medium", sans-serif;
}
@media (max-width: 426px) {
  .downloads__item a h3 {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .downloads__item a h3 {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.downloads__item a h3:hover {
  color: #1B232B;
  transition: 0.2s all ease;
}
.downloads__item a p {
  font-size: 0.8125rem;
  color: #1B232B;
}
@media (max-width: 426px) {
  .downloads__item a p {
    font-size: 0.8125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .downloads__item a p {
    font-size: 0.8125rem;
  }
}
.downloads__item a .img {
  margin-right: 10px;
}

.img-dest {
  margin-bottom: 20px;
  width: 100%;
}

.tools {
  margin-bottom: 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 426px) {
  .tools {
    -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) {
  .tools {
    -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;
  }
}
.tools__date {
  color: #000000;
  font-size: 1rem;
  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;
  font-family: "DMSans-Regular", sans-serif;
  font-style: italic;
}
@media (max-width: 426px) {
  .tools__date {
    margin: 0 auto 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tools__date {
    margin: 0 auto 30px;
  }
}
.tools__hour {
  color: #f3f4f4;
}
.tools__hour:before {
  content: "|";
  position: relative;
  display: inline-block;
  padding: 0 5px;
  font-size: 1rem;
  margin: 0 5px;
  bottom: 1px;
}
.tools__share {
  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-flex: 1 0 auto;
  flex: 1 0 auto;
  -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) {
  .tools__share {
    width: 100%;
    -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) {
  .tools__share {
    width: 100%;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.tools__share img {
  width: 25px;
}
.tools__print {
  margin-left: 30px;
}
@media (max-width: 426px) {
  .tools__print {
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tools__print {
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.tools__print ul {
  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;
}

.taxport, .results, .formulario {
  padding-bottom: 70px;
}
.taxport .arts, .results .arts, .formulario .arts {
  padding: 30px 0;
}
.taxport .block-head, .results .block-head, .formulario .block-head {
  background-color: #f3f4f4;
  margin-bottom: 20px;
  padding: 60px 0;
}
@media (max-width: 426px) {
  .taxport .block-head, .results .block-head, .formulario .block-head {
    padding: 40px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .taxport .block-head, .results .block-head, .formulario .block-head {
    padding: 40px 0;
  }
}
.taxport .block-head .breadcrumbs, .results .block-head .breadcrumbs, .formulario .block-head .breadcrumbs {
  margin-top: 0;
  margin-bottom: 20px;
}
.taxport .block-head .breadcrumbs .breadcrumb, .taxport .block-head .breadcrumbs a, .taxport .block-head .breadcrumbs .pref, .results .block-head .breadcrumbs .breadcrumb, .results .block-head .breadcrumbs a, .results .block-head .breadcrumbs .pref, .formulario .block-head .breadcrumbs .breadcrumb, .formulario .block-head .breadcrumbs a, .formulario .block-head .breadcrumbs .pref {
  color: #1B232B;
}
.taxport .block-head__title, .results .block-head__title, .formulario .block-head__title {
  color: #1B232B;
}
.taxport .row, .results .row, .formulario .row {
  margin-left: -40px;
}
@media (min-width: 767px) and (max-width: 991px) {
  .taxport .row, .results .row, .formulario .row {
    margin-left: -20px;
  }
}
.taxport .row .col, .results .row .col, .formulario .row .col {
  border-left-width: 40px;
}
@media (min-width: 767px) and (max-width: 991px) {
  .taxport .row .col, .results .row .col, .formulario .row .col {
    border-left-width: 20px;
  }
}
.taxport .card, .results .card, .formulario .card {
  margin-bottom: 70px;
}

.search-data {
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 0;
  position: relative;
  text-align: left;
}
.search-data__content {
  margin-bottom: 10px;
  font-family: "DMSans-Regular", sans-serif;
}
.search-data__pref {
  font-size: 1.125rem;
  color: #1B232B;
  line-height: 1.4;
}
@media (max-width: 426px) {
  .search-data__pref {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .search-data__pref {
    font-size: 1.25rem !important;
  }
}
.search-data__criteria {
  color: #1B232B;
  font-size: 1.125rem;
  font-family: "DMSans-Bold", sans-serif;
}
.search-data__results p {
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1.4;
}

.error {
  padding-bottom: 0;
  background-color: #f3f4f4;
}
.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;
  }
}
.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: #000000;
  font-family: "DMSans-Bold", sans-serif;
}
@media (max-width: 426px) {
  .error__subtit {
    font-size: 2.1875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__subtit {
    font-size: 2.1875rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .error__subtit {
    font-size: 2.1875rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .error__subtit {
    font-size: 2.1875rem;
  }
}
.error__baj {
  font-size: 2.1875rem;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "DMSans-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__pref {
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
  max-width: 1000px;
}
@media (max-width: 426px) {
  .error__pref {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__pref {
    font-size: 0.875rem;
  }
}
.error__pref + .error__pref {
  margin-top: 20px;
}
.error a {
  color: #1B232B;
  text-decoration: underline;
  font-family: "DMSans-Bold", sans-serif;
}

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