@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*/
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mynerve&display=swap");
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: $chv_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 {
  background-image: url("../../imag/v1/icon/arrow_r.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 21px !important;
  z-index: 1 !important;
  width: 50px !important;
  height: 50px !important;
  right: 0px !important;
  outline: none !important;
}
@media (max-width: 425px) {
  .swiper-button-next {
    background-size: 12px !important;
    width: 20px !important;
    height: 20px !important;
  }
}

.swiper-button-prev {
  background-image: url("../../imag/v1/icon/arrow_l.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 21px !important;
  z-index: 1 !important;
  width: 50px !important;
  height: 50px !important;
  left: 0px !important;
  outline: none !important;
}
@media (max-width: 425px) {
  .swiper-button-prev {
    background-size: 12px !important;
    width: 20px !important;
    height: 20px !important;
  }
}

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

.cont-btn {
  padding: 30px 0 0;
  text-align: center;
  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;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-btn {
    padding: 15px 0 0;
  }
}

.btn-main {
  display: inline-block;
  font-size: 1rem;
  color: #000000;
  padding: 25px 100px 25px 90px;
  background-color: #00BBAE;
  text-transform: uppercase;
  border-radius: 3rem;
  border: 1px solid #00BBAE;
  letter-spacing: 1px;
  transition: 0.3s all ease;
  background-image: url("../../imag/v1/icon/arrow_r_a.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 60px) !important;
  background-size: 20px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .btn-main {
    font-size: 0.75rem !important;
    padding: 16px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn-main {
    font-size: 0.75rem !important;
    padding: 16px;
  }
}
.btn-main:hover {
  color: #fff;
  background: #A52266;
  border: 1px solid #A52266;
}
.btn-main.more {
  color: #fcef03;
  border-bottom: 4px solid #808285;
  margin-left: 20px;
}
.btn-main.outline {
  color: #FBD31E;
  border: 1px solid #FBD31E;
  background: transparent;
  margin-left: 20px;
}
.btn-main.outline:hover {
  color: #fff;
  background: #00BBAE;
  border: 1px solid #00BBAE;
}

.bg-amarillo .btn-main {
  color: #000000;
  background-color: #ffffff;
}
.bg-amarillo .btn-main:hover {
  border-color: #2d2d2d;
  background-color: rgba(255, 255, 255, 0);
}

.btn-sec {
  display: inline-block;
  font-size: 0.8125rem;
  color: #000000;
  padding: 12px 40px;
  background-color: #ffffff;
  border-radius: 2rem;
  border: 1px solid #ffffff;
  letter-spacing: 0.2px;
  transition: 0.3s all ease;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .btn-sec {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn-sec {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
.btn-sec:hover {
  color: #A52266;
}

.cont-btn-m {
  text-align: center;
  margin: 20px auto 0;
}
.cont-btn-m .btn {
  display: inline-block;
  font-size: 0.8125rem !important;
  color: #fcef03;
  background-color: #ffffff;
  padding: 8px 15px;
  border: 1px solid #fcef03;
  border-radius: 4px;
  letter-spacing: 0.2px;
}

.bg-gris .cont-btn-m .btn {
  border-color: #ffffff;
}

#return-to-top {
  position: fixed;
  border: 1px solid rgba(255, 255, 255, 0.3);
  bottom: 20px;
  right: 2%;
  background: #fcef03;
  width: 50px;
  height: 50px;
  z-index: 50;
  cursor: pointer;
  text-decoration: none;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 425px) {
  #return-to-top {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  #return-to-top {
    width: 40px;
    height: 40px;
  }
}
#return-to-top img {
  width: 25px;
  margin: 0 auto;
  top: calc(50% - 10px);
  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: #fcef03;
}
#return-to-top:hover img {
  top: 10px;
}

.cont-play {
  display: block;
  margin: 0 auto;
  left: 40%;
  top: calc(50% - 50px);
  width: 100px;
  height: 100px;
  opacity: 0.8;
  background-image: url("../../imag/v1/icon/ic_play_w.png");
  background-repeat: no-repeat;
  background-position: 57%;
  background-size: 45%;
  position: relative;
  transition: 0.2s all ease;
}
@media (max-width: 425px) {
  .cont-play {
    width: 80px;
    height: 80px;
    margin: 20px auto 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-play {
    width: 80px;
    height: 80px;
    margin: 40px auto 70px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cont-play {
    margin: 50px auto;
  }
}
.cont-play:hover {
  opacity: 1;
}

.btn-main-dos {
  display: inline-block;
  font-size: 1rem;
  color: #06062B;
  padding: 15px 25px;
  background-color: #04FFDA;
  text-transform: uppercase;
  border-radius: 3rem;
  border: 1px solid #04FFDA;
  letter-spacing: 1px;
  transition: 0.3s all ease;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .btn-main-dos {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn-main-dos {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
.btn-main-dos:hover {
  color: #000000;
}
.btn-main-dos.more {
  color: #fcef03;
  border-bottom: 4px solid #808285;
  margin-left: 20px;
}

.enc-nav .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.enc-nav .auxi .cont-btn a {
  display: inline-block;
  position: relative;
  font-size: 0.8125rem;
  color: #fcef03;
  padding: 8px 40px 8px 50px;
  background-color: #ffffff;
  border: 1px solid #f4f4f4;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
.enc-nav .auxi .cont-btn a:before {
  content: "";
  position: absolute;
  background-image: url("../../imag/v1/icon/chevron_gris.png");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  left: 15px;
  width: 13px;
  height: 13px;
  transform: rotate(90deg);
}

.enc-main .auxi {
  text-align: center;
  padding-bottom: 20px;
}
.enc-main .auxi p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #4e4e4e;
}
.enc-main .auxi h1 {
  padding-top: 10px;
  font-size: 2.1875rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .enc-main .auxi h1 {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main .auxi h1 {
    font-size: 1.875rem;
  }
}

.enc-bg {
  position: relative;
}
.enc-bg:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  background-color: rgba(51, 51, 102, 0.65);
}
.enc-bg .breadcrumb, .enc-bg .breadcrumb a {
  color: #ffffff !important;
}
.enc-bg .breadcrumb:after, .enc-bg .breadcrumb a:after {
  color: #ffffff !important;
}
.enc-bg .enc-main {
  z-index: 2;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
@media (max-width: 425px) {
  .enc-bg .enc-main {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-bg .enc-main {
    padding: 20px 0;
  }
}
.enc-bg .enc-main .epig {
  font-size: 1rem;
  padding-top: 0;
  margin-bottom: 20px;
}
.enc-bg .enc-main p {
  padding-top: 15px;
  line-height: 1.4;
  font-size: 1.125rem;
  color: #ffffff;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .enc-bg .enc-main p {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-bg .enc-main p {
    font-size: 1rem;
  }
}
.enc-bg .enc-main h1 {
  font-size: 2.1875rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 425px) {
  .enc-bg .enc-main h1 {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-bg .enc-main h1 {
    font-size: 1.25rem;
  }
}
.enc-bg .enc-main .enc-tags {
  margin-top: 30px;
  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;
}
.enc-bg .enc-main .enc-tags li {
  margin-left: 20px;
}
.enc-bg .enc-main .enc-tags li:first-child {
  margin-left: 0;
}
.enc-bg .enc-main .enc-tags li a {
  font-size: 0.875rem;
  color: #A52266;
  padding: 7px 20px;
  background-color: #ffffff;
  border-radius: 4px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}

.enc-txt {
  padding: 20px 0 40px;
}
@media (max-width: 425px) {
  .enc-txt {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-txt {
    padding: 20px 0;
  }
}
.enc-txt .breadcrumbs {
  text-align: left;
}
.enc-txt .auxi {
  text-align: center;
  padding-bottom: 0;
}
.enc-txt .auxi p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #4e4e4e;
}
.enc-txt .auxi h1 {
  padding-top: 10px;
  color: #A52266;
  font-size: 2.1875rem;
}

.cont-tit {
  min-height: 36px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 425px) {
  .cont-tit {
    padding: 0 10px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit {
    padding: 0 10px 0;
  }
}
.cont-tit .epig {
  text-transform: uppercase;
  font-size: 1.125rem;
  margin-bottom: 30px;
}
.cont-tit .tit {
  font-size: 3rem !important;
  color: #A52266;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .cont-tit .tit {
    font-size: 1.25rem !important;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit .tit {
    font-size: 1.25rem !important;
    text-align: center;
    width: 100%;
  }
}
.cont-tit .tit:after {
  content: "";
  position: relative;
  display: block;
  margin: 15px auto;
  width: 60px;
  height: 2px;
  background-color: #fcef03;
}
.cont-tit .baj {
  max-width: 520px;
  margin: 10px auto 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
  font-size: 1.125rem;
  color: #2d2d2d;
}
@media (max-width: 425px) {
  .cont-tit .baj {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit .baj {
    font-size: 0.875rem;
  }
}
.cont-tit .cont-btn {
  padding-top: 0;
}
.cont-tit .btn-more {
  display: inline-block;
  font-size: 0.875rem !important;
  color: #fcef03;
  background-color: #ffffff;
  padding: 10px 20px;
  border: 1px solid #f4f4f4;
  border-radius: 4px;
  letter-spacing: 0.2px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}

.bg-amarillo .tit:after {
  background-color: #ffffff;
}

.tit-icon {
  padding: 15px 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;
}
.tit-icon img {
  width: 23px;
  margin-right: 10px;
}
.tit-icon h2 {
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #fcef03;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}

.enc-dos-col .auxi {
  max-width: 1000px !important;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .enc-dos-col .auxi {
    -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) {
  .enc-dos-col .auxi {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.enc-dos-col .auxi .img-wrap {
  -webkit-flex: 0 1 40%;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
}
@media (max-width: 425px) {
  .enc-dos-col .auxi .img-wrap {
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-dos-col .auxi .img-wrap {
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.enc-dos-col .auxi .cont-txt {
  margin-left: 20px;
  -webkit-flex: 0 1 60%;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
}
@media (max-width: 425px) {
  .enc-dos-col .auxi .cont-txt {
    margin-top: 20px;
    margin-left: 0;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-dos-col .auxi .cont-txt {
    margin-top: 20px;
    margin-left: 0;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.enc-dos-col .auxi .cont-txt .baj {
  font-size: 1.125rem;
  color: #fcef03;
  line-height: 1.3;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}
.enc-dos-col .auxi .cont-txt .intro {
  margin-top: 25px;
  color: #808285;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}

.tag {
  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;
}
.tag .img-wrap {
  margin-right: 10px;
  background-color: #000000;
  border: none !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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;
}
.tag .img-wrap img {
  width: 34px;
  margin: 0 auto;
}

.menu_bar {
  display: none;
  position: fixed;
  bottom: 0;
  background-color: #A52266;
  width: 100%;
  text-align: center;
  z-index: 11;
  padding: 5px 10px 0;
}
.menu_bar ul {
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.menu_bar li a {
  display: block;
}
.menu_bar li span {
  display: block;
  color: #ffffff;
  font-size: 9px;
  padding: 12px 10px 10px;
}
.menu_bar li img {
  width: 25px;
  display: block;
  margin: 0 auto;
}

.nav-sec {
  background-color: #fcef03;
}
@media (max-width: 425px) {
  .nav-sec {
    padding: 15px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .nav-sec {
    padding: 15px 0;
  }
}
.nav-sec .auxi {
  max-width: 850px;
}
.nav-sec ul {
  padding: 15px 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 425px) {
  .nav-sec ul {
    -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) {
  .nav-sec ul {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.nav-sec ul li {
  margin-right: 10px;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.nav-sec ul li:last-child {
  margin-right: 0;
}
.nav-sec ul li a {
  padding: 10px 0;
  display: block;
  width: 100%;
  color: #ffffff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav-sec ul li a {
    font-size: 0.875rem;
  }
}
.nav-sec .anchor_mobile {
  margin: 0 auto;
  background-color: #ffffff;
  width: 100%;
  max-width: 300px;
}

.nav-tabs {
  padding-bottom: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .nav-tabs {
    overflow-x: scroll;
    -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) {
  .nav-tabs {
    overflow-x: scroll;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.nav-tabs li .tab-item {
  padding-right: 30px;
  cursor: pointer;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  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: 425px) {
  .nav-tabs li .tab-item {
    padding: 0 15px;
    min-width: 90px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .nav-tabs li .tab-item {
    padding: 0 15px;
    min-width: 90px;
  }
}
.nav-tabs li .tab-item .tab-tit {
  font-size: 1.375rem;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 5px solid rgba(255, 255, 255, 0);
  color: #b7b7b7;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .nav-tabs li .tab-item .tab-tit {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .nav-tabs li .tab-item .tab-tit {
    font-size: 0.875rem;
  }
}
.nav-tabs li .tab-item.tab-item:not(.inactive) .tab-tit {
  color: #000000;
  border-color: #fcef03;
}
.nav-tabs li:last-child .tab-item {
  padding-right: 0;
}
.nav-tabs li .img-wrap {
  background-color: rgba(78, 78, 78, 0.5);
  border-radius: 50%;
  padding: 5px;
  margin-right: 5px;
}
.nav-tabs li img {
  width: 20px;
}
@media (max-width: 425px) {
  .nav-tabs li img {
    width: 14px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .nav-tabs li img {
    width: 14px;
  }
}

.cont-search-def {
  position: relative;
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.cont-search-def input {
  width: 100%;
}
.cont-search-def .search-icon {
  position: absolute;
  right: 0;
  top: 7px;
  padding-right: 10px;
}
.cont-search-def .search-icon img {
  width: 20px;
}

.menu-side {
  padding-top: 15px;
}
.menu-side li {
  margin-bottom: 20px;
}
.menu-side li a {
  transition: 0.2s all ease;
  color: #fcef03;
  font-size: 1.125rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}
.menu-side li a:hover {
  color: #A52266;
}

.list-tabs {
  padding: 50px 0;
}
@media (max-width: 425px) {
  .list-tabs {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs {
    padding: 30px 0;
  }
}
.list-tabs .row {
  overflow: hidden;
  max-height: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .list-tabs .row {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: visible;
    max-height: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: visible;
    max-height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row {
    margin-left: -20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .col {
    border-left-width: 20px;
  }
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .cont-tabs {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .cont-tabs {
    -webkit-flex: 1 0 35%;
    -ms-flex: 1 0 35%;
    flex: 1 0 35%;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .list-tabs .row .cont-tabs {
    -webkit-flex: 1 0 30%;
    -ms-flex: 1 0 30%;
    flex: 1 0 30%;
  }
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs ul {
    overflow-x: auto;
    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;
  }
}
.list-tabs .row .cont-tabs ul li {
  display: block;
  margin: 0 10px;
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs ul li {
    -webkit-flex: 1 0 220px;
    -ms-flex: 1 0 220px;
    flex: 1 0 220px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .cont-tabs ul li {
    -webkit-flex: 1 0 220px;
    -ms-flex: 1 0 220px;
    flex: 1 0 220px;
  }
}
.list-tabs .row .cont-tabs ul li a {
  background-color: transparent;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  display: block;
  padding: 10px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
  line-height: normal;
  cursor: pointer;
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
}
.list-tabs .row .cont-tabs ul li a span {
  font-family: "Mynerve", sans-serif;
  font-weight: 400;
  font-size: 35px;
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs ul li a span {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .cont-tabs ul li a span {
    display: none;
  }
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs ul li a {
    font-size: 0.8125rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
    padding: 15px;
    height: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .cont-tabs ul li a {
    font-size: 0.8125rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
    padding: 15px;
    height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .cont-tabs ul li a {
    padding: 15px 25px;
    font-size: 0.8125rem;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .list-tabs .row .cont-tabs ul li a {
    padding: 20px 25px;
  }
}
.list-tabs .row .cont-tabs ul li a:not(.inactive) {
  border-bottom: 5px solid #00BBAE;
  color: #00BBAE;
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs ul li a:not(.inactive) {
    background: none;
    border-bottom: 5px solid #FCD31E;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .cont-tabs ul li a:not(.inactive) {
    background: none;
    border-bottom: 5px solid #FCD31E;
  }
}
.list-tabs .row .content {
  padding: 0 15px 30px 30px;
  background-color: #ffffff;
}
@media (max-width: 425px) {
  .list-tabs .row .content {
    padding: 0 0 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .content {
    padding: 0 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .content {
    padding: 0px 15px 30px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .list-tabs .row .content {
    padding: 0px 15px 30px 30px;
  }
}
.list-tabs .row .content .cont-txt {
  display: block;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .list-tabs .row .content .cont-txt {
    padding: 0;
    padding-right: 0;
    overflow-y: visible;
    max-height: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .content .cont-txt {
    padding: 0;
    padding-right: 0;
    overflow-y: visible;
    max-height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .content .cont-txt {
    padding: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .list-tabs .row .content .cont-txt {
    padding: 0 30px;
  }
}
.list-tabs .row .content .cont-txt::-webkit-scrollbar {
  width: 8px;
}
.list-tabs .row .content .cont-txt::-webkit-scrollbar-track {
  background: rgba(0, 60, 158, 0.2);
  border-radius: 5px;
}
.list-tabs .row .content .cont-txt::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}
.list-tabs .row .content .cont-txt h3 {
  color: #2d2d2d;
  font-size: 1.375rem;
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 1.3;
}
.list-tabs .row .content .cont-txt p {
  font-size: 0.875rem;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #2d2d2d;
}
.list-tabs .row .content .cont-txt ul {
  margin-top: 0;
  margin-left: 30px;
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.4;
}
.list-tabs .row .content .cont-txt ul li {
  list-style-type: disc;
  font-size: 0.875rem;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.5;
}
.list-tabs .row .content .cont-txt ul li:first-child a {
  margin-top: 0;
}
.list-tabs .row .content .cont-txt ol {
  margin-top: 8px;
  margin-left: 30px;
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.4;
}
.list-tabs .row .content .cont-txt ol li {
  list-style-type: decimal;
  font-size: 0.875rem;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.5;
}
.list-tabs .row .content .cont-txt .bold {
  margin-bottom: 30px;
}
.list-tabs .row .content .tab-pane {
  display: none;
}
.list-tabs .row .content .tab-pane.active {
  display: block;
  -webkit-animation: opacidad 1s ease;
  -moz-animation: opacidad 1s ease;
  -o-animation: opacidad 1s ease;
  animation: opacidad 1s ease;
}
@-webkit-keyframes opacidad {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@-moz-keyframes opacidad {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@-o-keyframes opacidad {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@keyframes opacidad {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}

/* 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: #0f2c55;
  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.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
}

.speaker-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: "Titillium Web", sans-serif;
}

.speaker-role {
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
  color: #1abc9c;
  margin-bottom: 1rem;
  font-family: "Titillium Web", sans-serif;
}

.speaker-description {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
}

/* Navegación head */
.cont-navbar {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  gap: 2rem;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}

html {
  scroll-behavior: smooth;
}

html {
  -webkit-text-size-adjust: none;
}

body {
  background: #112646;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}

body.home {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
}
* {
  box-sizing: border-box;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}
*:after, *:before {
  box-sizing: border-box;
}

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

.img-cpt {
  width: auto;
  margin: 0 auto;
}

input, select, .select, textarea {
  padding: 13px;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background: none;
}
input:focus, select:focus, .select:focus, textarea:focus {
  transition: 0.5s all ease;
  border-color: #fcef03 !important;
  background-color: #fdfdfd;
}

select {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background-image: url("../../imag/v1/icon/chevron_gris.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 15px;
  background-size: 15px;
}

textarea {
  resize: none;
  outline: none;
}

button, input {
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

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

.prontusPlayer .prontusPlayer-buttons-auxi a img {
  width: auto !important;
}

iframe {
  width: 100%;
}

.grad-azul {
  background: rgb(0, 7, 59);
  background: -moz-linear-gradient(90deg, rgb(0, 7, 59) 0%, rgb(31, 0, 58) 100%);
  background: -webkit-linear-gradient(90deg, rgb(0, 7, 59) 0%, rgb(31, 0, 58) 100%);
  background: linear-gradient(90deg, rgb(0, 7, 59) 0%, rgb(31, 0, 58) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00073b",endColorstr="#1f003a",GradientType=1);
}

.grad-pink {
  background: rgb(255, 0, 255);
  background: -moz-linear-gradient(164deg, rgb(255, 0, 255) 0%, rgb(148, 0, 148) 100%);
  background: -webkit-linear-gradient(164deg, rgb(255, 0, 255) 0%, rgb(148, 0, 148) 100%);
  background: linear-gradient(164deg, rgb(255, 0, 255) 0%, rgb(148, 0, 148) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff00ff",endColorstr="#940094",GradientType=1);
}

.grad-lightblue {
  background: rgb(0, 120, 255);
  background: -moz-linear-gradient(164deg, rgb(0, 120, 255) 0%, rgb(0, 173, 224) 100%);
  background: -webkit-linear-gradient(164deg, rgb(0, 120, 255) 0%, rgb(0, 173, 224) 100%);
  background: linear-gradient(164deg, rgb(0, 120, 255) 0%, rgb(0, 173, 224) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0078ff",endColorstr="#00ade0",GradientType=1);
}

.grad-purple {
  background: rgb(76, 0, 111);
  background: -moz-linear-gradient(164deg, rgb(76, 0, 111) 0%, rgb(98, 0, 148) 100%);
  background: -webkit-linear-gradient(164deg, rgb(76, 0, 111) 0%, rgb(98, 0, 148) 100%);
  background: linear-gradient(164deg, rgb(76, 0, 111) 0%, rgb(98, 0, 148) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4c006f",endColorstr="#620094",GradientType=1);
}

.grad-yellow {
  background: rgb(224, 205, 15);
  background: -moz-linear-gradient(90deg, rgb(224, 205, 15) 0%, rgb(218, 175, 15) 100%);
  background: -webkit-linear-gradient(90deg, rgb(224, 205, 15) 0%, rgb(218, 175, 15) 100%);
  background: linear-gradient(90deg, rgb(224, 205, 15) 0%, rgb(218, 175, 15) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e0cd0f",endColorstr="#daaf0f",GradientType=1);
}

.fucsia {
  color: #881a6f !important;
}

.celeste {
  color: #027fd3 !important;
}

.morado {
  color: #6804a3 !important;
}

.ocre {
  color: #daaf0f !important;
}

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

.hide {
  display: none !important;
}

.aleft {
  float: left;
}

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

.auxi {
  width: 90%;
  max-width: 1390px;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .auxi {
    padding: 0 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 1400px) {
  .auxi {
    max-width: 1390px;
  }
}

.responsive {
  display: none;
}

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

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

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

.bg-morado {
  background-color: #A52266;
}

.bg-amarillo {
  background-color: #fcef03;
}

.bg-gris {
  background-color: #f4f4f4;
}

.bold {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}

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

body.contraste *, body.contraste article.sitios, body.contraste section, body.contraste .form-group .form-control, body.contraste, body.contraste #advSearch .form-group .form-control,
body.contraste .destacado .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000000 !important;
  color: #ffffff !important;
}

body.contraste .header .nav .nav_cont .cont_social img, body.contraste .menu_responsive .menu-btn:checked ~ .menu-icon .navicon,
body.contraste.home .header .auxi, body.contraste.home .cont-access, body.contraste.home .menu-btn,
body.contraste.home .principal .main-content .logo img,
body.contraste .principal .main-content, body.contraste .auxi, body.contraste .destacado .swiper-pagination-bullet {
  background: none !important;
}

body.contraste .header .nav .nav_cont .search-cont .search-wrapper .close:before,
body.contraste .menu_responsive .menu-icon .navicon, body.contraste .menu_responsive .menu-icon .navicon:before,
body.contraste .menu_responsive .menu-icon .navicon:after, body.contraste .swiper-pagination-bullet-active, body.contraste .faq .row .cont-tabs ul li a:not(.inactive),
body.contraste .swiper-button-prev, body.contraste .swiper-button-next, body.contraste #filtro-links .nav-tabs li a:not(.inactive), body.contraste.pregado-d #becas .filter .nav-tabs a:not(.inactive),
body.contraste .header .sec-navbar .cont-access li {
  background-color: #ffffff !important;
}

body.contraste a, body.contraste p, body.contraste h1, body.contraste h2, body.contraste h3, body.contraste h4, body.contraste input::placeholder {
  color: #ffffff !important;
}

body.contraste .header .sec-navbar .cont-links .cont-search input, body.contraste .lateral_bar, body.contraste .bloq-2 .container .cont-txt,
body.contraste .art-3 .swiper-pagination .swiper-pagination-bullet, body.contraste .links-interes article a, body.contraste .formulario .auxi .cont-form form .form-group input,
body.contraste .formulario .auxi .cont-form form .form-group select, body.contraste .preguntas .cont-select .auxi .form-group select,
body.contraste.calendario .actividades .results .swiper-pagination .swiper-pagination-bullet, body.contraste .cont-select .auxi form select {
  border: 1px solid #ffffff !important;
}

body.contraste .destacado .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #000000 !important;
}

body.contraste .header .sec-navbar .cont-links .cont-search button, body.contraste .bloq-2 .swiper-pagination, body.contraste .menu-responsive .menu-btn:checked ~ .menu-icon .navicon,
body.contraste .breadcrumbs, body.contraste .destacado .box-full.swiper-slide .cont-txt, body.contraste .destacado .swiper-pagination, body.contraste.calendario .dest-calendario .box-full .cont-tag,
body.contraste .header .sec-navbar .cont-access li a {
  background-color: initial !important;
}

body.contraste.inter .item.destacado .cont-txt {
  border: none !important;
}

body.contraste .faq .row .cont-tabs ul li a:not(.inactive), body.contraste #filtro-links .nav-tabs li a:not(.inactive), body.contraste.pregado-d #becas .filter .nav-tabs a:not(.inactive) {
  color: #000000 !important;
}

body.contraste .scroll-downs .mousey .scroller {
  background-color: rgba(255, 255, 255, 0.6) !important;
}

body.contraste .menu-responsive, body.contraste .menu-sec, body.contraste.pregado-d .filt-table .content .cont-table .table-pond .thead,
body.contraste .header.sticky, body.contraste.calendario .dest-calendario .box-full > .auxi, body.contraste.calendario .actividades .results .swiper-pagination .swiper-pagination-bullet-active {
  border-bottom: 1px solid #ffffff;
}

body.contraste .footer, body.contraste .menu_bar {
  border-top: 1px solid #ffffff;
}

body.contraste.inter .item:hover .cont-btn .tag {
  color: #808285 !important;
}

body.contraste .header .nav .nav_cont .menu_nav .desp.sec > a {
  background-image: url("../../imag/v1/icon/arrow_w_up.png") !important;
}

body.contraste .header .nav .nav_cont .menu_nav .desp.sec:hover > a, body.contraste .menu_mov .menu-programa:after {
  background-image: url("../../imag/v1/icon/arrow_w_down.png") !important;
}

.wp-pagenavi {
  font-size: 0.9375rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  margin: 17px auto 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;
}
.wp-pagenavi a {
  padding: 8px 4px;
  margin-right: 17px;
  display: block;
  color: #4e4e4e;
}
.wp-pagenavi a:hover {
  text-decoration: underline;
}
.wp-pagenavi a.page {
  margin-right: 17px;
  border-bottom: 6px solid #808285;
}
.wp-pagenavi span {
  display: block;
  padding: 8px;
  margin-right: 15px;
}

.wp-pagenavi span.pag_actual, .wp-pagenavi span.actual {
  color: #A52266;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  border-bottom: 3px solid #A52266;
}

.text-height {
  max-height: 550px;
}

.text-hidden {
  position: relative;
  overflow: hidden;
}
.text-hidden:before {
  content: "";
  height: 40px;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0.330969888) 12%, rgb(255, 255, 255) 86%);
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0.330969888) 12%, rgb(255, 255, 255) 86%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.330969888) 12%, rgb(255, 255, 255) 86%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.heightAuto {
  max-height: 100%;
}
.heightAuto:before {
  content: none;
}

.link .readmore {
  padding-right: 40px;
  background-image: url("../../imag/v1/icon/chevron_w_d.png");
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 13px;
}
.link .readmore:hover {
  background-image: url("../../imag/v1/icon/ic_arrow_down_blue.png");
}

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

.breadcrumbs {
  padding: 15px 0;
  position: relative;
  z-index: 2;
}
.breadcrumbs .breadcrumb {
  color: #4e4e4e;
  font-size: 0.8125rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}
.breadcrumbs .breadcrumb:after {
  content: "|";
  color: #4e4e4e;
  position: relative;
  display: inline-block;
  padding: 0 5px;
}
.breadcrumbs .breadcrumb:last-child:after {
  content: none;
}
.breadcrumbs .breadcrumb a {
  color: #4e4e4e;
}
.breadcrumbs .breadcrumb a:hover {
  color: #A52266;
}

.media {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
}

.cont_video iframe {
  width: 100%;
}

.media iframe, .media object, .media embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.desplegado + .btn-more .show {
  display: none !important;
}
.desplegado + .btn-more .hide {
  display: inline-block !important;
}

.row {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row article {
  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;
  margin-bottom: 20px;
}
.row article .card {
  -webkit-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.slide-3-m .swiper-container {
  padding: 15px 0 !important;
}

.wrap-car {
  position: relative;
}
.wrap-car .swiper-5 {
  margin: 0 50px;
  position: initial;
}
@media (max-width: 425px) {
  .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;
}
.wrap-car .swiper-5 .swiper-button-prev, .wrap-car .swiper-5 .swiper-button-next {
  top: calc(50% - 35px);
}

.swiper-container {
  padding: 24px 0;
}
@media (max-width: 425px) {
  .swiper-container {
    padding: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .swiper-container {
    padding: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .swiper-container {
    padding: 0 !important;
  }
}

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

.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%;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}

.swiper-button-next, .swiper-button-prev {
  outline: none;
}

body.avante.articulo .enc-main .tit {
  text-align: center;
  color: #03ffda;
}
body.avante.articulo .descarga {
  margin: 0 auto;
  display: table;
  text-align: center;
}
body.avante.articulo .descarga li {
  display: inline-block;
  margin: 5px;
  color: #7ebfb6;
  background-color: #cafbf4;
  border: 1px solid #cafbf4;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 3rem;
  letter-spacing: 1px;
  transition: 0.3s all ease;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  padding: 12px 40px;
}
body.avante.articulo .descarga li a {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #05052b;
}
body.avante.articulo .descarga li.link-descarga {
  color: #6969bd;
  background-color: #03ffda;
  border: 1px solid #03ffda;
}

body.avante .dest-full.dest-media .media {
  margin-top: 0;
}
body.avante .azul-black, body.avante .header.sticky, body.avante .footer, body.avante .menu-responsive, body.avante .header, body.avante #return-to-top {
  background: #05052b !important;
}
body.avante .header {
  border-bottom: 0 solid rgba(255, 255, 255, 0.2) !important;
  position: relative;
}
body.avante .menu-responsive {
  border-bottom: 0 solid rgba(255, 255, 255, 0.5);
}
body.avante .dest-full {
  padding-top: 0;
}
body.avante .arts .auxi .cont-txt .cont-btn .btn-main {
  color: #05052b;
  background-color: #03ffda;
  border: 1px solid #03ffda;
}
body.avante .events .row .cont-txt {
  background-color: #FFFFFF;
}
body.avante .events .row .cont-txt .txt .autor {
  font-size: 1.4rem;
  color: #05052b;
  padding-bottom: 30px;
}
body.avante .events .row .cont-txt .txt .pref {
  font-size: 0.9rem;
  color: #666666;
}
body.avante .arts {
  padding: 25px 0;
}
body.avante .cont-tit .tit {
  color: #05052b;
}
body.avante .cont-tit .tit:after {
  background-color: #03ffda;
}
body.avante:before {
  background-color: rgba(255, 255, 255, 0);
}
body.avante .cont-tit {
  max-width: 900px;
  margin: 0 auto;
  width: 95%;
}
body.avante .cont-tit .content p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #666666;
}
@media (max-width: 425px) {
  body.avante .cont-tit .content p {
    font-size: 0.9rem !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.avante .cont-tit .content p {
    font-size: 0.9rem !important;
  }
}
body.avante .events .row .col > .img-wrap:before {
  background-color: rgba(0, 0, 0, 0);
}
body.avante .enc-art {
  padding-top: 0;
}
body.avante .enc-art .enc-main {
  padding-top: 30px;
  padding-bottom: 20px;
  background: #05052b;
}
body.avante .media {
  margin: 0 0 30px;
}
body.avante .header .main-navbar .cont-navbar .cont-links li > a {
  font-size: 0.8rem;
  padding: 10px;
}
body.avante .header .main-navbar .cont-navbar .cont-links li:hover > a {
  color: #03FFDA;
}
body.avante .box-logos img {
  width: auto;
  margin: auto;
}

.home.finalista .finalista-logo {
  max-width: 340px;
  width: 100%;
  display: table;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .home.finalista .finalista-logo {
    max-width: 250px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .finalista-logo {
    max-width: 250px !important;
  }
}
@media (max-width: 425px) {
  .home.finalista .arts-participante {
    padding: 0 0 60px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .arts-participante {
    padding: 0 0 60px !important;
  }
}
.home.finalista .arts-participante .reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 425px) {
  .home.finalista .arts-participante .reverse {
    display: block !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .arts-participante .reverse {
    display: block !important;
  }
}
.home.finalista .arts-participante .reverse .box-txt {
  margin-left: 15px;
}
@media (max-width: 425px) {
  .home.finalista .arts-participante .reverse .box-txt {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .arts-participante .reverse .box-txt {
    margin-left: 0;
  }
}
.home.finalista .arts-participante .reverse .box-txt .btn-main-dos {
  float: right;
}
.home.finalista .arts-participante .reverse .box-txt p.epig, .home.finalista .arts-participante .reverse .box-txt h2.tit, .home.finalista .arts-participante .reverse .box-txt .content {
  text-align: right;
}
@media (max-width: 425px) {
  .home.finalista .arts-participante .reverse .box-txt p.epig, .home.finalista .arts-participante .reverse .box-txt h2.tit, .home.finalista .arts-participante .reverse .box-txt .content {
    text-align: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .arts-participante .reverse .box-txt p.epig, .home.finalista .arts-participante .reverse .box-txt h2.tit, .home.finalista .arts-participante .reverse .box-txt .content {
    text-align: left;
  }
}
.home.finalista .arts-participante .direction {
  -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: 425px) {
  .home.finalista .arts-participante .direction {
    display: block !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .arts-participante .direction {
    display: block !important;
  }
}
.home.finalista .arts-participante .direction .box-txt {
  margin-right: 15px;
}
.home.finalista .arts-participante .direction .box-txt p.epig, .home.finalista .arts-participante .direction .box-txt h2.tit, .home.finalista .arts-participante .direction .box-txt .content {
  text-align: left;
}
.home.finalista .arts-participante .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.home.finalista .arts-participante .auxi .box-txt {
  -webkit-flex: 0 1 45%;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}
@media (max-width: 425px) {
  .home.finalista .arts-participante .auxi .box-txt {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .arts-participante .auxi .box-txt {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home.finalista .arts-participante .auxi .box-txt {
    -webkit-flex: 0 1 50%;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
.home.finalista .arts-participante .auxi .box-txt p.epig {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 5rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 900;
}
@media (max-width: 425px) {
  .home.finalista .arts-participante .auxi .box-txt p.epig {
    font-size: 3rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .arts-participante .auxi .box-txt p.epig {
    font-size: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home.finalista .arts-participante .auxi .box-txt p.epig {
    font-size: 3.75rem;
  }
}
.home.finalista .arts-participante .auxi .box-txt h2.tit {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 2.5rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .home.finalista .arts-participante .auxi .box-txt h2.tit {
    font-size: 2.1875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .arts-participante .auxi .box-txt h2.tit {
    font-size: 2.1875rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home.finalista .arts-participante .auxi .box-txt h2.tit {
    font-size: 2.1875rem;
  }
}
.home.finalista .arts-participante .auxi .box-txt .content {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.25rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  line-height: 130%;
}
.home.finalista .arts-participante .auxi .media-img {
  -webkit-flex: 0 1 55%;
  -ms-flex: 0 1 55%;
  flex: 0 1 55%;
}
@media (max-width: 425px) {
  .home.finalista .arts-participante .auxi .media-img {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.finalista .arts-participante .auxi .media-img {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home.finalista .arts-participante .auxi .media-img {
    -webkit-flex: 0 1 50%;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}

@media (max-width: 425px) {
  .animated {
    -webkit-animation-duration: 0s !important;
    animation-duration: 0s !important;
    opacity: 1 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .animated {
    -webkit-animation-duration: 0s !important;
    animation-duration: 0s !important;
    opacity: 1 !important;
  }
}

.pre-loading .header.int {
  position: relative !important;
}

body:not(.home) .header {
  position: relative;
  background: #004AAD;
  top: 0;
  -webkit-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
  padding: 10px 0;
}
body:not(.home) .header.sticky {
  position: fixed;
  border: none;
  top: 0;
  padding: 10px 0;
}

.header {
  transition: 0.2s all ease;
  position: fixed;
  z-index: 1000;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
}
.header .header__logo {
  transition: 0.3s all ease;
  -webkit-flex: 0 1 300px;
  -ms-flex: 0 1 300px;
  flex: 0 1 300px;
}
.header.int {
  padding: 10px 0;
  top: 0;
}
.header.sticky, .header.int {
  position: fixed;
  background: #112646;
  transition: 0.2s all ease;
  -webkit-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
  top: 0;
}
.header.sticky .auxi, .header.int .auxi {
  padding: 15px 0;
}
.header.sticky .auxi .header__logo, .header.int .auxi .header__logo {
  -webkit-flex: 0 1 250px;
  -ms-flex: 0 1 250px;
  flex: 0 1 250px;
}
@media (max-width: 425px) {
  .header.sticky, .header.int {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header.sticky, .header.int {
    padding: 0;
  }
}
@media (max-width: 425px) {
  .header.sticky .menu-responsive, .header.int .menu-responsive {
    padding: 15px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header.sticky .menu-responsive, .header.int .menu-responsive {
    padding: 15px 20px;
  }
}
@media (max-width: 425px) {
  .header.sticky .menu-responsive .cont-logo img, .header.int .menu-responsive .cont-logo img {
    width: 128px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header.sticky .menu-responsive .cont-logo img, .header.int .menu-responsive .cont-logo img {
    width: 128px;
  }
}
.header .btn-main {
  padding: 18px 60px 18px 40px;
  font-size: 1rem !important;
  color: #112646 !important;
  background-position: 86% 50% !important;
  background-size: 18px !important;
}
.header .btn-main:hover {
  color: #ffffff !important;
}

.auxi.desktop {
  padding: 20px 0;
  transition: 0.3s all ease;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -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;
}

.cont-navbar .cont-links {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 20px;
}
.cont-navbar .cont-links li {
  padding: 5px 10px;
  border: 1px solid transparent;
}
.cont-navbar .cont-links li a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  color: #FFF;
  font-size: 18px;
  line-height: normal;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  transition: 0.3s all ease;
  border: 1px solid transparent;
}
.cont-navbar .cont-links li:hover {
  color: #fff;
  background: #00BBAE;
  border: 1px solid #00BBAE;
  border-radius: 50px;
  transition: 0.3s all ease;
}

.menu-responsive {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 15px 20px;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
}
.menu-responsive .cont-logo {
  order: 1;
  flex: 1 1 auto;
}
.menu-responsive .cont-logo img {
  width: 160px;
  max-width: 100%;
  height: auto;
}
.menu-responsive .btn-main {
  order: 2;
  position: relative;
  z-index: 1100;
  padding: 10px 40px 10px 20px;
  font-size: 11px !important;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-responsive .menu-icon {
  order: 3;
  margin-left: auto;
  z-index: 1200;
  position: relative;
  padding: 10px 0 10px 10px;
  flex-shrink: 0;
}
.menu-responsive .menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #153052;
  z-index: 1000;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
}
.menu-responsive .menu ul {
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 300px;
}
.menu-responsive .menu ul li {
  margin: 0.8rem 0;
}
.menu-responsive .menu ul li a {
  display: block;
  padding: 0.6rem;
  font-size: 1.125rem;
  text-decoration: none;
  color: #ffffff;
  text-align: left;
}
.menu-responsive .cont-search {
  margin-top: 20px;
  position: relative;
  width: 100%;
  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;
}
.menu-responsive .cont-search input {
  width: 100%;
  padding: 12px 15px 12px;
  position: relative;
  font-size: 0.8125rem;
  background-color: #ffffff;
}
.menu-responsive .cont-search button {
  position: relative;
  background-color: #004AAD;
  padding: 8px;
  padding-left: 12px;
}
.menu-responsive .cont-search button img {
  width: 19px;
}
.menu-responsive .cont-logo {
  display: inline-block;
  position: relative;
}
.menu-responsive .cont-logo img {
  transition: 0.2s all ease;
  width: 296px;
}
@media (max-width: 425px) {
  .menu-responsive .cont-logo img {
    width: 168px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menu-responsive .cont-logo img {
    width: 168px;
  }
}
.menu-responsive .search-cont {
  margin-left: 0;
  width: 35px;
  height: 54px;
}
.menu-responsive .search-wrapper {
  margin: 0 auto;
  left: auto;
  right: auto !important;
  z-index: 10;
  transform: translate(-4%, -50%) !important;
}
.menu-responsive .search-wrapper.active {
  height: 54px;
}
.menu-responsive .search-wrapper.active .input-holder {
  top: 20%;
  width: 285px !important;
}
.menu-responsive .search-wrapper.active:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 105%;
  background-color: #ffffff;
}
.menu-responsive .search-wrapper .close {
  top: 33% !important;
}
.menu-responsive .menu {
  clear: both;
  max-height: 0;
  width: 100%;
  transition: max-height 0.3s ease-in-out;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.menu-responsive .menu ul {
  padding: 0 25px;
  max-width: 300px;
  margin: 0 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-responsive .menu ul {
    margin: 0;
  }
}
.menu-responsive .menu li {
  position: relative;
  float: none;
}
.menu-responsive .menu li a {
  display: block;
  color: #ffffff;
  padding: 0;
  text-decoration: none;
  padding: 10px;
  font-size: 1.125rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}
.menu-responsive .menu .menu-sec-m {
  padding-top: 0;
}
.menu-responsive .cont-redes {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.menu-responsive .cont-redes img {
  width: 20px;
}
.menu-responsive .status-bar li {
  padding: 0 10px;
  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;
}
.menu-responsive .status-bar li .cont-txt {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.menu-responsive .status-bar li .img-wrap {
  margin-right: 4px;
}
.menu-responsive .status-bar li .img-wrap img {
  width: 27px;
}
.menu-responsive .status-bar li .cont-txt p {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.menu-responsive .status-bar li .cont-txt .tipo {
  color: #f4f4f4;
  margin-right: 8px;
}
.menu-responsive .status-bar li .cont-txt .dato-prim {
  color: #ffffff;
  margin-right: 8px;
}
.menu-responsive .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 25px 0;
  position: relative;
  user-select: none;
}
.menu-responsive .menu-icon .navicon {
  background: #ffffff;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 28px;
}
.menu-responsive .menu-icon .navicon:before, .menu-responsive .menu-icon .navicon:after {
  background: #ffffff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.menu-responsive .menu-icon .navicon:before {
  top: 7px;
  width: 20px;
}
.menu-responsive .menu-icon .navicon:after {
  top: -7px;
  width: 10px;
}
.menu-responsive .menu-btn {
  display: none;
}
.menu-responsive .menu-btn:checked ~ .menu {
  max-height: 90vh;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
  top: 0;
  width: 20px;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon:not(.steps) .navicon:before {
  top: 0;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon:not(.steps) .navicon:after {
  top: 0;
}
.menu-responsive .accordionItemContent {
  border-bottom: 1px solid #f4f4f4;
}
.menu-responsive .accordionItemContent li a {
  padding: 10px 20px;
  text-transform: none;
}
.menu-responsive .accordionItemHeading {
  position: absolute;
  padding: 12px;
  display: block;
  width: auto;
  right: 0;
  top: 0;
}
.menu-responsive .accordionItemHeading img {
  width: 13px;
  transition: 0.2s all ease;
}
.menu-responsive .accordionItemHeading .hide {
  display: none !important;
}
.menu-responsive .accordionItemHeading .show {
  display: block !important;
}
.menu-responsive .open .main-link {
  background-color: #f4f4f4;
  transition: 0.2s all ease;
}
.menu-responsive .open .accordionItemHeading img {
  transform: rotate(180deg);
}
.menu-responsive .open .accordionItemHeading .hide {
  display: block !important;
}
.menu-responsive .open .accordionItemHeading .show {
  display: none !important;
}
.menu-responsive .open .accordionItemContent {
  width: 100%;
  display: block;
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  -o-transition: -o-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  box-sizing: border-box;
}
.menu-responsive .close .accordionItemContent {
  height: 0px;
  transition: height 1s ease-out;
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  display: block;
  padding: 0;
}

.header {
  position: relative;
  top: 0;
}
@media (max-width: 425px) {
  .header {
    top: 0;
    position: relative;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header {
    top: 0;
    position: relative;
  }
}

.main {
  padding-top: 0;
}
.main .dest-main {
  padding: 0 30px;
  position: relative;
}
@media (max-width: 425px) {
  .main .dest-main {
    padding: 0 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main {
    padding: 0 20px;
  }
}
.main .dest-main .auxi {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: 0 auto;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -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: 425px) {
  .main .dest-main .auxi {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main .auxi {
    display: block;
  }
}
.main .dest-main .auxi .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: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 1 55%;
  -ms-flex: 1 1 55%;
  flex: 1 1 55%;
}
@media (max-width: 425px) {
  .main .dest-main .auxi .cont {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main .auxi .cont {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main .dest-main .auxi .cont {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin: 50px 0;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .main .dest-main .auxi .cont {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin: 30px 0;
  }
}
.main .dest-main .auxi .cont .card__title {
  max-width: 100%;
  margin-bottom: 10px;
  font-size: 45px;
  line-height: 104.5%;
  text-align: center;
  color: #ffffff;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .main .dest-main .auxi .cont .card__title {
    font-size: 45px;
    line-height: 110%;
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main .auxi .cont .card__title {
    font-size: 45px;
    line-height: 110%;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main .dest-main .auxi .cont .card__title {
    font-size: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .main .dest-main .auxi .cont .card__title {
    font-size: 60px;
  }
}
@media (min-width: 1400px) {
  .main .dest-main .auxi .cont .card__title {
    font-size: 80px;
  }
}
.main .dest-main .auxi .cont .card__title span {
  font-family: "Mynerve", sans-serif;
  font-weight: 400;
}
.main .dest-main .auxi .cont .baj {
  color: #FFF;
  font-size: 34px;
  line-height: 150%;
  max-width: 100%;
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
}
@media (max-width: 425px) {
  .main .dest-main .auxi .cont .baj {
    max-width: 100%;
    font-size: 20px;
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main .auxi .cont .baj {
    max-width: 100%;
    font-size: 20px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main .dest-main .auxi .cont .baj {
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .main .dest-main .auxi .cont .baj {
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  .main .dest-main .auxi .cont .cont-btn .btn-main {
    width: 100%;
    margin-bottom: 10px;
    padding: 18px 50px 18px 20px;
    background-position: 90% 50% !important;
    background-size: 16px !important;
    font-size: 0.875rem !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main .auxi .cont .cont-btn .btn-main {
    width: 100%;
    margin-bottom: 10px;
    padding: 18px 50px 18px 20px;
    background-position: 90% 50% !important;
    background-size: 16px !important;
    font-size: 0.875rem !important;
  }
}
@media (max-width: 425px) {
  .main .dest-main .auxi .cont .btn-main.outline {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main .auxi .cont .btn-main.outline {
    margin-left: 0;
  }
}
.main .dest-main .auxi .card__img {
  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;
  max-width: 520px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .main .dest-main .auxi .card__img {
    max-width: 420px;
  }
}
.main .dest-main .auxi .card__img::before {
  content: "";
  border-radius: 20px;
  background: linear-gradient(237deg, rgba(147, 0, 28, 0) 23.83%, #930074 105.5%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.main .dest-main .auxi .card__img img {
  border-radius: 20px;
}
.main .dest-main .auxi .card__img .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  margin: 0 auto;
  text-align: center;
  border-radius: 0;
}
.main .dest-main .img-wrap {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.main .dest-main .img-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  background: #2C437B;
  background: -webkit-linear-gradient(180deg, rgba(44, 67, 123, 0.45) 30%, rgba(13, 33, 74, 0.86) 100%);
  background: -moz-linear-gradient(180deg, rgba(44, 67, 123, 0.45) 30%, rgba(13, 33, 74, 0.86) 100%);
  background: linear-gradient(180deg, rgba(44, 67, 123, 0.45) 30%, rgba(13, 33, 74, 0.86) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2C437B", endColorstr="#0D214A", GradientType=0);
}
.main .dest-main picture img {
  width: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
@media (max-width: 425px) {
  .main .dest-main picture img {
    height: 600px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main picture img {
    height: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main .dest-main picture img {
    height: 600px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .main .dest-main picture img {
    height: 700px;
  }
}
.main .dest-main .box-icons {
  padding: 20px;
  background-color: #153052;
  border-radius: 20px;
  gap: 40px;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  max-width: 1100px;
  margin: 0 auto;
  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: 425px) {
  .main .dest-main .box-icons {
    gap: 20px;
    bottom: 20px;
    max-width: 85%;
    -webkit-box-orient: block-axis;
    -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) {
  .main .dest-main .box-icons {
    gap: 20px;
    bottom: 20px;
    max-width: 85%;
    -webkit-box-orient: block-axis;
    -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: 768px) and (max-width: 991px) {
  .main .dest-main .box-icons {
    bottom: 20px;
  }
}
.main .dest-main .box-icons__item {
  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;
}
.main .dest-main .box-icons__item img {
  width: 28px;
}
@media (max-width: 425px) {
  .main .dest-main .box-icons__item img {
    width: 24px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main .box-icons__item img {
    width: 24px;
  }
}
.main .dest-main .box-icons__txt {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.4;
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
}
@media (max-width: 425px) {
  .main .dest-main .box-icons__txt {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main .box-icons__txt {
    font-size: 0.875rem;
  }
}
.main .dest-main .box-icons__link {
  display: block;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.4;
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 425px) {
  .main .dest-main .box-icons__link {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main .dest-main .box-icons__link {
    font-size: 0.875rem;
  }
}
.main .dest-main .box-icons__link:hover {
  text-decoration: none;
}

.tematica {
  margin-bottom: -200px;
  position: relative;
  z-index: 80;
}
@media (max-width: 425px) {
  .tematica {
    margin-bottom: 10px;
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica {
    margin-bottom: 10px;
    padding: 20px 0;
  }
}
.tematica .auxi {
  top: -200px;
  bottom: -200px;
  position: relative;
}
@media (max-width: 425px) {
  .tematica .auxi {
    top: 10px;
    bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica .auxi {
    top: 10px;
    bottom: 10px;
  }
}
.tematica .block-head__title--big {
  font-family: "Titillium Web", sans-serif;
  font-weight: 800;
  font-size: 200px;
  font-style: normal;
  line-height: 80%;
  letter-spacing: 8px;
  text-fill-color: transparent;
  text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  -moz-text-fill-color: transparent;
  text-align: center;
}
@media (max-width: 425px) {
  .tematica .block-head__title--big {
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-stroke: 1px #272932;
    -webkit-text-stroke: 1px #272932;
    text-fill-color: #272932;
    -webkit-text-fill-color: #272932;
    -moz-text-fill-color: #272932;
    font-size: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica .block-head__title--big {
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-stroke: 1px #272932;
    -webkit-text-stroke: 1px #272932;
    text-fill-color: #272932;
    -webkit-text-fill-color: #272932;
    -moz-text-fill-color: #272932;
    -webkit-text-stroke: 1px #272932;
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tematica .block-head__title--big {
    font-size: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .tematica .block-head__title--big {
    font-size: 100px;
  }
}
.tematica .row {
  top: -15px;
  position: relative;
  margin-left: -40px;
}
@media (max-width: 425px) {
  .tematica .row {
    top: 0;
    margin-left: -15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica .row {
    top: 0;
    margin-left: -15px;
  }
}
.tematica .row .col {
  border-left-width: 40px;
}
@media (max-width: 425px) {
  .tematica .row .col {
    border-left-width: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica .row .col {
    border-left-width: 15px;
  }
}
.tematica .row .col .card__auxi {
  width: 100%;
}
@media (max-width: 425px) {
  .tematica .row .col .card__auxi {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica .row .col .card__auxi {
    width: 100%;
  }
}
.tematica .row .col .card__auxi .bg-uno::before {
  content: "";
  background: linear-gradient(180deg, rgba(147, 0, 116, 0) 0%, #930074 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 15px;
}
.tematica .row .col .card__auxi .bg-tres::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 186, 173, 0) 42.99%, #00BAAD 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 15px;
}
.tematica .row .col .card__auxi .bg-dos::before {
  content: "";
  background: linear-gradient(180deg, rgba(252, 211, 30, 0) 0%, #FCD31E 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 15px;
}
.tematica .row .col .card__auxi .bg-cuatro::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 74, 173, 0) 0%, #004AAD 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 15px;
}
.tematica .row .col .card__auxi .card__img {
  padding: 0;
  position: relative;
  margin-bottom: 20px;
}
.tematica .row .col .card__auxi .card__img img {
  border-radius: 15px;
  width: 100%;
}
@media (max-width: 425px) {
  .tematica .row .col .card__auxi .card__img img {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica .row .col .card__auxi .card__img img {
    width: 100%;
  }
}
.tematica .row .col .card__auxi .card__img .card__title {
  width: 100%;
  text-align: center;
  z-index: 10;
  position: absolute;
  bottom: 0;
  padding: 25px;
  color: #FFF;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 30px;
  font-style: normal;
  line-height: normal;
  line-height: 120%;
}
@media (max-width: 425px) {
  .tematica .row .col .card__auxi .card__img .card__title {
    font-size: 22px;
    padding: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica .row .col .card__auxi .card__img .card__title {
    font-size: 22px;
    padding: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tematica .row .col .card__auxi .card__img .card__title {
    font-size: 30px;
    padding: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .tematica .row .col .card__auxi .card__img .card__title {
    font-size: 30px;
    padding: 15px;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .tematica .row .col .card__auxi .card__img .card__title {
    font-size: 30px;
  }
}
.tematica .row .col .card__auxi .card__content .card__title {
  color: #fff;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-size: 32px;
  font-style: normal;
  line-height: normal;
  margin-bottom: 15px;
}
@media (max-width: 425px) {
  .tematica .row .col .card__auxi .card__content .card__title {
    font-size: 26px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica .row .col .card__auxi .card__content .card__title {
    font-size: 26px;
  }
}
.tematica .row .col .card__auxi .card__content .card__description {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  line-height: normal;
}
@media (max-width: 425px) {
  .tematica .row .col .card__auxi .card__content .card__description {
    font-size: 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .tematica .row .col .card__auxi .card__content .card__description {
    font-size: 18px;
  }
}
.tematica--dos {
  margin-bottom: 40px;
  margin-top: 40px;
}
.tematica--dos .auxi {
  top: 0;
  bottom: 0;
  position: relative;
}
.queremos {
  position: relative;
  z-index: 20;
  padding: 70px 0;
}
@media (max-width: 425px) {
  .queremos {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .queremos {
    padding: 20px 0;
  }
}
.queremos .auxi .block-head .block-head__title {
  color: #272932;
  font-size: 50px;
  font-style: normal;
  line-height: normal;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 425px) {
  .queremos .auxi .block-head .block-head__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .queremos .auxi .block-head .block-head__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
.queremos .auxi .block-head .card__description {
  max-width: 855px;
  margin: 0 auto;
  text-align: center;
  color: #272932;
  text-align: center;
  font-size: 22px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  line-height: 200%;
}
@media (max-width: 425px) {
  .queremos .auxi .block-head .card__description {
    font-size: 22px;
    line-height: 150%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .queremos .auxi .block-head .card__description {
    font-size: 22px;
    line-height: 150%;
  }
}
.queremos .auxi .block-head .card__description .uno {
  color: #00BAAD;
}
.queremos .auxi .block-head .card__description .dos {
  color: #930074;
}

.hacemos {
  padding: 130px 0 70px;
}
@media (max-width: 425px) {
  .hacemos {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hacemos {
    padding: 20px 0;
  }
}
.hacemos .auxi .block-head span {
  color: #272932;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  margin: 0 auto 20px;
  display: table;
}
.hacemos .auxi .block-head .block-head__title {
  color: #272932;
  font-size: 70px;
  font-style: normal;
  line-height: normal;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 425px) {
  .hacemos .auxi .block-head .block-head__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hacemos .auxi .block-head .block-head__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
.hacemos .auxi .row {
  margin-left: -70px;
}
@media (max-width: 425px) {
  .hacemos .auxi .row {
    margin-left: -15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hacemos .auxi .row {
    margin-left: -15px;
  }
}
.hacemos .auxi .row .col {
  border-left-width: 70px;
}
@media (max-width: 425px) {
  .hacemos .auxi .row .col {
    border-left-width: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hacemos .auxi .row .col {
    border-left-width: 15px;
  }
}
.hacemos .auxi .row .card {
  margin-bottom: 70px;
}
@media (max-width: 425px) {
  .hacemos .auxi .row .card {
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hacemos .auxi .row .card {
    margin-bottom: 15px;
  }
}
.hacemos .auxi .row .card .card__auxi {
  width: 100%;
  padding: 40px;
  border-radius: 40px;
  background: linear-gradient(163deg, rgba(12, 21, 62, 0.48) -33.57%, rgba(255, 255, 255, 0) 88.46%);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 425px) {
  .hacemos .auxi .row .card .card__auxi {
    padding: 15px;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .hacemos .auxi .row .card .card__auxi {
    padding: 15px;
    width: 100%;
  }
}
.hacemos .auxi .row .card .card__auxi .card__img {
  margin: 0 auto 39px;
}
.hacemos .auxi .row .card .card__auxi .card__img img {
  margin: 0 auto;
}
.hacemos .auxi .row .card .card__auxi .card__content .card__title {
  color: #272932;
  text-align: center;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  margin: 0 auto;
}
.hacemos .auxi .row .card .card__auxi .card__content .card__description {
  color: #272932;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 158.5%;
}
.hacemos .auxi .row .card .bg-uno {
  background: linear-gradient(163deg, #930074 -33.57%, rgba(255, 255, 255, 0) 88.46%);
}
.hacemos .auxi .row .card .bg-dos {
  background: linear-gradient(163deg, #FCD31E -33.57%, rgba(255, 255, 255, 0) 88.46%);
}
.hacemos .auxi .row .card .bg-tres {
  background: linear-gradient(163deg, #00BAAD -33.57%, rgba(255, 255, 255, 0) 88.46%);
}

.full {
  position: relative;
}
.full picture {
  margin: 0 auto;
  width: 100%;
}
.full picture img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.full .auxi {
  padding: 40px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 0;
}
@media (max-width: 425px) {
  .full .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .full .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .full .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .full .auxi {
    padding: 0 15px;
  }
}
.full .auxi .box-full {
  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-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
  gap: 140px;
  max-width: 1000px;
}
@media (max-width: 425px) {
  .full .auxi .box-full {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .full .auxi .box-full {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .full .auxi .box-full {
    gap: 50px;
    padding: 0 15px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .full .auxi .box-full {
    gap: 50px;
  }
}
.full .auxi .box-full .fecha {
  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;
}
.full .auxi .box-full .fecha span {
  font-family: "Titillium Web", sans-serif;
  font-weight: 800;
  font-size: 200px;
  font-style: normal;
  line-height: 85%;
  text-fill-color: transparent;
  text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  -moz-text-fill-color: transparent;
}
@media (max-width: 425px) {
  .full .auxi .box-full .fecha span {
    font-size: 100px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .full .auxi .box-full .fecha span {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .full .auxi .box-full .fecha span {
    font-size: 100px;
  }
}
.full .auxi .box-full .fecha span + span {
  font-size: 48px;
}
@media (max-width: 425px) {
  .full .auxi .box-full .fecha span + span {
    font-size: 38px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .full .auxi .box-full .fecha span + span {
    font-size: 38px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .full .auxi .box-full .fecha span + span {
    font-size: 38px;
  }
}
.full .auxi .box-full .box-full__content {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.full .auxi .box-full .box-full__content .box-full__description {
  color: #FFF;
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-style: normal;
  line-height: 200.5%;
}
@media (max-width: 425px) {
  .full .auxi .box-full .box-full__content .box-full__description {
    font-size: 22px;
    line-height: 140%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .full .auxi .box-full .box-full__content .box-full__description {
    font-size: 22px;
    line-height: 140%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .full .auxi .box-full .box-full__content .box-full__description {
    font-size: 22px;
    line-height: 140%;
  }
}
.full .auxi .box-full .box-full__content .box-full__description a {
  color: #FFF;
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
}
.full .auxi .box-full .box-full__content a.btn {
  border-radius: 20px;
  border: 1px solid #FFF;
  color: #FFF;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
  line-height: 200.5%;
  padding: 10px 20px;
}

.reverse .box-full {
  flex-direction: row-reverse !important;
  float: right;
}
@media (max-width: 425px) {
  .reverse .box-full {
    flex-direction: column !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .reverse .box-full {
    flex-direction: column !important;
  }
}
.reverse .box-full .box-full__content {
  text-align: right;
  align-items: flex-end !important;
}

#footer {
  background: #112646;
  padding: 40px 0 20px;
}
#footer .footer__logo {
  width: 245px;
}

.section_dos {
  padding-top: 100px;
}

section.agenda {
  background: #153052;
  padding-top: 100px;
}

.agenda.list-tabs .auxi .block-head .block-head__title--small {
  color: #ffffff;
  font-size: 50px;
  line-height: normal;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  margin: 0 auto 70px;
  text-align: center;
}
@media (max-width: 425px) {
  .agenda.list-tabs .auxi .block-head .block-head__title--small {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .agenda.list-tabs .auxi .block-head .block-head__title--small {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.agenda.list-tabs .auxi .tabs-cont-v .content {
  background-color: #153052;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row {
  margin-left: -30px;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article {
  border-left-width: 30px;
  margin-bottom: 30px;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont {
  padding: 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;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 30px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(178, 234, 230) 100%);
  width: 100%;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .txt .relator {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  line-height: normal;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  float: left;
  clear: both;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .txt .titular {
  color: #153052;
  font-size: 23px;
  font-style: normal;
  line-height: normal;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  float: left;
  clear: both;
  line-height: 120%;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont ul {
  margin-left: 0;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont ul li {
  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-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
  gap: 10px;
  color: #153052;
  font-size: 14px;
  font-style: normal;
  line-height: 140%;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  margin: 0;
  margin-bottom: 10px;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .cont-btn {
  padding: 0;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .cont-btn .btn-main {
  border-radius: 40px;
  background: #FCD31E;
  color: #000;
  font-size: 14px;
  font-style: normal;
  line-height: 200.5%;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  width: 100%;
  margin-bottom: 10px;
}
@media (max-width: 425px) {
  .agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .cont-btn .btn-main {
    padding: 5px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .cont-btn .btn-main {
    padding: 5px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .cont-btn .btn-main {
    padding: 5px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .cont-btn .btn-main {
    padding: 5px 10px;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .cont-btn .btn-main {
    padding: 5px 10px;
  }
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .cont-btn .btn-main--online {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 10px;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont .cont-btn .btn-main--descarga {
  margin-bottom: 0;
  background: none;
  border: 0 solid #930074;
  color: #000;
  font-size: 13px;
  font-style: normal;
  text-decoration-line: underline;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores {
  padding: 0 0 100px;
  gap: 20px;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  position: relative;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head {
  padding: 0;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card {
  width: fit-content;
  padding: 0;
  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-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
  gap: 10px;
  border-radius: 55px;
  padding: 6px 14px;
  margin: 20px 10px 10px 20px;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card img {
  padding: 0;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card .conte {
  padding: 0;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card .conte__card {
  padding: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card .conte__card .area {
  color: #fff;
  font-size: 12px;
  line-height: normal;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card .conte__card .concepto {
  color: #fff;
  font-size: 13px;
  line-height: normal;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card--bguno {
  background: #930074;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card--bgtres {
  background: #00BAAD;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card--bgcuatro {
  background: #004AAD;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card--bgdos {
  background: #FCD31E;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card--bgdos .conte__card .area, .agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .head__card--bgdos .conte__card .concepto {
  color: #000;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .txt, .agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores ul, .agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .cont-btn {
  padding: 0 20px;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .txt .relator {
  color: #fff;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .cont-btn {
  padding: 0 20px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.agenda.list-tabs .auxi .tabs-cont-v .content .cont-txt .row article .cont__colores .cont-btn .btn-main:hover {
  color: #fff;
  background: #00BBAE;
  border: 1px solid #00BBAE;
}

.banner {
  margin: 70px 0 0 0;
  z-index: 99;
  position: relative;
}

.faq .auxi {
  max-width: 800px;
  margin: 0 auto;
}
.faq--dos {
  padding-top: 70px;
  padding-bottom: 70px;
  background-repeat: no-repeat;
}

.menujq > ul {
  margin-left: 0 !important;
  list-style: none;
  padding-left: 0;
}
.menujq > ul > li {
  list-style: none !important;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
  -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 > ul > li > a {
  position: relative;
  display: block;
  margin: 0;
  padding: 25px 50px 25px 30px;
  background-color: #930074;
  text-decoration: none;
}
@media (max-width: 426px) {
  .menujq > ul > li > a {
    padding: 25px 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq > ul > li > a {
    padding: 25px 30px;
  }
}
.menujq > ul > li > a .subtit, .menujq > ul > li > a .baj {
  color: #fff;
  font-family: "Plus Jakarta", sans-serif;
  font-weight: 700;
  margin: 0;
}
.menujq > ul > li > a:after {
  content: "";
  position: absolute;
  right: 10px;
  margin-right: 10px;
  width: 21px;
  height: 21px;
  background-image: url("../../imag/v1/icon/chevron_down_rounded_w.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 > ul > li > a:after {
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq > ul > li > a:after {
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
  }
}
.menujq > ul > li > a.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-decoration: none;
}
.menujq > ul > li > a.active .subtit, .menujq > ul > li > a.active .baj {
  color: #000;
}
.menujq > ul > li > a.active:after {
  transform: rotate(180deg);
}
.menujq > ul > li:first-child > ul {
  display: block;
}

.desplegable ul {
  list-style: none;
  background-color: #ffffff;
  padding: 20px;
}
.desplegable ul p {
  line-height: 1.4;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #112646;
}

.block-head h2, .block-head .block-head {
  color: #fff;
  font-size: 50px;
  line-height: normal;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  margin: 0 auto 70px;
  text-align: center;
}
@media (max-width: 425px) {
  .block-head h2, .block-head .block-head {
    margin: 0 auto 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .block-head h2, .block-head .block-head {
    margin: 0 auto 10px;
  }
}
.block-head h2__title--preguntas, .block-head .block-head__title--preguntas {
  color: #fff;
  margin-bottom: 40px;
}
.block-head h2__title span, .block-head .block-head__title span {
  font-family: "Mynerve", sans-serif;
  font-weight: 400;
}
.block-head ul li {
  list-style: none !important;
}

.footer__pre {
  background: #112646;
  padding: 40px 0 20px;
}
.footer__pre .auspicio {
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -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;
}
.footer__pre .auspicio li {
  text-align: center;
}
@media (max-width: 425px) {
  .footer__pre .auspicio li {
    -webkit-flex: 0 1 43%;
    -ms-flex: 0 1 43%;
    flex: 0 1 43%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__pre .auspicio li {
    -webkit-flex: 0 1 43%;
    -ms-flex: 0 1 43%;
    flex: 0 1 43%;
  }
}
.footer__pre .auspicio li img {
  max-height: 150px;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .footer__pre .auspicio li img {
    max-height: 100px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer__pre .auspicio li img {
    max-height: 100px;
  }
}

.footer__pre-up {
  background: #fff;
  padding: 70px 0 20px;
}
.footer__pre-up .auspicio {
  gap: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -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: 425px) {
  .footer__pre-up .auspicio {
    -webkit-box-orient: block-axis;
    -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__pre-up .auspicio {
    -webkit-box-orient: block-axis;
    -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__pre-up .block-head h2 {
  margin: 0 auto 40px;
  color: #112646;
}
.footer__pre-up .block-head h2 span {
  font-family: "Mynerve", sans-serif;
  font-weight: 400;
}
.footer__pre-up.box-mapa .footer__mapa {
  border-radius: 20px;
  box-shadow: 5px 3px 15px 5px rgba(0, 0, 0, 0.24);
  margin: 0 auto;
}

.header-int {
  display: flex;
  align-items: center;
  gap: 70px;
  background: #004AAD;
  padding: 15px 70px;
}

.header-elem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

.header-elem a:hover {
  color: #FCD31E;
}

.header-elem .menu-interior {
  display: flex;
  width: 630.5px;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.hero-speakers {
  display: flex;
  height: 300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(../../imag/v1/speaker/bg-s.jpg), lightgray 50%/cover no-repeat;
}

.hero-speakers h1 {
  color: #FFF;
  text-align: center;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 54px;
  font-style: normal;
  line-height: normal;
}

.cont-speakers {
  display: flex;
  padding: 70px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 425px) {
  .cont-speakers {
    padding: 70px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-speakers {
    padding: 70px 15px;
  }
}

.card-speaker {
  display: flex;
  padding: 40px;
  align-items: flex-start;
  gap: 60px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  max-width: 1070px;
  width: 100%;
}
.card-speaker .img-speaker {
  -webkit-flex: 1 0 180px;
  -ms-flex: 1 0 180px;
  flex: 1 0 180px;
}
.card-speaker .cont {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.card-speaker .cont h2 {
  color: #000;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  line-height: 200%;
  padding: 0 0 15px;
}
.card-speaker .cont p {
  color: #000;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  line-height: 200%;
  padding: 0 0 15px;
}
.card-speaker .cont .bajada-speaker {
  color: #666;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  line-height: 150%;
  padding: 0 0 15px;
}

@media only screen and (max-width: 768px) {
  .card-speaker {
    display: inline-flex;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.btn {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -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;
}
.btn__reserva {
  border-radius: 100px;
  background: #FCD31E;
  padding: 24px 50px;
  color: #480F3C;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 24px;
  font-style: normal;
  line-height: 104.5%;
}
.btn__reserva:hover {
  transition: 0.2s all ease;
}
@media (max-width: 425px) {
  .btn__reserva {
    width: 350px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn__reserva {
    width: 350px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .btn__reserva {
    width: 350px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .btn__reserva {
    width: 350px;
  }
}

.mapa {
  background: rgba(0, 186, 173, 0.09);
}
.mapa .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -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: 425px) {
  .mapa .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;
    padding: 40px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .mapa .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;
    padding: 40px 0;
  }
}
.mapa .auxi .card__img {
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}
.mapa .auxi .cont {
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}
@media (max-width: 425px) {
  .mapa .auxi .cont {
    padding-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .mapa .auxi .cont {
    padding-top: 20px;
  }
}
.mapa .auxi .cont .tit {
  color: #272932;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 50px;
  font-style: normal;
  line-height: normal;
  width: 75%;
  margin: 0 auto 20px;
  text-align: center;
}
.mapa .auxi .cont .bajada {
  color: #272932;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
  line-height: 160.65%;
  width: 75%;
  margin: 0 auto;
  text-align: center;
}
.mapa .auxi .cont .bajada strong {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}

.card-evento {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(178, 234, 230) 100%);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  color: #001b3a;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 0.3rem;
  width: 100%;
}

.card-header {
  margin-bottom: 1rem;
}
.card-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-header .card-empresa {
  font-size: 13px;
  color: #002855;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 500;
  font-family: "Titillium Web", sans-serif;
  border: 1px solid #8A97A8;
}
.card-header .card-logo {
  height: 32px;
  display: inline-block;
}
.card-header .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.card-header .card-body > * {
  width: 100%;
}

.card-title {
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  line-height: 120%;
  margin-bottom: 0.75rem;
  color: #153052;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}

.card-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: "Titillium Web", sans-serif;
  color: #153052 !important;
  font-weight: 400;
}

.card-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  margin-left: 0 !important;
}
.card-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-family: "Titillium Web", sans-serif;
  color: #153052 !important;
  font-weight: 700;
}
.card-info img {
  width: 16px;
  height: 16px;
}

.footer__pre {
  background: #fff;
  padding: 3rem 1rem;
  text-align: center;
}
.footer__pre .footer-logos {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__pre .footer-logos .logos-block {
  margin-bottom: 2.5rem;
}
.footer__pre .footer-logos .logos-block h4 {
  font-weight: 400;
  color: #999;
  margin-bottom: 1.5rem;
  font-size: 32px;
}
.footer__pre .footer-logos .logos-block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__pre .footer-logos .logos-block li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__pre .footer-logos .logos-block li img {
  height: auto;
  width: auto;
  max-width: none;
  max-height: none;
  display: block;
}
.footer__pre .footer-logos picture {
  display: block;
  text-align: center;
}
.footer__pre .footer-logos picture img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.taxport .taxlist {
  padding-top: 60px;
}
.taxport .taxlist .auxi {
  max-width: 1200px !important;
}
.taxport .taxlist .arts {
  padding: 30px 0;
}
@media (max-width: 425px) {
  .taxport .taxlist .arts {
    padding: 30px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .taxport .taxlist .arts {
    padding: 30px 15px;
  }
}
.taxport .taxlist .art-video .img-wrap {
  portada: relative;
}
.taxport .taxlist .art-video .img-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.7) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.taxport .taxlist .art-video .img-wrap .cont-play {
  z-index: 5;
  position: absolute;
}
.taxport .taxlist .cont-txt {
  padding: 25px;
}
.taxport .taxlist .row {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.taxport .taxlist article {
  padding-bottom: 20px;
}

.results .search-desp {
  margin-top: 50px;
  padding-left: 20px;
}
.results .search-desp .auxi {
  max-width: 900px !important;
}
.results .search-desp .auxi .search-criteria {
  margin-bottom: 10px;
}
.results .search-desp .auxi .search-criteria span {
  font-size: 1.25rem;
  color: #2d2d2d;
}
.results .search-desp .auxi .search-criteria .criterio {
  color: #fcef03;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
.results .search-desp .auxi .results-number {
  font-size: 0.875rem;
  color: #4e4e4e;
}
.results .arts {
  padding-top: 30px;
}
.results .arts .auxi {
  max-width: 900px !important;
}
.results .arts .auxi article {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f4f4f4;
}
.results .arts .auxi article .cont-txt {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  padding: 20px 30px;
}
.results .arts .auxi article .bajada {
  padding-right: 120px;
}
@media (max-width: 425px) {
  .results .arts .auxi article .bajada {
    padding-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .arts .auxi article .bajada {
    padding-right: 0;
  }
}

.port-gen .bloq-full-2 {
  padding-bottom: 0;
  padding-top: 0;
}

.sitemap {
  border-top: 1px solid #eeeeee;
}
.sitemap .content_sitemap {
  background-color: #ffffff;
  padding: 60px 0;
}
@media (max-width: 425px) {
  .sitemap .content_sitemap {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .content_sitemap {
    padding: 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .content_sitemap {
    padding: 40px 0;
  }
}
.sitemap .content_sitemap .auxi {
  max-width: 1000px;
}
.sitemap .cont_tit {
  margin: 80px 0;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -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: 425px) {
  .sitemap .cont_tit {
    margin: 40px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .cont_tit {
    margin: 40px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .cont_tit {
    margin: 40px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .sitemap .cont_tit {
    margin: 40px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1278px) {
  .sitemap .cont_tit {
    margin: 40px 20px;
  }
}
.sitemap .cont_tit .tit {
  font-size: 2.1875rem;
}
@media (max-width: 425px) {
  .sitemap .cont_tit .tit {
    font-size: 2rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .cont_tit .tit {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .cont_tit .tit {
    font-size: 2.3rem;
  }
}
.sitemap .cont_tit .baj {
  margin-top: 20px;
  margin-bottom: 10px;
}
.sitemap .cont_tit p {
  font-size: 0.875rem;
  color: #fcef03;
  line-height: 1.3;
}
@media (max-width: 425px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1278px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
.sitemap .lista_sitio .lista_seccion {
  margin-bottom: 30px;
}
@media (max-width: 425px) {
  .sitemap .lista_sitio .lista_seccion {
    margin-left: 0;
    margin-bottom: 10px;
    padding: 15px;
  }
}
.sitemap .lista_sitio .lista_seccion h2 {
  margin-bottom: 15px;
}
.sitemap .lista_sitio .lista_seccion h2 a {
  color: #A52266;
  font-size: 1.25rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
.sitemap .lista_sitio .lista_seccion h2 a:hover {
  color: #A52266;
  transition: 0.2s all ease;
}
.sitemap .lista_sitio .lista_seccion h3 {
  font-size: 0.9rem;
  margin-bottom: 15px;
  padding-left: 10px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
.sitemap .lista_sitio .lista_seccion h3 a {
  color: #A52266;
}
.sitemap .lista_sitio .lista_seccion h3 a:hover {
  color: #A52266;
  transition: 0.2s all ease;
}
.sitemap .lista_sitio .lista_seccion ul {
  margin-top: 25px;
  margin-left: 10px;
  border-left: 3px solid #f4f4f4;
}
.sitemap .lista_sitio .lista_seccion ul li {
  margin: 17px 0 17px 20px;
}
.sitemap .lista_sitio .lista_seccion ul li a {
  color: #808285;
  font-size: 0.8125rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}
.sitemap .lista_sitio .lista_seccion ul li a:hover {
  color: #A52266;
  transition: 0.2s all ease;
}

.construccion .cont-map {
  height: 100vh;
}
.construccion .cont-map img {
  width: 300px;
  margin: 0 auto 20px;
}
@media (max-width: 425px) {
  .construccion .cont-map img {
    width: 150px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .construccion .cont-map img {
    width: 150px;
  }
}

@media (max-width: 425px) {
  .error_404 .cont_msj {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error_404 .cont_msj {
    padding: 30px 0;
  }
}
.error_404 .voucher {
  max-width: 680px;
  margin: 0 auto;
  padding: 70px 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .error_404 .voucher {
    -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;
    padding: 30px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error_404 .voucher {
    -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;
    padding: 30px 20px;
  }
}
.error_404 .voucher .img-wrap {
  -webkit-flex: 0 1 189px;
  -ms-flex: 0 1 189px;
  flex: 0 1 189px;
}
@media (max-width: 425px) {
  .error_404 .voucher .img-wrap {
    -webkit-flex: 0 1 100px;
    -ms-flex: 0 1 100px;
    flex: 0 1 100px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error_404 .voucher .img-wrap {
    -webkit-flex: 0 1 100px;
    -ms-flex: 0 1 100px;
    flex: 0 1 100px;
  }
}
.error_404 .voucher .cont-txt {
  text-align: left;
  margin-left: 30px;
}
@media (max-width: 425px) {
  .error_404 .voucher .cont-txt {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error_404 .voucher .cont-txt {
    margin-left: 0;
  }
}
.error_404 .voucher .cont-txt .subtit {
  font-size: 1.875rem;
  text-transform: uppercase;
  padding-bottom: 15px;
  color: #fcef03;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .error_404 .voucher .cont-txt .subtit {
    font-size: 1.375rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error_404 .voucher .cont-txt .subtit {
    font-size: 1.375rem;
  }
}
.error_404 .voucher .cont-txt .baj {
  font-size: 1.125rem;
  color: #fcef03;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
.error_404 .voucher .cont-txt .pref {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #808285;
  padding-right: 60px;
}
@media (max-width: 425px) {
  .error_404 .voucher .cont-txt .pref {
    padding-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error_404 .voucher .cont-txt .pref {
    padding-right: 0;
  }
}

#copy_div {
  background: #ffffff !important;
  background-color: #ffffff !important;
  height: auto !important;
  padding: 12px 15px !important;
  width: auto !important;
  border-radius: 5px;
  color: #A52266 !important;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}

.social_port .title-cat {
  text-align: center;
  padding-bottom: 30px;
}
.social_port .title-cat .social_title {
  font-size: 48px;
  color: #A52266;
  line-height: 100%;
  letter-spacing: 2px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .social_port .title-cat .social_title {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .social_port .title-cat .social_title {
    font-size: 1.875rem;
  }
}
.social_port .tab-bar {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 25px;
  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: 425px) {
  .social_port .tab-bar {
    overflow-x: scroll;
    -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) {
  .social_port .tab-bar {
    overflow-x: scroll;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.social_port .btn-cont {
  width: auto !important;
}
@media (max-width: 425px) {
  .social_port .btn-cont {
    border: 0;
    -webkit-flex: 1 0 37%;
    -ms-flex: 1 0 37%;
    flex: 1 0 37%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .social_port .btn-cont {
    border: 0;
    -webkit-flex: 1 0 32%;
    -ms-flex: 1 0 32%;
    flex: 1 0 32%;
  }
}
.social_port .btn-cont .tablink2 {
  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-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.social_port .btn-cont .tablink2:before {
  content: "";
  position: relative;
  margin-right: 10px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f4f4f4;
}
@media (max-width: 425px) {
  .social_port .btn-cont .tablink2:before {
    background-size: 16px;
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .social_port .btn-cont .tablink2:before {
    background-size: 16px;
    width: 26px;
    height: 26px;
  }
}
.social_port .btn-cont .tablink2.activo2:before {
  background-color: #A52266;
}
.social_port .btn-cont:first-child .tablink2:before {
  background-image: url("../../imag/v1/icon/ic_twitter.png");
}
.social_port .btn-cont:nth-child(2) .tablink2:before {
  background-image: url("../../imag/v1/icon/ic_facebook.png");
}
.social_port .btn-cont:nth-child(3) .tablink2:before {
  background-image: url("../../imag/v1/icon/ic_instagram.png");
}
.social_port .btn-cont:nth-child(4) .tablink2:before {
  background-image: url("../../imag/v1/icon/ic_youtube.png");
}
.social_port .btn-cont:nth-child(5) .tablink2:before {
  background-image: url("../../imag/v1/icon/ic_linkedin.png");
}
.social_port .btn-cont:first-child .activo2:after {
  -webkit-flex: 0 1 60%;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
}
.social_port .btn-cont:nth-child(2) .activo2:after {
  -webkit-flex: 0 1 68%;
  -ms-flex: 0 1 68%;
  flex: 0 1 68%;
}
.social_port .btn-cont:nth-child(3) .activo2:after {
  -webkit-flex: 0 1 71%;
  -ms-flex: 0 1 71%;
  flex: 0 1 71%;
}
.social_port .btn-cont:nth-child(4) .activo2:after {
  -webkit-flex: 0 1 65%;
  -ms-flex: 0 1 65%;
  flex: 0 1 65%;
}
.social_port .btn-cont:nth-child(5) .activo2:after {
  -webkit-flex: 0 1 68%;
  -ms-flex: 0 1 68%;
  flex: 0 1 68%;
}
.social_port .tablink2 {
  position: relative;
  padding-left: 5px;
  color: #f4f4f4;
  font-size: 1.25rem;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .social_port .tablink2 {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .social_port .tablink2 {
    font-size: 0.875rem;
  }
}
.social_port .activo2 {
  color: #A52266;
}
.social_port .activo2:after {
  content: "";
  position: relative;
  display: block;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #A52266;
}

.arts {
  padding: 100px 0;
}
@media (max-width: 425px) {
  .arts {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts {
    padding: 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .arts {
    padding: 70px 0;
  }
}
.arts.art-people article {
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .arts.art-people article {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts.art-people article {
    width: 100%;
  }
}
.arts.art-people article .cont-img {
  position: relative;
  max-width: 150px;
  margin: 0 auto;
}
.arts.art-people article .img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: none !important;
}
.arts.art-people article .icon-wrap {
  position: absolute;
  top: -10px;
  left: -52px;
  overflow: hidden;
  background-color: #d0d0d0;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  z-index: 1;
}
.arts.art-people article .icon-wrap img {
  width: 33px;
  margin: 0 auto;
  position: relative;
  top: 4px;
}
.arts.art-people article .lang-wrap {
  position: absolute;
  top: 0;
  right: -2px;
  overflow: hidden;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: 1;
}
.arts.art-people article .cont-txt {
  padding-top: 20px !important;
  position: relative;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-align: center;
}
.arts.art-people article .cont-txt .subtit {
  color: #ffffff;
  font-size: 23px;
  line-height: 1.3;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
}
.arts.art-people article .cont-txt .bajada {
  font-size: 0.8125rem !important;
}
.arts.art-people article .cont-txt:hover {
  background: none;
}
.arts.art-people article .cont-txt a {
  display: block;
}
.arts.art-people article .content {
  padding: 0;
  text-align: center;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.arts.art-people article .content .desc {
  line-height: 1.1;
  font-size: 16px;
  white-space: break-spaces;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #00BBAE;
  margin-bottom: 10px;
}
.arts.art-people article .content .institucion {
  line-height: 1.3;
  font-size: 14px;
  white-space: break-spaces;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #333366;
}
.arts.art-people article .content .lugar {
  margin: 15px 0;
  font-size: 0.75rem;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  color: #333366;
}
.arts.art-people article .content .lugar .ic-wrap {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 10px;
}
.arts.art-people article .content .lugar .ic-wrap img {
  width: 25px;
}
.arts.art-people article .content .fecha {
  font-size: 13px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #595959;
}
.arts.art-people article .content .hora {
  font-size: 13px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #595959;
}
.arts.art-people article .concepto {
  border-radius: 55px;
  padding: 6px 14px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  color: #595959;
  border: 1px solid #ccc;
  width: fit-content;
  margin-bottom: 8px;
}
.arts.art-people article .concepto.verde {
  border: 1px solid #00BBAE;
  color: #00BBAE;
}
.arts.art-people article .concepto.amarillo {
  border: 1px solid #fcef03;
  color: #333;
}
.arts.art-people article .concepto.morado {
  border: 1px solid #A52266 !important;
  color: #A52266 !important;
}
.arts.art-people article .concepto.azul {
  border: 1px solid #112646;
  color: #112646;
}
.arts.art-people article .cont-btn {
  padding-top: 20px;
  padding-bottom: 20px;
}
.arts.art-people article .cont-btn .btn-sec {
  text-transform: uppercase;
  border-color: #fcef03;
}
.arts.art-people.bg-gris article {
  background: #ffffff;
  margin-bottom: 20px;
}
.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;
}
@media (max-width: 425px) {
  .arts .row {
    padding-top: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts .row {
    padding-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .arts .row {
    padding-top: 30px;
  }
}
.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: 425px) {
  .arts .row .col {
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts .row .col {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .arts .row .col {
    margin-bottom: 20px;
  }
}

.banner-center {
  margin: 60px 0;
  padding: 90px 0;
  min-height: 600px;
  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: 425px) {
  .banner-center {
    min-height: 450px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .banner-center {
    min-height: 450px;
  }
}
.banner-center::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  background: #112646;
  background: -webkit-linear-gradient(180deg, rgb(17, 38, 70) 0%, rgba(17, 38, 70, 0.22) 50%, rgb(17, 38, 70) 100%);
  background: -moz-linear-gradient(180deg, rgb(17, 38, 70) 0%, rgba(17, 38, 70, 0.22) 50%, rgb(17, 38, 70) 100%);
  background: linear-gradient(180deg, rgb(17, 38, 70) 0%, rgba(17, 38, 70, 0.22) 50%, rgb(17, 38, 70) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#112646", endColorstr="#112646", GradientType=0);
}
.banner-center .auxi {
  position: relative;
  z-index: 2;
}
@media (max-width: 425px) {
  .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__title {
  font-size: 42px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
}
@media (max-width: 425px) {
  .banner-center__title {
    font-size: 27px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .banner-center__title {
    font-size: 27px;
  }
}
.banner-center__title .bold {
  color: #fcef03;
}
.banner-center__overlay {
  position: absolute;
  z-index: 0;
  opacity: 0.3;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 45%;
  background-attachment: fixed;
}

.box-hor .auxi {
  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: 425px) {
  .box-hor .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) {
  .box-hor .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;
  }
}
.box-hor .block-head__title {
  text-align: left;
  margin: 0;
}
.box-hor__description {
  margin-top: 40px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
}
.box-hor__content {
  -webkit-flex: 0 1 45%;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}
.box-hor__img {
  border-radius: 30px;
  overflow: hidden;
  -webkit-flex: 0 1 55%;
  -ms-flex: 0 1 55%;
  flex: 0 1 55%;
}

.banner {
  overflow-x: auto;
}
.banner .auxi {
  border-radius: 30px;
  background-color: #153052;
  padding: 20px;
}
@media (max-width: 425px) {
  .banner .auxi {
    width: 1200px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .banner .auxi {
    width: 1200px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.card-speaker {
  background: linear-gradient(180deg, #153052 0%, #052E62 100%);
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  height: 100%;
  box-shadow: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 20px;
}
@media (max-width: 425px) {
  .card-speaker {
    gap: 1px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card-speaker {
    gap: 10px;
  }
}
.card-speaker:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
}
.card-speaker .cont-img {
  margin-bottom: 20px;
}
.card-speaker .cont-img .img-wrap {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 425px) {
  .card-speaker .cont-img .img-wrap {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .card-speaker .cont-img .img-wrap {
    width: 80px;
    height: 80px;
  }
}
.card-speaker .subtit {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.card-speaker .desc {
  font-style: italic;
  font-size: 16px;
  line-height: 180%;
  color: #1ed0b1;
  margin-bottom: 10px;
}
.card-speaker .btn-wrap {
  margin-top: auto;
}
.card-speaker .btn-vermas {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #FBD31E;
  border-radius: 30px;
  color: #FBD31E;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}
.card-speaker .btn-vermas:hover {
  background-color: #FBD31E;
  color: #002b50;
}

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