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

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

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

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

body {
  line-height: 1;
}

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

ol, ul {
  list-style: none;
}

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

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

.swiper-button-next {
  background-image: url("../../imag/v1/icon/ic-arrow-left-lg.svg") !important;
  right: 0.5vw !important;
}

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

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

.btn__primary {
  display: inline-block;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #2D2C7C;
  background-color: #2D2C7C;
  gap: 3px;
  transition: 0.3s all ease;
  color: #ffffff;
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-family: "Sora-SemiBold", sans-serif;
}
@media (max-width: 426px) {
  .btn__primary {
    margin: 10px auto;
    line-height: 20px;
    width: 90%;
    padding: 8px 15px;
    text-align: center;
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__primary {
    margin: 10px auto;
    line-height: 20px;
    width: 90%;
    text-align: center;
    font-size: 0.875rem;
    padding: 8px 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .btn__primary {
    padding: 15px 20px;
  }
}
.btn__primary:hover {
  transition: 0.3s all ease;
}
.btn__primary .icon {
  width: 24px;
  height: 24px;
}
.btn__primary--conversor {
  padding: 13px 30px !important;
}
.btn__primary--sm {
  padding: 8px 20px;
  font-size: 0.9375rem;
}
.btn__primary--xs {
  padding: 8px;
  gap: 8px;
  font-size: 0.8125rem;
}
.btn__primary--xs .icon {
  width: 16px;
  height: 16px;
}
.btn__primary--lg {
  font-size: 1rem;
  padding: 16px 40px;
  min-width: 190px;
}
.btn__primary--white {
  background-color: #ffffff;
  color: #2D2C7C;
  border-color: #ffffff;
}
.btn__primary--blue {
  background-color: #2D2C7C;
  color: #ffffff;
  border-color: #2D2C7C;
}
.btn__primary--outline-white {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}
.btn__primary--outline-blue, .btn__primary--outline {
  background: none;
  color: #2D2C7C;
  border-color: #2D2C7C;
}
.btn__primary--outline-blue:hover, .btn__primary--outline:hover {
  background-color: #2D2C7C;
  color: #ffffff;
}
.btn__primary--darkgrey {
  background-color: #343440;
  border-color: #343440;
}

.btn__secondary {
  font-size: 0.75rem;
  color: #252525;
  transition: 0.2s all ease;
  background-color: #EAEDFF;
  border-radius: 6px;
  padding: 8px 15px 10px;
  font-family: "Sora-SemiBold", 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;
}
.btn__secondary:hover {
  color: #2D2C7C;
}

.btn-icon {
  padding: 15px;
  border-radius: 5px;
  display: block;
  transition: 0.3s all ease;
}
.btn-icon:hover {
  background-color: #2D2C7C;
}
.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: "Sora-SemiBold", sans-serif;
}
.btn-icon__static .btn-icon__subtit {
  text-align: center;
  color: #ffffff;
  font-size: 55px;
  font-family: "Sora-SemiBold", sans-serif;
}
.btn-icon__static .btn-icon__title {
  font-size: 1rem;
  color: #ffffff;
  font-family: "Sora-Regular", sans-serif;
}
.btn-icon.color-blue:hover {
  background-color: #2D2C7C;
}

.btn {
  gap: 26px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .btn {
    gap: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn {
    gap: 10px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .btn {
    gap: 15px;
  }
}
.btn__center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.btn__fixed {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10;
}

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

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

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

#return-to-top {
  position: fixed;
  bottom: 60px;
  right: 2%;
  border-radius: 50%;
  background-color: #EAEDFF;
  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: #75747F;
}
#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: 20px 15px 60px;
  }
}
.enc-main__content {
  text-align: center;
}
.enc-main__epig {
  color: #ffffff;
  font-family: "Sora-Bold", sans-serif;
}
.enc-main__title {
  padding-top: 30px;
  color: #ffffff;
  line-height: 1.3;
  font-size: 2.5rem;
  margin-left: 0;
  text-transform: uppercase;
  font-family: "Sora-Bold", sans-serif;
}
@media (max-width: 426px) {
  .enc-main__title {
    padding-top: 20px;
    font-size: 21px;
    line-height: 1.5;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__title {
    padding-top: 20px;
    font-size: 21px;
    line-height: 1.5;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__title {
    font-size: 2.375rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .enc-main__title {
    font-size: 2.375rem;
  }
}
.enc-main__description {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #ffffff;
  max-width: 800px;
  margin: 20px auto 0;
  font-family: "Sora-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 {
  position: relative;
}
@media (max-width: 426px) {
  .enc-main__bg {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__bg {
    padding: 0 15px;
  }
}
.enc-main__bg:before {
  content: "";
  background: linear-gradient(50deg, rgba(40, 39, 86, 0.9) 8%, rgba(37, 119, 177, 0.73) 100%);
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.enc-main__bg .breadcrumb, .enc-main__bg .breadcrumb a {
  color: #ffffff !important;
}
.enc-main__bg .breadcrumb:after, .enc-main__bg .breadcrumb a:after {
  color: #ffffff !important;
}
.enc-main__bg--grad:before {
  background: linear-gradient(50deg, rgba(40, 39, 86, 0.9) 8%, rgba(37, 119, 177, 0.73) 100%);
}
.enc-main__bg--grad .enc-main__content {
  text-align: left;
}
.enc-main__bg--grad .enc-main__description {
  margin-left: 0;
}

.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: "Sora-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: 60px 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: "Sora-Bold", sans-serif;
}
@media (max-width: 426px) {
  .enc-txt .auxi .tit {
    font-size: 2.375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-txt .auxi .tit {
    font-size: 2.375rem;
  }
}
.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: "Sora-SemiBold", 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__epig {
  font-size: 1rem;
  color: #252525;
  display: inline-block;
  margin-bottom: 7px;
  text-transform: uppercase;
  font-family: "Sora-SemiBold", sans-serif;
}
.block-head__epig .txt-light {
  font-size: 0.875rem;
  color: #75747F;
  margin-left: 12px;
  font-family: "Sora-Regular", sans-serif;
}
.block-head__title {
  font-size: 1.875rem;
  line-height: 1.2;
  color: #252525;
  margin-bottom: 0;
  text-align: left;
  font-family: "Sora-Bold", sans-serif;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .block-head__title {
    font-size: 1.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.375rem;
}
.block-head__title--lg {
  font-size: 2.8125rem;
  color: #75747F !important;
}
.block-head__title--blue {
  font-size: 1.375rem;
  color: #2D2C7C;
  text-transform: uppercase;
}
.block-head__title--sm {
  font-size: 1.125rem;
  font-family: "Sora-SemiBold", sans-serif;
}
.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: "Sora-Bold", sans-serif;
}
@media (max-width: 426px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 2.375rem;
    margin-bottom: 0;
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 2.375rem;
    line-height: 1.3;
    margin-bottom: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .block-head__title--slide, .block-head__title a {
    font-size: 3.125rem;
  }
}
.block-head__title--slide::after, .block-head__title a::after {
  content: none;
}
.block-head__description {
  line-height: 1.6;
  font-size: 1.25rem;
  color: #666666;
  margin: 30px 0 0;
  max-width: 990px;
  text-align: left;
  font-family: "Sora-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__group {
  text-align: left;
}
@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__section {
    -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-head__section {
    -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) {
  .block-head .btn__primary {
    margin: 0;
    width: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head .btn__primary {
    margin: 0;
    width: auto;
  }
}
.block-head .dropdown-m .dropbtn-m {
  font-size: 1rem;
  color: #252525;
  font-family: "Sora-Bold", sans-serif;
}
.block-head.form-msj {
  background: none !important;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.block-head.form-msj img {
  width: 90px;
}
.block-head.form-msj .block-head__title, .block-head.form-msj .block-head__description {
  text-align: center;
  margin-top: 0;
}
.block-head .dropdown-m .dropbtn-m {
  border-radius: 12px;
  padding: 15px 20px;
  padding-right: 20px;
  min-width: 300px;
  text-align: left;
  border: 1px solid #EAEDFF;
}

.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: #75747F;
  font-size: 0.9375rem;
}
.block-info__txt {
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.3;
  font-family: "Sora-SemiBold", 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: "Sora-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;
  }
}

.alert {
  padding: 0;
  margin-top: 20px;
  position: relative;
  transition: opacity 0.7s ease-in-out;
  opacity: 1;
}
@media (max-width: 426px) {
  .alert {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert {
    padding: 0 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .alert {
    padding: 0 15px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .alert {
    padding: 0 15px;
  }
}
.alert .auxi {
  padding: 0;
  padding-right: 16px;
}
@media (max-width: 426px) {
  .alert .auxi {
    padding: 12px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert .auxi {
    padding: 12px 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .alert .auxi {
    padding: 0 16px 0 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .alert .auxi {
    padding: 0 16px 0 0;
  }
}
.alert__bar {
  gap: 10px;
  background-color: #FCBE42;
  border-radius: 12px 0 0 12px;
  padding: 16px 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: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 426px) {
  .alert__bar {
    padding: 4px 10px;
    border-radius: 6px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__bar {
    padding: 4px 10px;
    border-radius: 6px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .alert__bar {
    padding: 10px;
  }
}
.alert__bar img {
  width: 24px;
}
.alert__info {
  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-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 426px) {
  .alert__info {
    -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) {
  .alert__info {
    -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) {
  .alert__info {
    max-width: 87%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .alert__info {
    max-width: 90%;
  }
}
.alert__date {
  font-size: 0.8125rem;
  color: #75747F;
}
.alert__subtitle {
  color: #2D2C7C;
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-family: "Sora-Bold", sans-serif;
}
.alert__title {
  font-size: 0.875rem;
  color: #494957;
  font-family: "Sora-Bold", sans-serif;
}
@media (min-width: 767px) and (max-width: 991px) {
  .alert__title {
    font-size: 0.75rem;
  }
}
.alert__description {
  font-size: 0.8125rem;
  color: #252525;
  line-height: 1.3;
  font-family: "Sora-Regular", sans-serif;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 426px) {
  .alert__description {
    flex: 1 0 auto;
    padding-right: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__description {
    flex: 1 0 auto;
    padding-right: 10px;
  }
}
.alert__content {
  gap: 20px;
  width: 100%;
  border-radius: 12px;
  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;
  -webkit-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  -moz-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
}
@media (max-width: 426px) {
  .alert__content {
    gap: 20px;
    padding: 12px 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;
    -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) {
  .alert__content {
    gap: 20px;
    padding: 12px 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;
    -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) {
  .alert__content a {
    flex: 1 0 auto;
    padding-right: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__content a {
    flex: 1 0 auto;
    padding-right: 10px;
  }
}

.card {
  padding: 40px;
  border-radius: 12px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  -moz-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
}
@media (max-width: 426px) {
  .card {
    padding: 40px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card {
    padding: 40px 20px;
  }
}
.card__auxi {
  height: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card > a {
  display: block;
}
.card__img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.card__pill {
  left: 10px;
  top: 10px;
  position: absolute;
  padding: 8px 10px;
  font-size: 0.75rem;
  background: #ffffff;
  border-radius: 10px;
  color: #2D2C7C;
  z-index: 2;
  display: inline-block;
}
.card__month {
  font-size: 1rem;
  color: #ffffff;
  font-family: "Sora-SemiBold", sans-serif;
}
.card__result .card__content .card__title {
  font-size: 1.375rem !important;
  text-align: left;
}
.card__content {
  position: relative;
  width: 100%;
  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;
}
@media (max-width: 426px) {
  .card__content {
    -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__content {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.card__content .card__epig {
  color: #2D2C7C;
  margin-bottom: 10px;
}
.card__content .card__title {
  font-size: 1.125rem;
  text-align: center;
}
.card__content .card__description {
  font-size: 0.9375rem;
}
.card__content:hover .card__title {
  color: #2D2C7C;
}
.card__epig {
  font-size: 0.9375rem;
  line-height: 1.3;
  color: #EAEDFF;
}
.card__date {
  font-size: 0.875rem;
  color: #2D2C7C;
  margin-bottom: 10px;
  font-family: "Sora-Regular", sans-serif;
}
.card__title {
  font-size: 1.125rem;
  color: #252525;
  line-height: 1.4;
  display: inline-block;
  text-align: center;
  transition: 0.3s all ease;
  font-family: "Sora-Bold", 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: 30px auto 0;
}
@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: #2D2C7C;
  padding: 20px;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__list-item {
  color: #ffffff;
}
.card__list-item a {
  color: #ffffff;
  transition: 0.3s all ease;
}
.card__list-item a:hover {
  opacity: 0.7;
}
.card__list-item + .card__list-item {
  margin-top: 20px;
}
.card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.card__row {
  gap: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 426px) {
  .card__row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.card__rounded {
  padding: 30px;
  border-radius: 14px;
  gap: 20px;
  -webkit-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  -moz-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  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) {
  .card__rounded {
    padding: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__rounded {
    padding: 20px;
  }
}
.card__rounded .card__txt-scroll {
  height: 253px;
  width: 100%;
  text-align: left;
  white-space: pre-line;
  overflow-y: auto;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #494957;
  scrollbar-color: #2D2C7C #EAEDFF;
  scrollbar-width: thin;
}
.card__rounded .card__txt-scroll::-webkit-scrollbar {
  width: 7px;
}
.card__rounded .card__txt-scroll::-webkit-scrollbar-track {
  background: #2D2C7C;
  border-radius: 12px;
}
.card__rounded .card__txt-scroll::-webkit-scrollbar-thumb {
  background: #EAEDFF;
  border-radius: 12px;
}
.card__item {
  gap: 24px;
  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;
}
.card__item .card__img {
  background-color: #EAEDFF;
  border-radius: 12px;
  padding: 8px;
  -webkit-flex: 0 0 54px;
  flex: 0 0 54px;
}
.card__item .card__img img {
  width: 38px;
}
@media (max-width: 426px) {
  .card__item .card__row {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__item .card__row {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__item .card__row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__item .card__row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.card__item .card__content {
  width: auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 426px) {
  .card__item .card__content {
    width: 100%;
    max-width: 100%;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__item .card__content {
    width: 100%;
    max-width: 100%;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -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) {
  .card__item .card__content {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.card__item .card__pref {
  font-size: 0.875rem;
  color: #75747F;
  margin-bottom: 8px;
}
.card__item .card__dato {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #252525;
  font-family: "Sora-SemiBold", sans-serif;
}
.card__horizontal {
  box-shadow: none;
  background: none;
  padding: 0;
}
.card__horizontal .card__auxi {
  gap: 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.card__horizontal .card__content {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 426px) {
  .card__horizontal .card__content {
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__content {
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.card__horizontal .card__epig, .card__horizontal .card__title, .card__horizontal .card__description {
  text-align: left;
}
.card__horizontal .card__epig {
  margin-bottom: 8px;
  font-size: 0.8125rem;
  color: #75747F;
}
.card__horizontal .card__title {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: #252525;
  line-height: 1.4;
  font-family: "Sora-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__horizontal .card__title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.card__horizontal .card__img {
  border-radius: 12px;
  overflow: hidden;
  -webkit-flex: 0 0 158px;
  flex: 0 0 200px;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.card__icon {
  padding: 20px;
  background-color: #ffffff;
  box-shadow: none;
  border-radius: 12px;
}
.card__icon .card__auxi {
  padding: 0;
  background: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
@media (max-width: 426px) {
  .card__icon .card__auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__icon .card__auxi {
    padding: 0;
  }
}
.card__icon .card__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.card__icon .card__img img {
  width: 60px;
}
.card__icon .card__title {
  font-size: 1.125rem;
  color: #2D2C7C;
  text-transform: uppercase;
  font-family: "Sora-Bold", sans-serif;
}
.card__icon .card__description {
  color: #2D2C7C;
  line-height: 1.8;
  margin-top: 20px;
}
.card__icon .card__content {
  padding: 20px 0 0;
}
.card__icon--green .card__img {
  background-color: #2D2C7C;
}
.card__icon--red .card__img {
  background-color: #FCBE42;
}
.card__icon--blue .card__img {
  background-color: #2D2C7C;
}
.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__bg {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
}
.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: rgba(35, 35, 46, 0.7);
}
.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(35, 35, 46, 0.8);
}
.card__bg .card__auxi > a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  width: 100%;
  height: 100%;
}
.card__bg .card__content {
  padding: 0 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 2;
  -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 (min-width: 767px) and (max-width: 991px) {
  .card__bg .card__content {
    padding: 20px;
  }
}
.card__bg .card__content:hover .card__title {
  color: #ffffff;
}
.card__bg .card__title {
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  font-family: "Sora-SemiBold", sans-serif;
}
.card__bg .card__description {
  color: #ffffff;
  text-align: center;
  font-size: 0.875rem;
}
.card__bg--grad {
  padding: 30px;
  box-shadow: none;
}
.card__bg--grad:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgb(51, 29, 219);
  background: -moz-linear-gradient(50deg, rgb(51, 29, 219) 0%, rgb(75, 123, 217) 100%);
  background: -webkit-linear-gradient(50deg, rgb(51, 29, 219) 0%, rgb(75, 123, 217) 100%);
  background: linear-gradient(50deg, rgb(51, 29, 219) 0%, rgb(75, 123, 217) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#331ddb",endColorstr="#4b7bd9",GradientType=1);
}
.card__bg--grad .card__content {
  position: relative;
  padding: 0;
}
.card__bg--grad .card__title {
  font-size: 1rem;
}
.card__banner {
  position: relative;
  min-height: 300px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  padding: 60px 0;
}
@media (max-width: 426px) {
  .card__banner {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner {
    padding: 30px 0;
  }
}
.card__banner:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgb(40, 39, 86);
  background: -moz-linear-gradient(50deg, rgba(40, 39, 86, 0.9) 8%, rgba(37, 119, 177, 0.73) 100%);
  background: -webkit-linear-gradient(50deg, rgba(40, 39, 86, 0.9) 8%, rgba(37, 119, 177, 0.73) 100%);
  background: linear-gradient(50deg, rgba(40, 39, 86, 0.9) 8%, rgba(37, 119, 177, 0.73) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#282756",endColorstr="#2577b1",GradientType=1);
}
@media (max-width: 426px) {
  .card__banner {
    padding: 40px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner {
    padding: 40px 0;
  }
}
.card__banner .auxi {
  z-index: 2;
  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;
}
@media (max-width: 426px) {
  .card__banner .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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .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;
  }
}
.card__banner .card__content {
  max-width: 500px;
}
@media (max-width: 426px) {
  .card__banner .card__content {
    padding: 0;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__content {
    padding: 0;
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__banner .card__content {
    padding: 30px 4vw;
  }
}
.card__banner .card__title {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.2;
  font-family: "Sora-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__banner .card__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__title {
    font-size: 1.875rem;
  }
}
.card__banner .card__description {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.5;
  margin-top: 10px;
  font-family: "Sora-Regular", sans-serif;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 426px) {
  .card__banner .card__description {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__description {
    font-size: 1rem;
  }
}
.card__banner .btn__primary {
  height: auto;
  margin: 0;
}
@media (max-width: 426px) {
  .card__banner .btn__primary {
    padding: 15px 20px;
    width: 100%;
    max-width: 400px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .btn__primary {
    padding: 15px 20px;
    width: 100%;
    max-width: 400px;
  }
}
.card__aviso {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  gap: 20px;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(58, 59, 71, 0.2);
  -moz-box-shadow: 0px 0px 14px 0px rgba(58, 59, 71, 0.2);
  box-shadow: 0px 0px 14px 0px rgba(58, 59, 71, 0.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;
}
@media (max-width: 426px) {
  .card__aviso {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__aviso {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.card__aviso .card__img {
  border-radius: 20px;
  padding: 10px;
  height: 150px;
  text-align: center;
  background-color: #EAEDFF;
  gap: 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;
  -webkit-flex: 0 0 150px;
  flex: 0 0 150px;
}
.card__aviso .card__img img {
  width: 65px;
}
.card__aviso .card__content {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 426px) {
  .card__aviso .card__content {
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__aviso .card__content {
    -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) {
  .card__aviso .card__content {
    padding: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__aviso .card__content {
    padding: 0;
  }
}
.card__aviso .card__pref {
  font-size: 0.8125rem;
  color: #494957;
}
.card__aviso .card__title {
  font-size: 0.875rem;
  color: #252525;
  text-align: center;
  font-family: "Sora-Bold", sans-serif;
}
.card__aviso .card__subtitle {
  font-size: 1rem;
  color: #2D2C7C;
  margin-top: 11px;
  text-transform: uppercase;
  font-family: "Sora-Bold", sans-serif;
}
.card__aviso .card__description {
  font-size: 0.875rem;
  color: #494957;
  margin-top: 11px;
  font-family: "Sora-Regular", sans-serif;
}
.card__aviso .btn__secondary {
  margin-top: 20px;
}
.card__aviso--vert {
  padding: 0;
  display: block;
}
.card__aviso--vert a {
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: 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;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.card__aviso--vert .card__img {
  background: none;
  padding: 0;
  border-radius: 0;
  height: auto;
  flex: none;
}
.card__aviso--vert .card__title {
  text-align: center;
  font-size: 1.25rem;
  margin: auto;
}
.card__link {
  background-color: #ffffff;
  transition: 0.3s all ease;
}
.card__link:hover {
  transform: translateY(-2px);
  -webkit-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  -moz-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
}
.card__link--small {
  padding: 10px;
}
.card__link--small a {
  padding: 5px !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.card__link--small a .card__title {
  text-align: left;
}
@media (max-width: 426px) {
  .card__link--small a .card__title {
    font-size: 0.8125rem;
  }
}
.card__link .card__img {
  overflow: visible;
  width: auto;
}
.card__link .card__img img {
  width: 32px;
}
@media (max-width: 426px) {
  .card__link .card__img img {
    width: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__link .card__img img {
    width: 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__link .card__img img {
    width: 23px;
  }
}
.card__link .card__content {
  width: auto;
  gap: 20px;
  transition: 0.3s all ease;
  display: block;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__link .card__title {
  font-size: 0.875rem;
}
.card__link .card__description {
  font-size: 0.875rem;
  margin-top: 2px;
  color: #2D2C7C;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__link .card__size {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #2D2C7C;
}
.card__link a {
  padding: 20px;
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__link a {
    gap: 10px;
  }
}
@media (max-width: 426px) {
  .card__link--sm a {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__link--sm a {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.card__link--sm .card__title {
  margin-bottom: 0;
}
@media (max-width: 426px) {
  .card__link--sm .card__title {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__link--sm .card__title {
    text-align: center;
  }
}

.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.375rem;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__full .cont-tit .tit {
    font-size: 2.375rem;
    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: "Sora-SemiBold", 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: "Sora-SemiBold", 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: #2D2C7C;
}
.list li + li {
  margin-top: 24px;
}
.list img {
  width: 40px;
}
.list__title {
  font-size: 1.125rem;
  color: #2D2C7C;
  transition: 0.3s all ease;
}
.list__detail {
  font-size: 0.75rem;
  margin-top: 4px;
  color: #2D2C7C;
}

.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: "Sora-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 .form-control--small {
  padding: 5px;
  border-radius: 10px;
}
.form__title {
  font-size: 0.875rem;
  margin-bottom: 20px;
  color: #2D2C7C;
  font-family: "Sora-Bold", sans-serif;
}
.form__title--txt-left {
  text-align: left;
  line-height: 120%;
  font-size: 1.375rem;
  margin-bottom: 0;
}
.form__group {
  position: relative;
}
.form__group label {
  color: #252525;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 10px;
  font-family: "Sora-SemiBold", sans-serif;
}
.form__group .control-label--txt-left {
  text-align: left;
  line-height: 120%;
  font-size: 0.8125rem;
}
.form__group--radio {
  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-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;
  gap: 20px;
}
.form__group--radio .box__radio {
  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-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.form__group--radio .box__radio label {
  margin-bottom: 0;
}
.form__group input, .form__group select, .form__group textarea {
  width: 100%;
  padding: 14px 20px;
  color: #252525;
  border: 1px solid #d5d2f4;
  width: 100%;
  border-radius: 16px;
  font-size: 1rem;
  transition: 0.3s all ease;
  background-color: #ffffff;
  font-family: "Sora-Bold", sans-serif;
}
.form__group input::-webkit-input-placeholder, .form__group select::-webkit-input-placeholder, .form__group textarea::-webkit-input-placeholder {
  color: #252525;
}
.form__group input:-moz-placeholder, .form__group select:-moz-placeholder, .form__group textarea:-moz-placeholder {
  color: #252525;
}
.form__group input::-moz-placeholder, .form__group select::-moz-placeholder, .form__group textarea::-moz-placeholder {
  color: #252525;
}
.form__group input:-ms-input-placeholder, .form__group select:-ms-input-placeholder, .form__group textarea:-ms-input-placeholder {
  color: #252525;
}
.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: #2D2C7C;
  transition: 0.5s all ease;
  outline: none;
}
.form__group select {
  padding: 15px 20px;
  background-image: url("../../imag/v1/icon/ic-chevron-down-b.svg");
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) 15px;
  background-size: 24px;
}
.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: #2D2C7C;
  background-color: #2D2C7C;
}
.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 #2D2C7C;
  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: #2D2C7C;
  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: #EAEDFF;
  width: 100%;
  cursor: inherit;
  border: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form .d-flex .btn-file {
  background-color: #2D2C7C;
  border: 1px solid #2D2C7C;
  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: #2D2C7C;
  border-color: #2D2C7C;
  color: #ffffff;
}
.form .box__radio input:checked,
.form .box__radio input:not(:checked) {
  display: none;
}
.form .box__radio input:checked + label,
.form .box__radio input:not(:checked) + label {
  position: relative;
  cursor: pointer;
  width: 100%;
  line-height: 20px;
  padding: 5px 13px 6px 45px;
  color: #2D2C7C;
  transition: 0.3s all ease;
  font-family: "Sora-Regular", sans-serif;
}
.form .box__radio input:checked + label {
  border-color: #2D2C7C;
}
.form .box__radio input:checked + label:before,
.form .box__radio input:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 2px solid #75747F;
  background-color: #ffffff;
  transition: 0.3s all ease;
}
.form .box__radio input:checked + label:before {
  border-color: #2D2C7C;
  background-color: #2D2C7C;
}
.form .box__radio input:checked + label:after,
.form .box__radio input:not(:checked) + label:after {
  content: "";
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  position: absolute;
  top: 15px;
  left: 17px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form .box__radio input:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.form .box__radio input:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

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

.map-container {
  height: 835px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #252525;
  position: relative;
  width: 100%;
  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) {
  .map-container {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .map-container {
    display: none;
  }
}
.map-container:hover .map__controls {
  opacity: 1;
  visibility: visible;
}
.map-container .map {
  position: relative;
}
.map-container .map img {
  width: auto;
  height: auto;
}
.map-container .map__markers {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.map-container .map__markers div, .map-container .map__markers a {
  position: relative;
  cursor: pointer;
  display: block;
}
.map-container .map__controls {
  position: absolute;
  top: 15px;
  right: 15px;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  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;
}
.map-container .map__btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #ffffff;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 25px;
  transition: 0.4s all ease;
}
.map-container .map__btn:hover {
  background-color: #494957;
}
.map-container .map__btn--plus {
  background-image: url("../../imag/v1/icon/ic-plus-g.svg");
}
.map-container .map__btn--plus:hover {
  background-image: url("../../imag/v1/icon/ic-plus-w.svg");
}
.map-container .map__btn--minus {
  background-image: url("../../imag/v1/icon/ic-minus-g.svg");
}
.map-container .map__btn--minus:hover {
  background-image: url("../../imag/v1/icon/ic-minus-w.svg");
}
.map-container .map__btn + .map__btn {
  border-top: 1px solid #dfdfdf;
}
.map-container .map__mark-1 {
  width: 170px;
  height: 143px;
  top: 67px;
  left: 290px;
}
.map-container .map__mark-2 {
  width: 140px;
  height: 72px;
  left: 290px;
  top: 67px;
}
.map-container .map__mark-3 {
  width: 145px;
  height: 54px;
  left: 255px;
  top: 68px;
}
.map-container .map__mark-4 {
  width: 155px;
  height: 37px;
  left: 254px;
  top: 68px;
}
.map-container .map__mark-5 {
  width: 140px;
  height: 60px;
  left: 255px;
  top: 69px;
}
.map-container .map__mark-6 {
  width: 133px;
  height: 65px;
  left: 255px;
  top: 71px;
}
.map-container .map__mark-7 {
  width: 170px;
  height: 108px;
  left: 200px;
  top: 71px;
}
.map-container .map__mark-8 {
  width: 231px;
  height: 90px;
  left: 200px;
  top: 73px;
}
.map-container .map__mark-9 {
  width: 278px;
  height: 55px;
  left: 200px;
  top: 73px;
}
.map-container .map__mark-10 {
  width: 338px;
  height: 73px;
  left: 200px;
  top: 73px;
}
.map-container__canales {
  height: 820px;
}
.map-container__canales .map__mark-1 {
  width: 30px;
  height: 30px;
  top: 38px;
  left: 68px;
}
.map-container__canales .map__mark-2 {
  width: 30px;
  height: 30px;
  left: 182px;
  top: 15px;
}
.map-container__canales .map__mark-3 {
  width: 30px;
  height: 30px;
  left: 94px;
  top: 48px;
}
.map-container__canales .map__mark-4 {
  width: 30px;
  height: 30px;
  left: 131px;
  top: 18px;
}
.map-container__canales .map__mark-5 {
  width: 30px;
  height: 30px;
  left: 332px;
  top: -40px;
}
.map-container__canales .map__mark-6 {
  width: 30px;
  height: 30px;
  left: 386px;
  top: -72px;
}
.map-container__canales .map__mark-7 {
  width: 30px;
  height: 30px;
  left: 260px;
  top: -55px;
}
.map-container__canales .map__mark-8 {
  width: 30px;
  height: 30px;
  left: 242px;
  top: -53px;
}
.map-container__canales .map__mark-9 {
  width: 30px;
  height: 30px;
  left: 203px;
  top: -55px;
}
.map-container__canales .map__mark-10 {
  width: 30px;
  height: 30px;
  left: 295px;
  top: -68px;
}
.map-container__canales .map__mark-11 {
  width: 30px;
  height: 30px;
  left: 392px;
  top: -97px;
}
.map-container__canales .map__mark-12 {
  width: 30px;
  height: 30px;
  left: 427px;
  top: -99px;
}
.map-container__canales .map__mark-13 {
  width: 70px;
  height: 7px;
  left: 415px;
  top: -98px;
}
.map-container__canales .map__mark-14 {
  width: 60px;
  height: 9px;
  left: 455px;
  top: -97px;
}
.map-container__canales .map__mark-15 {
  width: 30px;
  height: 30px;
  left: 481px;
  top: -161px;
}
.map-container__interior {
  height: 820px;
}
.map-container__interior .map__mark-1 {
  width: 247px;
  height: 164px;
  top: 90px;
  left: 190px;
}
.map-container__interior .map__mark-2 {
  width: 270px;
  height: 219px;
  left: 135px;
  top: 90px;
}
.map-container__interior .map__mark-3 {
  width: 265px;
  height: 75px;
  top: 92px;
  left: 24px;
}
.map-container__insular {
  height: 820px;
}
.map-container__insular .map__mark-1 {
  width: 484px;
  height: 336px;
  top: 0px;
  left: 0px;
}
.map-container__insular .map__mark-2 {
  width: 484px;
  height: 342px;
  top: 7px;
  left: 0px;
}
.map-container__metareaxv {
  height: 820px;
}
.map-container__metareaxv .map__mark-1 {
  width: 150px;
  height: 70px;
  top: 82px;
  left: 32px;
}
.map-container__metareaxv .map__mark-2 {
  width: 112px;
  height: 70px;
  top: 12px;
  left: 185px;
}
.map-container__metareaxv .map__mark-3 {
  width: 151px;
  height: 88px;
  top: 14px;
  left: 32px;
}
.map-container__metareaxv .map__mark-4 {
  width: 99px;
  height: 88px;
  top: -74px;
  left: 185px;
}
.map-container__metareaxv .map__mark-5 {
  width: 151px;
  height: 89px;
  top: -73px;
  left: 31px;
}
.map-container__metareaxv .map__mark-6 {
  width: 82px;
  height: 89px;
  top: -161px;
  left: 185px;
}
.map-container__metareaxv .map__mark-7 {
  width: 151px;
  height: 70px;
  top: -160px;
  left: 32px;
}
.map-container__metareaxv .map__mark-8 {
  width: 119px;
  height: 70px;
  top: -231px;
  left: 184px;
}
.map-container__metareaxv .map__mark-9 {
  width: 130px;
  height: 70px;
  top: -300px;
  left: 305px;
}
.map-container__antartico {
  height: 820px;
}
.map-container__antartico .map__mark-1 {
  width: 70px;
  height: 36px;
  top: 45px;
  left: 302px;
}
.map-container__antartico .map__mark-2 {
  width: 42px;
  height: 20px;
  top: 51px;
  left: 355px;
}
.map-container__antartico .map__mark-3 {
  width: 35px;
  height: 13px;
  top: 43px;
  left: 318px;
}
.map-container__antartico .map__mark-4 {
  width: 59px;
  height: 18px;
  top: 45px;
  left: 283px;
}
.map-container__antartico .map__mark-5 {
  width: 70px;
  height: 20px;
  top: 23px;
  left: 358px;
}
.map-container__antartico .map__mark-6 {
  width: 64px;
  height: 29px;
  top: 30px;
  left: 238px;
}
.map-container__antartico .map__mark-7 {
  width: 61px;
  height: 28px;
  top: 1px;
  left: 309px;
}
.map-container__antartico .map__mark-8 {
  width: 109px;
  height: 21px;
  top: 6px;
  left: 254px;
}
.map-container__antartico .map__mark-9 {
  width: 71px;
  height: 30px;
  top: 63px;
  left: 345px;
}
.map-container__bahia-iqu {
  height: 820px;
}
.map-container__bahia-iqu .map__mark-1 {
  width: 100px;
  height: 91px;
  top: 91px;
  left: 259px;
}
.map-container__bahia-iqu .map__mark-2 {
  width: 82px;
  height: 78px;
  top: 96px;
  left: 275px;
}
.map-container__bahia-iqu .map__mark-3 {
  width: 91px;
  height: 58px;
  top: 101px;
  left: 272px;
}
.map-container__bahia-iqu .map__mark-4 {
  width: 99px;
  height: 78px;
  top: 113px;
  left: 255px;
}
.map-container__bahia-iqu .map__mark-5 {
  width: 100px;
  height: 57px;
  top: 117px;
  left: 241px;
}
.map-container__bahia-iqu .map__mark-6 {
  width: 92px;
  height: 59px;
  top: 121px;
  left: 242px;
}
.map-container__bahia-iqu .map__mark-7 {
  width: 101px;
  height: 70px;
  top: 180px;
  left: 232px;
}
.map-container__bahia-vlp {
  height: 820px;
}
.map-container__bahia-vlp .map__mark-1 {
  width: 90px;
  height: 51px;
  top: 8px;
  left: 209px;
}
.map-container__bahia-vlp .map__mark-2 {
  width: 92px;
  height: 58px;
  top: 13px;
  left: 205px;
}
.map-container__bahia-vlp .map__mark-3 {
  width: 91px;
  height: 58px;
  top: 51px;
  left: 162px;
}
.map-container__bahia-vlp .map__mark-4 {
  width: 99px;
  height: 88px;
  top: 88px;
  left: 145px;
}
.map-container__bahia-vlp .map__mark-5 {
  width: 90px;
  height: 67px;
  top: 167px;
  left: 145px;
}
.map-container__bahia-vlp .map__mark-6 {
  width: 72px;
  height: 31px;
  top: 177px;
  left: 148px;
}
.map-container__bahia-vlp .map__mark-7 {
  width: 81px;
  height: 30px;
  top: 180px;
  left: 132px;
}
.map-container__bahia-vlp .map__mark-8 {
  width: 91px;
  height: 35px;
  left: 120px;
  top: 183px;
}
.map-container__bahia-vlp .map__mark-9 {
  width: 88px;
  height: 45px;
  left: 100px;
  top: 196px;
}
.map-container__bahia-talc {
  height: 820px;
}
.map-container__bahia-talc .map__mark-1 {
  width: 90px;
  height: 51px;
  top: 26px;
  left: 289px;
}
.map-container__bahia-talc .map__mark-2 {
  width: 62px;
  height: 16px;
  top: 146px;
  left: 211px;
}
.map-container__bahia-talc .map__mark-3 {
  width: 62px;
  height: 15px;
  top: 148px;
  left: 205px;
}
.map-container__bahia-talc .map__mark-4 {
  width: 49px;
  height: 18px;
  top: 124px;
  left: 275px;
}
.map-container__bahia-talc .map__mark-5 {
  width: 58px;
  height: 34px;
  top: 137px;
  left: 189px;
}
.map-container__bahia-talc .map__mark-6 {
  width: 54px;
  height: 21px;
  top: 101px;
  left: 253px;
}
.map-container__bahia-talc .map__mark-7 {
  width: 56px;
  height: 25px;
  top: 104px;
  left: 252px;
}
.map-container__bahia-talc .map__mark-8 {
  width: 61px;
  height: 35px;
  left: 160px;
  top: 123px;
}
.map-container__bahia-talc .map__mark-9 {
  width: 70px;
  height: 45px;
  left: 130px;
  top: 176px;
}
.map-container__bahia-talc .map__mark-10 {
  width: 80px;
  height: 45px;
  left: 210px;
  top: 176px;
}
.map-container__bahia-talc .map__mark-11 {
  width: 70px;
  height: 45px;
  left: 220px;
  top: 208px;
}
.map-container__bahia-talc .map__mark-12 {
  width: 70px;
  height: 45px;
  left: 190px;
  top: 217px;
}
.map-container__bahia-pmo {
  height: 820px;
}
.map-container__bahia-pmo .map__mark-1 {
  width: 75px;
  height: 26px;
  top: 1px;
  left: 299px;
}
.map-container__bahia-pmo .map__mark-2 {
  width: 60px;
  height: 20px;
  top: 4px;
  left: 321px;
}
.map-container__bahia-pmo .map__mark-3 {
  width: 52px;
  height: 17px;
  top: -18px;
  left: 247px;
}
.map-container__bahia-pmo .map__mark-4 {
  width: 49px;
  height: 18px;
  top: -16px;
  left: 215px;
}
.map-container__bahia-pmo .map__mark-5 {
  width: 51px;
  height: 21px;
  top: -32px;
  left: 269px;
}
.map-container__bahia-pmo .map__mark-6 {
  width: 74px;
  height: 30px;
  top: -7px;
  left: 302px;
}
.map-container__bahia-pmo .map__mark-7 {
  width: 56px;
  height: 24px;
  top: 47px;
  left: 232px;
}
.map-container__bahia-pmo .map__mark-8 {
  width: 51px;
  height: 19px;
  left: 237px;
  top: 50px;
}
.map-container__bahia-pmo .map__mark-9 {
  width: 70px;
  height: 35px;
  left: 110px;
  top: 46px;
}
.map-container__bahia-pmo .map__mark-10 {
  width: 68px;
  height: 25px;
  left: 200px;
  top: 19px;
}
.map-container__bahia-pmo .map__mark-11 {
  width: 20px;
  height: 38px;
  left: 290px;
  top: -22px;
}
.map-container__bahia-pmo .map__mark-12 {
  width: 70px;
  height: 30px;
  left: 226px;
  top: -15px;
}
.map-container__bahia-pmo .map__mark-13 {
  width: 70px;
  height: 40px;
  left: 295px;
  top: 111px;
}
.map-container__bahia-pmo .map__mark-14 {
  width: 70px;
  height: 40px;
  left: 36px;
  top: 200px;
}
.map-container__bahia-pmo .map__mark-15 {
  width: 60px;
  height: 39px;
  left: 106px;
  top: 203px;
}
.map-container__bahia-pmo .map__mark-16 {
  width: 80px;
  height: 34px;
  left: 86px;
  top: 220px;
}
.map-container__bahia-par {
  height: 820px;
}
.map-container__bahia-par .map__mark-1 {
  width: 65px;
  height: 26px;
  top: 268px;
  left: 59px;
}
.map-container__bahia-par .map__mark-2 {
  width: 80px;
  height: 20px;
  top: 281px;
  left: 61px;
}
.map-container__bahia-par .map__mark-3 {
  width: 82px;
  height: 25px;
  top: 338px;
  left: 127px;
}
.map-container__bahia-par .map__mark-4 {
  width: 95px;
  height: 36px;
  top: 352px;
  left: 16px;
}
.map-container__bahia-par .map__mark-5 {
  width: 87px;
  height: 18px;
  top: 317px;
  left: 148px;
}
.map-container__bahia-par .map__mark-6 {
  width: 94px;
  height: 19px;
  top: 291px;
  left: 241px;
}
.map-container__bahia-par .map__mark-7 {
  width: 102px;
  height: 26px;
  top: 271px;
  left: 358px;
}
.map-container__bahia-par .map__mark-8 {
  width: 80px;
  height: 17px;
  left: 170px;
  top: 274px;
}
.map-container__bahia-par .map__mark-9 {
  width: 91px;
  height: 11px;
  left: 182px;
  top: 276px;
}
.map-container__bahia-par .map__mark-10 {
  width: 88px;
  height: 14px;
  left: 280px;
  top: 259px;
}
.map-container__bahia-par .map__mark-11 {
  width: 90px;
  height: 11px;
  left: 180px;
  top: 265px;
}
.map-container__bahia-par .map__mark-12 {
  width: 80px;
  height: 24px;
  left: 376px;
  top: 295px;
}

.drag-container {
  overflow: hidden;
  position: relative;
  cursor: grab;
}
.drag-container:active {
  cursor: grabbing;
}
.drag-container .content {
  display: inline-block;
  position: relative;
  transform: translateX(0px) translateY(0px) scale(1);
  transform-origin: center center;
  transition: transform 0.2s ease;
}
.drag-container .content img {
  display: block;
  height: auto;
  pointer-events: none;
}

.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2D2C7C;
  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: "Sora-SemiBold", sans-serif;
}

@media (max-width: 426px) {
  .menujq {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
}
.menujq.open {
  max-height: 1000px;
}
.menujq > ul {
  margin-left: 0 !important;
  list-style: none;
}
.menujq > ul > li {
  list-style: none !important;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
.menujq > ul > li.active {
  border-color: #2D2C7C;
  border: 1px solid #EAEDFF;
}
.menujq > ul > li.active .menujq__head:after {
  transform: rotate(180deg);
}
.menujq > ul > li:first-child > ul {
  display: block;
}
.menujq__head {
  position: relative;
  margin: 0;
  padding: 20px 50px 20px 20px;
  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;
  background-color: #EAEDFF;
}
.menujq__head::before {
  content: "•";
  color: #EAEDFF;
  font-size: 2.125rem;
  position: absolute;
  left: 0;
}
.menujq__head:after {
  content: "";
  position: absolute;
  right: 10px;
  width: 21px;
  height: 21px;
  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 {
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__head:after {
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
  }
}
.menujq__subtit {
  font-size: 0.9375rem;
  color: #2D2C7C;
  font-family: "Sora-SemiBold", sans-serif;
}
.menujq__item a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8125rem;
  color: #2D2C7C;
  transition: 0.3s all ease;
  border-radius: 10px;
  line-height: 1.4;
}
.menujq__item + .menujq__item {
  margin-top: 15px;
}
.menujq__item.item-active a {
  background-color: #EAEDFF;
  color: #252525;
  font-family: "Sora-SemiBold", sans-serif;
}
.menujq__auxi {
  padding: 0 0 0 20px;
}
.menujq__auxi ul {
  display: block !important;
}
.menujq__description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #252525;
}
.menujq .desplegable ul {
  list-style: none;
  background-color: #ffffff;
}
.menujq .desplegable ul li {
  list-style: none !important;
}
.menujq__comite {
  padding-top: 30px;
}
@media (max-width: 426px) {
  .menujq__comite {
    max-height: 100%;
    overflow: visible;
    transition: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__comite {
    max-height: 100%;
    overflow: visible;
    transition: none;
  }
}
.menujq__comite .menujq__avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 30px;
}
@media (max-width: 426px) {
  .menujq__comite .menujq__head {
    padding: 10px 40px 10px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__comite .menujq__head {
    padding: 10px 40px 10px 10px;
  }
}
.menujq__comite .menujq__head::before {
  content: none;
}
.menujq__comite .menujq__head::after {
  width: 32px;
  height: 32px;
  background-image: url("../../imag/v1/master/chevron-down-b.svg");
}
@media (max-width: 426px) {
  .menujq__comite .menujq__head::after {
    top: 27px;
    right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__comite .menujq__head::after {
    top: 27px;
    right: 0;
  }
}
.menujq__comite .menujq__subtit {
  font-size: 1rem;
  font-family: "Sora-Bold", sans-serif;
}
.menujq__comite .menujq__auxi {
  padding: 0 20px;
}
.menujq__comite > ul > li {
  margin-bottom: 15px;
}

/* Estilos para el botón */
.menu-toggle {
  display: none;
  cursor: pointer;
  color: #2D2C7C;
  max-width: 95%;
  width: 100%;
  padding: 12px 40px 12px 20px;
  border-radius: 10px;
  border: 1px solid #2D2C7C;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  position: relative;
}
@media (max-width: 426px) {
  .menu-toggle {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menu-toggle {
    display: block;
  }
}
.menu-toggle:after {
  content: "";
  position: absolute;
  right: 10px;
  width: 21px;
  height: 21px;
  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) {
  .menu-toggle:after {
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menu-toggle:after {
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
  }
}
.menu-toggle.active::after {
  transform: rotate(-180deg);
}

.anchor-menu {
  padding: 20px 0;
}
.anchor-menu .auxi {
  gap: 5px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 426px) {
  .anchor-menu .auxi {
    overflow: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .anchor-menu .auxi {
    overflow: auto;
  }
}
@media (max-width: 426px) {
  .anchor-menu .btn__primary {
    width: auto;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .anchor-menu .btn__primary {
    width: auto;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

.block-tabs {
  padding: 60px 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 .tabs {
  overflow: hidden;
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tabs {
    max-width: 100%;
    margin: 0 auto;
  }
}
.block-tabs .tab-btns {
  gap: 10px;
  margin-bottom: 15px;
  background-color: #EAEDFF;
  border-radius: 16px;
  padding: 10px 12px;
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-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;
    gap: 4px;
    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;
    gap: 4px;
    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 .tab {
  font-size: 1.125rem;
  color: #494957;
  position: relative;
  padding: 18px 20px;
  border-radius: 12px;
  transition: 0.3s all ease;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: "Sora-Regular", sans-serif;
}
@media (max-width: 426px) {
  .block-tabs .tab-btns .tab {
    font-size: 0.875rem;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .tab-btns .tab {
    font-size: 0.875rem;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tab-btns .tab {
    padding: 8px 10px;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.block-tabs .tab-btns .tab.active {
  color: #ffffff;
  background-color: #494957;
  border-color: #494957;
}
.block-tabs .tab-btns .tab:not(.active):hover {
  color: #2D2C7C;
}
@media (max-width: 426px) {
  .block-tabs .tab-btns .tab:last-child {
    margin-right: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .tab-btns .tab:last-child {
    margin-right: 20px;
  }
}
.block-tabs .tab-content {
  transition: opacity 600ms, visibility 600ms;
}
.block-tabs .tab-content .grid {
  width: 100%;
}
@media (max-width: 426px) {
  .block-tabs .tab-content .grid {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .tab-content .grid {
    display: block;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tab-content .grid.gap-50 {
    gap: 0 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tab-content .grid .g-md-4 {
    grid-column: span 5;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tab-content .grid .g-md-8 {
    grid-column: span 7;
  }
}
.block-tabs .tab-content .tab-wrap {
  padding: 40px;
  background-color: #EAEDFF;
  border-radius: 30px;
}
@media (max-width: 426px) {
  .block-tabs .tab-content .tab-wrap {
    padding: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .tab-content .tab-wrap {
    padding: 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tab-content .tab-wrap {
    padding: 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tab-content .tab-wrap .grid__col {
    padding: 0;
  }
}
.block-tabs .tab-content.active {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.block-tabs .tab-content.active .tab-wrap {
  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: "Sora-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 #75747F;
  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: #2D2C7C;
  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 #75747F;
  display: block;
  font-size: 1rem;
  border-radius: 4px;
  transition: 0.3s all ease;
}
.filter__tag.active {
  background-color: #2D2C7C;
  color: #ffffff;
}
.filter__tag:hover {
  background-color: #75747F;
}

.dropdown-m {
  position: relative;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.dropdown-m .dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  overflow: auto;
  border-radius: 12px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
@media (max-width: 426px) {
  .dropdown-m .dropdown-content {
    right: 0;
    top: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dropdown-m .dropdown-content {
    right: 0;
    top: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .dropdown-m .dropdown-content {
    right: 0;
    top: 100%;
  }
}
.dropdown-m .dropdown-content li {
  text-decoration: none;
  display: block;
  cursor: pointer;
  min-width: 200px;
  background: none !important;
  padding: 0 !important;
  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;
}
.dropdown-m .dropdown-content li:hover {
  transition: 0.3s all ease;
  background-color: #f9f9f9 !important;
}
.dropdown-m .dropdown-content li a {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.9375rem;
  color: #252525;
  padding: 13px 20px;
  border-bottom: 1px solid #e4e4e4;
  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;
}
.dropdown-m .dropdown-content li a .precio {
  font-size: 0.9375rem !important;
  padding: 0 !important;
}
.dropdown-m .dropdown {
  position: relative;
  display: inline-block;
}
@media (max-width: 426px) {
  .dropdown-m .dropdown {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dropdown-m .dropdown {
    width: 100%;
  }
}
.dropdown-m .dropbtn-m {
  background-color: #ffffff;
  color: #2D2C7C;
  border: none;
  cursor: pointer;
  background-image: url("../../imag/v1/icon/ic-chevron-down-b.svg");
  background-repeat: no-repeat;
  background-position: 96% 55%;
  background-size: 22px;
  padding-right: 50px !important;
}
.dropdown-m .dropbtn:hover, .dropdown-m .dropbtn:focus {
  background-color: #252525;
  color: #ffffff;
}
.dropdown-m .active {
  display: block;
}

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

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

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

.bg-lightblue {
  background-color: #75747F;
}

.bg-green {
  background-color: #2D2C7C;
}

.bg-lightgreen {
  background-color: #EAEDFF;
}

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

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

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

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 .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 .enc-main__banner .enc-main__content, body.contraste .box__arts--bg .row,
body.contraste .menu-responsive .menu__search button, body.contraste .menu-responsive .menu__search button img, body.contraste .header .item-icon.search-cont .search-wrapper .input-holder .search-icon, body.contraste .enc-main__content, body.contraste .map-container .map__markers,
body.contraste .map-container .map__markers div, body.contraste .card__aviso--vert a, body.contraste .card__bg--grad::before {
  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 .header__logo img, body.contraste .slider__line .swiper-arrows, body.contraste .slider__line .swiper-arrows .swiper-button-prev, body.contraste .slider__line .swiper-arrows .swiper-button-next, body.contraste .card__item .card__img, body.contraste .card__link .card__img img {
  background-color: #ffffff !important;
}
body.contraste .header__links .sub-menu, body.contraste .header__links > li.desp:hover > a, body.contraste .header__links .sub-menu__row, body.contraste .header__links .sub-menu__row li, body.contraste .header__links .sub-menu__row li a,
body.contraste .header__links .sub-menu__title, body.contraste .header__links .sub-menu__row .sub-menu__content, body.contraste .card__txt .card__pill, body.contraste .card__color .card__content, body.contraste .btn-icon:hover, body.contraste .inner-nav-container .inner-nav .pill.active a,
body.contraste .form__group input, body.contraste .form__group select, body.contraste .form__group textarea, body.contraste .header__contact--blue, body.contraste .header__contact--blue a, body.contraste .card__map .card__content, body.contraste .card__map .card__content *,
body.contraste .card__map .horarios, body.contraste .card__map .horarios *, body.contraste .table-result th, body.contraste .slider__line::after {
  background-color: #000000 !important;
}
body.contraste a, body.contraste p, body.contraste h1, body.contraste h2, body.contraste h3, body.contraste h4, body.contraste input::placeholder, body.contraste .breadcrumbs .breadcrumb a, body.contraste .breadcrumbs .breadcrumb:last-child, body.contraste .form-container.auxi > .auxi .link_back {
  color: #ffffff !important;
}
body.contraste .header .sec-navbar .cont-links .cont-search input, body.contraste .cont-select .auxi form select, body.contraste .form .d-flex .btn-file, body.contraste.formulario .auxi .cont-form form .form-group select, body.contraste.formulario .auxi .cont-form form .form-group input,
body.contraste .btn__main, body.contraste .btn__sec, body.contraste .switch .slider.round, body.contraste .acc-cont .cont-access, body.contraste .menu-responsive .cont-search input, body.contraste .acc-cont.active,
body.contraste .navbar__btns .item-icon.search-cont .search-wrapper .input-holder .search-input, body.contraste.articulo .anclas .subtitulos a, body.contraste .tags__item,
body.contraste .box__auxi .card__art .card__auxi, body.contraste .card__art.card__bg, body.contraste .card__art .art__auxi .cont-btn .btn__sec, body.contraste .card__art .art__auxi, body.contraste .card__art .art__auxi .cont-btn .btn__main,
body.contraste .form-container.auxi > .auxi .link_back, body.contraste .menu-responsive .menu .btn__main, body.contraste .menu-responsive .menu .btn__tert, body.contraste .tags__tag, body.contraste .menujq__head, body.contraste .card__txt--color .card__content,
body.contraste .header__links .desp__int .sub-menu__int, body.contraste .header__links .desp__int:hover > a, body.contraste .btn__primary, body.contraste .table-custom th, body.contraste .table-custom td, body.contraste .card__link,
body.contraste .menu-responsive .menu__links .main-link__btn, body.contraste .menu-responsive .menujq .desplegable ul, body.contraste .menu-responsive .menu__search input, body.contraste .header__links .sub-menu,
body.contraste .header .item-icon.search-cont .search-wrapper .input-holder .search-input, body.contraste .CUERPO .table-ugm thead th, body.contraste .CUERPO .table-ugm td, body.contraste .form .d-flex .file-name,
body.contraste .alert .auxi, body.contraste .block-tabs .tab-btns .tab, body.contraste .block-tabs .tab-content.active .tab-wrap, body.contraste .card__rounded, body.contraste .box__carousel .swiper-slide article, body.contraste .card__aviso .card__img, body.contraste .grid .card,
body.contraste .dropdown-m .dropdown-content, body.contraste.conversor .tabs-cont-h, body.contraste.conversor .tabs-h li a {
  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, body.contraste .card__aviso--vert .card__img, body.contraste .grid .card__horizontal {
  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 .alert__bar {
  border-right: 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 .menu-responsive .menujq__head::after {
  background-image: url(../../imag/v1/icon/chevron-down-w.svg);
}
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 .header .item-icon.search-cont .search-wrapper .input-holder .search-icon .ic-search {
  background-color: #fff !important;
  border-radius: 6px;
}
body.contraste .tabs-container .tabs-h li a:not(.inactive), body.contraste .block-tabs .tab-btns .tab.active {
  background-color: #2D2C7C !important;
  border: 1px solid #2D2C7C !important;
}
body.contraste .header__links > li.desp a, body.contraste .dropdown-m .dropbtn-m {
  background-image: url(../../imag/v1/icon/chevron-down-w.svg);
  background-size: 14px;
}
body.contraste .form__group select {
  background-image: url(../../imag/v1/icon/chevron-down-w.svg);
}
body.contraste .swiper-container {
  max-width: 100%;
}

.wp-pagenavi {
  font-size: 0.9375rem;
  font-family: "Sora-SemiBold", 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: #2D2C7C;
  background-color: #ffffff;
  font-family: "Sora-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: #2D2C7C;
  color: #ffffff;
}
.wp-pagenavi a.page {
  margin-right: 17px;
}
.wp-pagenavi span {
  display: inline-block;
  padding: 14px 18px;
  margin-right: 10px;
  font-family: "Sora-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: #2D2C7C;
  border-radius: 12px;
}

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

.breadcrumbs {
  padding: 0 0 15px;
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 426px) {
  .breadcrumbs {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs .pref {
  color: #000000;
  font-size: 0.8125rem;
  margin-right: 8px;
}
.breadcrumbs .breadcrumb {
  color: #000000;
  font-size: 0.875rem;
  font-family: "Sora-Regular", sans-serif;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.breadcrumbs .breadcrumb:after {
  content: "/";
  position: relative;
  display: inline-block;
  padding: 0 5px;
}
.breadcrumbs .breadcrumb:last-child:after {
  content: none;
}
.breadcrumbs .breadcrumb a {
  text-decoration: underline;
}
.breadcrumbs .breadcrumb a:hover {
  opacity: 0.5;
}

.chart-container {
  height: 450px;
}

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

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

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

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

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

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

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

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

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

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

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

.tabs-container {
  width: 100%;
}
.tabs-container .tabs-h {
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 15px;
  background-color: #EAEDFF;
  border-radius: 16px;
  padding: 10px 12px;
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 426px) {
  .tabs-container .tabs-h {
    overflow: auto;
    gap: 4px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    margin-top: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs-container .tabs-h {
    overflow: auto;
    gap: 4px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    margin-top: 10px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .tabs-container .tabs-h {
    overflow: auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
.tabs-container .tabs-h li {
  margin-right: 0;
}
.tabs-container .tabs-h li a {
  font-size: 1.125rem;
  color: #494957;
  position: relative;
  padding: 10px 5px;
  border-radius: 10px;
  transition: 0.3s all ease;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: "Sora-Regular", sans-serif;
  float: left;
  text-align: center;
  line-height: 120%;
  height: 100%;
}
@media (max-width: 426px) {
  .tabs-container .tabs-h li a {
    font-size: 0.875rem;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs-container .tabs-h li a {
    font-size: 0.875rem;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .tabs-container .tabs-h li a {
    padding: 8px 10px;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.tabs-container .tabs-h li a.inactive {
  color: #2D2C7C;
}
.tabs-container .tabs-h li a:not(.inactive) {
  color: #ffffff;
  background-color: #494957;
  border-color: #494957;
}
.tabs-container .tabs-h li a:hover {
  color: #ffffff;
  background-color: #494957;
  border-color: #494957;
}
@media (max-width: 426px) {
  .tabs-container .tabs-h li a:last-child {
    margin-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tabs-container .tabs-h li a:last-child {
    margin-right: 0;
  }
}
.tabs-container .tabs-cont-h {
  padding: 40px;
  background-color: #EAEDFF;
  border-radius: 30px;
}
.tabs-container .tabs-cont-h .tab-pane.hor {
  display: none;
}
.tabs-container .tabs-cont-h .tab-pane.hor:first-child {
  display: block;
}
.tabs-container .tabs-cont-h .block-head__description {
  font-size: 1rem;
  margin: 20px 0 0;
}

.conversor .tabs-cont-h {
  margin-bottom: 60px;
}
@media (max-width: 426px) {
  .conversor .tabs-cont-h {
    margin-bottom: 10px;
    padding: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .conversor .tabs-cont-h {
    margin-bottom: 10px;
  }
}
@media (max-width: 426px) {
  .conversor .tabs-cont-h .tab-pane .tab-wrap .grid {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .conversor .tabs-cont-h .tab-pane .tab-wrap .grid {
    display: block;
  }
}
.conversor .tabs-cont-h .tab-pane .tab-wrap .grid__col .block-head {
  -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) {
  .conversor .tabs-cont-h .tab-pane .tab-wrap .grid__col .block-head {
    margin-top: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .conversor .tabs-cont-h .tab-pane .tab-wrap .grid__col .block-head {
    margin-top: 40px;
  }
}
@media (max-width: 426px) {
  .conversor .tabs-cont-h .tab-pane .tab-wrap .grid__col .form__group {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .conversor .tabs-cont-h .tab-pane .tab-wrap .grid__col .form__group {
    width: 100%;
  }
}

.swiper.art-mapa .swiper-wrapper .swiper-slide {
  background-color: #252525;
  padding: 20px 20px 0 20px;
}
.swiper.art-mapa .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  width: auto;
  padding: 30px 0 0 0;
}

.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;
  background-color: #ffffff;
}
.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;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .header .mobile {
    display: block !important;
  }
}
.header.sticky {
  position: fixed;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}
.header.sticky .header__logo {
  padding-bottom: 15px;
  -webkit-flex: 0 1 200px;
  flex: 0 1 200px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header.sticky .header__bottom {
    padding: 15px 20px 0;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header.sticky .header__bottom {
    padding: 15px 2vw 0;
  }
}
.header.sticky .header__links > li > a {
  padding: 20px 10px;
}
.header.sticky .header__links > li.desp > a {
  padding: 20px 30px 20px 10px;
  background-position: 100% 24px;
}
.header.sticky .item-icon.search-cont .search-wrapper .input-holder {
  top: -7px;
}
.header.sticky .item-icon.search-cont .search-wrapper .close {
  top: 17px;
}
.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__top {
  padding: 6px 2vw;
  background-color: #494957;
  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;
}
.header .language {
  padding: 8px;
  gap: 8px;
  font-size: 0.75rem;
  border-radius: 6px;
  background-color: #343440;
  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 .language__btn {
  color: #ffffff;
  padding: 2px 4px 4px;
  border-radius: 4px;
}
.header .language__btn.active {
  background-color: #515167;
  font-family: "Sora-Bold", sans-serif;
}
.header__cont {
  position: relative;
  z-index: 2;
}
.header__info {
  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;
}
.header__txt {
  color: #ffffff;
  font-size: 0.75rem;
}
.header__txt span + span {
  width: 52px;
  display: inline-block;
}
.header__btn-group {
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -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: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__group {
    gap: 10px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__group {
    gap: 10px;
  }
}
@media (min-width: 1500px) {
  .header__group {
    gap: 70px;
  }
}
.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__bottom {
  padding: 20px 2vw 0;
  gap: 30px;
  background-color: #EAEDFF;
  transition: 0.3s all ease;
  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: 20px 2vw 0;
  }
}
.header__logo {
  transition: 0.3s all ease;
  padding-bottom: 20px;
  -webkit-flex: 0 0 250px;
  flex: 0 0 250px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__logo {
    -webkit-flex: 0 0 200px;
    flex: 0 0 200px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__logo {
    -webkit-flex: 0 0 240px;
    flex: 0 0 240px;
  }
}
.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:last-child .sub-menu {
  left: auto;
  right: 5vw;
}
.header__links > li:last-child a {
  margin-right: 0;
}
.header__links > li:hover .sub-menu {
  display: grid;
}
.header__links > li a {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 0;
  line-height: 1.4;
  color: #252525;
  padding: 24px 6px 40px;
  position: relative;
  font-family: "Sora-Regular", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__links > li a {
    font-size: 0.75rem;
    padding: 15px 10px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__links > li a {
    font-size: 0.9375rem;
    padding: 24px 10px;
  }
}
.header__links > li a.selected {
  font-family: "Sora-SemiBold", sans-serif;
}
.header__links > li a img {
  max-width: 60px;
  width: 100%;
}
.header__links > li.desp a {
  padding-right: 24px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 99% 28px;
  background-size: 18px;
  background-image: url("../../imag/v1/icon/ic-chevron-down-b.svg");
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__links > li.desp a {
    padding-right: 20px;
    background-position: 100% 13px;
    background-size: 20px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__links > li.desp a {
    background-position: 100% 27px;
  }
}
.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;
  gap: 8px;
  -webkit-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  -moz-box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
  box-shadow: 0px 0px 24.2px 0px rgba(58, 59, 71, 0.2);
}
.header__links .sub-menu li {
  width: 100%;
}
.header__links .sub-menu li a {
  gap: 15px;
  padding: 9px 15px;
  color: #2D2C7C;
  font-size: 0.9375rem;
  transition: 0.3s all ease;
  border-radius: 12px;
  background-image: none !important;
  font-family: "Sora-Regular", sans-serif;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.header__links .sub-menu li a:hover {
  background: none;
  background-color: #2D2C7C;
  color: #ffffff;
}
.header__links .sub-menu li a + a {
  margin-top: 5px;
}
.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);
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header .item-icon.search-cont .search-wrapper.active .input-holder {
    width: 30vw;
  }
}
.header .item-icon.search-cont .search-wrapper.active .input-holder .search-input {
  opacity: 1;
  padding: 12px 30px;
  outline: none;
  color: #2D2C7C;
}
.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: 10px;
  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: 6px;
  top: -7px;
}
.header .item-icon.search-cont .search-wrapper .close::after {
  width: 20px;
  height: 2px;
  left: -3px;
  top: 2px;
}
.header .item-icon.search-cont .search-wrapper .input-holder {
  top: -15px;
  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;
  border: 1px solid #2D2C7C;
  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: 10px;
  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-b.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: #2D2C7C;
}
.header .item-icon.search-cont .search-icon.btn {
  display: none;
}
.header .item-icon.search-cont .search-icon.ic {
  text-align: center;
}

.acc-cont {
  position: absolute;
  right: 38px;
  top: -15%;
  width: 0;
  background-color: #252525;
  border-radius: 12px;
  transition: 0.2s all ease;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  border: 1px solid #252525;
}
.acc-cont.active {
  width: 190px;
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.acc-cont .cont-access {
  padding: 5px 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: 25px;
  height: 25px;
  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: #EAEDFF;
  -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: #2D2C7C;
}
.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: #ffffff;
  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 .header__top {
  padding: 13px 10px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.menu-responsive .top-bar {
  padding: 8px 15px;
  background-color: #EAEDFF;
  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: 240px;
}
.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: 8px;
  background: #494957;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 24px;
  right: 4px;
  opacity: 0;
  height: 4px;
  top: 20px;
}
.menu-responsive .top-bar .menu-btn {
  display: none;
}
.menu-responsive .top-bar .menu-btn:checked ~ .menu {
  max-height: 90vh;
  height: 90vh;
}
.menu-responsive .top-bar .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.menu-responsive .top-bar .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
  width: 80%;
  opacity: 1;
}
.menu-responsive .top-bar .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
  width: 80%;
  opacity: 1;
}
.menu-responsive .menu {
  clear: both;
  padding: 0;
  max-height: 0;
  width: 100%;
  transition: max-height 0.3s ease-in-out;
  margin: 0;
  list-style: none;
  overflow-y: auto;
  margin: 0 auto;
  position: relative;
  background-color: #ffffff;
}
@media (min-width: 767px) and (max-width: 991px) {
  .menu-responsive .menu {
    max-width: 100%;
  }
}
.menu-responsive .menu__links {
  padding: 30px 0;
  max-width: 100%;
}
@media (min-width: 767px) and (max-width: 991px) {
  .menu-responsive .menu__links {
    margin: 0;
  }
}
.menu-responsive .menu__links li {
  position: relative;
  float: none;
}
.menu-responsive .menu__links li a {
  padding: 25px 15px;
  text-decoration: none;
}
.menu-responsive .menu__links li a > img {
  width: 18px;
}
.menu-responsive .menu__links > li > a {
  padding: 15px 20px;
  color: #2D2C7C;
  font-size: 1rem;
  min-height: 55px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  font-family: "Sora-Bold", sans-serif;
}
.menu-responsive .menu__links .main-link__btn {
  background-color: rgba(54, 66, 78, 0.22);
  color: #2D2C7C;
  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: #75747F;
  padding: 14px 20px;
  min-height: auto;
  font-family: "Sora-Regular", sans-serif;
}
.menu-responsive .menu .cont-access {
  padding: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.menu-responsive .menu .cont-access .access {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.menu-responsive .menu .cont-access .access .switch {
  margin-right: 10px;
}
.menu-responsive .menu .cont-access .access .switch input:checked + .slider::after {
  background-image: url(../../imag/v1/icon/ic-moon.svg);
}
.menu-responsive .menu .cont-access .access .switch .slider {
  background-color: #2D2C7C;
}
.menu-responsive .menu .cont-access .access .switch .slider:after {
  width: 25px;
  height: 25px;
  background-image: url(../../imag/v1/icon/ic-sun-b.svg);
}
.menu-responsive .menu .cont-access .access .switch .slider::before {
  background-color: #ffffff;
}
.menu-responsive .menu .cont-access .txt-light {
  color: #2D2C7C;
  display: block;
}
.menu-responsive .menu .cont-access .txt-dark {
  color: #ffffff;
  display: none;
}
.menu-responsive .menu__search {
  width: 90%;
  margin: 15px auto 0;
  position: relative;
  max-width: 400px;
}
.menu-responsive .menu__search input {
  width: 100%;
  padding: 15px;
  position: relative;
  color: #2D2C7C;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #ffffff;
  border: 1px solid #2D2C7C;
}
.menu-responsive .menu__search button {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 10px;
  padding-left: 12px;
  font-size: 17px;
}
.menu-responsive .menu__search button img {
  width: 24px;
}
.menu-responsive .accordionItemContent {
  background-color: #ffffff;
  border-radius: 16px;
}
.menu-responsive .accordionItemContent .menu__title {
  padding: 0;
  font-size: 1.125rem;
}
.menu-responsive .accordionItemContent .menu__title a {
  line-height: 1.4;
  font-family: "Sora-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: "Sora-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: #2D2C7C;
  padding: 10px 0;
  border-radius: 0 0 12px 12px;
}
.menu-responsive .menujq .desplegable ul li .menujq__link-dest {
  font-family: "Sora-Bold", sans-serif;
}
.menu-responsive .menujq .desplegable ul li a {
  font-size: 0.875rem;
  color: #ffffff;
}
.menu-responsive .menujq > ul {
  margin: 0 15px !important;
}
.menu-responsive .menujq > ul li a {
  padding: 12px 30px 12px 20px;
}
.menu-responsive .accordionItemHeading {
  width: auto;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.menu-responsive .accordionItemHeading figure {
  position: relative;
  margin-left: 10px;
}
.menu-responsive .accordionItemHeading img {
  width: 20px;
  transition: 0.2s all ease;
  position: relative;
  bottom: 1px;
}
.menu-responsive .accordionItemHeading .hide {
  display: none !important;
}
.menu-responsive .accordionItemHeading .show {
  display: block !important;
}
.menu-responsive .open .main-link {
  transition: 0.2s all ease;
}
.menu-responsive .open .accordionItemHeading img {
  transform: rotate(180deg);
}
.menu-responsive .open .accordionItemHeading .hide {
  display: block !important;
}
.menu-responsive .open .accordionItemHeading .show {
  display: none !important;
}
.menu-responsive .open .accordionItemContent {
  padding-bottom: 15px;
  width: 100%;
  display: block;
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  -o-transition: -o-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  box-sizing: border-box;
}
.menu-responsive .close .accordionItemContent {
  height: 0px;
  transition: height 1s ease-out;
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  display: block;
  padding: 0;
}

.footer {
  padding: 70px 0;
  position: relative;
  z-index: 0;
  background-color: #252525;
}
@media (max-width: 426px) {
  .footer {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
}
.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__logo {
  display: block;
  width: 260px;
  -webkit-flex: 0 0 260px;
  flex: 0 0 260px;
}
@media (max-width: 426px) {
  .footer__logo {
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__logo {
    flex: 0 0 auto;
  }
}
@media (max-width: 426px) {
  .footer__logo img {
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__logo img {
    margin: 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__logo img {
    margin: 0 auto;
  }
}
.footer__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;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__links {
    text-align: center;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__links {
    gap: 60px;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@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 > .footer__col {
  -webkit-flex: 0 1 290px;
  flex: 0 1 290px;
}
@media (max-width: 426px) {
  .footer__links > .footer__col {
    flex: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__links > .footer__col {
    flex: none;
  }
}
.footer__info {
  margin-top: 22px;
}
.footer__info li {
  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;
}
.footer__info img {
  width: 24px;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.footer__social li a {
  gap: 15px;
  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;
}
.footer__social li + li {
  margin-top: 15px;
}
.footer__social img {
  width: 18px;
}
.footer__col {
  -webkit-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
}
@media (max-width: 426px) {
  .footer__col {
    gap: 12px;
    flex: none;
    text-align: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__col {
    gap: 12px;
    flex: none;
    text-align: left;
  }
}
@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: 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__col > li {
    text-align: center;
    line-height: 1.3;
    -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) {
  .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 + li {
  margin-top: 15px;
}
.footer__col > li a {
  font-size: 0.9375rem;
  color: #ffffff;
  transition: 0.3s all ease;
  line-height: 1.5;
  font-family: "Sora-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__col:first-child {
  -webkit-flex: 0 1 460px;
  flex: 0 1 460px;
}
@media (max-width: 426px) {
  .footer__col:first-child {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__col:first-child {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__col:first-child {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.footer__title {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: "Sora-Bold", sans-serif;
}
.footer__number, .footer__number a {
  color: #ffffff;
  font-size: 1.375rem;
  font-family: "Sora-SemiBold", sans-serif;
}
.footer__description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
  font-family: "Sora-SemiBold", sans-serif;
}
.footer__description--light {
  font-family: "Sora-Light", sans-serif;
}

@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__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: 1050px;
  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: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .hero__content {
    padding: 0;
    max-width: 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;
  text-transform: uppercase;
  font-family: "Sora-Bold", 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.375rem;
  }
}
.hero__title .bold {
  color: #75747F;
  font-family: "Sora-Bold", sans-serif;
}
.hero__description {
  color: #ffffff;
  padding: 0;
  line-height: 1.5;
  margin-top: 32px;
  max-width: 500px;
  text-align: left;
  font-size: 1.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 .video {
  overflow: hidden;
  max-height: 540px;
}
@media (max-width: 426px) {
  .hero .video {
    max-height: 456px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .video {
    max-height: 456px;
  }
}
.hero .video::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}
.hero video {
  display: block;
  object-fit: cover;
}
@media (max-width: 426px) {
  .hero video {
    min-height: 520px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero video {
    min-height: 520px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero video {
    min-height: 500px;
  }
}
.hero .btn {
  margin-top: 30px;
}
@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;
}

.arts {
  position: relative;
  padding: 60px 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.375rem;
  padding: 40px 0;
}
.box__arts {
  position: relative;
  padding: 60px 0;
}
@media (max-width: 426px) {
  .box__arts {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts {
    padding: 30px 0;
  }
}
@media (max-width: 426px) {
  .box__arts:has(.block-hor) {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts:has(.block-hor) {
    padding: 20px 0;
  }
}
@media (max-width: 426px) {
  .box__arts .swiper-slide {
    width: 85%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts .swiper-slide {
    width: 85%;
  }
}
@media (max-width: 426px) {
  .box__arts .block-hor {
    padding: 0;
    gap: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts .block-hor {
    padding: 0;
    gap: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__arts .block-hor .block-hor__content {
    padding: 0;
  }
}
.box__carousel {
  padding: 60px 0;
}
@media (max-width: 426px) {
  .box__carousel {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel {
    padding: 30px 0;
  }
}
@media (max-width: 426px) {
  .box__carousel .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .auxi {
    padding: 0;
  }
}
@media (min-width: 1399px) {
  .box__carousel .auxi {
    max-width: 90%;
  }
}
@media (min-width: 1540px) {
  .box__carousel .auxi {
    max-width: 1400px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel .auxi .swiper {
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .swiper-container {
    width: 95%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel .swiper-container {
    width: 95%;
  }
}
.box__carousel .swiper-button-next, .box__carousel .swiper-button-prev {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% !important;
  border-radius: 1rem;
  z-index: 1 !important;
  width: 41px !important;
  height: 41px !important;
  top: calc(50% + 21px) !important;
  outline: none !important;
}
.box__carousel .swiper-button-next::after, .box__carousel .swiper-button-prev::after {
  content: none !important;
}
@media (max-width: 426px) {
  .box__carousel .swiper-button-next, .box__carousel .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .swiper-button-next, .box__carousel .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
}
.box__carousel .swiper-button-next {
  background-image: url("../../imag/v1/icon/ic-arrow-left-lg.svg") !important;
  right: 0.5vw !important;
}
.box__carousel .swiper-button-prev {
  background-image: url("../../imag/v1/icon/ic-arrow-right-lg.svg") !important;
  left: 0.5vw !important;
}
.box__carousel .swiper-button-disabled {
  opacity: 1 !important;
}
.box__carousel .swiper-button-prev {
  left: -3.5vw !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;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .swiper-button-prev {
    left: -15px !important;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel .swiper-button-prev {
    left: -16px !important;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .box__carousel .swiper-button-prev {
    left: -30px !important;
  }
}
.box__carousel .swiper-button-next {
  right: -3.5vw !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;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .swiper-button-next {
    right: -15px !important;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel .swiper-button-next {
    right: -16px !important;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .box__carousel .swiper-button-next {
    right: -30px !important;
  }
}
.box__carousel .swiper-pagination {
  position: relative;
  margin-top: 45px;
  top: 0;
}
.box__carousel .swiper-slide article {
  height: 100%;
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .swiper-slide article {
    -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) {
  .box__carousel .block-head {
    padding: 0 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .block-head {
    padding: 0 20px;
  }
}
.box__logos {
  padding: 60px 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: 60px 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: #EAEDFF;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__single .hero__content {
    position: relative;
    padding: 40px 15px;
    background-color: #EAEDFF;
  }
}
@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: 60px 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: "Sora-SemiBold", sans-serif;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@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.8;
  margin-top: 40px;
  color: #2D2C7C;
  font-family: "Sora-Regular", sans-serif;
}
@media (max-width: 426px) {
  .block-hor__description {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__description {
    font-size: 1rem;
  }
}
.block-hor__content {
  padding: 80px 2vw 80px 5vw;
  -webkit-flex: 0 1 50%;
  flex: 0 1 50%;
  -ms-flex-item-align: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
@media (max-width: 426px) {
  .block-hor__content {
    flex: none;
    padding: 0;
    padding-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__content {
    flex: none;
    padding: 0;
    padding-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor__content {
    padding: 40px 0 40px 2vw;
  }
}
.block-hor__img {
  position: relative;
  -webkit-flex: 0 1 50%;
  flex: 0 1 50%;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (max-width: 426px) {
  .block-hor__img {
    flex: none;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__img {
    flex: none;
    width: 100%;
  }
}
.block-hor__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.block-hor .btn {
  margin-top: 30px;
}
@media (max-width: 426px) {
  .block-hor .btn .btn__primary {
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor .btn .btn__primary {
    margin-top: 0;
  }
}
.block-hor .btn__primary {
  width: auto;
}
@media (max-width: 426px) {
  .block-hor .btn__primary {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor .btn__primary {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor .btn__primary {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.block-hor .CUERPO {
  padding-bottom: 0;
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor .CUERPO p {
    font-size: 1rem;
  }
}
.block-hor.inv .block-hor__content {
  padding: 80px 5vw 80px 2vw;
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor.inv .block-hor__content {
    padding: 40px 5vw 40px 2vw;
  }
}
.block-hor__full .block-hor__title {
  font-size: 2.375rem;
  text-transform: uppercase;
  color: #2D2C7C;
  font-family: "Sora-Bold", sans-serif;
}
.block-hor__full .block-hor__title--sm {
  font-size: 28px;
  text-transform: none;
}
.block-hor__full .block-hor__title--sm + .block-hor__description {
  margin-top: 20px;
}
.block-hor__full--white .block-hor__title, .block-hor__full--white .block-hor__description {
  color: #ffffff;
}
@media (max-width: 426px) {
  .block-hor__full--inv {
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__full--inv {
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.block-hor__txt {
  padding: 60px 0;
}
@media (max-width: 426px) {
  .block-hor__txt {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__txt {
    padding: 30px 0;
  }
}
.block-hor__txt .auxi {
  gap: 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 426px) {
  .block-hor__txt .auxi {
    margin-bottom: 0;
    padding: 20px;
    gap: 0;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__txt .auxi {
    margin-bottom: 0;
    padding: 20px;
    gap: 0;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor__txt .auxi {
    gap: 20px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.block-hor__txt .block-hor__content {
  padding: 0;
}
.block-hor__txt .block-hor__title {
  color: #2D2C7C;
  text-transform: uppercase;
  font-size: 2.375rem;
  font-family: "Sora-Bold", sans-serif;
}
.block-hor__txt .block-hor__description {
  margin: 0;
  color: #2D2C7C;
  line-height: 1.8;
}
.block-hor__txt .btn__secondary {
  margin-top: 40px;
}

.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: "Sora-Regular", sans-serif;
}

.slider__line {
  padding: 0;
  padding-left: 48px;
  gap: 10px;
  position: relative;
  display: flex !important;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  -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-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 426px) {
  .slider__line {
    gap: 5px;
    width: 100%;
    padding-bottom: 24px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .slider__line {
    gap: 5px;
    width: 100%;
    padding-bottom: 24px !important;
  }
}
.slider__line:after {
  content: "";
  height: 48px;
  width: 70px;
  background-color: #ffffff;
  position: absolute;
  right: -10px;
  top: 3px;
  z-index: 1;
}
.slider__line .swiper-slide {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.slider__line .swiper-wrapper {
  width: 93%;
}
@media (max-width: 426px) {
  .slider__line .swiper-wrapper {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .slider__line .swiper-wrapper {
    width: 100%;
  }
}
@media (max-width: 426px) {
  .slider__line .swiper-pagination {
    bottom: 6px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .slider__line .swiper-pagination {
    bottom: 6px !important;
  }
}
.slider__line .swiper-pagination-bullet {
  background-color: #75747F;
}
.slider__line .swiper-pagination-bullet-active {
  background-color: #2D2C7C;
}
.slider__line .btn__primary {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 426px) {
  .slider__line .btn__primary {
    margin: 0;
    min-width: auto;
    width: auto;
    padding: 8px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .slider__line .btn__primary {
    margin: 0;
    min-width: auto;
    width: auto;
    padding: 8px 15px;
  }
}
.slider__line .swiper-arrows {
  gap: 8px;
  position: relative;
  background-color: #EAEDFF;
  border-radius: 6px;
  padding: 6px;
  z-index: 2;
  right: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 767px) and (max-width: 991px) {
  .slider__line .swiper-arrows {
    right: 39px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .slider__line .swiper-arrows {
    right: 27px;
  }
}
@media (min-width: 1280px) and (max-width: 1500px) {
  .slider__line .swiper-arrows {
    right: 8px;
  }
}
.slider__line .swiper-arrows .swiper-button-prev, .slider__line .swiper-arrows .swiper-button-next {
  position: relative;
  top: 0 !important;
  margin-top: 0 !important;
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  background-size: 24px !important;
}
.slider__line .swiper-arrows .swiper-button-prev {
  left: 0 !important;
  background-image: url("../../imag/v1/icon/ic-arrow-left-sm.svg") !important;
}
.slider__line .swiper-arrows .swiper-button-next {
  right: 0 !important;
  background-image: url("../../imag/v1/icon/ic-arrow-right-sm.svg") !important;
}

.pronostico {
  width: 100%;
}
.pronostico__date {
  font-size: 0.875rem;
  color: #494957;
  text-align: left;
  margin: 20px 0;
}
.pronostico .block-head {
  -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) {
  .pronostico .block-head {
    -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) {
  .pronostico .block-head {
    -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;
  }
}
.pronostico .block-head__sm {
  margin-bottom: 18px;
}
.pronostico .block-head .btn__primary {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
.pronostico .card + .block-head__sm {
  margin-top: 20px;
}
.pronostico .form__group {
  text-align: left;
}
.pronostico .form__group select {
  width: auto;
  min-width: 400px;
  padding-right: 40px;
}
@media (max-width: 426px) {
  .pronostico .form__group select {
    width: 100%;
    max-width: 400px;
    min-width: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .pronostico .form__group select {
    width: 100%;
    max-width: 400px;
    min-width: auto;
  }
}

.avisos {
  padding: 20px 0;
}
.avisos .swiper-container {
  width: 100%;
  max-width: 100%;
  padding: 20px 0;
}
@media (min-width: 767px) and (max-width: 991px) {
  .avisos .swiper-container {
    max-width: 95%;
  }
}
.avisos .swiper-slide {
  padding: 0 10px;
}
@media (max-width: 426px) {
  .avisos .swiper-slide {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .avisos .swiper-slide {
    padding: 0;
  }
}

.results .box__arts .auxi {
  max-width: 800px;
}

.conversor .tabs-container {
  margin: 0 auto;
  max-width: 1150px;
}
.conversor .tabs-cont-h .block-head__description {
  font-size: 0.9375rem;
  line-height: 1.8;
}
.conversor .tabs-h li {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  max-width: 250px;
}
@media (max-width: 426px) {
  .conversor .tabs-h li {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .conversor .tabs-h li {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.conversor .tabs-h li a {
  padding: 10px;
}
.conversor .form .form-control--small {
  padding: 10px;
}
.conversor .form .btn .btn__primary + .btn__primary {
  background-color: #494957;
}

.taxport .card, .results .card, .formulario .card {
  margin-bottom: 20px;
}
@media (max-width: 426px) {
  .taxport .card, .results .card, .formulario .card {
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .taxport .card, .results .card, .formulario .card {
    margin-bottom: 0;
  }
}
.taxport .card .card__title, .results .card .card__title, .formulario .card .card__title {
  text-align: left;
}
@media (max-width: 426px) {
  .taxport .enc-main__title, .results .enc-main__title, .formulario .enc-main__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .taxport .enc-main__title, .results .enc-main__title, .formulario .enc-main__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 426px) {
  .results .card {
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .card {
    margin-bottom: 20px;
  }
}

.search-data {
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 0;
  position: relative;
  text-align: center;
}
.search-data__content {
  margin-bottom: 10px;
  font-family: "Sora-Regular", sans-serif;
}
.search-data__pref {
  font-size: 1.125rem;
  color: #ffffff;
  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: #EAEDFF;
  font-size: 1.125rem;
  font-family: "Sora-Bold", sans-serif;
}
.search-data__results p {
  font-size: 0.9375rem;
  color: #ffffff;
  line-height: 1.4;
}

.error {
  padding-bottom: 0;
  background-color: #EAEDFF;
}
.error .auxi {
  margin: 0 auto;
  padding: 20px 0 50px;
  min-height: 80vh;
  max-width: 1300px;
  gap: 60px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .error .auxi {
    padding: 30px 15px;
    min-height: 60vh;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error .auxi {
    padding: 30px 15px;
    min-height: 60vh;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .error .auxi {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.error__img {
  max-width: 350px;
  width: 100%;
}
@media (max-width: 426px) {
  .error__img {
    max-width: 300px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__img {
    max-width: 300px;
  }
}
.error__content {
  text-align: left;
  margin-left: 30px;
  -webkit-flex: 1 1 65%;
  flex: 1 1 65%;
}
@media (max-width: 426px) {
  .error__content {
    margin-left: 0;
    text-align: center;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__content {
    margin-left: 0;
    text-align: center;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.error__subtit {
  font-size: 3.75rem;
  padding-bottom: 15px;
  color: #2D2C7C;
  font-family: "Sora-Bold", sans-serif;
}
@media (max-width: 426px) {
  .error__subtit {
    font-size: 2.375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__subtit {
    font-size: 2.375rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .error__subtit {
    font-size: 2.375rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .error__subtit {
    font-size: 2.375rem;
  }
}
.error__baj {
  font-size: 2.375rem;
  color: #252525;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "Sora-Regular", sans-serif;
}
@media (max-width: 426px) {
  .error__baj {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__baj {
    font-size: 1.25rem;
  }
}
.error p:not(.error__baj) {
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  max-width: 1000px;
}
@media (max-width: 426px) {
  .error p:not(.error__baj) {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error p:not(.error__baj) {
    font-size: 0.875rem;
  }
}
.error p:not(.error__baj) + p {
  margin-top: 20px;
}
.error a {
  color: #2D2C7C;
  text-decoration: underline;
  font-family: "Sora-Bold", sans-serif;
}

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