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

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

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

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

body {
  line-height: 1;
}

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

ol, ul {
  list-style: none;
}

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

/* Para utilizar las variables basta con reemplazar el atributo por el nombre de la variable en nuestro código ej: "color: $main_azul" */
/* al modificar el atributo de cualquier variable afectará a todos los selectores donde se utilizó */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @mixin nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar mixins variables llamar de la siguiente forma: @include nombre_mixin(variable1, variable2, ...) */
.swiper-button-next, .swiper-button-prev {
  background-repeat: no-repeat !important;
  background-size: 24px !important;
  z-index: 1 !important;
  width: 44px !important;
  height: 44px !important;
  top: 27% !important;
  outline: none !important;
  background-color: #4D03FF;
  border-radius: 7px;
}
.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-prev {
  background-image: url("../../imag/v1/icon/ic-arrow-left-w.svg") !important;
  left: 0.5vw !important;
  background-position: 52% center !important;
}

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

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

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

.enc-main__bg--programa .enc-main__img::before {
  background: #000000;
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.header, .bg-grad-azul {
  background: #4603E8;
  background: -webkit-linear-gradient(180deg, rgb(70, 3, 232) 0%, rgb(32, 1, 107) 100%);
  background: -moz-linear-gradient(180deg, rgb(70, 3, 232) 0%, rgb(32, 1, 107) 100%);
  background: linear-gradient(180deg, rgb(70, 3, 232) 0%, rgb(32, 1, 107) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4603E8", endColorstr="#20016B", GradientType=0);
}

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

.btn__primary {
  display: inline-block;
  font-size: 1rem;
  padding: 8px 16px;
  min-height: 32px;
  letter-spacing: 0.2px;
  gap: 3px;
  transition: 0.3s all ease;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: #7C7786;
  border-radius: 3rem;
  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: "BwModelica-ExtraBold", sans-serif;
}
.btn__primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 426px) {
  .btn__primary {
    width: auto;
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__primary {
    width: auto;
    font-size: 0.875rem;
    padding: 10px 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .btn__primary {
    padding: 15px 15px;
  }
}
.btn__primary:hover {
  transition: 0.3s all ease;
}
.btn__primary.btn-disabled {
  color: #3C364E;
  cursor: inherit;
}
.btn__primary .icon {
  width: 18px;
  height: 18px;
}
.btn__primary--sm {
  padding: 10px 15px;
  font-size: 0.875rem;
  min-height: auto;
  border-radius: 10px;
}
.btn__primary--sm .icon {
  width: 20px;
  height: 20px;
}
.btn__primary--md {
  padding: 15px 30px;
  min-height: auto;
}
.btn__primary--fucsia {
  color: #ffffff;
  background-color: #fE0475;
}
.btn__primary--violet {
  color: #ffffff;
  background-color: #7135FF;
}
.btn__primary--white {
  background-color: #ffffff;
  color: #e52c36;
}
.btn__primary--default-w {
  background-color: #ffffff;
}

.btn__secondary {
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.3;
  transition: 0.2s all ease;
  display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .btn__secondary {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__secondary {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.btn__secondary:hover {
  color: #4D03FF;
}
.btn__secondary .icon {
  width: 30px;
  height: 30px;
}
.btn__secondary--white {
  color: #ffffff;
}
.btn__secondary--white:hover {
  opacity: 0.8;
  color: #ffffff;
}

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

@media (max-width: 426px) {
  section .btn {
    margin-top: 30px;
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  section .btn {
    margin-top: 30px;
    text-align: center;
  }
}

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

.chip {
  display: inline-block;
  font-size: 0.9375rem;
  color: #ffffff;
  background-color: #3C364E;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  transition: 0.2s all ease;
  cursor: pointer;
  line-height: 1.2;
  font-family: "BwModelica-Regular", sans-serif;
}
@media (max-width: 426px) {
  .chip {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .chip {
    font-size: 0.875rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .chip {
    font-size: 0.875rem;
    padding: 10px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .chip {
    padding: 15px;
  }
}
.chip:hover {
  background-color: #251E39;
  color: #ffffff;
}

#return-to-top {
  position: fixed;
  bottom: 60px;
  right: 2%;
  border-radius: 50%;
  background-color: #e52c36;
  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: #e52c36;
}
#return-to-top:hover img {
  top: 10px;
}

.enc-main {
  position: relative;
}
.enc-main .auxi {
  text-align: center;
  position: relative;
  padding: 40px 0;
  z-index: 3;
}
@media (max-width: 426px) {
  .enc-main .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main .auxi {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main .auxi {
    padding: 40px 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .enc-main .auxi {
    padding: 40px 20px;
  }
}
.enc-main .breadcrumbs {
  padding-top: 0;
}
.enc-main__content {
  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;
}
@media (max-width: 426px) {
  .enc-main__content {
    gap: 20px;
    padding: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__content {
    gap: 20px;
    padding: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__content {
    gap: 20px;
  }
}
.enc-main__img {
  width: 100%;
}
.enc-main__date {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 20px;
  font-family: "BwModelica-Regular", sans-serif;
}
.enc-main__epig {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: "BwModelica-Regular", sans-serif;
}
.enc-main__category {
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 3rem;
  border: 1px solid #4D03FF;
  font-size: 0.8125rem;
  margin-bottom: 15px;
  transition: 0.3s all ease;
}
@media (max-width: 426px) {
  .enc-main__category {
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__category {
    margin-bottom: 0;
  }
}
.enc-main__category:hover {
  background-color: #4D03FF;
}
.enc-main__title {
  color: #ffffff;
  line-height: 1.2;
  font-size: 50px;
  text-align: center;
  margin: 0;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .enc-main__title {
    text-align: center;
    font-size: 2.5rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__title {
    text-align: center;
    font-size: 2.5rem;
  }
}
.enc-main__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
  max-width: 800px;
  margin: 20px 0 0;
  font-family: "BwModelica-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;
    margin-top: 0;
    margin-left: 0;
  }
}
.enc-main__btn-container {
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 426px) {
  .enc-main__btn-container {
    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;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__btn-container {
    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;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__btn-container {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .enc-main__btn-container {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.enc-main__row {
  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;
}
@media (max-width: 426px) {
  .enc-main__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;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__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;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.enc-main__cover {
  -webkit-flex: 0 0 180px;
  flex: 0 0 180px;
}
@media (max-width: 426px) {
  .enc-main__cover {
    max-width: 140px;
    width: 100%;
    margin: 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__cover {
    max-width: 140px;
    width: 100%;
    margin: 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.enc-main__bg {
  position: relative;
  background-size: cover;
  min-height: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.enc-main__bg .breadcrumbs {
  position: absolute;
  top: 20px;
  left: 2vw;
}
.enc-main__bg .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .enc-main__bg .enc-main__content {
    padding: 0;
    gap: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__bg .enc-main__content {
    padding: 0;
    gap: 0;
  }
}
@media (max-width: 426px) {
  .enc-main__bg .enc-main__description {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__bg .enc-main__description {
    text-align: center;
  }
}
.enc-main__bg .enc-main__row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 3vw 30px;
}
.enc-main__bg--programa .enc-main__content {
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.enc-main__bg--programa .enc-main__title {
  font-size: 2.25rem;
  text-align: left;
}
@media (max-width: 426px) {
  .enc-main__bg--programa .enc-main__title {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__bg--programa .enc-main__title {
    text-align: center;
  }
}
@media (max-width: 426px) {
  .enc-main__bg--programa .enc-main__date {
    margin: 20px auto 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__bg--programa .enc-main__date {
    margin: 20px auto 0;
  }
}
.enc-main__bg--programa .enc-main__img img {
  max-height: 390px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 426px) {
  .enc-main__bg--programa .enc-main__img img {
    max-height: 700px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__bg--programa .enc-main__img img {
    max-height: 700px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .enc-main__bg--programa .enc-main__img img {
    height: 380px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .enc-main__bg--programa .enc-main__img img {
    height: 380px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .enc-main__bg--programa .enc-main__img img {
    height: 380px;
  }
}
.enc-main__bg--programa .enc-main__img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 0;
}
@media (max-width: 426px) {
  .enc-main__txt--left .enc-main__content {
    padding: 30px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__txt--left .enc-main__content {
    padding: 30px 0 0;
  }
}
.enc-main__txt--left .enc-main__title {
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: left;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .enc-main__txt--left .enc-main__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__txt--left .enc-main__title {
    font-size: 1.875rem;
  }
}
.enc-main__txt--left .enc-main__description {
  font-size: 1.375rem;
  line-height: 1.5;
  text-align: left;
  max-width: 100%;
}
@media (max-width: 426px) {
  .enc-main__txt--left .enc-main__description {
    font-size: 1.375rem;
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__txt--left .enc-main__description {
    font-size: 1.375rem;
    margin-top: 0;
  }
}
.enc-main__filter .auxi {
  padding-bottom: 0;
}
.enc-main__filter .enc-main__content {
  -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) {
  .enc-main__filter .enc-main__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) {
  .enc-main__filter .enc-main__content {
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.enc-main__filter .enc-main__row {
  padding: 40px 0px;
  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: end;
  -moz-box-align: end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
@media (max-width: 426px) {
  .enc-main__filter .enc-main__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;
    -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) {
  .enc-main__filter .enc-main__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;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.enc-main__filter .enc-main__title {
  margin: 0;
}
@media (max-width: 426px) {
  .enc-main__filter .enc-main__title {
    margin: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__filter .enc-main__title {
    margin: 0;
  }
}
@media (max-width: 426px) {
  .enc-main__filter .enc-main__description {
    text-align: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__filter .enc-main__description {
    text-align: left;
  }
}
.enc-main__hor {
  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) {
  .enc-main__hor {
    gap: 0;
    -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) {
  .enc-main__hor {
    gap: 0;
    -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;
  }
}
.enc-main__hor .enc-main__title {
  font-size: 32px;
}
.enc-main__hor .enc-main__description {
  font-size: 1.25rem;
}
.enc-main__hor .media__vertical {
  margin: 0 !important;
}
.enc-main__hor .articulo__tools {
  margin-top: 20px;
  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;
}
.enc-main__hor .articulo__social {
  gap: 20px;
}
.enc-main__hor .articulo__social a {
  padding: 0;
}
.enc-main__hor .articulo__author {
  margin: 30px 0;
  font-size: 1rem;
}
@media (max-width: 426px) {
  .enc-main__hor .articulo__author {
    margin: 20px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main__hor .articulo__author {
    margin: 20px 0 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.25rem;
  color: #000000;
  font-family: "BwModelica-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: 40px 0;
}
@media (max-width: 426px) {
  .enc-txt {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-txt {
    padding: 20px 0;
  }
}
.enc-txt .auxi {
  text-align: center;
  padding-bottom: 0;
}
.enc-txt .auxi .tit {
  font-size: 3.25rem;
  line-height: 130%;
  color: #000000;
  font-family: "BwModelica-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.75rem;
  line-height: 1.7;
  letter-spacing: 0.5px;
  max-width: 85%;
  margin: 20px auto 0;
  color: #000000;
  font-family: "BwModelica-Regular", 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: 20px;
  z-index: 1;
  gap: 20px;
  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) {
  .block-head {
    gap: 10px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head {
    gap: 10px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.block-head__epig {
  font-size: 1.5rem;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 0;
  font-family: "BwModelica-Regular", sans-serif;
}
.block-head__title {
  font-size: 1.75rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
  gap: 8px;
  font-family: "BwModelica-ExtraBold", 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;
}
.block-head__title img {
  width: 32px;
}
.block-head__title--lg {
  font-size: 2.25rem;
  color: #ffffff !important;
}
.block-head__title--sm {
  font-size: 34px;
}
.block-head__title--slide, .block-head__title a {
  font-size: 3.25rem;
  line-height: 1.2;
  color: #3C364E;
  margin-bottom: 30px;
  text-align: left;
  font-family: "BwModelica-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.25rem;
  }
}
.block-head__title--slide::after, .block-head__title a::after {
  content: none;
}
.block-head__title--white {
  color: #ffffff;
}
.block-head__title--img img {
  height: auto;
  width: auto;
  max-width: 100%;
}
.block-head__description {
  line-height: 1.6;
  font-size: 1.125rem;
  color: #3C364E;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  font-family: "BwModelica-Regular", sans-serif;
}
@media (max-width: 426px) {
  .block-head__description {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__description {
    font-size: 1.125rem;
  }
}
.block-head__description--lg {
  font-size: 1.75rem;
  font-family: "BwModelica-Bold", sans-serif;
}
.block-head__caption {
  margin-top: 30px;
  font-size: 1.125rem;
  color: #3C364E;
  font-family: "BwModelica-Regular", sans-serif;
}
.block-head select, .block-head input {
  min-height: 54px;
  border: 1px solid #7C7786;
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #201d29;
  font-size: 1.125rem;
  width: 100%;
  max-width: 400px;
  color: #ffffff;
}
@media (max-width: 426px) {
  .block-head select, .block-head input {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head select, .block-head input {
    font-size: 1rem;
  }
}
.block-head select::-webkit-input-placeholder, .block-head input::-webkit-input-placeholder {
  color: #3C364E;
}
.block-head select:-moz-placeholder, .block-head input:-moz-placeholder {
  color: #3C364E;
}
.block-head select::-moz-placeholder, .block-head input::-moz-placeholder {
  color: #3C364E;
}
.block-head select:-ms-input-placeholder, .block-head input:-ms-input-placeholder {
  color: #3C364E;
}
.block-head__select {
  width: 100%;
  margin-left: 10px;
  margin-bottom: 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .block-head__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) {
  .block-head__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) {
  .block-head__select {
    width: 100%;
  }
}
.block-head__select select {
  background-image: url(../../imag/v1/icon/ic-chevron-down-w.svg);
  background-position: 97%;
}
@media (max-width: 426px) {
  .block-head__select select {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__select select {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.block-head__center .block-head__title {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.block-head__sm .block-head__title {
  font-size: 1.5rem;
}
@media (max-width: 426px) {
  .block-head__btn-lg {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__btn-lg {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 426px) {
  .block-head__btn-lg .btn__primary {
    margin: 0;
    width: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head__btn-lg .btn__primary {
    margin: 0;
    width: auto;
  }
}
.block-head.form-msj {
  background: none !important;
  margin: 0 auto;
  width: 100%;
  min-height: 400px;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .block-head.form-msj {
    min-height: 300px;
    margin-top: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head.form-msj {
    min-height: 300px;
    margin-top: 30px;
  }
}
.block-head.form-msj img {
  width: 90px;
}
.block-head.form-msj .block-head__title, .block-head.form-msj .block-head__description {
  margin-top: 0;
  text-align: center;
}
.block-head.form-msj .block-head__title {
  font-size: 1.5rem;
  max-width: 380px;
  line-height: 1.3;
  font-family: "BwModelica-Bold", sans-serif;
}

.alert {
  background-color: #3C364E;
  padding: 20px 0;
  position: relative;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 200px;
  opacity: 1;
  padding: 1rem;
  /* Transición suave para el contenido interno */
}
.alert.hidden {
  max-height: 0;
  opacity: 0;
  padding: 0 1rem;
  margin: 0;
  border-color: transparent;
}
.alert.hidden .alert__content {
  opacity: 0;
}
.alert__title {
  font-size: 1.125rem;
  color: #ffffff;
  font-family: "BwModelica-Bold", sans-serif;
}
.alert__description {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.5;
}
.alert__content {
  transition: opacity 0.3s ease 0.1s;
}
.alert__container {
  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;
}
.alert__img img {
  width: 60px;
}
.alert .auxi {
  gap: 40px;
  max-width: 97%;
  width: 100%;
  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) {
  .alert .auxi {
    max-width: 100%;
    padding: 0;
    padding-right: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert .auxi {
    max-width: 100%;
    padding: 0;
    padding-right: 20px;
  }
}
.alert .close-btn {
  flex: none;
  transition: transform 0.2s ease;
  position: absolute;
  right: 20px;
  top: 15px;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-image: url("../../imag/v1/icon/ic-close-w.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}
@media (max-width: 426px) {
  .alert .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
  }
}
.alert__cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #191620;
  z-index: 1000;
  padding: 30px 0;
  max-height: 100%;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 426px) {
  .alert__cookies {
    padding: 30px 15px;
    border-radius: 20px 20px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__cookies {
    padding: 30px 15px;
    border-radius: 20px 20px 0 0;
  }
}
.alert__cookies .close-btn {
  width: auto;
  position: relative;
  height: auto;
  top: 0;
  right: 0;
}
@media (max-width: 426px) {
  .alert__cookies .close-btn {
    width: 100%;
    max-width: 300px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__cookies .close-btn {
    width: 100%;
    max-width: 300px;
  }
}
.alert__cookies .auxi {
  max-width: 1100px;
  -ms-flex-align: end;
  -moz-box-align: end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
@media (max-width: 426px) {
  .alert__cookies .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: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__cookies .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: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.alert__cookies .alert__title {
  font-size: 1.75rem;
  color: #ffffff;
}
@media (max-width: 426px) {
  .alert__cookies .alert__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__cookies .alert__title {
    font-size: 1.125rem;
  }
}
.alert__cookies .alert__description {
  margin-top: 20px;
  color: #ffffff;
}
.alert__cookies .alert__description + .alert__description {
  margin-top: 15px;
}
.alert__cookies .alert__description a {
  color: #6A47D9;
  text-decoration: underline;
  transition: 0.3s all ease;
}
.alert__cookies .alert__description a:hover {
  color: #4D03FF;
}
@media (max-width: 426px) {
  .alert__cookies .btn {
    margin: 20px auto 0;
    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;
    -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) {
  .alert__cookies .btn {
    margin: 20px auto 0;
    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;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.alert__cookies .btn__primary {
  padding: 12px 20px;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 426px) {
  .alert__cookies .btn__primary {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .alert__cookies .btn__primary {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.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: #e52c36;
  font-size: 0.9375rem;
}
.block-info__txt {
  margin-top: 10px;
  font-size: 1.125rem;
  line-height: 1.3;
  font-family: "BwModelica-Regular", 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: "BwModelica-Bold", sans-serif;
}
.block-info__group {
  margin-top: 20px;
}
.block-info__group .block-info__txt {
  margin-top: 0;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.block-info__group .block-info__pref {
  line-height: 1.4;
  font-size: 1.125rem;
}
.block-info .btn {
  margin-top: 55px;
}
@media (max-width: 426px) {
  .block-info .btn {
    margin-top: 30px;
    gap: 20px;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-info .btn {
    margin-top: 30px;
    gap: 20px;
    flex-direction: column;
  }
}
@media (max-width: 426px) {
  .block-info .btn .btn__primary {
    padding: 15px 10px;
    margin: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-info .btn .btn__primary {
    padding: 15px 10px;
    margin: 0;
  }
}

.card {
  overflow: hidden;
  transition: 0.3s all ease;
}
.card:not(.card__bg, .card__fill):hover .card__title {
  color: #fe3691;
}
.card__auxi {
  height: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__head {
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__head img {
  height: 23px;
  width: auto;
}
.card > a:not(.card__auxi) {
  display: block;
}
.card__img {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.card__img img {
  transition: 0.3s all ease;
}
.card__play {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: rgba(20, 20, 20, 0.8);
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  transition: 0.3s all ease;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.card__play::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../../imag/v1/icon/ic-play-sm-w.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}
.card__pill {
  padding: 8px 10px;
  font-size: 0.9375rem;
  background-color: #4D03FF;
  border-radius: 3rem;
  color: #ffffff;
  z-index: 2;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "BwModelica-ExtraBold", sans-serif;
}
.card__content {
  position: relative;
  width: 100%;
  text-align: left;
  padding-top: 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;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__date {
  font-size: 0.875rem;
  color: #ffffff;
  margin-top: 10px;
  font-family: "BwModelica-Regular", sans-serif;
}
.card__epig {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #3C364E;
}
.card__title {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.3;
  display: inline-block;
  text-align: left;
  transition: 0.3s all ease;
  font-family: "BwModelica-Black", sans-serif;
}
@media (max-width: 426px) {
  .card__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__title {
    font-size: 1.125rem;
  }
}
.card__title a {
  color: #ffffff;
}
.card__title--lg {
  font-size: 1.5rem;
}
.card__title--sm {
  font-size: 1.125rem !important;
}
.card__description {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #ffffff;
  text-align: left;
  margin-top: 15px;
  margin-top: 10px;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 426px) {
  .card__description {
    font-size: 1.125rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__description {
    font-size: 1.125rem;
  }
}
.card .btn__primary {
  margin-top: 15px;
}
@media (max-width: 426px) {
  .card .btn__primary {
    width: auto;
    margin: 20px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card .btn__primary {
    width: auto;
    margin: 20px 0 0;
  }
}
.card .btn__secondary {
  margin-top: 30px;
}
.card .btn {
  margin-top: 30px;
  gap: 5px;
}
@media (max-width: 426px) {
  .card .btn {
    gap: 8px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card .btn {
    gap: 8px;
  }
}
.card .btn .btn__primary {
  margin-top: 0;
}
.card__list {
  margin-top: 20px;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
.card__list--wrap {
  gap: 3px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.card__list-item {
  color: #3C364E;
  gap: 10px;
  text-align: left;
  line-height: 1.4;
  font-size: 0.9375rem;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.card__list-item::before {
  content: "";
  width: 24px;
  height: 24px;
  position: relative;
  background-image: url("../../imag/v1/icon/ic-check-circle.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  -webkit-flex: 0 0 24px;
  flex: 0 0 24px;
}
.card__list-item a {
  color: #e52c36;
  transition: 0.3s all ease;
}
.card__list-item a:hover {
  opacity: 0.7;
}
.card__list-item .card__description {
  font-size: 0.875rem;
}
.card__list-item + .card__list-item {
  margin-top: 10px;
}
.card__progress {
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #d9d9d9;
}
.card__progress-fill {
  background-color: #e52c36;
  left: 0;
  bottom: 0;
  height: 5px;
}
.card__time {
  position: absolute;
  right: 12px;
  bottom: 9px;
  padding: 5px;
  background-color: rgba(70, 3, 232, 0.5);
  border-radius: 5px;
  color: #ffffff;
  font-size: 0.8125rem;
  font-family: "BwModelica-Medium", sans-serif;
}
.card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.card__horizontal {
  padding: 40px 0;
  border: none;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
@media (max-width: 426px) {
  .card__horizontal {
    padding: 20px 0 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal {
    padding: 20px 0 40px;
  }
}
.card__horizontal .card__auxi {
  gap: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 426px) {
  .card__horizontal .card__auxi {
    gap: 20px;
    margin-bottom: 0;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__auxi {
    gap: 20px;
    margin-bottom: 0;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal .card__auxi {
    gap: 20px;
    margin-bottom: 30px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.card__horizontal.inv .card__auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 426px) {
  .card__horizontal.inv .card__auxi {
    margin-bottom: 0;
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal.inv .card__auxi {
    margin-bottom: 0;
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal.inv .card__auxi {
    margin-bottom: 30px;
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -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) {
  .card__horizontal.inv .card__auxi {
    gap: 20px;
  }
}
.card__horizontal:last-child {
  margin-bottom: 0;
}
.card__horizontal .card__content {
  padding: 10px;
  background: none;
  -webkit-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 426px) {
  .card__horizontal .card__content {
    padding: 0 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__content {
    padding: 0 20px;
  }
}
.card__horizontal .card__epig, .card__horizontal .card__title, .card__horizontal .card__description {
  text-align: left;
}
.card__horizontal .card__title {
  display: block;
  font-size: 32px;
  line-height: 1.5;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__horizontal .card__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal .card__title {
    font-size: 2.5rem;
  }
}
.card__horizontal .card__description {
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 426px) {
  .card__horizontal .card__description {
    margin-top: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__description {
    margin-top: 10px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal .card__description {
    font-size: 1rem;
  }
}
.card__horizontal .card__img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (max-width: 426px) {
  .card__horizontal .card__img {
    flex: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .card__img {
    flex: none;
  }
}
.card__horizontal .card__img.img__text .cont-tit {
  padding: 90px 70px 90px 120px;
  margin-bottom: 0;
}
.card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
  box-shadow: none;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
@media (max-width: 426px) {
  .card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
    width: auto;
    padding: 16px 30px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
    width: auto;
    padding: 16px 30px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
    margin-bottom: 10px;
    margin-left: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal .btn .btn__primary, .card__horizontal .btn .btn__secondary {
    margin-bottom: 10px;
    margin-left: 0;
  }
}
.card__horizontal--md .card__title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media (max-width: 426px) {
  .card__horizontal--md .card__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--md .card__title {
    font-size: 1.5rem;
  }
}
.card__horizontal--md .card__description {
  font-size: 1rem;
}
.card__horizontal--md .card__img {
  -webkit-flex: 0 0 40%;
  flex: 0 0 40%;
}
.card__horizontal--md .btn {
  padding-top: 30px;
}
@media (max-width: 426px) {
  .card__horizontal--sm {
    margin-bottom: 40px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--sm {
    margin-bottom: 40px !important;
  }
}
.card__horizontal--sm .card__auxi {
  gap: 15px;
}
@media (max-width: 426px) {
  .card__horizontal--sm .card__auxi {
    margin-bottom: 0;
    -webkit-box-orient: inline-axis;
    -webkit-box-orient: horizontal;
    -moz-box-orient: inline-axis;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--sm .card__auxi {
    margin-bottom: 0;
    -webkit-box-orient: inline-axis;
    -webkit-box-orient: horizontal;
    -moz-box-orient: inline-axis;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__horizontal--sm .card__auxi {
    -webkit-box-orient: inline-axis;
    -webkit-box-orient: horizontal;
    -moz-box-orient: inline-axis;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
.card__horizontal--sm .card__epig {
  font-size: 0.8125rem;
}
.card__horizontal--sm .card__title {
  margin-bottom: 0;
  margin-top: 7px;
  font-size: 0.875rem;
}
.card__horizontal--sm .card__content {
  padding: 0;
}
.card__horizontal--sm .card__img {
  -webkit-flex: 1 0 33.13%;
  flex: 1 0 33.13%;
}
.card__horizontal--full {
  border-radius: 0;
  padding: 40px 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
@media (max-width: 426px) {
  .card__horizontal--full {
    padding: 40px 20px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--full {
    padding: 40px 20px 20px;
  }
}
.card__horizontal--full .card__img {
  -webkit-flex: 0 1 70%;
  flex: 0 1 70%;
}
.card__horizontal--full .card__content {
  width: auto;
  padding: 0;
  -webkit-flex: 0 0 30%;
  flex: 0 0 30%;
}
@media (max-width: 426px) {
  .card__horizontal--full .card__content {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--full .card__content {
    padding: 0;
  }
}
.card__horizontal--full .card__icon-play {
  width: 60px;
}
.card__horizontal--bg {
  overflow: visible;
}
@media (max-width: 426px) {
  .card__horizontal--bg {
    padding: 20px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg {
    padding: 20px 0 0;
  }
}
.card__horizontal--bg .card__auxi {
  background-color: rgba(1, 77, 175, 0.05);
  border-radius: 20px;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 426px) {
  .card__horizontal--bg .card__auxi {
    gap: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg .card__auxi {
    gap: 0;
  }
}
@media (max-width: 426px) {
  .card__horizontal--bg .card__content {
    padding: 40px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg .card__content {
    padding: 40px 20px;
  }
}
.card__horizontal--bg .card__img {
  border-radius: 0;
  -webkit-flex: 0 0 47%;
  flex: 0 0 47%;
}
@media (max-width: 426px) {
  .card__horizontal--bg .card__img {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg .card__img {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.card__horizontal--bg .card__epig {
  color: #ffffff;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal--bg .card__epig {
    margin-bottom: 10px;
  }
}
.card__horizontal--bg .card__title {
  font-size: 1.875rem;
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 426px) {
  .card__horizontal--bg .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__horizontal--bg .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal--bg .card__title {
    line-height: 1.3;
  }
}
.card__horizontal--bg .card__date {
  font-size: 0.9375rem;
  color: #ffffff;
  margin-top: 30px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__horizontal--bg .card__date {
    margin-top: 20px;
  }
}
.card__horizontal--bg .card__description {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 30px;
}
.card__bg {
  border: none;
  position: relative;
}
.card__bg .card__img::before {
  content: "";
  transition: 0.3s all ease;
  background: #000000;
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgb(0, 0, 0) 93%);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgb(0, 0, 0) 93%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgb(0, 0, 0) 93%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  top: 50%;
  z-index: 1;
}
.card__bg .card__img > img,
.card__bg .card__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__bg.no-overlay .card__img::before {
  content: none;
}
.card__bg .card__video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card__bg .card__auxi {
  position: relative;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
.card__bg .card__auxi > a {
  display: block;
  width: 100%;
}
.card__bg .card__content {
  padding: 30px;
  position: absolute;
  background: none;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 2;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 426px) {
  .card__bg .card__content {
    padding: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__bg .card__content {
    padding: 30px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__bg .card__content {
    padding: 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__bg .card__content {
    padding: 20px;
  }
}
.card__bg .card__date {
  margin-bottom: 10px;
  margin-top: 0;
}
.card__bg .card__title {
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.2;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .card__bg .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__bg .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__bg .card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__bg .card__title {
    font-size: 1.5rem;
  }
}
.card__bg .card__description {
  color: #ffffff;
  text-align: left;
  font-size: 1rem;
}
.card__bg .card__icon {
  margin: 0 auto;
  width: 34px;
  margin-top: 15px;
}
.card__bg .btn__secondary {
  margin-top: 20px;
}
@media (max-width: 426px) {
  .card__bg--full .card__content {
    padding: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__bg--full .card__content {
    padding: 40px;
  }
}
@media (max-width: 426px) {
  .card__bg--full .card__img img {
    height: 428px;
    object-fit: cover;
    object-position: top;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__bg--full .card__img img {
    height: 428px;
    object-fit: cover;
    object-position: top;
  }
}
.card__bg--txt .card__auxi::before {
  background: rgb(27, 35, 43);
  background: -moz-linear-gradient(180deg, rgba(27, 35, 43, 0) 0%, rgba(27, 35, 43, 0.8) 100%);
  background: -webkit-linear-gradient(180deg, rgba(27, 35, 43, 0) 0%, rgba(27, 35, 43, 0.8) 100%);
  background: linear-gradient(180deg, rgba(27, 35, 43, 0) 0%, rgba(27, 35, 43, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b232b",endColorstr="#1b232b",GradientType=1);
}
.card__bg--txt .card__content {
  padding: 20px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.card__bg--sm .card__description {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__bg--sm .card__logo {
  max-width: 180px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.card__bg--sm:hover .card__img img {
  transform: scale(1.06);
}
.card__bg--center:hover .card__img img {
  transform: scale(2.3);
}
.card__bg--center .card__img::before {
  content: none;
}
.card__bg--center .card__content {
  padding: 10px;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.card__bg--center .card__title {
  font-size: 1.5rem;
  font-family: "BwModelica-ExtraBold", sans-serif;
}
.card__banner {
  position: relative;
  padding: 0;
}
.card__banner .card__auxi {
  position: absolute;
  right: 0;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  z-index: 1;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 426px) {
  .card__banner .card__auxi {
    padding: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__auxi {
    padding: 10px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__banner .card__auxi {
    padding: 0;
    max-width: 90%;
    right: 20px;
    top: auto;
    border-radius: 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__banner .card__auxi {
    max-width: 340px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .card__banner .card__auxi {
    max-width: 350px;
  }
}
.card__banner .card__content {
  padding: 30px;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 426px) {
  .card__banner .card__content {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__content {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__banner .card__content {
    padding: 0;
  }
}
.card__banner .card__title {
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1.1;
  max-width: 600px;
  font-family: "BwModelica-ExtraBold", sans-serif;
}
@media (max-width: 426px) {
  .card__banner .card__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__title {
    font-size: 1.75rem;
  }
}
.card__banner .card__title a {
  color: #ffffff;
}
.card__banner .card__description {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.5;
  margin-top: 10px;
  max-width: 550px;
  font-family: "BwModelica-Medium", 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;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__banner .card__description {
    margin-top: 5px;
  }
}
.card__banner .btn__primary {
  height: auto;
  margin: 0;
  margin-top: 30px;
}
@media (max-width: 426px) {
  .card__banner .btn__primary {
    padding: 10px 20px;
    margin-top: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .btn__primary {
    padding: 10px 20px;
    margin-top: 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__banner .btn__primary {
    margin-top: 20px;
  }
}
.card__banner .card__img {
  border-radius: 13px;
}
@media (max-width: 426px) {
  .card__banner .card__img {
    border: 2px solid #4D03FF;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__img {
    border: 2px solid #4D03FF;
  }
}
.card__banner .card__img::before {
  background: #000000;
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  top: 50%;
}
@media (max-width: 426px) {
  .card__banner .card__img::before {
    content: "";
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner .card__img::before {
    content: "";
  }
}
.card__banner--sm .card__content {
  padding: 20px;
}
.card__banner--sm .card__title {
  font-size: 1.25rem;
}
.card__banner--sm .card__description {
  font-size: 0.9375rem;
  text-transform: none;
}
.card__banner--sm .card__img img {
  min-height: 230px;
  object-fit: cover;
}
@media (min-width: 767px) and (max-width: 991px) {
  .card__banner--sm .card__img img {
    min-height: 320px;
    object-fit: cover;
    height: auto;
  }
}
.card__banner--sm .btn__primary {
  margin-top: 20px;
}
.card__banner--grad .card__img {
  border: 2px solid #4D03FF;
}
.card__banner--grad .card__img:before {
  content: "";
  background: #20016B;
  background: -webkit-linear-gradient(90deg, rgb(32, 1, 107) 20%, rgba(70, 3, 232, 0) 77%);
  background: -moz-linear-gradient(90deg, rgb(32, 1, 107) 20%, rgba(70, 3, 232, 0) 77%);
  background: linear-gradient(90deg, rgb(32, 1, 107) 20%, rgba(70, 3, 232, 0) 77%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#20016B", endColorstr="#4603E8", GradientType=1);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 426px) {
  .card__banner--grad .card__img:before {
    background: #4603E8;
    background: -webkit-linear-gradient(180deg, rgba(70, 3, 232, 0) 10%, rgba(32, 1, 107, 0.8) 70%);
    background: -moz-linear-gradient(180deg, rgba(70, 3, 232, 0) 10%, rgba(32, 1, 107, 0.8) 70%);
    background: linear-gradient(180deg, rgba(70, 3, 232, 0) 10%, rgba(32, 1, 107, 0.8) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4603E8", endColorstr="#20016B", GradientType=0);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__banner--grad .card__img:before {
    background: #4603E8;
    background: -webkit-linear-gradient(180deg, rgba(70, 3, 232, 0) 10%, rgba(32, 1, 107, 0.8) 70%);
    background: -moz-linear-gradient(180deg, rgba(70, 3, 232, 0) 10%, rgba(32, 1, 107, 0.8) 70%);
    background: linear-gradient(180deg, rgba(70, 3, 232, 0) 10%, rgba(32, 1, 107, 0.8) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4603E8", endColorstr="#20016B", GradientType=0);
  }
}
.card__link {
  border: 1px solid #e52c36;
  transition: 0.3s all ease;
}
.card__link:hover {
  background-color: #3C364E;
}
.card__link .card__img {
  overflow: visible;
  width: auto;
}
.card__link .card__img img {
  width: 32px;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__link .card__img img {
    width: 23px;
  }
}
.card__link .card__content {
  width: auto;
  gap: 20px;
  transition: 0.3s all ease;
  display: block;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__link .card__title {
  font-size: 1.125rem;
  color: #e52c36;
  text-transform: uppercase;
  font-family: "BwModelica-Bold", sans-serif;
}
.card__link .card__description {
  font-size: 1rem;
  margin-top: 10px;
  color: #e52c36;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
.card__link a {
  padding: 20px;
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .card__link a {
    gap: 10px;
  }
}
@media (max-width: 426px) {
  .card__link--sm a {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__link--sm a {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.card__link--sm .card__title {
  margin-bottom: 0;
}
@media (max-width: 426px) {
  .card__link--sm .card__title {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__link--sm .card__title {
    text-align: center;
  }
}
.card__result {
  box-shadow: none;
  overflow: hidden;
  background-color: #201d29;
  padding: 20px;
  border-radius: 30px;
}
.card__result .card__auxi {
  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;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 426px) {
  .card__result .card__auxi {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__result .card__auxi {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.card__result .card__content {
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 426px) {
  .card__result .card__content a {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__result .card__content a {
    padding: 20px 0;
  }
}
.card__result .card__img {
  -webkit-flex: 0 1 55%;
  flex: 0 1 55%;
}
.card__result .card__epig {
  color: #ffffff;
  font-size: 0.9375rem;
  margin-bottom: 10px;
}
.card__result .card__title, .card__result .card__title a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: 0.3s all ease;
}
@media (max-width: 426px) {
  .card__result .card__title, .card__result .card__title a {
    font-size: 1.5rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__result .card__title, .card__result .card__title a {
    font-size: 1.5rem;
  }
}
.card__result .card__description {
  color: #ffffff;
  font-size: 1.125rem;
  margin-top: 15px;
  line-height: 1.6;
}
@media (max-width: 426px) {
  .card__result .card__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__result .card__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.card__result:hover .card__title {
  color: #fe3691;
}
.card__result strong {
  color: #ffffff;
}
.card__logo {
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
.card__logo img {
  width: 180px;
  margin: 0 auto;
  transition: filter 0.3s ease;
}
@media (max-width: 426px) {
  .card__logo img {
    filter: grayscale(0%);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__logo img {
    filter: grayscale(0%);
  }
}
.card__logo:hover img {
  filter: grayscale(0%);
}
.card__video {
  max-width: 1000px;
  margin: 0 auto;
}
.card__video .card__play:hover {
  transform: scale(1.1);
}
.card__form {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  padding: 40px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 426px) {
  .card__form {
    padding: 30px 20px;
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card__form {
    padding: 30px 20px;
    text-align: center;
  }
}
.card__form .card__title {
  color: #3C364E;
  font-size: 32px;
  text-align: center;
  font-family: "BwModelica-Bold", sans-serif;
}
.card__form .card__description {
  text-align: center;
}
.card__form .form {
  margin-top: 30px;
}
.card__checklist .card__title {
  font-size: 1.25rem;
}
.card__checklist .card__auxi {
  gap: 10px;
  padding: 30px;
  -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__checklist .card__auxi {
    padding: 20px;
  }
}
.card__sm {
  overflow: visible;
}
.card__sm .card__description {
  font-size: 0.875rem;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  line-height: 1.4;
  max-height: 4.2em;
}
.card__sm:hover .card__img img {
  transform: scale(1.1);
}
.card__sm:hover .card__title {
  color: #fe3691;
}
.card__fill:hover .card__img img {
  transform: scale(1.1);
}
.card__fill:hover .card__title {
  color: #E8B917;
}
.card__fill .card__img {
  border-radius: 20px 20px 0 0;
}
.card__fill .card__content {
  padding: 25px;
  border-radius: 0 0 20px 20px;
  background-color: #4D03FF;
}
.card__fill .card__date {
  margin-bottom: 10px;
}
.card__fill .card__title {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-family: "BwModelica-Bold", sans-serif;
}
.card__top {
  overflow: hidden;
  border-radius: 20px;
}
.card__top:hover .card__img > img {
  transform: scale(1.08);
  opacity: 0.8;
}
.card__top .card__img {
  max-width: 98%;
  position: relative;
}
.card__top .card__img-overlay {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  border-radius: 20px;
  max-width: 65%;
}
.card__center .card__content {
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.card__center .card__title, .card__center .card__description {
  text-align: center;
}

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

.banner {
  padding: 20px 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;
  }
}
@media (max-width: 426px) {
  .banner__content {
    max-width: 1000px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .banner__content {
    max-width: 1000px;
  }
}
.banner__title {
  color: #ffffff;
  font-size: 1.75rem;
  font-family: "BwModelica-Regular", 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;
  }
}
.banner__img .auxi {
  border-radius: 10px;
  overflow: hidden;
}
.banner__ad img {
  width: auto;
  margin: 0 auto;
  max-width: 100%;
}

.list {
  text-align: left;
}
.list li + li {
  margin-top: 24px;
}
.list__title {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.3;
  font-family: "BwModelica-Bold", sans-serif;
}
.list__item {
  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;
}
.list__item-title {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.2;
  font-family: "BwModelica-Medium", sans-serif;
}
.list__item-description {
  font-size: 1rem;
  margin-top: 8px;
  color: #3C364E;
  line-height: 1.3;
  font-family: "BwModelica-Regular", sans-serif;
}

.form {
  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;
  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__container {
  padding: 20px 40px 40px;
  border-radius: 20px;
  border: 1px solid #3C364E;
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  max-width: 742px;
}
@media (max-width: 426px) {
  .form__container {
    padding: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form__container {
    padding: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .form__container {
    padding: 20px 30px 30px;
  }
}
.form__head {
  width: 100%;
  max-width: 742px;
}
.form__text {
  width: 100%;
  max-width: 670px;
  line-height: 1.4;
  color: #3C364E;
  font-size: 1.125rem;
  font-family: "BwModelica-Regular", sans-serif;
}
.form__title {
  font-size: 1rem;
  text-align: left;
  margin-bottom: 5px;
  color: #3C364E;
  font-family: "BwModelica-Bold", sans-serif;
}
.form__title + .d-flex {
  margin-top: 15px;
}
.form__subtitle {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: #3C364E;
  line-height: 1.3;
  font-family: "BwModelica-Medium", sans-serif;
}
.form__description {
  font-size: 1.125rem;
  line-height: 1.5;
}
.form__description--bold {
  font-family: "BwModelica-Bold", sans-serif;
}
.form__list {
  list-style-type: decimal;
  padding-left: 30px;
  margin-top: 15px;
}
.form__list li {
  line-height: 1.5;
  font-size: 1.125rem;
  color: #3C364E;
  font-family: "BwModelica-Regular", sans-serif;
}
.form__group {
  position: relative;
}
.form__group input, .form__group select, .form__group textarea {
  width: 100%;
  padding: 14px;
  color: #3C364E;
  width: 100%;
  font-size: 1rem;
  transition: 0.3s all ease;
  resize: none;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 10px;
  font-family: "BwModelica-Regular", sans-serif;
}
.form__group input::-webkit-input-placeholder, .form__group select::-webkit-input-placeholder, .form__group textarea::-webkit-input-placeholder {
  color: #3C364E;
}
.form__group input:-moz-placeholder, .form__group select:-moz-placeholder, .form__group textarea:-moz-placeholder {
  color: #3C364E;
}
.form__group input::-moz-placeholder, .form__group select::-moz-placeholder, .form__group textarea::-moz-placeholder {
  color: #3C364E;
}
.form__group input:-ms-input-placeholder, .form__group select:-ms-input-placeholder, .form__group textarea:-ms-input-placeholder {
  color: #3C364E;
}
.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: #3C364E;
  transition: 0.5s all ease;
  outline: none;
}
.form__group select {
  padding: 14px 50px 14px 14px;
  background-image: url("../../imag/v1/icon/ic-chevron-light-b.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 17px;
  background-size: 18px;
}
.form__group option {
  color: #3C364E;
}
.form__group input + input {
  margin-top: 10px;
}
.form__group .form-control__date {
  max-width: 50%;
}
@media (max-width: 426px) {
  .form__group .form-control__date {
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form__group .form-control__date {
    max-width: 100%;
  }
}
.form__group .checked {
  background-image: url("../../imag/v1/icon/ic-check-green.svg");
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 24px;
  padding-right: 37px;
}
.form__group .error {
  border-color: #e52c36;
  background-image: url("../../imag/v1/icon/ic-alert-red.svg");
  background-repeat: no-repeat;
  background-position: 98%;
  background-size: 24px;
  padding-right: 37px;
}
.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__control {
  width: 100%;
  padding: 15px;
  border: none;
  background: transparent;
  font-size: 1rem;
  transition: border-color 0.3s;
  border-radius: 10px;
  box-sizing: border-box;
}
.form__control:focus {
  outline: none;
  border-color: #251E39;
}
.form__label {
  color: #3C364E;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 5px;
  line-height: 1.3;
  position: absolute;
  top: 1rem;
  left: 15px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
  padding: 0 10px;
  font-family: "BwModelica-Regular", sans-serif;
}
.form .form__control:focus + .form__label,
.form .form__control:not(:placeholder-shown) + .form__label {
  top: -5px;
  font-size: 0.75rem;
  color: #3C364E;
  background: #ffffff;
  font-family: "BwModelica-Bold", sans-serif;
}
.form__caption {
  font-size: 0.8125rem;
  color: #666666;
  line-height: 1.3;
  text-align: left;
  margin-top: 4px;
  gap: 8px;
  font-family: "BwModelica-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;
}
.form__caption--error {
  color: #ea2e2e;
  font-family: "BwModelica-Bold", sans-serif;
}
.form__caption img {
  width: 23px;
}
.form .__validator-alert {
  left: 0px;
  top: 0;
}
.form .__validator-alert span {
  position: relative;
  background: none;
  box-shadow: none;
  color: #ea2e2e;
  padding: 5px 0 0;
  width: 100%;
  font-size: 0.8125rem;
  line-height: 1.3;
  text-align: left;
  margin-top: 4px;
  font-family: "BwModelica-Bold", sans-serif;
}
.form__description {
  padding-bottom: 10px;
  display: block;
  color: #3C364E;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-family: "BwModelica-Regular", sans-serif;
}
@media (max-width: 426px) {
  .form__description {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form__description {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}
.form__box {
  padding: 20px;
  background-color: #3C364E;
  border-radius: 12px;
}
.form__box .form__description {
  font-size: 1rem;
  line-height: 1.6;
}
.form__box .form__link {
  margin-top: 10px;
}
.form__box .form__caption {
  font-size: 0.9375rem;
  margin-top: 15px;
}
.form__link {
  gap: 10px;
  text-decoration: underline;
  color: #3C364E;
  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__link img {
  width: 20px;
}
.form__radio {
  margin-bottom: 10px;
  gap: 30px;
  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: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.form__checkmark {
  position: absolute;
  top: -4px;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 50%;
  transition: 0.3s all ease;
}
.form__checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}
.form__radio-container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin: 10px 0 10px;
  cursor: pointer;
  font-size: 0.9375rem;
  letter-spacing: 0.4px;
  color: #2d2d2d;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  font-family: "BwModelica-Regular", sans-serif;
}
.form__radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  display: none;
}
.form__radio-container input:checked ~ .form__checkmark {
  background-color: #ffffff;
}
.form__radio-container input:checked ~ .form__checkmark:after {
  background: #e52c36;
  opacity: 1;
  visibility: visible;
}
.form__radio-container .form__checkmark:after {
  top: 5px;
  left: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transition: 0.3s all ease;
}
.form__radio-container:hover input ~ .form__checkmark {
  background-color: #ccc;
}
.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: #e52c36;
  background-color: #e52c36;
}
.form__checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid #3C364E;
  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 #3C364E;
  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 label.is-checked:before {
  border-color: #e52c36;
  background-color: #e52c36;
}
.form__checkbox label.is-checked: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 a {
  color: #e52c36;
  text-decoration: underline;
  display: inline-flex;
  transition: 0.3s all ease;
}
.form__checkbox a:hover {
  color: #3C364E;
}
.form__checkbox-txt {
  line-height: 1.4;
  font-size: 0.875rem;
}
.form .msj p {
  display: block;
  color: #3C364E;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: italic;
  text-align: center;
  font-family: "BwModelica-Regular", sans-serif;
}
.form .btn {
  margin-top: 0;
}
@media (max-width: 426px) {
  .form .btn {
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form .btn {
    margin-top: 0;
  }
}
.form .d-flex {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 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;
}
.form .d-flex .file {
  display: none;
}
.form .d-flex .file-name {
  position: relative;
  overflow: hidden;
  line-height: 30px;
  padding: 11px 20px 10px;
  box-sizing: border-box;
  font-size: 0.9375rem;
  vertical-align: middle;
  border: none;
  width: 100%;
  cursor: inherit;
  margin-top: 0;
  font-family: "BwModelica-Regular", sans-serif;
}
@media (max-width: 426px) {
  .form .d-flex .file-name {
    font-size: 0.875rem;
    padding: 9px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form .d-flex .file-name {
    font-size: 0.875rem;
    padding: 9px 15px;
  }
}
.form .d-flex .btn-file {
  background-color: #251E39;
  border: none;
  box-sizing: border-box;
  padding: 10px 20px 10px 38px;
  transition: all 0.6s;
  color: #ffffff;
  font-size: 0.9375rem;
  vertical-align: middle;
  margin-right: 0;
  margin-left: 5px;
  cursor: pointer;
  width: 165px;
  background-image: url("../../imag/v1/icon/ic-upload-w.svg");
  background-repeat: no-repeat;
  background-position: 10px;
  background-size: 20px;
  margin-top: 0;
  font-family: "BwModelica-Medium", sans-serif;
}
@media (max-width: 426px) {
  .form .d-flex .btn-file {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form .d-flex .btn-file {
    font-size: 0.875rem;
  }
}
.form .d-flex .btn-file:hover {
  opacity: 0.8;
  color: #ffffff;
}
.form .d-flex .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 14px;
  background-color: #ffffff;
}
@media (max-width: 426px) {
  .form .d-flex .btn-close {
    padding: 14px 7px;
    top: 1px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form .d-flex .btn-close {
    padding: 14px 7px;
    top: 1px;
  }
}
.form .d-flex .btn-close img {
  width: 24px;
}
@media (max-width: 426px) {
  .form .d-flex .btn-close img {
    width: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form .d-flex .btn-close img {
    width: 20px;
  }
}
.form .d-flex .__validator-alert {
  position: absolute;
  bottom: -30px;
  top: auto !important;
}
@media (max-width: 426px) {
  .form .btn {
    -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) {
  .form .btn {
    -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;
  }
}
.form .btn .btn__primary {
  min-height: 44px;
}
@media (max-width: 426px) {
  .form .btn .btn__primary {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form .btn .btn__primary {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

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

.player {
  margin: 40px 0;
  position: static;
  top: 0;
  padding: 20px;
  border-radius: 14px;
  background-color: #201d29;
  z-index: 1000;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -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) {
  .player {
    gap: 20px 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: 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) {
  .player {
    gap: 20px 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: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.player.player--fixed {
  position: fixed;
  top: 0;
  z-index: 100;
  margin: 0;
  max-width: 800px;
  width: 100%;
}
@media (max-width: 426px) {
  .player.player--fixed {
    left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player.player--fixed {
    right: 0;
  }
}
@media (min-width: 1399px) {
  .player.player--fixed {
    max-width: 900px;
  }
}
.player__title {
  font-size: 1.5rem;
  color: #ffffff;
  font-family: "BwModelica-Bold", sans-serif;
}
.player__container {
  -webkit-flex: 0 0 250px;
  flex: 0 0 250px;
}
@media (max-width: 426px) {
  .player__container {
    margin: 0 auto;
    width: 100%;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__container {
    margin: 0 auto;
    width: 100%;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.player__content {
  padding: 35px;
  background-color: #251E39;
}
@media (max-width: 426px) {
  .player__content {
    padding: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__content {
    padding: 30px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .player__content {
    padding: 20px;
  }
}
.player__date {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.player__epig {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1rem;
  font-family: "BwModelica-Medium", sans-serif;
}
.player__title {
  font-size: 1.75rem;
  color: #ffffff;
  line-height: 1.2;
}
@media (max-width: 426px) {
  .player__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__title {
    font-size: 1.25rem;
  }
}
.player__subtitle {
  margin-top: 20px;
  color: #ffffff;
  font-size: 1.125rem;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .player__subtitle {
    text-align: left;
    padding-left: 20px;
    display: block;
    max-width: 100vw;
    width: 100%;
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__subtitle {
    text-align: left;
    padding-left: 20px;
    display: block;
    max-width: 100vw;
    width: 100%;
    font-size: 1rem;
  }
}
.player__description {
  color: #ffffff;
  margin-top: 30px;
  font-size: 1rem;
  line-height: 1.6;
}
.player__share {
  margin-top: 30px;
  gap: 12px;
  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;
}
.player__share img {
  width: 26px;
}
.player__img {
  width: 100%;
}
.player__card {
  max-width: 900px;
  margin: 0 auto;
}
.player__card--hor {
  max-width: 1300px;
  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: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media (max-width: 426px) {
  .player__card--hor {
    -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) {
  .player__card--hor {
    -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) {
  .player__card--hor {
    -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;
  }
}
.player__card--hor .player__container {
  -webkit-flex: 0 0 68%;
  flex: 0 0 68%;
}
@media (max-width: 426px) {
  .player__card--hor .player__container {
    min-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__card--hor .player__container {
    min-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .player__card--hor .player__container {
    min-width: 100%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .player__card--hor .player__title {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .player__card--hor .player__description {
    font-size: 1rem !important;
  }
}
.player__card--hor .player__content {
  -webkit-flex: 0 1 100%;
  flex: 0 1 100%;
}
.player__buttons {
  margin-top: 30px;
}
@media (max-width: 426px) {
  .player__buttons {
    overflow-x: auto;
    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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__buttons {
    width: 100%;
    overflow-x: auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .player__buttons {
    width: 100%;
    overflow-x: auto;
    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;
  }
}
.player__buttons--sec {
  margin-top: 12px;
}
.player__buttons--sec .player__button {
  padding: 12px 22px;
  font-size: 0.9375rem;
  background-color: rgba(25, 22, 32, 0.4);
  border: 1px solid #7C7786;
  font-family: "BwModelica-Medium", sans-serif;
}
.player__buttons--sec .player__button--active {
  background-color: #4D03FF;
  border-color: #4D03FF;
}
.player__wrapper {
  gap: 5px;
  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) {
  .player__wrapper {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__wrapper {
    padding: 0 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .player__wrapper {
    padding: 0 15px;
  }
}
.player__button {
  padding: 16px 40px;
  border-radius: 12px;
  background-color: #191620;
  color: #ffffff;
  font-size: 1rem;
  transition: 0.3s all ease;
  font-family: "BwModelica-Black", sans-serif;
}
@media (max-width: 426px) {
  .player__button {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__button {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .player__button {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.player__button--active {
  background-color: #4D03FF;
}
@media (max-width: 426px) {
  .player__button:last-child {
    margin-right: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__button:last-child {
    margin-right: 15px;
  }
}
.player__button:hover {
  background-color: #4603E8;
}
.player__head {
  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: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.player__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-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;
}
.player__full {
  margin: 0;
  padding: 140px 3vw 40px;
  gap: 20px;
  border-radius: 0;
  background-color: #191620;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
  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 (max-width: 426px) {
  .player__full {
    padding: 80px 15px 40px;
    -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) {
  .player__full {
    padding: 80px 15px 40px;
    -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;
  }
}
.player__full .banner {
  padding: 0;
  margin: 0;
}
@media (min-width: 767px) and (max-width: 991px) {
  .player__full .banner {
    display: none;
  }
}
.player__full .player__title {
  font-size: 1.875rem;
}
.player__full--hor {
  padding: 60px 3vw;
}
.player__full--senal {
  gap: 20px;
  padding: 0;
  -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 (max-width: 426px) {
  .player__full--senal {
    padding: 0;
    -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) {
  .player__full--senal {
    padding: 0;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.player__full--senal .player__card {
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 426px) {
  .player__full--senal .player__card {
    padding: 0 15px;
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .player__full--senal .player__card {
    padding: 0 15px;
    margin-top: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .player__full--senal .player__card {
    padding: 0 15px;
  }
}
.player__full--senal .player__img img {
  min-height: 800px;
  object-fit: cover;
  object-position: center;
}
.player__full--tax {
  -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;
}

.menujq > ul {
  margin-left: 0 !important;
  list-style: none;
}
.menujq > ul > li {
  list-style: none !important;
  overflow: hidden;
  margin-bottom: 15px;
}
.menujq > ul > li ul a {
  color: #e52c36;
  text-decoration: underline;
  font-family: "BwModelica-Bold", sans-serif;
}
.menujq > ul > li ul p {
  color: #ffffff;
}
.menujq > ul > li ul p + p {
  margin-top: 15px;
}
.menujq__head {
  position: relative;
  display: block;
  margin: 0;
  padding: 25px 50px 25px 25px;
  color: #ffffff;
  border-radius: 10px;
}
@media (max-width: 426px) {
  .menujq__head {
    padding: 15px 50px 15px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__head {
    padding: 15px 50px 15px 15px;
  }
}
.menujq__head:after {
  content: "";
  position: absolute;
  right: 10px;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-image: url("../../imag/v1/icon/ic-chevron-down-b.svg");
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 100%;
  bottom: calc(50% - 12px);
  transition: 0.2s all ease;
}
@media (max-width: 426px) {
  .menujq__head:after {
    top: calc(50% - 11px);
    right: 5px;
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__head:after {
    top: calc(50% - 11px);
    right: 5px;
    width: 22px;
    height: 22px;
  }
}
.menujq__tit {
  color: #3C364E;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .menujq__tit {
    font-size: 0.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq__tit {
    font-size: 0.9375rem;
  }
}
.menujq .desplegable {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
}
.menujq .desplegable:first-child .menujq__content {
  display: block;
}
.menujq .desplegable ul {
  list-style: none;
  padding: 0 20px 20px;
}
@media (max-width: 426px) {
  .menujq .desplegable ul {
    padding: 0 15px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq .desplegable ul {
    padding: 0 15px 20px;
  }
}
.menujq .desplegable ul li {
  list-style: none !important;
}
.menujq .desplegable ul li p {
  color: #585858;
  line-height: 1.5;
}
@media (max-width: 426px) {
  .menujq .desplegable ul li p {
    font-size: 0.9375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq .desplegable ul li p {
    font-size: 0.9375rem;
  }
}
.menujq .desplegable.active .menujq__head {
  color: #3C364E;
}
.menujq .desplegable.active .menujq__head .menujq__tit {
  color: #3C364E;
}
.menujq .desplegable.active .menujq__head:after {
  transform: rotate(180deg);
}

/* Estilos para el botón */
.menu-toggle {
  display: none;
  cursor: pointer;
  color: #3C364E;
  max-width: 95%;
  width: 100%;
  padding: 12px 40px 12px 20px;
  border-radius: 10px;
  border: 1px solid #3C364E;
  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);
}

.block-tabs {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .block-tabs {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs {
    padding: 20px 0;
  }
}
@media (max-width: 426px) {
  .block-tabs .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .auxi {
    padding: 0;
  }
}
.block-tabs .tabs {
  overflow: hidden;
}
.block-tabs .tab-btns {
  gap: 20px;
  padding-bottom: 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .block-tabs .tab-btns {
    overflow: auto;
    gap: 4px;
    margin-left: 20px;
    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;
    margin-left: 20px;
    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.25rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  padding: 15px 30px;
  border-radius: 3rem;
  transition: 0.3s all ease;
  border: 1px solid rgba(255, 255, 255, 0);
  cursor: pointer;
  font-family: "BwModelica-Medium", 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: #e52c36;
  border-color: #e52c36;
}
.block-tabs .tab-btns .tab:not(.active):hover {
  color: #e52c36;
}
@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 {
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: opacity 600ms, visibility 600ms;
}
@media (max-width: 426px) {
  .block-tabs .tab-content {
    padding: 0 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .tab-content {
    padding: 0 20px;
  }
}
@media (max-width: 426px) {
  .block-tabs .tab-content .grid {
    gap: 40px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-tabs .tab-content .grid {
    gap: 40px 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-tabs .tab-content .grid {
    gap: 30px;
  }
}
.block-tabs .tab-content .grid__group {
  padding: 20px 0;
}
.block-tabs .tab-content.active {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.block-tabs .tab-content.active .block-full-hor {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}

/* MicroModal base styles */
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.modal__overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal__container {
  background-color: #3C364E;
  padding: 40px;
  max-width: 550px;
  width: 92%;
  border-radius: 1rem;
  color: #fff;
  z-index: 1000;
}

.modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-image: url("../../imag/v1/icon/ic-close-w.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}
.modal__close::before {
  content: none !important;
}

.modal__container {
  padding: 0;
  max-width: 600px;
}
.modal__content {
  margin: 0;
}
.modal__icon {
  width: 70px;
  margin: 0 auto;
}
.modal__title {
  font-size: 1.75rem;
  color: #3C364E;
  text-align: center;
  line-height: 1.3;
  font-family: "BwModelica-Bold", sans-serif;
}
.modal__description {
  margin-top: 30px;
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  font-family: "BwModelica-Regular", sans-serif;
}
.modal__list {
  padding: 20px;
  margin-top: 30px;
  background-color: #3C364E;
  padding-left: 30px;
  list-style-type: disc;
}
.modal__list li {
  font-size: 0.875rem;
  font-family: "BwModelica-Regular", sans-serif;
}
.modal__list li + li {
  margin-top: 15px;
}
.modal__btns {
  margin-top: 40px;
  gap: 15px;
  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) {
  .modal__btns {
    -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) {
  .modal__btns {
    -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;
  }
}
.modal__btns .btn__primary {
  min-height: 44px;
}
@media (max-width: 426px) {
  .modal__btns .btn__primary {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .modal__btns .btn__primary {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
}
.modal__error {
  background-color: #fff4f4 !important;
}
.modal__error .modal__title {
  color: #e52c36;
}
.modal__error .modal__list {
  background-color: #ffe7e7;
}
.modal__error .modal__list li {
  color: #e52c36;
}

.inner-nav {
  padding-top: 20px;
}
@media (max-width: 426px) {
  .inner-nav {
    overflow-x: auto;
    padding-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .inner-nav {
    overflow-x: auto;
    padding-bottom: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .inner-nav {
    overflow-x: auto;
    padding-bottom: 20px;
  }
}
.inner-nav .auxi {
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
@media (max-width: 426px) {
  .inner-nav .auxi {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .inner-nav .auxi {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .inner-nav .auxi {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (max-width: 426px) {
  .inner-nav li {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .inner-nav li {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .inner-nav li {
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.inner-nav li a {
  height: 100%;
}

.filter {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 0 1 450px;
  flex: 0 1 450px;
}
@media (max-width: 426px) {
  .filter {
    width: 100%;
    max-width: 450px;
    padding: 0 15px;
    margin: 0;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter {
    width: 100%;
    max-width: 450px;
    padding: 0 15px;
    margin: 0;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.filter select, .filter input {
  min-height: 54px;
  border: 1px solid #7C7786;
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #201d29;
  font-size: 1.125rem;
  width: 100%;
  max-width: 450px;
  color: #ffffff;
}
@media (max-width: 426px) {
  .filter select, .filter input {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter select, .filter input {
    font-size: 1rem;
  }
}
.filter select::-webkit-input-placeholder, .filter input::-webkit-input-placeholder {
  color: #3C364E;
}
.filter select:-moz-placeholder, .filter input:-moz-placeholder {
  color: #3C364E;
}
.filter select::-moz-placeholder, .filter input::-moz-placeholder {
  color: #3C364E;
}
.filter select:-ms-input-placeholder, .filter input:-ms-input-placeholder {
  color: #3C364E;
}
.filter__select {
  width: 100%;
  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) {
  .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 {
  background-image: url(../../imag/v1/icon/ic-chevron-down-w.svg);
  background-position: 97%;
}
@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 .search {
  position: relative;
}
@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;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .filter .search {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.filter .search__input {
  width: 100%;
  padding-right: 50px;
}
.filter .search__button {
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 4px 4px 0;
}
.filter .search__button img {
  width: 24px;
}
@media (max-width: 426px) {
  .filter .btn__primary {
    width: 100%;
    max-width: 450px;
    padding: 12px 20px;
    min-height: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter .btn__primary {
    width: 100%;
    max-width: 450px;
    padding: 12px 20px;
    min-height: auto;
  }
}
.filter__tag {
  padding: 12px 15px;
  border: 1px solid #cccccc;
  display: block;
  font-size: 1rem;
  border-radius: 4px;
  transition: 0.3s all ease;
}
.filter__tag.active {
  background-color: #e52c36;
  color: #ffffff;
}
.filter__tag:hover {
  background-color: #cccccc;
}

.filter-nav {
  margin-top: 30px;
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .filter-nav {
    overflow-x: auto;
    max-width: 100%;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter-nav {
    overflow-x: auto;
    max-width: 100%;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.filter-nav__chip {
  display: inline-block;
  font-size: 0.9375rem;
  color: #3C364E;
  background-color: #3C364E;
  position: relative;
  padding: 15px 20px;
  border-radius: 10px;
  transition: 0.2s all ease;
  cursor: pointer;
  font-family: "BwModelica-Regular", sans-serif;
}
@media (max-width: 426px) {
  .filter-nav__chip {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .filter-nav__chip {
    font-size: 0.875rem;
  }
}
.filter-nav__chip--active {
  background-color: #3C364E;
  color: #ffffff;
}
.filter-nav__chip:hover {
  background-color: #251E39;
  color: #ffffff;
}

.map {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  padding: 40px 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;
}
@media (max-width: 426px) {
  .map {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .map {
    padding: 20px 0;
  }
}
@media (max-width: 426px) {
  .map {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .map {
    display: none;
  }
}
@media (min-width: 1399px) {
  .map {
    max-width: 90%;
  }
}
@media (min-width: 1540px) {
  .map {
    max-width: 1500px;
  }
}
.map__region {
  cursor: pointer;
}
.map__region path {
  transition: fill 0.25s ease;
}
.map__region:hover path {
  fill: #4D03FF;
}
.map__region.active path {
  fill: #4D03FF;
}
.map__tooltip {
  position: absolute;
  left: 0;
  top: 0;
  padding: 8px 12px;
  background: #191620;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  white-space: nowrap;
  transform: translate(-50%, calc(-100% - 12px));
  z-index: 20;
  font-family: "BwModelica-Medium", sans-serif;
}
.map__tooltip.show {
  opacity: 1;
  visibility: visible;
}

.header-int {
  position: relative;
  z-index: 10;
}
.header-int .auxi {
  padding: 12px 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (min-width: 767px) and (max-width: 991px) {
  .header-int .auxi {
    border-top: 0;
    padding: 15px 10px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header-int .auxi {
    padding: 15px 10px;
  }
}
.header-int .auxi .cont-tit {
  margin-bottom: 0;
}
.header-int .auxi .cont-tit .tit {
  font-size: 1.25rem;
  color: #ffffff;
}
.header-int .auxi .menu {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (min-width: 767px) and (max-width: 991px) {
  .header-int .auxi .menu {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.header-int .auxi .menu-list {
  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-int .auxi .menu-list > li + li {
  margin-left: 10px;
}
@media (min-width: 767px) and (max-width: 991px) {
  .header-int .auxi .menu-list > li + li {
    margin-left: 10px;
  }
}
.header-int .auxi .menu-list > li > a {
  padding: 10px 5px;
  position: relative;
  display: block;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (min-width: 767px) and (max-width: 991px) {
  .header-int .auxi .menu-list > li > a {
    display: block;
    padding: 15px 5px;
    font-size: 13px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header-int .auxi .menu-list > li > a {
    font-size: 0.9375rem;
  }
}
.header-int .auxi .cont-social {
  margin-left: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header-int .auxi .cont-social li + li {
  margin-left: 8px;
}
.header-int .auxi .cont-social a {
  display: block;
  padding: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
}
.header-int .auxi .cont-social a img {
  width: 20px;
}
.header-int .menu-m .auxi {
  padding: 0;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.header-int .menu-m .adv-btn {
  padding: 15px;
  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;
}
.header-int .menu-m .adv-btn.tit {
  text-align: center;
  color: #ffffff;
  font-size: 1.25rem;
  font-family: "BwModelica-Bold", sans-serif;
}
.header-int .menu-m .adv-btn.active .arrow {
  transform: rotate(180deg);
}
.header-int .menu-m .adv-btn .arrow {
  margin-left: 20px;
  transition: 0.2s all ease;
  transform: rotate(-90deg);
}
.header-int .menu-m .adv-btn .arrow img {
  width: 30px;
}
.header-int .menu-m .menu-list {
  display: none;
  padding-bottom: 20px;
  width: 100%;
  padding: 15px;
  text-align: left;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.header-int .menu-m .menu-list > li + li {
  margin-left: 0;
}
.header-int .menu-m .menu-list .cont-social {
  margin-left: 0;
  margin-top: 20px;
}
.header-int.sticky {
  top: 0;
  background-color: #7C7786;
  position: fixed;
  transition: 0.2s all ease;
  border-bottom: 1px solid #7C7786;
}
.header-int.sticky .auxi {
  padding: 10px 0;
}
@media (min-width: 767px) and (max-width: 991px) {
  .header-int.sticky .auxi {
    padding: 10px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header-int.sticky .auxi {
    padding: 10px;
  }
}
.header-int.sticky .menu .pref, .header-int.sticky .menu a {
  color: #3C364E;
}
.header-int.sticky .cont-btn .btn-sec {
  color: #ffffff;
  background-color: #3C364E;
}

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

/* Solución universal para todos los navegadores */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #374151 !important;
  background-color: white !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* Para Firefox */
input:-moz-autofill {
  background-color: white !important;
  box-shadow: 0 0 0 30px white inset !important;
}

/* Para Safari */
input:-internal-autofill-selected {
  background-color: white !important;
  box-shadow: 0 0 0 30px white inset !important;
}

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

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

.wp-pagenavi {
  font-size: 0.9375rem;
  font-family: "BwModelica-Regular", sans-serif;
  margin: 50px 0 0;
  padding: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .wp-pagenavi {
    padding: 0;
    margin-top: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi {
    padding: 0;
    margin-top: 40px;
  }
}
.wp-pagenavi a {
  padding: 14px 18px;
  margin-right: 10px;
  transition: 0.2s all ease;
  display: block;
  border-radius: 10px;
  color: #3C364E;
  background-color: #ffffff;
  font-family: "BwModelica-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: #4D03FF;
  color: #ffffff;
}
.wp-pagenavi a.page {
  margin-right: 17px;
}
.wp-pagenavi span {
  display: inline-block;
  padding: 15px 20px;
  margin-right: 10px;
  font-family: "BwModelica-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: #3C364E;
  border-radius: 12px;
}

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

.breadcrumbs {
  padding: 40px 0 15px;
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 426px) {
  .breadcrumbs {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs .breadcrumb {
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "BwModelica-Regular", sans-serif;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.breadcrumbs .breadcrumb:after {
  content: "";
  position: relative;
  display: inline-block;
  padding: 0 5px;
  width: 18px;
  height: 18px;
  margin-left: 3px;
  margin-right: 3px;
  color: #ffffff;
  background-image: url("../../imag/v1/icon/ic-chevron-right-w.svg");
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: 100%;
}
.breadcrumbs .breadcrumb:last-child:after {
  content: none;
}
.breadcrumbs .breadcrumb a {
  color: #ffffff;
  transition: 0.3s all ease;
  text-decoration: none;
}
.breadcrumbs .breadcrumb a:hover {
  color: #e52c36;
}

.chart-container {
  height: 450px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  padding: 23px 20px 10px;
  position: relative;
  z-index: 1;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  transition: 0.4s all ease;
}
@media (max-width: 426px) {
  .header {
    position: relative;
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header {
    position: relative;
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .header {
    position: relative;
  }
}
.header .auxi {
  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 .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.scrolled {
  position: relative;
}
.header.header--hidden {
  transform: translateY(-100%);
}
.header__cont {
  position: relative;
  z-index: 2;
}
@media (max-width: 426px) {
  .header__cont {
    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 (min-width: 426px) and (max-width: 767px) {
  .header__cont {
    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;
  }
}
.header__btn-group {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.header__group {
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .header__group {
    gap: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__group {
    gap: 10px;
  }
}
.header__group .btn__primary {
  color: #ffffff !important;
}
.header__btns {
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__btns .access-top {
    margin-right: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .header__btns .access-top {
    margin-right: 20px;
  }
}
.header__live {
  gap: 5px;
  background-color: #6A47D9;
  border-radius: 3rem;
  padding: 4px 8px 4px 6px;
  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__live img {
  width: 17px;
}
.header__live-txt {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-family: "BwModelica-ExtraBold", sans-serif;
}
.header .btn__primary {
  padding: 10px 15px;
  white-space: nowrap;
  min-height: auto;
  border-radius: 10px;
  font-size: 0.875rem;
  font-family: "BwModelica-Regular", sans-serif;
}
@media (max-width: 390px) {
  .header .btn__primary {
    padding: 10px;
    font-size: 0.8125rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header .btn__primary {
    margin-right: 0;
  }
}
.header__bottom {
  gap: 30px;
  transition: 0.3s all ease;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .header__bottom {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__bottom {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .header__bottom {
    display: none;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__bottom {
    padding: 15px 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .header__bottom {
    padding: 15px 1vw;
  }
}
.header__logos {
  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;
}
.header__top {
  font-size: 14px;
  transition: 0.3s all ease;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .header__top {
    padding: 25px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__top {
    padding: 25px 0;
  }
}
.header__top .header__logo {
  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;
}
.header__top .header__logo img {
  height: 45px;
  width: auto;
}
@media (max-width: 426px) {
  .header__top .header__logo img {
    height: 34px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__top .header__logo img {
    height: 34px;
  }
}
.header__top .header__logo::before {
  content: "";
  width: 1px;
  height: 29px;
  display: inline-block;
  position: relative;
  background-color: #6A47D9;
}
.header__top .header__logo:first-child::before {
  content: none;
}
.header__top .header__live, .header__top .header__group {
  position: absolute;
  top: 23%;
  transition: 0.3s all ease;
}
@media (max-width: 426px) {
  .header__top .header__live, .header__top .header__group {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__top .header__live, .header__top .header__group {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .header__top .header__live, .header__top .header__group {
    display: none;
  }
}
.header__top .header__live {
  left: 0.5vw;
}
.header__top .header__live:hover {
  background: #fE0475;
}
.header__top .header__group {
  right: 0.5vw;
  top: 6%;
}
.header__title {
  gap: 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header__title img {
  width: 75px;
}
.header__title .header__txt {
  color: #ffffff;
  font-size: 0.9375rem;
  font-family: "BwModelica-Medium", sans-serif;
}
@media (max-width: 426px) {
  .header__title .header__txt {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header__title .header__txt {
    display: none;
  }
}
.header__links {
  gap: 20px;
  margin-top: 20px;
  border-top: 1px solid #6A47D9;
  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 (min-width: 991px) and (max-width: 1277px) {
  .header__links {
    gap: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1320px) {
  .header__links {
    gap: 20px;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__links {
    gap: 20px;
  }
}
.header__links > li a {
  display: block;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
  padding: 15px 10px;
  position: relative;
  transition: 0.3s all ease;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header__links > li a {
    font-size: 0.875rem;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .header__links > li a {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1400px) and (max-width: 1476px) {
  .header__links > li a {
    font-size: 1rem;
  }
}
.header__links > li a:hover {
  color: #e52c36;
}
.header__links > li a.selected {
  font-family: "BwModelica-Regular", sans-serif;
}
.header__links > li a img {
  max-width: 60px;
  width: 100%;
}
.header .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 .search-cont {
    margin-left: 0;
  }
}
.header .search-cont .search-wrapper {
  position: absolute;
  right: 0;
}
.header .search-cont .search-wrapper.active .close {
  right: -15px;
  opacity: 1;
  transform: rotate(-45deg);
  transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition-delay: 0.5s;
}
.header .search-cont .search-wrapper.active .input-holder {
  width: 23vw;
  margin-right: 15px;
  border: none;
  transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
  background: #fff;
  border-radius: 15px;
}
@media (max-width: 426px) {
  .header .search-cont .search-wrapper.active .input-holder {
    width: 90vw;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header .search-cont .search-wrapper.active .input-holder {
    width: 90vw;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .header .search-cont .search-wrapper.active .input-holder {
    width: 30vw;
  }
}
.header .search-cont .search-wrapper.active .input-holder .search-input {
  opacity: 1;
  padding: 12px 30px;
  outline: none;
  color: #3C364E;
}
.header .search-cont .search-wrapper.active .input-holder .search-icon {
  border: none;
}
.header .search-cont .search-wrapper.active .input-holder .search-icon.btn {
  padding: 10px 20px;
  top: 0;
  display: block;
}
.header .search-cont .search-wrapper.active .input-holder .search-icon.btn .ic-search {
  background-image: url("../../imag/v1/icon/ic-search-b.svg");
}
.header .search-cont .search-wrapper.active .input-holder .search-icon.ic {
  display: none;
}
.header .search-cont .search-wrapper .close {
  position: absolute;
  z-index: 0;
  opacity: 0;
  top: 5px;
  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;
  width: 20px;
  height: 20px;
}
.header .search-cont .search-wrapper .close::before {
  width: 2px;
  height: 20px;
  left: 3px;
  top: -5px;
}
.header .search-cont .search-wrapper .close::after {
  width: 20px;
  height: 2px;
  left: -6px;
  top: 4px;
}
.header .search-cont .search-wrapper .input-holder {
  top: -7px;
  height: 45px;
  width: 32px;
  right: 5px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.header .search-cont .search-wrapper .input-holder .search-input {
  width: 100%;
  opacity: 0;
  position: absolute;
  background: transparent;
  border: none;
  background-color: #ffffff;
  border-radius: 16px;
  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: none;
}
.header .search-cont .search-wrapper .input-holder .search-input:focus {
  outline: none;
}
.header .search-cont .search-wrapper .input-holder .search-input::placeholder {
  color: #000000;
}
.header .search-cont .search-wrapper .input-holder .search-input::-webkit-input-placeholder {
  color: #000000;
}
.header .search-cont .search-wrapper .input-holder .search-input:-ms-input-placeholder {
  color: #000000;
}
.header .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 .search-cont .search-wrapper .input-holder .search-icon .ic-search {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../../imag/v1/icon/ic-search-w.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}
.header .search-cont .search-wrapper .close:before, .header .search-cont .search-wrapper .close:after {
  position: absolute;
  content: "";
  background: #ffffff;
}
.header .search-cont .search-icon.btn {
  display: none;
}
.header .search-cont .search-icon.ic {
  text-align: center;
}

.dropdown {
  position: relative;
}
@media (max-width: 426px) {
  .dropdown {
    width: 100%;
    border-radius: 12px;
    background-color: rgba(15, 102, 42, 0.05);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dropdown {
    width: 100%;
    border-radius: 12px;
    background-color: rgba(15, 102, 42, 0.05);
  }
}
.dropdown__btn {
  color: #ffffff;
  padding: 5px 8px;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  gap: 6px;
  background-color: #6A47D9;
  border-radius: 6px;
  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;
}
@media (max-width: 426px) {
  .dropdown__btn {
    padding: 0;
    background: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dropdown__btn {
    padding: 0;
    background: none;
  }
}
.dropdown__btn::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../../imag/v1/icon/ic-chevron-down-w.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}
@media (max-width: 426px) {
  .dropdown__btn::after {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dropdown__btn::after {
    display: none;
  }
}
.dropdown__btn:hover {
  background: #fE0475;
}
.dropdown__btn img {
  width: 30px;
}
.dropdown__content {
  position: absolute;
  background-color: #201d29;
  min-width: 200px;
  z-index: 1;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  border-radius: 10px;
  right: 0;
  left: auto;
}
.dropdown__content.show {
  max-height: 500px;
  opacity: 1;
}
.dropdown__item {
  color: #ffffff;
  padding: 13px 16px;
  display: block;
  text-decoration: none;
  gap: 10px;
  font-size: 0.875rem;
  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;
}
.dropdown__item:hover {
  background-color: #3C364E;
}
.dropdown__item img {
  width: 20px;
}
.dropdown__head {
  color: #ffffff;
  padding: 13px 20px;
  display: block;
  text-decoration: none;
  gap: 15px;
  font-size: 0.875rem;
  background-color: #191620;
  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;
}
.dropdown__head img {
  width: 24px;
}
.dropdown__avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 50px;
  height: 50px;
}
.dropdown__avatar img {
  width: 100% !important;
  height: auto;
}
.dropdown__name {
  font-family: "BwModelica-Bold", sans-serif;
}
.dropdown__mail {
  font-size: 0.8125rem;
  margin-top: 8px;
}

.menu-responsive {
  position: relative;
  top: 0;
  z-index: 100;
  padding: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.2s all ease;
  width: 100%;
  border-top: 1px solid #6A47D9;
}
@media (min-width: 767px) and (max-width: 991px) {
  .menu-responsive {
    display: block !important;
  }
}
.menu-responsive.active .menu {
  max-height: 90vh;
  height: 88vh;
}
.menu-responsive .top-bar {
  padding: 10px 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 390px) {
  .menu-responsive .top-bar {
    padding: 10px;
  }
}
.menu-responsive .top-bar .cont-logo {
  display: inline-block;
}
.menu-responsive .top-bar .cont-logo a {
  gap: 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.menu-responsive .top-bar .cont-logo img {
  transition: 0.3s all ease;
  width: 190px;
}
@media (max-width: 390px) {
  .menu-responsive .top-bar .cont-logo img {
    width: 53vw;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menu-responsive .top-bar .cont-logo img {
    width: 220px;
  }
}
.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;
}
@media (max-width: 390px) {
  .menu-responsive .top-bar .btns-sec {
    gap: 5px;
  }
}
.menu-responsive .top-bar .menu-icon {
  cursor: pointer;
  display: inline-block;
  position: relative;
  user-select: none;
}
.menu-responsive .top-bar .menu-icon .navicon {
  display: block;
  position: relative;
  transition: background 0.2s ease-out;
  width: 34px;
  height: 34px;
  background-image: url("../../imag/v1/icon/ic-menu-w.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 {
  background: #ffffff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 24px;
  right: 4px;
  opacity: 0;
  height: 2px;
  top: 18px;
}
.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;
}
@media (min-width: 767px) and (max-width: 991px) {
  .menu-responsive .menu {
    max-width: 100%;
  }
}
.menu-responsive .menu__title {
  font-size: 0.875rem;
  padding: 10px 20px;
  color: #3C364E;
  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;
  font-family: "BwModelica-Bold", sans-serif;
}
.menu-responsive .menu__title img {
  width: 22px;
}
.menu-responsive .menu__links {
  padding: 30px 0 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;
  color: #3C364E;
  font-family: "BwModelica-Medium", sans-serif;
}
.menu-responsive .menu__links li a > img {
  width: 18px;
}
.menu-responsive .menu__links > li > a {
  padding: 15px 20px;
  color: #ffffff;
  font-size: 1.125rem;
  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;
  font-family: "BwModelica-Bold", sans-serif;
}
.menu-responsive .menu__links--sec {
  padding: 30px 0;
}
.menu-responsive .menu__links--sec li a {
  font-size: 1rem;
  color: #3C364E;
  padding: 14px 20px;
  min-height: auto;
  border: none !important;
  font-family: "BwModelica-Regular", sans-serif;
}
.menu-responsive .menu__btns {
  text-align: center;
  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-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;
}
.menu-responsive .menu__btns .btn__primary {
  margin: 30px 20px;
  padding: 15px 30px;
  font-size: 1rem;
}

.footer {
  padding: 50px 0;
  position: relative;
  z-index: 0;
  background-color: #e52c36;
  overflow: hidden;
}
@media (max-width: 426px) {
  .footer {
    padding: 40px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer::before {
  content: "";
  position: absolute;
  left: 6vw;
  top: 0;
  width: 60px;
  height: 58px;
  background-image: url("../../imag/v1/icon/curved-cutout.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  z-index: 1;
}
.footer .auxi {
  position: relative;
  z-index: 2;
}
@media (max-width: 426px) {
  .footer .auxi {
    padding: 0 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .auxi {
    padding: 0 18px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer .auxi {
    gap: 50px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .footer .auxi {
    gap: 50px;
    max-width: 100% !important;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .footer .auxi {
    max-width: 1250px !important;
  }
}
@media (min-width: 1399px) {
  .footer .auxi {
    max-width: 90% !important;
  }
}
.footer__info {
  padding-left: 9vw;
  -webkit-flex: 0 1 300px;
  flex: 0 1 300px;
}
@media (max-width: 426px) {
  .footer__info {
    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: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__info {
    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: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .footer__info {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.footer__logo {
  gap: 60px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .footer__logo {
    gap: 30px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__logo {
    gap: 30px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.footer__logo img {
  max-width: 380px;
}
@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: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -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;
    gap: 40px;
    -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) {
  .footer__links {
    text-align: center;
    gap: 40px;
    -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) {
  .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__col {
  gap: 8px;
  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: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 426px) {
  .footer__col {
    gap: 15px;
    -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) {
  .footer__col {
    gap: 15px;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 426px) {
  .footer__col:last-child {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__col:last-child {
    width: 100%;
  }
}
.footer__col li {
  color: #ffffff;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 426px) {
  .footer__col li {
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__col li {
    line-height: 1.3;
  }
}
.footer__col li a {
  font-size: 1rem;
  color: #ffffff;
  transition: 0.3s all ease;
  line-height: 1.5;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .footer__col li a {
    font-size: 0.9375rem;
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__col li a {
    font-size: 0.9375rem;
    text-align: center;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .footer__col li a {
    font-size: 0.9375rem;
  }
}
.footer__col li a:hover {
  opacity: 0.8;
}
.footer__col .btn__primary {
  color: #e52c36;
}
@media (max-width: 426px) {
  .footer__col .btn__primary {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__col .btn__primary {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
  }
}
.footer__social {
  margin-top: 15px;
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .footer__social {
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    align-self: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__social {
    -ms-flex-item-align: start;
    -webkit-align-self: flex-start;
    align-self: flex-start;
  }
}
.footer__social img {
  width: 28px;
}
.footer__contact {
  list-style: none;
  gap: 8px;
  font-size: 0.8125rem;
  color: #ffffff;
  transition: 0.3s all ease;
  line-height: 1.5;
  text-align: center;
  margin-top: 40px;
  font-family: "BwModelica-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;
}
.footer__contact img {
  width: 18px;
}
.footer__contact--logo a {
  gap: 8px;
  color: #ffffff;
  font-family: "BwModelica-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;
}
.footer__contact--logo img {
  width: 40px;
}
.footer__contact li {
  text-align: left;
  font-size: 0.9375rem;
  max-width: 400px;
}
@media (max-width: 426px) {
  .footer__contact li {
    text-align: center;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__contact li {
    text-align: center;
    margin: 0 auto;
  }
}
.footer__title {
  color: #ffffff;
  font-size: 17px;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .footer__title {
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__title {
    text-align: center;
    margin-bottom: 10px;
  }
}

.hero {
  position: relative;
  transition: 0.3s all ease;
}
.hero .video video {
  display: block;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 426px) {
  .hero .video video {
    min-height: 520px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .video video {
    min-height: 520px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero .video video {
    min-height: 500px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero .video video {
    height: 700px;
  }
}
.hero .swiper {
  overflow: hidden;
}
@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;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero .swiper-button-next, .hero .swiper-button-prev {
    display: none;
  }
}
.hero .swiper-button-next {
  right: 20px !important;
}
.hero .swiper-button-prev {
  left: 20px !important;
}
.hero .swiper-pagination {
  position: absolute;
  bottom: 30px !important;
}
@media (max-width: 426px) {
  .hero .swiper-pagination {
    bottom: 20px !important;
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .swiper-pagination {
    bottom: 20px !important;
    margin-top: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero .swiper-pagination {
    bottom: 20px !important;
    margin-top: 20px;
  }
}
.hero .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.hero .swiper-pagination-bullet-active {
  background-color: #e52c36;
  width: 40px;
  border-radius: 3rem;
}
.hero .swiper-slide {
  position: relative;
}
@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;
  }
}
@media (max-width: 426px) {
  .hero .swiper-slide .hero__content {
    padding: 20px 20px 60px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .swiper-slide .hero__content {
    padding: 20px 20px 60px;
  }
}
.hero__content {
  text-align: center;
  max-width: 90%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  padding: 5rem 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .hero__content {
    max-width: 100vw;
    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: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
    margin-bottom: 0;
    padding: 20px;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__content {
    margin-bottom: 0;
    padding: 20px;
    width: 100%;
    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-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__content {
    padding: 20px;
    max-width: 100vw;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__content {
    padding: 2rem 20px;
    max-width: 100vw;
  }
}
.hero__txt {
  max-width: 650px;
  margin-left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 426px) {
  .hero__txt {
    padding: 20px;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__txt {
    padding: 20px;
    width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__txt {
    padding: 30px;
  }
}
.hero__title {
  font-size: 2.5rem;
  color: #3C364E;
  line-height: 1.1;
  text-align: left;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .hero__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
@media (max-width: 380px) {
  .hero__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__title {
    font-size: 2.25rem;
  }
}
.hero__title .txt-highlight, .hero__title--orange {
  color: #e52c36;
}
.hero__description {
  color: #3C364E;
  padding: 0;
  line-height: 1.4;
  margin-top: 20px;
  text-align: left;
  font-size: 1.125rem;
  font-family: "BwModelica-Regular", sans-serif;
}
@media (max-width: 426px) {
  .hero__description {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 20px;
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero__description {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 20px;
    display: none;
  }
}
.hero__img {
  position: relative;
  width: 100%;
  flex: none;
}
.hero__img img {
  display: block;
  width: 100%;
  position: relative;
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero__img img {
    height: 440px;
    object-fit: cover;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero__img img {
    min-height: 400px;
    object-fit: cover;
  }
}
.hero .btn {
  margin-top: 40px;
}
@media (max-width: 426px) {
  .hero .btn {
    width: 100%;
    margin-top: 20px;
    gap: 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .btn {
    width: 100%;
    margin-top: 30px;
    gap: 10px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero .btn {
    margin-top: 20px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .hero .btn {
    margin-top: 20px;
  }
}
@media (max-width: 426px) {
  .hero .btn .btn__primary {
    width: 100%;
    margin: 0 auto;
    max-width: 450px;
    padding: 12px 20px;
    min-height: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hero .btn .btn__primary {
    width: 100%;
    margin: 0 auto;
    max-width: 450px;
    padding: 12px 20px;
    min-height: auto;
  }
}
@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;
  }
}

@media (max-width: 426px) {
  .prod-content {
    transform: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .prod-content {
    transform: none !important;
  }
}
.prod-content .slider {
  max-width: 98%;
  margin: 0 auto;
  position: static !important;
}
@media (max-width: 426px) {
  .prod-content .slider {
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .prod-content .slider {
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .prod-content .slider {
    max-width: 98%;
    padding: 30px 0;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .prod-content .slider {
    max-width: 100%;
  }
}
@media (min-width: 674px) and (max-width: 767px) {
  .prod-content .swiper-4, .prod-content .swiper-3 {
    max-width: 98%;
  }
}

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

.home {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
}
@media (min-width: 767px) and (max-width: 991px) {
  .home .hero__img-wrap img {
    height: 400px;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .home .hero__img-wrap img {
    height: 500px;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 50% 20%;
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .home .hero__img-wrap img {
    height: 500px;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 50% 20%;
  }
}

.hero-form {
  background-size: cover;
  background-position: top center;
}

.arts {
  position: relative;
  padding: 40px 0;
}
@media (max-width: 426px) {
  .arts {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts {
    padding: 20px 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: 40px;
}
.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;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 40px 0;
}
@media (max-width: 426px) {
  .box__arts {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts {
    padding: 20px 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 .grid__col, .box__arts .grid {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts .grid__col, .box__arts .grid {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-height: 740px) {
  .box__arts .grid__col, .box__arts .grid {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts .grid__col.g-sm-4, .box__arts .grid.g-sm-4 {
    grid-column: span 12;
  }
}
@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;
  }
}
.box__arts .auxi {
  position: relative;
}
@media (max-width: 426px) {
  .box__arts .swiper-slide {
    width: 75%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts .swiper-slide {
    width: 75%;
  }
}
.box__arts .swiper-slide .card {
  height: 100%;
}
@media (max-width: 426px) {
  .box__arts .block-hor {
    padding: 0;
    gap: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts .block-hor {
    padding: 0;
    gap: 20px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__arts .block-hor .block-hor__content {
    padding: 0;
  }
}
.box__arts .box__carousel {
  padding: 0;
}
.box__arts .swiper-pagination {
  position: relative;
  margin-top: 45px;
  top: 0;
}
.box__arts .menujq {
  max-width: 800px;
  margin: 0 auto;
}
.box__arts:has(.block-head .btn__primary) {
  position: relative;
}
@media (max-width: 426px) {
  .box__arts:has(.block-head .btn__primary) {
    padding-bottom: 90px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts:has(.block-head .btn__primary) {
    padding-bottom: 90px;
  }
}
@media (max-width: 426px) {
  .box__arts:has(.block-head .btn__primary) .auxi {
    position: inherit;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts:has(.block-head .btn__primary) .auxi {
    position: inherit;
  }
}
@media (max-width: 426px) {
  .box__arts:has(.block-head .btn__primary) .btn__primary {
    position: absolute;
    bottom: 0;
    max-width: 160px;
    margin: 0 auto -65px;
    left: 0;
    right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts:has(.block-head .btn__primary) .btn__primary {
    position: absolute;
    bottom: 0;
    max-width: 160px;
    margin: 0 auto -65px;
    left: 0;
    right: 0;
  }
}
.box__arts--small .card__title {
  font-size: 1.375rem;
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__arts--small .card__title {
    font-size: 1.375rem;
  }
}
.box__arts--rounded {
  margin: 20px;
  border-radius: 10px;
}
@media (max-width: 426px) {
  .box__arts--rounded {
    margin: 0;
    border-radius: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--rounded {
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 426px) {
  .box__arts--carousel .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--carousel .auxi {
    padding: 0;
  }
}
@media (max-width: 426px) {
  .box__arts--carousel .block-head, .box__arts--carousel .grid {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__arts--carousel .block-head, .box__arts--carousel .grid {
    padding: 0 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__arts--carousel .prod-content {
    display: block !important;
  }
}
.box__arts--carousel .prod-content + .grid {
  margin-top: 20px;
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__arts--carousel .g-md-3 {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__arts--carousel .grid {
    grid-template-columns: 1fr;
  }
}
.box__carousel {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .box__carousel {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel {
    padding: 20px 0;
  }
}
@media (max-width: 426px) {
  .box__carousel .block-head {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .block-head {
    padding: 0 15px;
  }
}
.box__carousel .auxi {
  max-width: 92%;
}
@media (max-width: 426px) {
  .box__carousel .auxi {
    padding: 0;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .auxi {
    padding: 0;
    max-width: 100%;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel .auxi {
    max-width: 100%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel .auxi {
    max-width: 100%;
  }
}
@media (min-width: 1540px) {
  .box__carousel .auxi {
    max-width: 1500px;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel .auxi .swiper {
    max-width: 100%;
  }
}
.box__carousel .swiper-button-prev {
  left: 0 !important;
}
@media (max-width: 426px) {
  .box__carousel .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .swiper-button-prev {
    display: none;
  }
}
.box__carousel .swiper-button-next {
  right: 0 !important;
}
@media (max-width: 426px) {
  .box__carousel .swiper-button-next {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .swiper-button-next {
    display: none;
  }
}
.box__carousel .swiper-pagination {
  position: relative;
  margin-top: 30px;
  top: 0;
  bottom: 0 !important;
}
.box__carousel .swiper-slide article {
  height: 100%;
}
@media (max-width: 426px) {
  .box__carousel .swiper-slide {
    width: 75%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel .swiper-slide {
    width: 75%;
  }
}
.box__carousel:has(.block-head .btn__primary) {
  position: relative;
}
@media (max-width: 426px) {
  .box__carousel:has(.block-head .btn__primary) {
    padding-bottom: 100px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel:has(.block-head .btn__primary) {
    padding-bottom: 100px;
  }
}
@media (max-width: 426px) {
  .box__carousel:has(.block-head .btn__primary) .btn__primary {
    position: absolute;
    bottom: 0;
    max-width: 160px;
    margin: 0 auto -80px;
    left: 0;
    right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel:has(.block-head .btn__primary) .btn__primary {
    position: absolute;
    bottom: 0;
    max-width: 160px;
    margin: 0 auto -80px;
    left: 0;
    right: 0;
  }
}
.box__carousel--gallery {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .box__carousel--gallery {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--gallery {
    padding: 20px 0;
  }
}
.box__carousel--gallery .gallery-slides {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  margin-bottom: -1px;
}
@media (max-width: 426px) {
  .box__carousel--gallery .gallery-slides {
    border-radius: 0;
    margin: 0 15px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--gallery .gallery-slides {
    border-radius: 0;
    margin: 0 15px !important;
  }
}
@media (max-width: 426px) {
  .box__carousel--gallery .gallery-slides .swiper-slide img {
    border-radius: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--gallery .gallery-slides .swiper-slide img {
    border-radius: 20px;
  }
}
.box__carousel--gallery .gallery-slides .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background: -moz-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
@media (max-width: 426px) {
  .box__carousel--gallery .gallery-slides .swiper-slide::before {
    content: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--gallery .gallery-slides .swiper-slide::before {
    content: none;
  }
}
.box__carousel--gallery .gallery-thumbs {
  padding: 20px 0;
  background-color: #000000;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 426px) {
  .box__carousel--gallery .gallery-thumbs {
    background: none;
    border-radius: 0;
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--gallery .gallery-thumbs {
    background: none;
    border-radius: 0;
    margin-top: 20px;
  }
}
.box__carousel--gallery .gallery-thumbs .swiper-slide {
  width: 150px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s all ease;
}
.box__carousel--gallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 0.5;
}
.box__carousel--gallery .box__content {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 426px) {
  .box__carousel--gallery .box__content {
    position: relative;
    gap: 20px;
    padding: 20px 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: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -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) {
  .box__carousel--gallery .box__content {
    position: relative;
    gap: 20px;
    padding: 20px 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: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.box__carousel--gallery .box__description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-flex: 0 1 780px;
  flex: 0 1 780px;
}
@media (max-width: 426px) {
  .box__carousel--gallery .box__description {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--gallery .box__description {
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (max-width: 426px) {
  .box__carousel--gallery .swiper-button-next, .box__carousel--gallery .swiper-button-prev {
    display: block !important;
    top: 34% !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--gallery .swiper-button-next, .box__carousel--gallery .swiper-button-prev {
    display: block !important;
    top: 34% !important;
  }
}
.box__carousel--gallery .swiper-button-next {
  right: 20px !important;
}
.box__carousel--gallery .swiper-button-prev {
  left: 20px !important;
}
.box__carousel--logos .slider {
  max-width: 100%;
}
@media (max-width: 426px) {
  .box__carousel--logos .swiper-slide {
    width: 40%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--logos .swiper-slide {
    width: 40%;
  }
}
@media (max-width: 426px) {
  .box__carousel--logos .swiper-slide img {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--logos .swiper-slide img {
    width: 100%;
  }
}
.box__carousel--box {
  padding: 40px 0 0;
}
@media (max-width: 426px) {
  .box__carousel--box {
    padding: 20px 15px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--box {
    padding: 20px 15px 0;
  }
}
.box__carousel--box .auxi {
  background-color: #3C364E;
  border-radius: 20px;
  padding: 15px;
}
@media (max-width: 426px) {
  .box__carousel--box .auxi {
    padding: 8px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--box .auxi {
    padding: 8px 15px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box__carousel--box .auxi {
    max-width: 97%;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .box__carousel--box .auxi {
    max-width: 97%;
  }
}
.box__carousel--box .slider {
  max-width: 1000px;
  overflow: hidden;
}
@media (max-width: 426px) {
  .box__carousel--box .slider .swiper-slide {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--box .slider .swiper-slide {
    width: 100%;
  }
}
.box__carousel--box .slider .swiper-slide:first-child .card__logo {
  border: none;
}
.box__carousel--box .swiper-button-next, .box__carousel--box .swiper-button-prev {
  width: 32px !important;
  height: 32px !important;
  background: none !important;
  border-radius: 0;
  top: calc(50% - 16px) !important;
}
@media (max-width: 426px) {
  .box__carousel--box .swiper-button-next, .box__carousel--box .swiper-button-prev {
    display: block !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--box .swiper-button-next, .box__carousel--box .swiper-button-prev {
    display: block !important;
  }
}
.box__carousel--box .swiper-button-prev {
  background-image: url("../../imag/v1/icon/ic-chevron-left-g.svg") !important;
}
.box__carousel--box .swiper-button-next {
  background-image: url("../../imag/v1/icon/ic-chevron-right-g.svg") !important;
}
.box__carousel--box .card__logo {
  border-left: 1px solid #7C7786;
  padding-left: 24px;
}
@media (max-width: 426px) {
  .box__carousel--box .card__logo {
    border: none;
    padding-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--box .card__logo {
    border: none;
    padding-left: 0;
  }
}
.box__carousel--poster .swiper-button-next, .box__carousel--poster .swiper-button-prev {
  top: 40% !important;
}
@media (max-width: 426px) {
  .box__carousel--full .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__carousel--full .auxi {
    padding: 0 15px;
  }
}
.box__carousel--full .prod-content .slider {
  max-width: 100%;
}
.box__map {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .box__map {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__map {
    padding: 20px 0;
  }
}
.box__map .box__content {
  border-radius: 20px;
  overflow: hidden;
}
.box__right {
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.box__right .box__content {
  max-width: 670px;
  margin-right: 0;
}
.box__right .box__content .menujq {
  width: 100%;
}
.box__iframe {
  border-radius: 20px;
  overflow: hidden;
}
.box__iframe + .box__iframe {
  margin-top: 38px;
}

.block-hor {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .block-hor {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor {
    padding: 20px 0;
  }
}
.block-hor .auxi {
  gap: 60px;
  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;
}
@media (max-width: 426px) {
  .block-hor .auxi {
    margin-bottom: 0;
    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 .auxi {
    margin-bottom: 0;
    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 .auxi {
    gap: 30px;
  }
}
.block-hor:last-child {
  margin-bottom: 0;
}
.block-hor__title, .block-hor__description {
  text-align: left;
}
.block-hor__title {
  font-size: 3.75rem;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "BwModelica-Bold", sans-serif;
}
@media (max-width: 426px) {
  .block-hor__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor__title {
    font-size: 2.25rem;
  }
}
.block-hor__title--sm {
  font-size: 3.25rem;
}
@media (max-width: 426px) {
  .block-hor__title--sm {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__title--sm {
    font-size: 1.875rem;
  }
}
.block-hor__description {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 20px;
  color: #ffffff;
  font-family: "BwModelica-Regular", sans-serif;
}
@media (max-width: 426px) {
  .block-hor__description {
    font-size: 1.25rem;
    margin-top: 20px;
    line-height: 1.4;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__description {
    font-size: 1.25rem;
    margin-top: 20px;
    line-height: 1.4;
  }
}
.block-hor__content {
  -webkit-flex: 0 1 60%;
  flex: 0 1 60%;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
}
@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;
  border-radius: 16px;
  overflow: hidden;
  -webkit-flex: 0 1 40%;
  flex: 0 1 40%;
  -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__img--video:hover .play {
  transform: scale(1.1);
}
.block-hor__img--video .play {
  transition: 0.3s all ease;
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.block-hor__img--video .play__icon {
  width: 28px;
}
.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 {
    margin-top: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor .btn {
    margin-top: 15px;
  }
}
@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;
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor .btn__primary {
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: 0;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .block-hor .btn__primary {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.block-hor.inv .auxi {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 426px) {
  .block-hor.inv .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) {
  .block-hor.inv .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;
  }
}
.block-hor__white .block-hor__title, .block-hor__white .block-hor__description {
  color: #ffffff;
}
.block-hor__bg {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.block-hor__bg--light .auxi {
  position: relative;
  z-index: 2;
}
.block-hor__bg--light::before {
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.block-hor__bg--light::after {
  background-color: #3C364E;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.block-hor__bg--dark .block-hor__title, .block-hor__bg--dark .block-hor__description {
  color: #ffffff;
}
.block-hor__bg--dark::before {
  background-color: #3C364E;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.block-hor__full .swiper-container {
  max-width: 100%;
}
.block-hor__full .swiper-container .swiper-slide {
  max-width: 70%;
}
@media (max-width: 426px) {
  .block-hor__full .swiper-container .swiper-slide {
    width: 100%;
    max-width: 80%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__full .swiper-container .swiper-slide {
    width: 100%;
    max-width: 80%;
  }
}
.block-hor__full .swiper-container .swiper-pagination {
  display: none;
}
@media (max-width: 426px) {
  .block-hor__full .swiper-container .swiper-pagination {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-hor__full .swiper-container .swiper-pagination {
    display: block;
  }
}
.block-hor__full .swiper-container .swiper-button-disabled {
  opacity: 0 !important;
}

.formulario {
  position: initial !important;
}
.formulario .form-content {
  padding: 40px 0 100px;
}
.formulario .form-content .auxi {
  max-width: 700px;
}
.formulario .form-content .form__wrapper {
  gap: 20px;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: 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-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 .form__wrapper {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .formulario .form-content .form__wrapper {
    width: 100%;
  }
}
.formulario .form-content .form__wrapper .btn__center {
  width: 100%;
  max-width: 742px;
}
.formulario .form-content .form__wrapper .btn__right {
  width: 100%;
  max-width: 742px;
}
.formulario .form-content .form__wrapper .btn__primary {
  min-height: 47px;
}
.formulario .form-content .form__wrapper .btn__spacebetween {
  width: 100%;
  max-width: 742px;
  margin: 10px 0 40px;
}
@media (max-width: 426px) {
  .formulario .form-content .form__wrapper .btn__spacebetween {
    flex-direction: column-reverse;
    gap: 30px;
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .formulario .form-content .form__wrapper .btn__spacebetween {
    flex-direction: column-reverse;
    gap: 30px;
    margin-top: 0;
  }
}
.formulario__login .form-content .form__wrapper {
  margin: 0 auto;
  -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 .swiper-button-next, .box-full .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-full .swiper-button-next, .box-full .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .box-full .swiper-button-next, .box-full .swiper-button-prev {
    display: none;
  }
}

.banner-center {
  padding: 70px 0;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 426px) {
  .banner-center {
    min-height: 450px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .banner-center {
    min-height: 450px;
  }
}
.banner-center__overlay {
  width: 700px;
  position: absolute;
  right: 0;
  bottom: -630px;
  z-index: -1;
  opacity: 0.7;
  height: 1200px;
  object-fit: cover;
  object-position: 15% 0px;
}
@media (max-width: 426px) {
  .banner-center__overlay {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .banner-center__overlay {
    display: none;
  }
}
.banner-center .auxi {
  position: relative;
  z-index: 2;
}
@media (max-width: 426px) {
  .banner-center .auxi {
    padding: 0 15px;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .banner-center .auxi {
    padding: 0 15px;
    max-width: 100%;
  }
}
.banner-center .CUERPO {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  text-align: left;
  padding: 0;
}
.banner-center .CUERPO p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #3C364E;
  text-align: left;
  font-family: "BwModelica-Medium", sans-serif;
}
@media (max-width: 426px) {
  .banner-center .CUERPO p {
    font-size: 1.375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .banner-center .CUERPO p {
    font-size: 1.375rem;
  }
}
.banner-center .CUERPO strong {
  color: #e52c36;
}

.logos {
  padding: 40px 0;
}
@media (max-width: 426px) {
  .logos {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .logos {
    padding: 20px 0;
  }
}
.logos .auxi {
  max-width: 1250px;
}
.logos__container {
  gap: 40px 0;
  display: grid;
}
.logos__lg .logos__container {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 426px) {
  .logos__lg .logos__container {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .logos__lg .logos__container {
    grid-template-columns: 1fr;
  }
}
.logos__lg img {
  max-width: 200px;
  margin: 0 auto;
}
.logos__sm .logos__container {
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width: 426px) {
  .logos__sm .logos__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .logos__sm .logos__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.logos__sm img {
  max-width: 100px;
  margin: 0 auto;
}

.skin-blue .card__title {
  color: #d7fffe;
}
.skin-blue .card__play {
  padding: 0;
  background: none;
  width: auto;
  height: auto;
}
.skin-blue .card__play::before {
  background-image: url("../../imag/v1/icon/ic-play-lb.svg");
}
.skin-blue .card__time {
  background-color: #fE0475;
  border-radius: 3rem;
}
.skin-blue .card__horizontal--full .card__play::before {
  width: 60px;
  height: 60px;
}
.skin-blue .card__sm .card__play::before {
  width: 35px;
  height: 35px;
}
.skin-blue .block-head__title {
  color: #90FFFF;
}
.skin-blue .block-head .btn__secondary {
  color: #fE0475;
}
.skin-blue .block-head .btn__secondary .icon__arrow-right-w {
  background-image: url("../../imag/v1/icon/ic-arrow-right-bold-f.svg");
}

@media (max-width: 426px) {
  .taxport .grid__col {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .taxport .grid__col {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 426px) {
  .results .box__arts {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .box__arts {
    padding: 30px 0;
  }
}
.results .box__arts .auxi {
  max-width: 1150px;
}
.results .box__arts .card + .card {
  margin-top: 50px;
}

.search-data {
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  max-width: 1150px;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 426px) {
  .search-data {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .search-data {
    padding: 0 15px;
  }
}
.search-data__content {
  margin-top: 10px;
  gap: 10px;
  font-family: "BwModelica-Regular", sans-serif;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .search-data__content {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -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) {
  .search-data__content {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.search-data__pref {
  font-size: 2.25rem;
  color: #ffffff;
  line-height: 1.4;
  font-family: "BwModelica-Bold", sans-serif;
}
@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: #4D03FF;
  font-size: 2.25rem;
  font-family: "BwModelica-Bold", sans-serif;
}
.search-data__results {
  margin-top: 20px;
}
.search-data__results p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.4;
}
.search-data .enc-main__title {
  text-align: left;
  font-size: 1.25rem;
}

.error {
  padding-bottom: 0;
}
.error .main .auxi {
  margin: 0 auto;
  padding: 90px 0;
  min-height: 80vh;
  max-width: 1300px;
  gap: 60px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 426px) {
  .error .main .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 .main .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 .main .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: 450px;
  width: 100%;
}
@media (max-width: 426px) {
  .error__img {
    max-width: 350px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__img {
    max-width: 350px;
  }
}
.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.25rem;
  padding-bottom: 15px;
  color: #ffffff;
  font-family: "BwModelica-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.875rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .error__subtit {
    font-size: 2.875rem;
  }
}
.error__baj {
  font-size: 2.25rem;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "BwModelica-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;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .error__baj {
    font-size: 2.25rem;
  }
}
@media (min-width: 991px) and (max-width: 1277px) {
  .error__baj {
    font-size: 2.25rem;
  }
}
.error__pref {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  max-width: 1000px;
}
@media (max-width: 426px) {
  .error__pref {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__pref {
    font-size: 0.875rem;
  }
}
.error__pref + p {
  margin-top: 20px;
}
.error__pref a {
  color: #fE0475;
  text-decoration: underline;
  font-family: "BwModelica-Bold", sans-serif;
}

.no-results {
  padding: 70px 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;
}
.no-results p {
  font-size: 1.25rem;
  color: #ffffff;
  font-family: "BwModelica-Medium", sans-serif;
}

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