@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=Montserrat:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&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: $color_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: 38px !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: 18px !important;
    width: 30px !important;
    height: 30px !important;
    right: 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: 38px !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: 18px !important;
    left: 20px !important;
    width: 30px !important;
    height: 30px !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: 729px) {
  .cont-btn {
    padding: 15px 0 0;
  }
}

.btn-main {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  padding: 20px 40px;
  background-color: #d52b1e;
  border: 1px solid #d52b1e;
  letter-spacing: 1px;
  transition: 0.3s all ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .btn-main {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .btn-main {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
.btn-main:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #d52b1e;
  border-color: #d52b1e;
}
.btn-main.more {
  color: #d52b1e;
  border-bottom: 4px solid #CCCCCC;
  margin-left: 20px;
}

.bg-amarillo .btn-main {
  color: #000000;
  background-color: #ffffff;
}
.bg-amarillo .btn-main:hover {
  border-color: #3C3C3B;
  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: "Montserrat", 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: 729px) {
  .btn-sec {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
.btn-sec:hover {
  color: #000000;
}

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

.bg-gris-oscuro .cont-btn-m .btn {
  background: none;
  color: #F73A08;
}

#return-to-top {
  position: fixed;
  border: 1px solid rgba(255, 255, 255, 0.3);
  bottom: 20px;
  right: 2%;
  background: #EF5A28;
  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: 729px) {
  #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: #EF5A28;
}
#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: 729px) {
  .cont-play {
    width: 80px;
    height: 80px;
    margin: 40px auto 70px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .cont-play {
    margin: 50px auto;
  }
}
.cont-play:hover {
  opacity: 1;
}

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

.enc-bg {
  position: relative;
  min-height: 300px;
}
.enc-bg:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
}
.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: 80px 0;
}
@media (max-width: 425px) {
  .enc-bg .enc-main {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .enc-bg .enc-main {
    padding: 20px 0;
  }
}
.enc-bg .enc-main .pref {
  font-size: 1.5rem;
  text-transform: uppercase;
  padding-top: 0;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.enc-bg .enc-main p {
  padding-top: 30px;
  line-height: 1.4;
  letter-spacing: 1px;
  font-size: 1.5rem;
  color: #ffffff;
  max-width: 800px;
  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: 729px) {
  .enc-bg .enc-main p {
    font-size: 1rem;
  }
}
.enc-bg .enc-main .tit {
  font-size: 3.75rem;
  color: #d52b1e;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
@media (max-width: 425px) {
  .enc-bg .enc-main .tit {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .enc-bg .enc-main .tit {
    font-size: 1.875rem;
  }
}
.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: #000000;
  padding: 7px 20px;
  background-color: #ffffff;
  border-radius: 4px;
  font-family: "Montserrat", 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: 729px) {
  .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: #8C8C8C;
}
.enc-txt .auxi h1 {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 2.813rem !important;
  color: #0A1D85 !important;
  line-height: 1.3 !important;
}
@media (max-width: 425px) {
  .enc-txt .auxi h1 {
    font-size: 1.563rem !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .enc-txt .auxi h1 {
    font-size: 1.563rem !important;
  }
}

.cont-tit {
  text-align: left;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #ec6726;
  padding: 0 0 5px;
}
@media (max-width: 425px) {
  .cont-tit {
    padding: 0 15px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cont-tit {
    padding: 0 15px 0;
  }
}
.cont-tit .auxi-cont {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cont-tit .auxi-cont .logo-rot {
  width: auto;
  margin-left: 15px;
}
.cont-tit .auxi-cont .epig {
  text-transform: uppercase;
  font-size: 1.125rem;
  margin-bottom: 30px;
}
.cont-tit .auxi-cont .tit {
  font-size: 24px !important;
  color: #000000;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: "Noto Serif", serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .cont-tit .auxi-cont .tit {
    font-size: 1.5rem !important;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cont-tit .auxi-cont .tit {
    font-size: 1.5rem !important;
    width: 100%;
  }
}
.cont-tit .auxi-cont .tit.big {
  font-size: 2.1875rem !important;
}
.cont-tit .auxi-cont .baj {
  max-width: 1000px;
  margin: 10px auto 0;
  line-height: 2.3;
  letter-spacing: 0.3px;
  font-size: 1rem;
  color: #37424a;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .cont-tit .auxi-cont .baj {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cont-tit .auxi-cont .baj {
    font-size: 0.875rem;
  }
}
.cont-tit a {
  color: #EF5A28;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.cont-tit .logo-rot {
  width: auto;
  margin-left: 15px;
}
.cont-tit .cont-btn {
  padding-top: 0;
}
.cont-tit .btn-more {
  display: inline-block;
  font-size: 0.875rem !important;
  color: #d52b1e;
  background-color: #ffffff;
  padding: 10px 20px;
  border: 1px solid #f2f2f2;
  border-radius: 4px;
  letter-spacing: 0.2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

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

.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: 729px) {
  .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: 729px) {
  .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: 729px) {
  .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: #d52b1e;
  line-height: 1.3;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.enc-dos-col .auxi .cont-txt .intro {
  margin-top: 25px;
  color: #CCCCCC;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}

.bg-gris-oscuro .cont-tit .auxi-cont .tit {
  color: #ffffff;
}

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

.arts-ultimo .auxi .cont-txt, .arts-deporte .auxi .cont-txt {
  padding: 10px 0 !important;
}
.arts-ultimo .auxi .cont-txt h3, .arts-deporte .auxi .cont-txt h3 {
  font-size: 0.875rem !important;
  color: #8C8C8C !important;
  line-height: 1.3 !important;
  padding-bottom: 15px !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.arts-ultimo .auxi .cont-txt h3 a, .arts-deporte .auxi .cont-txt h3 a {
  font-size: 0.875rem !important;
  color: #000000;
  line-height: 1.3 !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.arts-ultimo .auxi .cont-txt h3 a span, .arts-deporte .auxi .cont-txt h3 a span {
  font-size: 0.875rem;
  color: #EC6726;
  line-height: 1.3;
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid #BDBDBD;
}

@media (max-width: 425px) {
  .arts-deporte {
    padding: 20px 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts-deporte {
    padding: 20px 0 !important;
  }
}

.tax-port .arts-ultimo .auxi .cont-txt h3, .inter .arts-ultimo .auxi .cont-txt h3 {
  font-size: 1rem !important;
  color: #444444 !important;
  line-height: 1.2 !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .tax-port .arts-ultimo .auxi .cont-txt h3, .inter .arts-ultimo .auxi .cont-txt h3 {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .tax-port .arts-ultimo .auxi .cont-txt h3, .inter .arts-ultimo .auxi .cont-txt h3 {
    font-size: 0.875rem !important;
  }
}
.tax-port .arts-ultimo .auxi .cont-txt h3 a, .inter .arts-ultimo .auxi .cont-txt h3 a {
  font-size: 1rem !important;
  color: #444444 !important;
  line-height: 1.5 !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .tax-port .arts-ultimo .auxi .cont-txt h3 a, .inter .arts-ultimo .auxi .cont-txt h3 a {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .tax-port .arts-ultimo .auxi .cont-txt h3 a, .inter .arts-ultimo .auxi .cont-txt h3 a {
    font-size: 0.875rem !important;
  }
}

.arts-deporte .auxi article, .arts-otros .auxi article, .relacionados .auxi article {
  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;
}
.arts-deporte .auxi article .content .cont-txt, .arts-otros .auxi article .content .cont-txt, .relacionados .auxi article .content .cont-txt {
  padding: 10px 8px !important;
  background: none !important;
}
.arts-deporte .auxi article .content .cont-txt h3.serif, .arts-otros .auxi article .content .cont-txt h3.serif, .relacionados .auxi article .content .cont-txt h3.serif {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.25rem !important;
}
.arts-deporte .auxi article .content .cont-txt h3.serif a, .arts-otros .auxi article .content .cont-txt h3.serif a, .relacionados .auxi article .content .cont-txt h3.serif a {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.25rem !important;
}

.arts-otros .auxi article .content .cont-txt h3.serif, .arts-otros .auxi article .content .cont-txt .bajada {
  color: #ffffff;
}
.arts-otros .auxi article .content .cont-txt h3.serif a, .arts-otros .auxi article .content .cont-txt .bajada a {
  color: #ffffff;
}

.relative {
  position: relative;
}

.cont-txt.absolute {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: none !important;
  padding: 0 20px 5px !important;
  z-index: 99;
}
.cont-txt.absolute .logo-rot {
  padding: 0 0 10px !important;
  float: left;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.cont-txt.absolute .fecha {
  color: #BBBBBB !important;
  font-size: 0.875rem;
  padding: 0 0 10px !important;
  float: left;
  clear: both;
}

.arts-editor .auxi article .content .cont-txt h3.serif {
  color: #ffffff;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.25rem;
  clear: both;
}
.arts-editor .auxi article .content .cont-txt h3.serif a {
  color: #ffffff;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.25rem;
}
.arts-editor .auxi .col {
  margin-bottom: 0 !important;
}

@media (max-width: 425px) {
  .arts-editor.arts-strip .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts-editor.arts-strip .auxi {
    padding: 0 15px !important;
  }
}
.arts-editor.arts-strip .auxi article .content {
  width: 100%;
}
.arts-editor.arts-strip .auxi article .content .cont-txt {
  padding: 2px 20px 0 20px;
}
.arts-editor.arts-strip .auxi article .content .cont-txt h3 {
  font-size: 1rem;
  clear: both;
}
.arts-editor.arts-strip .auxi article .content .cont-txt h3 a {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.arts-editor.arts-strip .auxi article .content .cont-txt .fecha {
  padding-bottom: 5px;
}
.arts-editor.arts-strip .auxi article .content.ad-pnt-slot img {
  width: auto;
  margin: 0 auto;
}

.arts-six {
  background: #333333;
  margin: 0;
  padding: 35px 0 0 !important;
}
.arts-six .auxi {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.arts-six .auxi .content {
  width: auto;
  max-height: 250px;
  flex: 0 1 auto;
  margin-bottom: 25px;
}
@media (min-width: 1200px) {
  .arts-six .auxi .content {
    margin-bottom: 35px;
  }
}
@media (min-width: 1200px) {
  .arts-six .auxi .content {
    width: 33%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .arts-six .auxi .content {
    width: 33%;
    min-height: 250px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts-six .auxi .content {
    width: calc(50% - 1em);
    min-height: 250px;
    margin-bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts-six .auxi .content {
    width: calc(100% - 2em);
    flex: 0 1 auto;
    max-height: 100%;
    min-height: 250px;
    justify-content: space-around;
    margin-bottom: 10px;
  }
}
@media (max-width: 425px) {
  .arts-six .auxi .content {
    width: calc(100% - 2em);
    margin-bottom: 10px;
    min-height: 250px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts-six .auxi .content:nth-child(1) {
    order: 1;
    flex: 1 0 auto;
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts-six .auxi .content:nth-child(2) {
    order: 3;
    width: calc(50% - 1em);
    min-height: 250px;
  }
}
.arts-six .auxi .content:nth-child(3) {
  width: 300px;
  min-width: auto;
  height: auto;
  flex: 0 1 300px;
  align-self: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .arts-six .auxi .content:nth-child(3) {
    flex: 0 1 auto;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts-six .auxi .content:nth-child(3) {
    width: auto;
    text-align: center;
    order: 2;
    margin-right: 10px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts-six .auxi .content:nth-child(3) {
    margin: 20px 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts-six .auxi .content:nth-child(4) {
    order: 4;
    width: calc(50% - 1em);
    min-height: 250px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts-six .auxi .content:nth-child(5) {
    order: 5;
  }
}
.arts-six .auxi .content:nth-child(6) {
  width: 300px;
  flex: 0 1 300px;
  align-self: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .arts-six .auxi .content:nth-child(6) {
    flex: 0 1 auto;
    min-height: 250px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts-six .auxi .content:nth-child(6) {
    width: calc(50% - 1em);
    flex: 0 1 auto;
    min-height: 250px;
    order: 6;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts-six .auxi .content:nth-child(6) {
    width: calc(100% - 2em);
    flex: 0 1 auto;
  }
}
@media (max-width: 425px) {
  .arts-six .auxi .content:nth-child(6) {
    width: calc(100% - 2em);
    flex: 0 1 auto;
  }
}
.arts-six .auxi .content figure {
  height: 100%;
}
.arts-six .auxi .content img {
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  width: 100%;
  transition: 0.4s all;
}
.arts-six .auxi .content .cont-txt h3 {
  font-family: "Noto Serif", serif;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.3;
  padding-bottom: 0;
  margin-bottom: 5px;
  font-weight: 700;
  clear: both;
  transition: 0.5s all;
}
@media (max-width: 425px) {
  .arts-six .auxi .content .cont-txt h3 {
    font-size: 0.9rem;
  }
}
.arts-six .auxi .content .cont-txt .fecha {
  font-size: 0.7rem;
  color: #ffffff;
  padding: 0 0 10px !important;
}
@media (max-width: 425px) {
  .arts-six .auxi .content .cont-txt .fecha {
    display: none;
  }
}
@media (max-width: 425px) {
  .arts-six .auxi .content .tag {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}
.arts-six .auxi .content a {
  display: initial;
}
.arts-six .auxi .content a:hover img {
  width: 100%;
  height: 105%;
}
.arts-six .auxi a:hover .grad-negro:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 15%, rgba(0, 0, 0, 0.9) 100%);
}
.arts-six .auxi a:hover h3 {
  color: #EC6726 !important;
}
.arts-six .auxi a .grad-negro {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 35%, rgba(0, 0, 0, 0.9) 100%);
}

.menu_bar {
  display: none;
  position: fixed;
  bottom: 0;
  background-color: #000000;
  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: #d52b1e;
}
@media (max-width: 425px) {
  .nav-sec {
    padding: 15px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .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: 729px) {
  .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: 730px) 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-top: 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: 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: 729px) {
  .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: "Montserrat", 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: 729px) {
  .nav-tabs li .tab-item {
    padding: 0 15px;
    min-width: 90px;
  }
}
.nav-tabs li .tab-item .tab-tit {
  font-size: 1.5rem;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 5px solid rgba(255, 255, 255, 0);
  color: #37424a;
  font-family: "Montserrat", 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: 729px) {
  .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: #d52b1e;
}
.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: 729px) {
  .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: #d52b1e;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.menu-side li a:hover {
  color: #000000;
}

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

body {
  background: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
*:after, *:before {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  outline: none;
  color: #000000;
  transition: all 0.5s;
}
a:hover {
  color: #EC6726 !important;
}

.sepia {
  background-color: #fff1e5 !important;
}

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

.txt-center {
  text-align: center;
}

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: #d52b1e !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;
  min-height: 150px;
}

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

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  -webkit-flex: 0 0 auto;
  -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;
}

section {
  padding: 20px 0 0;
}
@media (max-width: 425px) {
  section {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  section {
    padding: 20px 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  section {
    padding: 20px 0;
  }
}

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

@media (max-width: 425px) {
  .desktop {
    display: none !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .desktop {
    display: none !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .desktop {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .desktop {
    display: block;
  }
}
@media (min-width: 1200px) {
  .desktop {
    display: block;
  }
}
@media (min-width: 1200px) {
  .desktop {
    display: block;
  }
}

@media (max-width: 425px) {
  .mobile {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .mobile {
    display: block;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .mobile {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mobile {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .mobile {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .mobile {
    display: none !important;
  }
}

.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: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 1200px) {
  .auxi {
    max-width: 1180px !important;
    padding: 0 15px !important;
  }
}

.responsive {
  display: none;
}

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

.bg-negro {
  background-color: #000000;
}

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

.bg-gris-oscuro {
  background-color: #3C3C3B;
}

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

.bg-rojo {
  background-color: #d52b1e;
}

.bold {
  font-weight: 700 !important;
}

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

body.contraste *, body.contraste article.sitios, body.contraste section, 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 .arts .auxi .cont-txt h3 a, body.contraste .relacionados .auxi .cont-txt h3 a, body.contraste .art .cont-art .header-art h1.subtit.serif, body.contraste .art .cont-art .header-art h1.subtit.serif {
  color: #ffffff !important;
}

body.contraste .art .cont-art .header-art h1.subtit.serif {
  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 .menu-icon .navicon, 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, body.contraste ul.rss li a img, body.contraste ul.rss li {
  background-color: #ffffff !important;
}

body.contraste .rss {
  background-color: #ffffff !important;
  padding: 10px;
}

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 .CUERPO blockquote, body.contraste .CUERPO blockquote p {
  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-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: #CCCCCC !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;
}

body.contraste .suscripcion .box-suscripcion .input {
  background: #ffffff !important;
}

body.contraste input::placeholder {
  color: #000000 !important;
}

body.contraste .box-suscripcion {
  padding: 15px;
  max-width: 915px;
}

body.contraste .suscripcion .box-suscripcion .btn {
  border: 1px solid #ffffff;
}

body.contraste .form-control {
  background-color: #ffffff !important;
  color: #000000 !important;
}

body.contraste .form-content .btn {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.wp-pagenavi {
  font-size: 0.9375rem;
  font-family: "Noto Sans", 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: #8C8C8C;
}
.wp-pagenavi a:hover {
  text-decoration: underline;
}
.wp-pagenavi a.page {
  margin-right: 17px;
  border-bottom: 6px solid #CCCCCC;
}
.wp-pagenavi span {
  display: block;
  padding: 8px;
  margin-right: 15px;
}

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

.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 5px;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
@media (max-width: 425px) {
  .breadcrumbs {
    margin-bottom: 0;
    padding: 15px 0 5px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .breadcrumbs {
    margin-bottom: 0;
    padding: 15px 0 5px;
  }
}
.breadcrumbs .breadcrumb {
  color: #8C8C8C;
  font-size: 0.875rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.breadcrumbs .breadcrumb:after {
  content: "|";
  color: #8C8C8C;
  position: relative;
  display: inline-block;
  padding: 0 5px;
}
.breadcrumbs .breadcrumb:last-child:after {
  content: none;
}
.breadcrumbs .breadcrumb a {
  color: #8C8C8C;
  font-size: 0.875rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.breadcrumbs .breadcrumb a:hover {
  color: #000000;
}
@media (max-width: 425px) {
  .breadcrumbs .breadcrumb a {
    font-size: 0.875rem !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .breadcrumbs .breadcrumb a {
    font-size: 0.875rem !important;
  }
}

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

.cont_video iframe {
  width: 100%;
}

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

.main {
  background-color: #ffffff;
}

.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;
}
.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: 729px) {
  .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: 729px) {
  .swiper-container {
    padding: 0 !important;
  }
}
@media (min-width: 730px) 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;
}

.suscripcion h2.tit {
  font-size: 2.1875rem;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .suscripcion h2.tit {
    text-align: center;
    font-size: 2.0625rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .suscripcion h2.tit {
    text-align: center;
    font-size: 2.0625rem;
  }
}
.suscripcion p.bajada {
  font-size: 1rem;
  color: #BBBBBB !important;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 425px) {
  .suscripcion p.bajada {
    font-size: 0.8125rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .suscripcion p.bajada {
    font-size: 0.8125rem;
  }
}
.suscripcion .box-suscripcion {
  max-width: 900px;
  width: 95%;
  margin: 40px auto;
  text-align: left;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: none;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 425px) {
  .suscripcion .box-suscripcion {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .suscripcion .box-suscripcion {
    display: block;
  }
}
.suscripcion .box-suscripcion .input {
  background: #ffffff;
  padding: 15px 30px;
  font-size: 1.125rem;
  color: #646464;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  -webkit-flex: 1 0 33%;
  -ms-flex: 1 0 33%;
  flex: 1 0 33%;
}
.suscripcion .box-suscripcion .input:first-child {
  margin-right: 15px;
}
@media (max-width: 425px) {
  .suscripcion .box-suscripcion .input {
    margin-bottom: 20px;
    width: 100%;
    margin-right: 0px !important;
    font-size: 0.875rem;
    padding: 15px 5px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .suscripcion .box-suscripcion .input {
    margin-bottom: 20px;
    width: 100%;
    margin-right: 0px !important;
    font-size: 0.875rem;
    padding: 15px 5px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .suscripcion .box-suscripcion .input {
    padding: 15px 5px;
  }
}
.suscripcion .box-suscripcion .btn {
  background: #EF5A28;
  color: #ffffff;
  padding: 16px 50px;
  margin-left: 15px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  -webkit-flex: 1 0 10%;
  -ms-flex: 1 0 10%;
  flex: 1 0 10%;
}
@media (max-width: 425px) {
  .suscripcion .box-suscripcion .btn {
    margin: 0 auto;
    width: 100%;
    padding: 16px 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .suscripcion .box-suscripcion .btn {
    margin: 0 auto;
    width: 100%;
    padding: 16px 20px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .suscripcion .box-suscripcion .btn {
    padding: 16px 20px;
  }
}
.suscripcion:placeholder {
  color: #646464;
  opacity: 1;
}

.art .cont-art {
  margin-top: 0;
  padding-top: 0;
}
@media (max-width: 425px) {
  .art .cont-art {
    margin-bottom: 20px !important;
    margin-top: 20px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .cont-art {
    margin-bottom: 20px !important;
    margin-top: 20px !important;
  }
}
.art .cont-art .header-art {
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .art .cont-art .header-art {
    margin-bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .cont-art .header-art {
    margin-bottom: 10px;
  }
}
.art .cont-art .header-art h1.subtit.serif {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 2.813rem !important;
  color: #0A1D85;
  line-height: 1.3 !important;
  padding-bottom: 10px !important;
  padding-top: 10px !important;
  width: 95%;
  max-width: auto;
}
@media (max-width: 425px) {
  .art .cont-art .header-art h1.subtit.serif {
    font-size: 1.563rem !important;
    padding-top: 20px;
    padding-bottom: 10px !important;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .cont-art .header-art h1.subtit.serif {
    font-size: 1.563rem !important;
    padding-top: 20px;
    padding-bottom: 10px !important;
    width: 100%;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .art .cont-art .header-art h1.subtit.serif {
    width: 100%;
  }
}
.art .cont-art .header-art p.bajada {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.5rem !important;
  color: #000000;
  line-height: 1.3 !important;
  width: 95%;
  max-width: auto;
}
@media (max-width: 425px) {
  .art .cont-art .header-art p.bajada {
    font-size: 1.125rem !important;
    width: 100%;
    line-height: 1.8rem !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .cont-art .header-art p.bajada {
    font-size: 1.125rem !important;
    width: 100%;
    line-height: 1.8rem !important;
  }
}
.art .cont-art .header-art .usuario {
  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;
  margin: 20px 0;
}
.art .cont-art .header-art .usuario .img-wrap {
  -webkit-flex: 0 1 15%;
  -ms-flex: 0 1 15%;
  flex: 0 1 15%;
  margin-right: 10px;
}
.art .cont-art .header-art .usuario .img-wrap img {
  border-radius: 50%;
}
.art .cont-art .header-art .usuario .info-usuario {
  -webkit-flex: 0 1 85%;
  -ms-flex: 0 1 85%;
  flex: 0 1 85%;
}
.art .cont-art .header-art .usuario .info-usuario .nombre {
  font-size: 1.125rem !important;
  color: #444444 !important;
  line-height: 1.2 !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  float: left;
  clear: both;
}
.art .cont-art .header-art .usuario .info-usuario .cargo {
  font-size: 1rem;
  color: #666666;
  line-height: 1.2;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
.art .cont-art .header-art .banner {
  margin-top: 20px;
  margin-bottom: 0;
}
@media (max-width: 425px) {
  .art .cont-art ul.rss.mobile {
    display: block !important;
    padding: 15px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .cont-art ul.rss.mobile {
    display: block !important;
    padding: 15px 0;
  }
}
@media (max-width: 425px) {
  .art ul.rss {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art ul.rss {
    display: none;
  }
}
.art ul.rss li {
  width: 40px;
  float: left;
}
.art ul.rss li a img {
  width: 30px;
}
.art .date {
  font-size: 1rem;
  color: #646464;
  letter-spacing: 0;
  line-height: 1.2;
  flex: 1 0 auto;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .art .date {
    font-size: 0.8rem !important;
    padding-top: 10px;
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .date {
    font-size: 0.8rem !important;
    padding-top: 10px;
    margin-bottom: 0;
  }
}
.art .date span {
  color: #EC6726;
  border-left: 1px solid #EC6726;
  padding-left: 5px;
}
.art .top {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 425px) {
  .art .top {
    margin-bottom: 5px;
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .top {
    margin-bottom: 5px;
    margin-top: 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .art .top {
    flex-wrap: wrap;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .art .top .date {
    margin-bottom: 10px;
  }
}
.art .top .rss {
  flex: 0 0 auto;
}
.art .top .artic-hits-container {
  flex: 0 1 100px;
}
.art .top-foto {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media (max-width: 425px) {
  .art .top-foto {
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .top-foto {
    margin-bottom: 0;
  }
}
.art .top-foto .banner {
  margin-right: 20px;
}
.art .aside-left.col {
  max-width: 170px;
  min-width: 170px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .art .aside-left.col {
    display: none;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .art .aside-left.col {
    max-width: 160px;
    min-width: 160px;
  }
}
.art aside.col .auxi {
  max-width: 300px !important;
  min-width: 300px !important;
  padding: 0 !important;
}
@media (max-width: 425px) {
  .art aside.col .auxi {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art aside.col .auxi {
    padding: 40px 0 30px;
  }
}
.art aside.col .auxi .banner.aside {
  margin-bottom: 25px;
}
.art aside.col .auxi .cont-tit .auxi-cont .tit.big {
  font-size: 1.5rem !important;
  margin-bottom: 10px;
}
.art aside.col .auxi article {
  margin-bottom: 35px;
}

.artic-hits-container {
  text-align: right;
  margin-top: 5px;
  font-size: 0.938rem;
  color: #666666;
  line-height: 1.2;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .artic-hits-container {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .artic-hits-container {
    font-size: 0.8rem;
    margin-top: 8px;
  }
}
.artic-hits-container #artic-hits {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}

@media (max-width: 425px) {
  .arts.arts-dest.bg-blanco .auxi .row {
    padding-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-dest.bg-blanco .auxi .row {
    padding-top: 20px;
  }
}
.arts.arts-dest.bg-blanco .auxi .row .col .content .cont-txt {
  padding: 5px 40px 0 !important;
}
@media (max-width: 425px) {
  .arts.arts-dest.bg-blanco .auxi .row .col .content .cont-txt {
    padding: 15px 0px 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-dest.bg-blanco .auxi .row .col .content .cont-txt {
    padding: 15px 0px 0 !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts.arts-dest.bg-blanco .auxi .row .col .content .cont-txt {
    padding: 15px 0px 0 !important;
  }
}
.arts.arts-dest.bg-blanco .auxi .row .col .content .cont-txt .small-cal .cal:first-child {
  margin: 0;
}

.arts.arts-ultimo.bg-blanco .auxi .col {
  margin-bottom: 0;
}
.arts.arts-ultimo.bg-blanco .auxi .col .cont-txt {
  padding: 10px 0 0 !important;
}
.arts.arts-ultimo.bg-blanco .auxi .col .cont-txt h3 {
  padding-bottom: 0 !important;
}
.arts.arts-ultimo.bg-blanco .auxi .col .cont-txt p.bajada {
  padding-top: 15px;
}

@media (max-width: 425px) {
  .tax-port .arts.arts-ultimo.bg-blanco .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .tax-port .arts.arts-ultimo.bg-blanco .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .tax-port .arts.arts-ultimo.bg-blanco .auxi {
    padding: 0 15px !important;
  }
}
.tax-port .arts.arts-ultimo.bg-blanco .auxi .col {
  margin-bottom: 30px;
}

@media (max-width: 425px) {
  .inter .arts.arts-ultimo.bg-blanco .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .inter .arts.arts-ultimo.bg-blanco .auxi {
    padding: 0 15px !important;
  }
}
.inter .arts.arts-ultimo.bg-blanco .auxi .col {
  margin-bottom: 30px;
}

.arts.arts-deporte.bg-gris .auxi .row .col {
  margin-bottom: 0;
}
.arts.arts-deporte.bg-gris .auxi .row .col .content.height .cont-txt {
  padding: 10px 8px 0 !important;
}

.arts.arts-otros.bg-gris-oscuro .auxi .row .col {
  margin-bottom: 0;
}
.arts.arts-otros.bg-gris-oscuro .auxi .row .col .content.height .cont-txt {
  padding: 10px 8px 0 !important;
}

.ice_player {
  position: relative;
  width: 100%;
  height: 55px;
}

.btn-close {
  position: absolute;
  top: 12px;
  right: 3vw;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  width: 30px;
  height: 30px;
}
.results .header, .taxport .header {
  -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);
}

.header {
  transition: 0.2s all ease;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #0A1D85;
  z-index: 1000;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  padding: 8px 0;
}
@media (max-width: 425px) {
  .header {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .header {
    padding: 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .header {
    padding: 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .header .desktop {
    display: none !important;
  }
}
.header.sticky {
  position: fixed;
  background-color: #0A1D85;
  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);
}
.header.sticky .top-bar {
  padding: 5px 0;
}
.header.sticky .cont-links li > a {
  color: #000000 !important;
}
.header.sticky .cont-links .desp > a {
  background-image: url("../../imag/v1/icon/chevron_b.png") !important;
}
.header .auxi {
  position: relative;
}
.header .main-navbar {
  transition: 0.2s all ease;
  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: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.header .main-navbar .cont-logo {
  padding: 10px 0;
  transition: 0.2s all ease;
  -webkit-flex: 0 1 289px;
  -ms-flex: 0 1 289px;
  flex: 0 1 289px;
}
@media (max-width: 425px) {
  .header .main-navbar .cont-logo {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .header .main-navbar .cont-logo {
    padding: 20px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header .main-navbar .cont-logo {
    margin-right: 40px;
  }
}
.header .main-navbar .cont-navbar {
  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;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.header .main-navbar .cont-navbar .indicadores-economicos {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -ms-flex-item-align: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.header .main-navbar .cont-navbar .indicadores-economicos li {
  display: block;
  color: #ffffff;
  font-size: 0.75rem;
  margin: 0;
  padding: 20px 10px;
  letter-spacing: 1.2px;
  position: relative;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.header .main-navbar .cont-navbar .indicadores-economicos li strong {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.header .main-navbar .cont-navbar .cont-links.menu-sociales {
  margin: 0 25px;
}
.header .main-navbar .cont-navbar .cont-links.menu-sociales li > a {
  margin: 0 5px;
  padding: 20px 0;
}
.header .main-navbar .cont-navbar .cont-links.menu-sociales li > a img {
  height: 27px;
  width: auto;
}
.header .main-navbar .cont-navbar .cont-links.menu-sociales li + li {
  margin-left: 20px;
}
.header .main-navbar .cont-navbar .cont-links {
  margin-right: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.header .main-navbar .cont-navbar .cont-links li:hover .sub-menu {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.header .main-navbar .cont-navbar .cont-links li:hover > a {
  color: #d52b1e;
}
.header .main-navbar .cont-navbar .cont-links li.desp {
  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;
  -ms-flex-item-align: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.header .main-navbar .cont-navbar .cont-links li.desp > a {
  transition: 0.2s all ease;
  padding-left: 20px;
  padding-right: 0;
  letter-spacing: 0.4px;
  background-image: url("../../imag/v1/icon/chevron_d_w.png");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 11px;
}
.header .main-navbar .cont-navbar .cont-links li:last-child a {
  margin-right: 0;
}
.header .main-navbar .cont-navbar .cont-links li:last-child .sub-menu {
  right: 25px;
}
.header .main-navbar .cont-navbar .cont-links li.active a:after {
  background-color: #d52b1e;
}
.header .main-navbar .cont-navbar .cont-links li > a {
  display: block;
  color: #000000;
  font-size: 0.875rem;
  margin: 0 10px;
  padding: 20px 10px;
  letter-spacing: 1.2px;
  position: relative;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header .main-navbar .cont-navbar .cont-links li > a {
    font-size: 0.75rem;
  }
}
.header .main-navbar .cont-navbar .cont-links li > a:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 7px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0);
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu {
  display: none;
  position: absolute;
  z-index: 30;
  right: 0;
  top: 100%;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #ffffff;
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  border-bottom: 7px solid white;
  border-right: 7px solid transparent;
  border-top: 7px solid transparent;
  border-left: 7px solid transparent;
  right: 20px;
  bottom: 100%;
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu ul {
  padding: 0;
  -webkit-flex: 1 0 30%;
  -ms-flex: 1 0 30%;
  flex: 1 0 30%;
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu ul li:last-child a {
  border-bottom: 0;
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu ul li a {
  padding: 8px 10px;
  color: #3C3C3B;
  text-align: left;
  border: none;
  font-size: 0.8125rem;
  line-height: 1.2;
  display: block;
  text-transform: none;
  margin: 0;
  border-bottom: 1px solid #f2f2f2;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu ul li a:hover {
  background-color: #d52b1e;
  transition: 0.3s all ease;
  color: #ffffff !important;
}
.header .search-cont {
  display: inline-block;
  position: relative;
  width: 42px;
  height: 26px;
  margin-right: 70px;
}
.header .search-cont .search-wrapper {
  position: absolute;
  transform: translate(-7%, -50%);
  top: 50%;
  right: 0;
}
.header .search-cont .search-wrapper.active .close {
  right: -23px;
  top: calc(50% - 8px);
  opacity: 1;
  transform: rotate(45deg);
  transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition-delay: 0.5s;
}
.header .search-cont .search-wrapper.active .input-holder {
  width: 26vw;
  background-color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
}
.header .search-cont .search-wrapper.active .input-holder .search-input {
  opacity: 1;
  padding: 5px 15px;
  outline: none;
  height: 100%;
  color: #333333;
}
.header .search-cont .search-wrapper.active .input-holder .search-icon {
  width: 42px;
  height: 42px;
  border: none;
}
.header .search-cont .search-wrapper.active .input-holder .search-icon span::before {
  background-color: #0A1D85;
}
.header .search-cont .search-wrapper.active .input-holder .search-icon span::after {
  border-color: #0A1D85;
}
.header .search-cont .search-wrapper.active .input-holder .search-icon.btn {
  display: block;
}
.header .search-cont .search-wrapper.active .input-holder .search-icon.ic {
  display: none;
}
.header .search-cont .search-wrapper .close {
  position: absolute;
  z-index: 0;
  opacity: 0;
  top: 7px;
  right: 10px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  transform: rotate(-180deg);
  transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
  transition-delay: 0.2s;
}
.header .search-cont .search-wrapper .close::before {
  width: 2px;
  height: 16px;
  left: 7px;
  top: 0;
}
.header .search-cont .search-wrapper .close::after {
  width: 16px;
  height: 2px;
  left: 0px;
  top: 7px;
}
.header .search-cont .search-wrapper .input-holder {
  height: 42px;
  width: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.header .search-cont .search-wrapper .input-holder .search-input {
  width: 100%;
  opacity: 0;
  position: absolute;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  border: none !important;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition-delay: 0.3s;
}
.header .search-cont .search-wrapper .input-holder .search-icon {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0px;
  outline: none;
  position: relative;
  z-index: 2;
  float: right;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.header .search-cont .search-wrapper .input-holder .search-icon span {
  width: 22px;
  height: 22px;
  bottom: 2px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  transform: rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
}
.header .search-cont .search-wrapper .input-holder .search-icon span::before {
  width: 0.125rem;
  height: 9px;
  left: 9px;
  top: 13px;
  background: #ffffff;
}
.header .search-cont .search-wrapper .input-holder .search-icon span::after {
  width: 13px;
  height: 13px;
  left: 3px;
  top: 1px;
  border-radius: 50%;
  border: 0.125rem solid #ffffff;
}
.header .search-cont .search-wrapper .input-holder .search-icon span:before, .header .search-cont .search-wrapper .input-holder .search-icon span:after {
  position: absolute;
  content: "";
}
.header .search-cont .search-wrapper .close:before, .header .search-cont .search-wrapper .close:after {
  position: absolute;
  content: "";
  background: #ffffff;
}
.header .search-cont .search-icon.btn {
  display: none;
}
.header .search-cont .search-icon.ic {
  text-align: center;
}
.header .search-cont .search-icon.ic span {
  top: 9px;
}

.sticky .menu-responsive {
  -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);
}
.sticky .navicon:before {
  background-color: #ffffff !important;
}
.sticky .navicon:after {
  background-color: #ffffff !important;
}

.menu-responsive {
  top: 0;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  z-index: 100;
  background-color: #ffffff;
  display: block !important;
}
.menu-responsive .cont-search {
  margin: 10px auto;
  position: relative;
  width: 95%;
  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: #EC6726;
  padding: 12px;
  padding-left: 12px;
}
.menu-responsive .cont-search button img {
  width: 19px;
}
.menu-responsive .cont-logo {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.menu-responsive .cont-logo a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.menu-responsive .cont-logo a img {
  width: auto;
  max-width: 289px;
  transition: 0.2s all ease;
}
@media (max-width: 425px) {
  .menu-responsive .cont-logo a img {
    max-width: 200px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .menu-responsive .cont-logo a img {
    max-width: 200px;
  }
}
.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;
}
@media (max-width: 425px) {
  .menu-responsive .menu {
    overflow-x: hidden;
    overflow-y: scroll;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .menu-responsive .menu {
    overflow-x: hidden;
    overflow-y: scroll;
  }
}
.menu-responsive .menu ul {
  max-width: 300px;
  margin: 0 auto;
  height: 0;
  max-height: 0;
}
@media (min-width: 730px) and (max-width: 991px) {
  .menu-responsive .menu ul {
    margin: 0;
  }
}
.menu-responsive .menu li ul {
  padding-left: 0;
  padding-right: 0;
}
.menu-responsive .menu li ul a {
  padding-left: 25px;
  color: #CCCCCC;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.menu-responsive .menu li {
  position: relative;
  float: none;
}
.menu-responsive .menu li a {
  display: block;
  color: #ffffff;
  padding: 15px 10px;
  text-decoration: none;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.menu-responsive .menu .menu-sec-m {
  padding-top: 0;
}
.menu-responsive .menu .menu-sec-m a {
  color: #CCCCCC;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.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 .accordionItemContent {
  border-bottom: 1px solid #f2f2f2;
}
.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 .accordionItemHeading .accordionItemHeading img {
  transform: rotate(180deg);
}
.menu-responsive .accordionItemHeading .accordionItemHeading .hide {
  display: block !important;
}
.menu-responsive .accordionItemHeading .accordionItemHeading .show {
  display: none !important;
}
.menu-responsive .accordionItemHeading .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;
  padding: 0;
}

.menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 18px 0;
  position: absolute;
  user-select: none;
  right: 5px;
  top: 15px;
}
@media (max-width: 425px) {
  .menu-icon {
    top: 10px;
    right: 15px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .menu-icon {
    top: 10px;
    right: 15px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .menu-icon {
    top: 5px;
    right: 15px;
  }
}
.menu-icon .navicon {
  background: #ffffff;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 28px;
}
.menu-icon .navicon:before, .menu-icon .navicon:after {
  background: #ffffff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.menu-icon .navicon:before {
  top: 7px;
}
.menu-icon .navicon:after {
  top: -7px;
}

.menu-btn {
  display: none;
}
.menu-btn:checked ~ .menu {
  background-color: #0A1D85;
  max-height: 90vh;
  padding-top: 10px;
}
.menu-btn:checked ~ .menu ul {
  height: 100%;
  max-height: 100%;
}
.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent !important;
}
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
  background-color: #ffffff;
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  background-color: #ffffff;
  transform: rotate(45deg);
  top: 0;
}
.menu-btn:checked ~ .menu-icon .navicon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon .navicon:not(.steps) .navicon:after {
  top: 0;
}

.cont-access {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  margin: 0 40px;
}
.cont-access li {
  margin-right: 5px;
  width: 30px;
  height: 30px;
}
.cont-access li:first-child a {
  background-image: url("/cms/imag/v1/icon/ic_text_l.png");
  background-size: 26px;
}
.cont-access li:nth-child(2) a {
  background-image: url("/cms/imag/v1/icon/ic_text_s.png");
  background-size: 23px;
}
.cont-access li:nth-child(3) a {
  background-image: url("/cms/imag/v1/icon/ic_contrast.png");
  background-size: 20px;
}
.cont-access li:hover a {
  opacity: 0.8;
}
.cont-access li a {
  display: block;
  transition: 0.2s all ease;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}
.cont-access li + li + li {
  margin-left: 10px;
}

.box-rss-movil {
  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;
}
.box-rss-movil .cont-links.menu-sociales, .box-rss-movil .cont-access, .box-rss-movil .indicadores-economicos {
  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;
  height: auto !important;
  max-width: 325px !important;
  float: left;
  margin: 0;
}
.box-rss-movil .cont-access {
  margin: 0 !important;
}
.box-rss-movil .cont-access li:first-child a {
  background-image: url("../../imag/v1/icon/ic_text_l_b.png");
}
.box-rss-movil .cont-access li:nth-child(2) a {
  background-image: url("../../imag/v1/icon/ic_text_s_b.png");
}
.box-rss-movil .cont-access li:nth-child(3) a {
  background-image: url("../../imag/v1/icon/ic_contrast_b.png");
}
.box-rss-movil .indicadores-economicos li {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #ffffff;
  font-size: 0.875rem;
  margin: 0;
  padding: 20px 10px;
  letter-spacing: 1.2px;
  position: relative;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .box-rss-movil .indicadores-economicos li {
    font-size: 0.75rem;
    padding: 20px 5px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .box-rss-movil .indicadores-economicos li {
    font-size: 0.75rem;
    padding: 20px 5px;
  }
}
.box-rss-movil .indicadores-economicos li strong {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.box-rss-movil .cont-links.menu-sociales {
  margin-right: 30px;
}
.box-rss-movil .cont-links.menu-sociales li img {
  height: 30px;
  width: auto;
}

.sub-menu {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .sub-menu {
    display: block !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .sub-menu {
    display: block !important;
  }
}

.footer {
  padding: 40px 0 100px;
  margin-top: -1px;
  background-color: #0A1D85;
}
@media (max-width: 425px) {
  .footer {
    padding: 40px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .footer {
    padding: 40px 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .footer {
    padding: 40px 40px 30px;
  }
}
@media (max-width: 425px) {
  .footer .auxi {
    padding: 0 15px 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .footer .auxi {
    padding: 0 15px 20px;
  }
}
.footer .auxi > .row {
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 425px) {
  .footer .auxi > .row {
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .footer .auxi > .row {
    margin-bottom: 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .footer .auxi > .row {
    margin-bottom: 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .footer .auxi > .row .cont-contact + .col {
    width: 50%;
  }
}
@media (max-width: 425px) {
  .footer .auxi .contacto {
    margin: 20px auto;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .footer .auxi .contacto {
    margin: 20px auto;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .footer .auxi .contacto {
    margin-bottom: 40px;
  }
}
@media (max-width: 425px) {
  .footer .cont-logos {
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .footer .cont-logos {
    margin-bottom: 20px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .footer .cont-logos {
    margin-bottom: 30px;
  }
}
.footer .cont-logos img {
  width: 195px;
}
@media (max-width: 425px) {
  .footer .cont-logos img {
    width: 220px;
    margin: 0 auto 50px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .footer .cont-logos img {
    width: 220px;
    margin: 0 auto 50px;
  }
}
.footer .cont-logos h2 {
  margin: 20px 0 !important;
}
.footer .tit-footer.dos {
  height: 45px;
}
.footer .tit-footer {
  text-align: left;
  margin-bottom: 0 !important;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.footer .tit-footer h2 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .footer .tit-footer h2 {
    margin: 0 auto 20px !important;
    display: table;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .footer .tit-footer h2 {
    margin: 0 auto 20px !important;
    display: table;
  }
}
.footer .sub-foot {
  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;
  -webkit-box-orient: block-axis;
  -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 .contacto p, .footer .contacto a {
  font-size: 0.8125rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px;
  display: inline-block;
}
@media (max-width: 425px) {
  .footer .contacto p, .footer .contacto a {
    margin: 0 auto;
    display: table;
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .footer .contacto p, .footer .contacto a {
    margin: 0 auto;
    display: table;
    font-size: 1rem;
  }
}
.footer .contacto .map a {
  text-decoration: underline;
}
.footer ul.sociales-footer {
  float: left;
  margin: 0 auto;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.footer ul.sociales-footer li {
  float: left;
  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;
  margin: 0 5px;
}
@media (max-width: 425px) {
  .footer ul.sociales-footer li {
    margin: 0px 15px;
    width: 30px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .footer ul.sociales-footer li {
    margin: 0px 15px;
    width: 30px;
  }
}
.footer ul.sociales-footer li p {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.footer ul.sociales-footer:first-child {
  margin: 0 5px 0 0;
}

.cont-sociales {
  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: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cont-sociales .tit {
  color: #ffffff;
  font-size: 1.125rem;
  letter-spacing: 1px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .cont-sociales .tit {
    display: table;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cont-sociales .tit {
    display: table;
    margin: 0 auto;
  }
}
@media (max-width: 425px) {
  .cont-sociales {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cont-sociales {
    display: block;
  }
}

.home .header, .art .header {
  top: 0;
}
.home .menu-responsive, .art .menu-responsive {
  background: none;
  border-bottom: none;
}
.home .main, .art .main {
  padding-top: 0;
  padding-bottom: 20px;
}
.home .dest-main, .art .dest-main {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 425px) {
  .home .dest-main, .art .dest-main {
    padding-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main, .art .dest-main {
    padding-bottom: 0;
  }
}
.home .dest-main .cont-logo img, .art .dest-main .cont-logo img {
  width: auto;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .home .dest-main .cont-logo img, .art .dest-main .cont-logo img {
    width: 200px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .cont-logo img, .art .dest-main .cont-logo img {
    width: 200px;
  }
}
.home .dest-main .swiper-slide, .art .dest-main .swiper-slide {
  min-height: 500px;
  position: relative;
}
.home .dest-main .swiper-slide:before, .art .dest-main .swiper-slide:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 425px) {
  .home .dest-main .swiper-slide, .art .dest-main .swiper-slide {
    min-height: 300px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .swiper-slide, .art .dest-main .swiper-slide {
    min-height: 300px;
  }
}
@media (min-width: 1200px) {
  .home .dest-main .swiper-slide, .art .dest-main .swiper-slide {
    min-height: 600px;
  }
}
@media (max-width: 425px) {
  .home .dest-main video, .art .dest-main video {
    display: none !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main video, .art .dest-main video {
    display: none !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-main video, .art .dest-main video {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .dest-main video, .art .dest-main video {
    display: block;
  }
}
@media (min-width: 1200px) {
  .home .dest-main video, .art .dest-main video {
    display: block;
  }
}
@media (min-width: 1200px) {
  .home .dest-main video, .art .dest-main video {
    display: block;
  }
}
.home .dest-main .txt-sm, .art .dest-main .txt-sm {
  line-height: 1.3;
  font-size: 2.1875rem !important;
}
@media (max-width: 425px) {
  .home .dest-main .txt-sm, .art .dest-main .txt-sm {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .txt-sm, .art .dest-main .txt-sm {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-main .txt-sm, .art .dest-main .txt-sm {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .dest-main .txt-sm, .art .dest-main .txt-sm {
    font-size: 1.5rem !important;
  }
}
.home .dest-main .img-wrap, .art .dest-main .img-wrap {
  position: relative;
}
.home .dest-main .auxi, .art .dest-main .auxi {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding-top: 65px;
  margin-bottom: 20px;
  max-width: 1180px;
  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;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 425px) {
  .home .dest-main .auxi, .art .dest-main .auxi {
    padding: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .auxi, .art .dest-main .auxi {
    padding: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-main .auxi, .art .dest-main .auxi {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .dest-main .auxi, .art .dest-main .auxi {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 1200px) {
  .home .dest-main .auxi, .art .dest-main .auxi {
    padding-top: 0;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (max-width: 425px) {
  .home .dest-main .auxi .titular, .art .dest-main .auxi .titular {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 15px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .auxi .titular, .art .dest-main .auxi .titular {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 15px;
  }
}
.home .dest-main .auxi a.link, .art .dest-main .auxi a.link {
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  float: left;
  background: #0A1D85;
  padding: 12px 50px;
  float: left;
  clear: both;
  transition: all 0.5s;
}
@media (max-width: 425px) {
  .home .dest-main .auxi a.link, .art .dest-main .auxi a.link {
    margin-bottom: 0;
    margin-top: 10px;
    float: right;
    padding: 10px 25px;
  }
}
.home .dest-main .auxi a.link:hover, .art .dest-main .auxi a.link:hover {
  background: #EC6726;
  color: #ffffff !important;
}
.home .dest-main .auxi .epig, .art .dest-main .auxi .epig {
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  float: left;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .epig, .art .dest-main .auxi .epig {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .auxi .epig, .art .dest-main .auxi .epig {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-main .auxi .epig, .art .dest-main .auxi .epig {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .dest-main .auxi .epig, .art .dest-main .auxi .epig {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.home .dest-main .auxi .baj, .art .dest-main .auxi .baj {
  margin-bottom: 20px;
  max-width: 80%;
  font-size: 1.313rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  float: left;
  clear: both;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .baj, .art .dest-main .auxi .baj {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .auxi .baj, .art .dest-main .auxi .baj {
    display: none;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-main .auxi .baj, .art .dest-main .auxi .baj {
    font-size: 1.313rem;
    margin-top: 10px;
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .dest-main .auxi .baj, .art .dest-main .auxi .baj {
    font-size: 1.313rem;
    margin-top: 10px;
    max-width: 100%;
  }
}
.home .dest-main .auxi .main-title, .art .dest-main .auxi .main-title {
  text-align: left;
  margin: 10px auto;
  color: #ffffff;
  font-size: 3.2rem;
  letter-spacing: 1px;
  position: relative;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  float: left;
  clear: both;
  line-height: 1.1;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .main-title, .art .dest-main .auxi .main-title {
    font-size: 1.5rem;
    max-width: 100%;
    line-height: 1.2;
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .auxi .main-title, .art .dest-main .auxi .main-title {
    font-size: 1.5rem;
    max-width: 80%;
    line-height: 1.2;
    margin-bottom: 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-main .auxi .main-title, .art .dest-main .auxi .main-title {
    font-size: 3.2rem;
    max-width: 95%;
    line-height: 1.3;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .dest-main .auxi .main-title, .art .dest-main .auxi .main-title {
    font-size: 3.2rem;
    max-width: 95%;
    line-height: 1.1;
  }
}
@media (min-width: 1200px) {
  .home .dest-main .auxi .main-title, .art .dest-main .auxi .main-title {
    font-size: 3.2rem;
    line-height: 1.1;
  }
}
.home .dest-main .auxi .main-title a, .art .dest-main .auxi .main-title a {
  color: #ffffff;
  font-size: 3.2rem;
  letter-spacing: 0;
  position: relative;
  line-height: 1.1;
  font-family: "Noto Serif", serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .main-title a, .art .dest-main .auxi .main-title a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .auxi .main-title a, .art .dest-main .auxi .main-title a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-main .auxi .main-title a, .art .dest-main .auxi .main-title a {
    font-size: 3.2rem;
    line-height: 1.3;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .dest-main .auxi .main-title a, .art .dest-main .auxi .main-title a {
    font-size: 3.2rem !important;
    line-height: 1.3;
  }
}
@media (min-width: 1200px) {
  .home .dest-main .auxi .main-title a, .art .dest-main .auxi .main-title a {
    font-size: 3.2rem;
    line-height: 1.1;
  }
}
.home .dest-main .auxi .main-title .txt-dest, .art .dest-main .auxi .main-title .txt-dest {
  color: #d52b1e;
  font-size: 6.25rem;
  letter-spacing: 0.5px;
  margin-top: 10px;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .main-title .txt-dest, .art .dest-main .auxi .main-title .txt-dest {
    font-size: 3.25rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .auxi .main-title .txt-dest, .art .dest-main .auxi .main-title .txt-dest {
    font-size: 3.25rem;
  }
}
.home .dest-main .auxi .cont-btn, .art .dest-main .auxi .cont-btn {
  margin-top: 20px;
  -webkit-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .cont-btn, .art .dest-main .auxi .cont-btn {
    margin-top: 0;
    padding-top: 15px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .auxi .cont-btn, .art .dest-main .auxi .cont-btn {
    margin-top: 0;
    padding-top: 15px;
  }
}
.home .dest-main .auxi .cont-btn .btn-main, .art .dest-main .auxi .cont-btn .btn-main {
  border-radius: 10px;
  padding: 18px 40px;
  font-size: 1.125rem;
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}
.home .dest-main .auxi .cont-btn .btn-main:hover, .art .dest-main .auxi .cont-btn .btn-main:hover {
  background-color: #ffffff;
  color: #000000;
}
.home .dest-main #videosubstitute, .art .dest-main #videosubstitute {
  min-height: 500px;
  position: relative;
  display: none;
}
@media (max-width: 425px) {
  .home .dest-main #videosubstitute, .art .dest-main #videosubstitute {
    display: none !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main #videosubstitute, .art .dest-main #videosubstitute {
    display: none !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-main #videosubstitute, .art .dest-main #videosubstitute {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .dest-main #videosubstitute, .art .dest-main #videosubstitute {
    display: block;
  }
}
@media (min-width: 1200px) {
  .home .dest-main #videosubstitute, .art .dest-main #videosubstitute {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .home .dest-main #videosubstitute, .art .dest-main #videosubstitute {
    display: none !important;
  }
}
.home .dest-main .swiper-wrapper, .art .dest-main .swiper-wrapper {
  height: auto !important;
}
.home .dest-main .swiper-pagination, .art .dest-main .swiper-pagination {
  padding: 10px 0;
}
.home .dest-main .swiper-pagination-bullet, .art .dest-main .swiper-pagination-bullet {
  background-color: #ffffff;
  width: 13px;
  height: 13px;
  margin: 0 5px;
  opacity: 0.4;
}
.home .dest-main .swiper-pagination-bullet-active, .art .dest-main .swiper-pagination-bullet-active {
  background-color: #d52b1e;
  opacity: 1;
}
.home .dest-main .video-wrap video, .art .dest-main .video-wrap video {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 425px) {
  .home .dest-main .video-wrap video, .art .dest-main .video-wrap video {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .home .dest-main .video-wrap video, .art .dest-main .video-wrap video {
    display: none;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-main .video-wrap video, .art .dest-main .video-wrap video {
    display: none;
  }
}
.home .dest-full .auxi > .tit, .art .dest-full .auxi > .tit {
  margin-top: 150px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .home .dest-full .auxi > .tit, .art .dest-full .auxi > .tit {
    margin-top: 80px;
    max-width: 60%;
    margin-bottom: 15px;
    font-size: 2.1875rem;
  }
}
.home .art-icons .content, .art .art-icons .content {
  max-width: 900px !important;
}
.home .art-icons .content p, .art .art-icons .content p {
  max-width: 100% !important;
}
.home .art-full .cont-btn, .art .art-full .cont-btn {
  padding-top: 0;
}

.arts.arts-bg, .relacionados.arts-bg {
  padding-bottom: 20px;
}
.arts.arts-bg .cont-tit .tit, .relacionados.arts-bg .cont-tit .tit {
  color: #37424a;
}
.arts.arts-dest .content, .relacionados.arts-dest .content {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .arts.arts-dest .content, .relacionados.arts-dest .content {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0);
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-dest .content, .relacionados.arts-dest .content {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0);
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts.arts-dest .content, .relacionados.arts-dest .content {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.arts.arts-dest .img-wrap, .relacionados.arts-dest .img-wrap {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  -webkit-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts.arts-dest .img-wrap, .relacionados.arts-dest .img-wrap {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.arts.arts-dest .cont-txt, .relacionados.arts-dest .cont-txt {
  padding: 5px 40px 30px !important;
  -webkit-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts.arts-dest .cont-txt, .relacionados.arts-dest .cont-txt {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.arts.arts-dest .cont-txt .top-art, .relacionados.arts-dest .cont-txt .top-art {
  margin: 0 0 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.arts.arts-dest .cont-txt .top-art .section, .relacionados.arts-dest .cont-txt .top-art .section {
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  background: #EF5A28;
  margin: 0 10px 0 0;
  padding: 6px 13px 7px;
}
.arts.arts-dest .cont-txt .top-art .fecha, .relacionados.arts-dest .cont-txt .top-art .fecha {
  color: #666666;
  font-size: 0.875rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  padding-bottom: 0;
}
@media (max-width: 425px) {
  .arts.arts-dest .cont-txt .top-art .fecha, .relacionados.arts-dest .cont-txt .top-art .fecha {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-dest .cont-txt .top-art .fecha, .relacionados.arts-dest .cont-txt .top-art .fecha {
    font-size: 0.875rem;
  }
}
.arts.arts-dest .cont-txt .subtit, .relacionados.arts-dest .cont-txt .subtit {
  color: #000000;
  font-size: 1.875rem;
  font-family: "Noto Serif", serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .arts.arts-dest .cont-txt .subtit, .relacionados.arts-dest .cont-txt .subtit {
    font-size: 1.5rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-dest .cont-txt .subtit, .relacionados.arts-dest .cont-txt .subtit {
    font-size: 1.5rem;
  }
}
.arts.arts-dest .cont-txt .subtit a, .relacionados.arts-dest .cont-txt .subtit a {
  color: #000000;
  font-size: 1.875rem;
  font-family: "Noto Serif", serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .arts.arts-dest .cont-txt .subtit a, .relacionados.arts-dest .cont-txt .subtit a {
    font-size: 1.5rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-dest .cont-txt .subtit a, .relacionados.arts-dest .cont-txt .subtit a {
    font-size: 1.5rem;
  }
}
.arts.arts-dest .cont-txt .bajada, .relacionados.arts-dest .cont-txt .bajada {
  font-size: 0.8125rem !important;
  color: #CCCCCC !important;
  line-height: 1.4 !important;
}
.arts.arts-bg .row, .relacionados.arts-bg .row {
  margin-left: 0;
}
.arts.arts-bg article, .relacionados.arts-bg article {
  position: relative;
  border-left-width: 0;
}
@media (max-width: 425px) {
  .arts.arts-bg article, .relacionados.arts-bg article {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-bg article, .relacionados.arts-bg article {
    margin-bottom: 0 !important;
  }
}
.arts.arts-bg article:nth-child(odd) .img-wrap:before, .relacionados.arts-bg article:nth-child(odd) .img-wrap:before {
  background-color: #d52b1e;
  opacity: 0.8;
}
.arts.arts-bg article:nth-child(even) .img-wrap:before, .relacionados.arts-bg article:nth-child(even) .img-wrap:before {
  background-color: rgba(0, 0, 0, 0.8);
}
.arts.arts-bg article .img-wrap, .relacionados.arts-bg article .img-wrap {
  position: relative;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.arts.arts-bg article .img-wrap:before, .relacionados.arts-bg article .img-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.arts.arts-bg article .cont-txt, .relacionados.arts-bg article .cont-txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  padding: 60px 40px;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (max-width: 425px) {
  .arts.arts-bg article .cont-txt, .relacionados.arts-bg article .cont-txt {
    padding: 10px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-bg article .cont-txt, .relacionados.arts-bg article .cont-txt {
    padding: 10px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts.arts-bg article .cont-txt, .relacionados.arts-bg article .cont-txt {
    padding: 20px 10px;
  }
}
.arts.arts-bg article .cont-txt h3, .arts.arts-bg article .cont-txt p, .relacionados.arts-bg article .cont-txt h3, .relacionados.arts-bg article .cont-txt p {
  color: #ffffff;
}
.arts.arts-bg article .cont-txt .pref, .relacionados.arts-bg article .cont-txt .pref {
  font-size: 2.1875rem;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
.arts.arts-bg article .cont-txt h3, .relacionados.arts-bg article .cont-txt h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.5;
  padding: 0 20px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .arts.arts-bg article .cont-txt h3, .relacionados.arts-bg article .cont-txt h3 {
    padding: 0;
    font-size: 0.8125rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-bg article .cont-txt h3, .relacionados.arts-bg article .cont-txt h3 {
    padding: 0;
    font-size: 0.8125rem;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts.arts-bg article .cont-txt h3, .relacionados.arts-bg article .cont-txt h3 {
    padding: 0;
  }
}
.arts.arts-bg article .cont-txt .bajada, .relacionados.arts-bg article .cont-txt .bajada {
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .arts.arts-bg article .cont-txt .bajada, .relacionados.arts-bg article .cont-txt .bajada {
    font-size: 0.75rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts.arts-bg article .cont-txt .bajada, .relacionados.arts-bg article .cont-txt .bajada {
    font-size: 0.75rem;
  }
}
.arts .row, .relacionados .row {
  padding-top: 30px;
  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, .relacionados .row {
    padding-top: 30px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts .row, .relacionados .row {
    padding-top: 30px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts .row, .relacionados .row {
    padding-top: 30px;
  }
}
.arts .row .col, .relacionados .row .col {
  margin-bottom: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .arts .row .col, .relacionados .row .col {
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts .row .col, .relacionados .row .col {
    margin-bottom: 20px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts .row .col, .relacionados .row .col {
    margin-bottom: 20px;
  }
}
.arts .auxi, .relacionados .auxi {
  position: relative;
  z-index: 2;
}
.arts .auxi .art-list li, .relacionados .auxi .art-list li {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 0.8125rem;
  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;
}
.arts .auxi .art-list li img, .relacionados .auxi .art-list li img {
  width: 17px;
  margin-right: 10px;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.arts .auxi .slide-3-m .swiper-slide, .relacionados .auxi .slide-3-m .swiper-slide {
  width: 250px;
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts .auxi .slide-3-m .swiper-slide, .relacionados .auxi .slide-3-m .swiper-slide {
    width: 280px;
  }
}
.arts .auxi article > a, .relacionados .auxi article > a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.arts .auxi .img-wrap, .relacionados .auxi .img-wrap {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.arts .auxi .img-wrap img, .relacionados .auxi .img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.arts .auxi .img-wrap:hover img, .relacionados .auxi .img-wrap:hover img {
  transform: scale(1.1);
}
.arts .auxi .img-wrap .medio, .relacionados .auxi .img-wrap .medio {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1000;
}
.arts .auxi .img-wrap:hover .medio img, .relacionados .auxi .img-wrap:hover .medio img {
  transform: none !important;
}
.arts .auxi .tag, .relacionados .auxi .tag {
  position: absolute;
  left: 0;
  top: 0;
  padding: 12px 22px;
  color: #ffffff;
  font-size: 0.8125rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  background: #0A1D85;
  z-index: 1;
}
.arts .auxi .tag .img-wrap, .relacionados .auxi .tag .img-wrap {
  background-color: #000000;
}
.arts .auxi .tag.block, .relacionados .auxi .tag.block {
  display: block !important;
  padding: 12px;
  background: rgba(10, 29, 133, 0.8);
}
.arts .auxi .tag.block strong, .relacionados .auxi .tag.block strong {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 0.938rem;
  display: table;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.arts .auxi .tag.block span, .relacionados .auxi .tag.block span {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 0.688rem;
  display: table;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.arts .auxi .cont-txt, .relacionados .auxi .cont-txt {
  background-color: #ffffff;
  padding: 10px 30px 30px;
  text-align: left;
  width: 100%;
}
@media (max-width: 425px) {
  .arts .auxi .cont-txt, .relacionados .auxi .cont-txt {
    padding: 10px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts .auxi .cont-txt, .relacionados .auxi .cont-txt {
    padding: 10px !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts .auxi .cont-txt, .relacionados .auxi .cont-txt {
    padding: 30px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .arts .auxi .cont-txt, .relacionados .auxi .cont-txt {
    padding: 25px !important;
  }
}
.arts .auxi .cont-txt .content, .relacionados .auxi .cont-txt .content {
  padding: 30px;
}
.arts .auxi .cont-txt .logo-rot, .relacionados .auxi .cont-txt .logo-rot {
  width: auto;
}
.arts .auxi .cont-txt .fecha, .relacionados .auxi .cont-txt .fecha {
  padding-bottom: 7px;
  font-size: 0.8125rem;
  color: #EC6726;
  padding: 0 0 8px;
  display: block;
}
.arts .auxi .cont-txt h3, .relacionados .auxi .cont-txt h3 {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.arts .auxi .cont-txt h3 a, .relacionados .auxi .cont-txt h3 a {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.3;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.arts .auxi .cont-txt .bajada, .relacionados .auxi .cont-txt .bajada {
  font-size: 0.938rem;
  color: #666666;
  line-height: 1.2;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  background: url("/cms/imag/v1/icon/bullet.png") no-repeat left 3px;
  padding-left: 20px;
}
@media (max-width: 425px) {
  .arts .auxi .cont-txt .bajada, .relacionados .auxi .cont-txt .bajada {
    font-size: 0.8125rem;
    padding-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts .auxi .cont-txt .bajada, .relacionados .auxi .cont-txt .bajada {
    font-size: 0.8125rem;
    padding-bottom: 15px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts .auxi .cont-txt .bajada, .relacionados .auxi .cont-txt .bajada {
    font-size: 0.875rem;
    padding-bottom: 10px;
  }
}
.arts .auxi .cont-txt .cat, .relacionados .auxi .cont-txt .cat {
  font-size: 0.75rem;
  color: #000000;
  padding-top: 30px;
  border-top: 2px solid #f2f2f2;
}
.arts .auxi .cont-txt .cont-btn, .relacionados .auxi .cont-txt .cont-btn {
  padding-bottom: 15px;
}
.arts .auxi .cont-txt .cont-btn .cont-btn, .relacionados .auxi .cont-txt .cont-btn .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) {
  .arts .auxi .cont-txt .cont-btn .cont-btn, .relacionados .auxi .cont-txt .cont-btn .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts .auxi .cont-txt .cont-btn .cont-btn, .relacionados .auxi .cont-txt .cont-btn .cont-btn {
    padding: 15px 0 0;
  }
}
.arts .auxi .cont-txt .cont-btn .btn-main, .relacionados .auxi .cont-txt .cont-btn .btn-main {
  display: inline-block;
  font-size: 1rem;
  color: #8C8C8C;
  padding: 12px 40px;
  background-color: none;
  border: 1px solid rgba(144, 144, 144, 0.3);
  letter-spacing: 1px;
  transition: 0.3s all ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .arts .auxi .cont-txt .cont-btn .btn-main, .relacionados .auxi .cont-txt .cont-btn .btn-main {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts .auxi .cont-txt .cont-btn .btn-main, .relacionados .auxi .cont-txt .cont-btn .btn-main {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
.arts .auxi .cont-txt .cont-btn .btn-main:hover, .relacionados .auxi .cont-txt .cont-btn .btn-main:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #d52b1e;
  border-color: #d52b1e;
}
.arts .auxi .cont-txt .cont-btn .btn-main.more, .relacionados .auxi .cont-txt .cont-btn .btn-main.more {
  color: #d52b1e;
  border-bottom: 4px solid #CCCCCC;
  margin-left: 20px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts .auxi .cont-txt .cont-btn, .relacionados .auxi .cont-txt .cont-btn {
    font-size: 0.75rem;
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.arts .auxi .cont-txt .cont-btn .btn-main, .relacionados .auxi .cont-txt .cont-btn .btn-main {
  font-size: 0.875rem;
  line-height: 1.5;
  background-image: none !important;
}
.arts .auxi .cont-txt .cont-btn .btn-main:hover, .relacionados .auxi .cont-txt .cont-btn .btn-main:hover {
  background-image: none !important;
  background-color: #f2f2f2;
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts .auxi .cont-txt .cont-btn .btn-main, .relacionados .auxi .cont-txt .cont-btn .btn-main {
    font-size: 0.75rem;
    padding: 8px 30px 8px 20px;
  }
}
.arts .auxi .cont-txt .cont-btn .btn-sec, .relacionados .auxi .cont-txt .cont-btn .btn-sec {
  font-size: 0.875rem;
  color: #000000;
  background: none;
  border-color: rgba(255, 255, 255, 0);
  text-transform: uppercase;
  padding: 10px 45px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .arts .auxi .cont-txt .cont-btn .btn-sec, .relacionados .auxi .cont-txt .cont-btn .btn-sec {
    font-size: 0.75rem;
    padding: 10px 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts .auxi .cont-txt .cont-btn .btn-sec, .relacionados .auxi .cont-txt .cont-btn .btn-sec {
    font-size: 0.75rem;
    padding: 10px 20px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .arts .auxi .cont-txt .cont-btn .btn-sec, .relacionados .auxi .cont-txt .cont-btn .btn-sec {
    font-size: 0.75rem;
    padding: 8px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .arts .auxi .cont-txt .cont-btn .btn-sec, .relacionados .auxi .cont-txt .cont-btn .btn-sec {
    padding: 10px 25px;
  }
}

.tax-port .arts .row {
  padding-top: 0;
}

.tax-port .arts-dest .row {
  padding-top: 20px;
}

.inter .arts-ultimo .row {
  padding-top: 0;
}

.menujq > ul {
  margin-left: 0 !important;
  list-style: none;
}
.menujq > ul > li {
  margin-bottom: 12px;
  list-style: none !important;
  background-color: #f2f2f2;
}
.menujq > ul > li > a {
  position: relative;
  display: block;
  padding: 30px 50px 30px 30px;
  font-size: 0.875rem;
  color: #37424a;
  cursor: pointer;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .menujq > ul > li > a {
    padding: 15px 25px 15px 15px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .menujq > ul > li > a {
    padding: 15px 25px 15px 15px;
  }
}
.menujq > ul > li > a:after {
  content: "";
  position: absolute;
  right: 17px;
  top: 35%;
  margin-right: 10px;
  width: 21px;
  height: 21px;
  background-image: url("../../imag/v1/icon/ic_plus.png");
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: auto;
}
@media (max-width: 425px) {
  .menujq > ul > li > a:after {
    right: 0;
    top: 27%;
    margin-right: 7px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .menujq > ul > li > a:after {
    right: 0;
    top: 27%;
    margin-right: 7px;
  }
}
.menujq > ul > li.active a {
  color: #d52b1e;
}
.menujq > ul > li.active a:after {
  content: "";
  background-image: url("../../imag/v1/icon/ic_minus.png");
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
.menujq > ul > li.active ul a {
  color: #000000;
  background: none;
}
.menujq > ul > li.active ul a:hover {
  color: #000000;
  transition: 0.2s all ease;
}
.menujq > ul > li:first-child > ul {
  display: block;
}
.menujq .desplegable ul {
  list-style: none;
  padding-bottom: 30px;
}
.menujq .desplegable ul li {
  list-style: none !important;
}
.menujq .desplegable ul li > p {
  padding: 0 30px 20px;
  line-height: 1.8;
  font-size: 0.875rem;
  color: #37424a;
}
.menujq .list ul {
  padding: 20px 0;
  list-style: none;
  display: block !important;
}
.menujq .list ul li {
  list-style: none !important;
}
.menujq .list ul li a {
  background: none;
  color: #000000;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.menujq .list ul li a:after {
  content: none;
}
.menujq .list ul li a img {
  width: 23px;
  margin-right: 8px;
}

.dest-3 .dest-in {
  position: relative;
}
.dest-3 .dest-in: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.9) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.dest-3 .dest-in.not-small {
  margin-bottom: 18px;
}
.dest-3 .dest-in.not-small:last-child {
  margin-bottom: 0;
}
.dest-3 .dest-in .cont-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
}
.dest-3 .dest-in .cont-txt h3 {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.5;
  text-transform: uppercase;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.dest-3 .not-big .cont-txt {
  padding: 30px;
}
.dest-3 .not-big .cont-txt h3 {
  font-size: 1.5rem;
  max-width: 90%;
}
.dest-3 .video .cont-play {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 35px);
}

.carousel {
  padding-bottom: 0;
}
.carousel .auxi {
  max-width: 1200px;
}
@media (max-width: 425px) {
  .carousel .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .carousel .auxi {
    padding: 0;
  }
}
.carousel .auxi .dos-col {
  text-align: left;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .carousel .auxi .dos-col {
    -webkit-box-orient: block-axis;
    -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: 729px) {
  .carousel .auxi .dos-col {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.carousel .auxi .cont-tit .baj {
  max-width: 600px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .carousel .auxi .cont-tit .baj {
    padding-left: 40px;
  }
}
.carousel .auxi .cont-tit .tit {
  font-size: 3rem !important;
  color: #d52b1e;
  text-transform: none;
  margin-bottom: 30px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .carousel .auxi .cont-tit .tit {
    font-size: 1.875rem !important;
    text-align: left;
    margin-bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .carousel .auxi .cont-tit .tit {
    font-size: 1.875rem !important;
    text-align: left;
    margin-bottom: 10px;
  }
}
.carousel .auxi .wrap-car {
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}
.carousel .auxi .swiper-container {
  margin: 0 100px;
  position: initial;
  background-color: #ffffff;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
@media (max-width: 425px) {
  .carousel .auxi .swiper-container {
    margin: 0;
    border-radius: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .carousel .auxi .swiper-container {
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 425px) {
  .carousel .auxi .swiper-container article {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .carousel .auxi .swiper-container article {
    padding: 0;
  }
}
.carousel .auxi .swiper-container .img-wrap {
  position: relative;
}
.carousel .auxi .swiper-container .cont-tit {
  text-align: left;
  padding: 20px 0 0;
  margin-bottom: 0;
}
.carousel .auxi .swiper-container .cont-tit h3, .carousel .auxi .swiper-container .cont-tit a {
  text-transform: uppercase;
  color: #d52b1e;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-right: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .carousel .auxi .swiper-container .cont-tit h3, .carousel .auxi .swiper-container .cont-tit a {
    font-size: 0.8125rem;
    line-height: 1.4;
    margin-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .carousel .auxi .swiper-container .cont-tit h3, .carousel .auxi .swiper-container .cont-tit a {
    font-size: 0.8125rem;
    line-height: 1.4;
    margin-right: 0;
  }
}
.carousel .auxi .swiper-container .cont-tit .fecha {
  color: #f2f2f2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.carousel .auxi .swiper-container .cont-tit .fecha img {
  width: 18px;
  margin-right: 5px;
}
.carousel .auxi .swiper-container .cont-btn {
  padding-top: 10px;
  text-align: left;
}
.carousel .auxi .swiper-container .cont-btn .btn-sec {
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-right: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-image: url("../../imag/v1/icon/chevron_right_l.png");
  background-repeat: no-repeat;
  background-position: 96%;
  background-size: 13px;
}
@media (max-width: 425px) {
  .carousel .auxi .swiper-container .cont-btn .btn-sec {
    font-size: 0.75rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .carousel .auxi .swiper-container .cont-btn .btn-sec {
    font-size: 0.75rem;
  }
}
.carousel .auxi .swiper-container .swiper-button-prev, .carousel .auxi .swiper-container .swiper-button-next {
  background-color: #ffffff;
  border-radius: 50%;
}
@media (max-width: 425px) {
  .carousel .auxi .swiper-container .swiper-button-prev, .carousel .auxi .swiper-container .swiper-button-next {
    background-color: transparent;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .carousel .auxi .swiper-container .swiper-button-prev, .carousel .auxi .swiper-container .swiper-button-next {
    background-color: transparent;
  }
}
.carousel .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) {
  .carousel .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .carousel .cont-btn {
    padding: 15px 0 0;
  }
}
.carousel .btn-main {
  display: inline-block;
  font-size: 1rem;
  color: #000000;
  padding: 12px 45px;
  background-color: #ffffff;
  border: 1px solid #000000;
  letter-spacing: 1px;
  transition: 0.3s all ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .carousel .btn-main {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .carousel .btn-main {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
.carousel .btn-main:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #d52b1e;
  border-color: #d52b1e;
}
.carousel .btn-main.more {
  color: #d52b1e;
  border-bottom: 4px solid #CCCCCC;
  margin-left: 20px;
}

.grad-negro: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.9) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.dest-full {
  padding-top: 45px;
  min-height: 350px;
  position: relative;
}
.dest-full:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 425px) {
  .dest-full {
    padding: 20px 0;
    min-height: 200px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .dest-full {
    padding: 30px 0;
    min-height: 200px;
    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;
  }
}
.dest-full .cont-tit.dos-col {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .dest-full .cont-tit.dos-col {
    -webkit-box-orient: block-axis;
    -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: 729px) {
  .dest-full .cont-tit.dos-col {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.dest-full .cont-tit.dos-col .cont-txt {
  text-align: left;
  max-width: 700px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .dest-full .cont-tit.dos-col .cont-txt {
    max-width: 520px;
  }
}
.dest-full .cont-tit.dos-col .cont-txt .tit {
  margin-left: 0;
}
@media (max-width: 425px) {
  .dest-full .cont-tit.dos-col .cont-txt .tit {
    text-align: left;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .dest-full .cont-tit.dos-col .cont-txt .tit {
    text-align: left;
  }
}
.dest-full .cont-tit .tit {
  text-transform: none;
  margin: 0 auto;
  max-width: 760px;
}
.dest-full.dest-media {
  padding-bottom: 0;
}
.dest-full.dest-media:before {
  content: none;
}
.dest-full.dest-media .media {
  margin: 0;
  margin-top: 50px;
}
.dest-full.dest-center .auxi {
  max-width: 700px;
  text-align: center;
}
.dest-full.dest-center .cont-tit {
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.dest-full.dest-center .baj {
  line-height: 1.5;
}
.dest-full.dest-center .cont-btn {
  text-align: center;
}
.dest-full .cont-tit .tit, .dest-full .cont-tit .baj {
  color: #ffffff;
}
.dest-full .cont-tit .epig {
  color: #000000;
}
.dest-full .auxi {
  z-index: 1;
  position: relative;
}
.dest-full .auxi:hover .cont-play {
  opacity: 1;
}
.dest-full .auxi > .tit {
  margin-top: 80px;
  line-height: 1.3;
  font-size: 3.75rem;
  max-width: 60%;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .dest-full .auxi > .tit {
    font-size: 1.5rem;
    max-width: 100%;
    margin-top: 80px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .dest-full .auxi > .tit {
    font-size: 1.5rem;
    max-width: 100%;
    margin-top: 80px !important;
  }
}
.dest-full .auxi > .baj {
  margin-left: 0;
  line-height: 1.4;
  max-width: 70%;
  font-size: 1.125rem;
}
@media (max-width: 425px) {
  .dest-full .auxi > .baj {
    font-size: 0.875rem;
    max-width: 100%;
    margin-top: 8px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .dest-full .auxi > .baj {
    font-size: 0.875rem;
    max-width: 100%;
    margin-top: 8px !important;
  }
}
.dest-full .auxi p, .dest-full .auxi h3, .dest-full .auxi h2 {
  color: #ffffff;
}
.dest-full .breadcrumb, .dest-full .breadcrumb a {
  color: #ffffff !important;
}
.dest-full .breadcrumb:after, .dest-full .breadcrumb a:after {
  color: #ffffff !important;
}
.dest-full .cont-btn {
  padding-top: 40px;
  padding-bottom: 20px;
  text-align: center;
}
@media (max-width: 425px) {
  .dest-full .cont-btn {
    padding-top: 20px;
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .dest-full .cont-btn {
    padding-top: 20px;
    text-align: center;
  }
}
@media (max-width: 425px) {
  .dest-full .cont-btn .btn-main {
    padding: 20px 39px;
    font-size: 14px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .dest-full .cont-btn .btn-main {
    padding: 20px 39px;
    font-size: 14px !important;
  }
}
.dest-full .cont-btn .btn-main:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cifras {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 425px) {
  .cifras {
    padding: 40px 0;
    background-image: none !important;
    background-color: #f2f2f2;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cifras {
    padding: 40px 0;
    background-image: none !important;
    background-color: #f2f2f2;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .cifras {
    padding: 50px 0;
  }
}
.cifras:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  z-index: 1;
  background: rgba(255, 255, 255, 0.8) !important;
}
.cifras .row {
  margin-top: 110px;
  margin-bottom: 60px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .cifras .row {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .cifras .row .col {
    margin-bottom: 30px;
  }
}
.cifras .auxi {
  position: relative;
  z-index: 1;
}
@media (max-width: 425px) {
  .cifras .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cifras .auxi {
    padding: 0;
  }
}
@media (max-width: 425px) {
  .cifras .cont-tit {
    margin-bottom: 40px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cifras .cont-tit {
    margin-bottom: 40px;
  }
}
.cifras .cont-tit .tit, .cifras .cont-tit .baj {
  color: #000000 !important;
}
@media (max-width: 425px) {
  .cifras .cont-tit .baj {
    text-align: center;
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cifras .cont-tit .baj {
    text-align: center;
    font-size: 1rem;
  }
}
.cifras .slide-3-m .swiper-slide {
  width: 200px;
}
@media (min-width: 426px) and (max-width: 729px) {
  .cifras .slide-3-m .swiper-slide {
    width: 230px;
  }
}
.cifras .img-wrap {
  max-width: 80px;
  margin: 0 auto 10px;
}
@media (max-width: 425px) {
  .cifras .img-wrap {
    max-width: 74px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cifras .img-wrap {
    max-width: 74px;
  }
}
.cifras .cont-txt {
  text-align: center;
}
.cifras .cont-txt h3, .cifras .cont-txt p {
  color: #000000;
}
.cifras .cont-txt .number {
  margin-top: 10px;
  font-size: 60px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .cifras .cont-txt .number {
    font-size: 48px;
    margin-top: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cifras .cont-txt .number {
    font-size: 48px;
    margin-top: 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .cifras .cont-txt .number {
    font-size: 50px;
  }
}
.cifras .cont-txt .pref {
  max-width: 230px;
  margin: 10px auto 0;
  font-size: 1.125rem;
}
@media (max-width: 425px) {
  .cifras .cont-txt .pref {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cifras .cont-txt .pref {
    font-size: 1rem;
  }
}

.grid-box .box-bg {
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 480px) and (max-width: 767px) {
  .grid-box .box-bg {
    width: 50%;
  }
}
.grid-box .box-bg a: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.9) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.grid-box .box-bg .cont-txt {
  margin: 60px;
  border-bottom: 6px solid #d52b1e;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 480px) and (max-width: 767px) {
  .grid-box .box-bg .cont-txt {
    margin: 15px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .grid-box .box-bg .cont-txt {
    margin: 20px;
  }
}
.grid-box .box-bg .cont-txt .pref, .grid-box .box-bg .cont-txt .subtit {
  color: #ffffff;
  text-align: center;
}
.grid-box .box-bg .cont-txt .pref {
  font-size: 1.125rem;
}
@media (min-width: 730px) and (max-width: 991px) {
  .grid-box .box-bg .cont-txt .pref {
    font-size: 1rem;
  }
}
.grid-box .box-bg .cont-txt .subtit {
  margin-bottom: 20px;
  margin-top: 15px;
  line-height: 1.4;
  font-size: 24px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (min-width: 730px) and (max-width: 991px) {
  .grid-box .box-bg .cont-txt .subtit {
    font-size: 1.5rem;
  }
}

.art-full {
  padding: 80px 0;
}
@media (max-width: 425px) {
  .art-full {
    padding: 30px 0 40px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art-full {
    padding: 30px 0 40px;
  }
}
.art-full .auxi {
  max-width: 900px;
}
.art-full .content {
  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) {
  .art-full .content {
    -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 (min-width: 426px) and (max-width: 729px) {
  .art-full .content {
    -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;
  }
}
.art-full .content .img-wrap {
  overflow: hidden;
  -webkit-flex: 0 0 200px;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
}
.art-full .content .cont-txt {
  padding: 20px 30px;
}
.art-full .content .cont-txt .tit {
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .art-full .content .cont-txt .tit {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art-full .content .cont-txt .tit {
    text-align: center;
  }
}
.art-full .content .cont-txt .description {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
  max-width: 600px;
  color: #000000;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}

.video-cont .auxi {
  max-width: 800px;
}

.bloq-full-2 {
  padding: 50px 0;
}
.bloq-full-2.bg-gris-oscuro h2, .bloq-full-2.bg-gris-oscuro p, .bloq-full-2.bg-gris-oscuro span {
  color: #ffffff !important;
}
.bloq-full-2.bloq-video {
  padding: 80px 0;
}
@media (max-width: 425px) {
  .bloq-full-2.bloq-video {
    padding: 40px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2.bloq-video {
    padding: 40px 0;
  }
}
.bloq-full-2.bloq-video .auxi {
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 425px) {
  .bloq-full-2.bloq-video .auxi {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2.bloq-video .auxi {
    display: block;
  }
}
.bloq-full-2.bloq-video .auxi .img-wrap {
  padding-bottom: 0;
  -webkit-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 425px) {
  .bloq-full-2.bloq-video .auxi .img-wrap {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2.bloq-video .auxi .img-wrap {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.bloq-full-2.bloq-video .auxi .cont-txt {
  -webkit-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 425px) {
  .bloq-full-2.bloq-video .auxi .cont-txt {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2.bloq-video .auxi .cont-txt {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
.bloq-full-2 .col .tag span {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
.bloq-full-2 .col h2, .bloq-full-2 .col p {
  color: #ffffff;
}
.bloq-full-2 .col h2 {
  margin-bottom: 40px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  font-size: 2.1875rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .bloq-full-2 .col h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .col h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .bloq-full-2 .col h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bloq-full-2 .col h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.bloq-full-2 .col a {
  color: #ffffff;
}
.bloq-full-2 .col .txt {
  padding-top: 50px;
}
.bloq-full-2 .col .txt p {
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.bloq-full-2 .col .txt p strong {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.bloq-full-2 .col .autor {
  color: #d52b1e;
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.bloq-full-2 .col .fecha {
  margin-bottom: 10px;
  font-size: 2.1875rem;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
.bloq-full-2 .col .hora {
  color: #ffffff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
.bloq-full-2 .col .cont-btn {
  text-align: left;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.bloq-full-2 .col .cont-btn .btn-main {
  color: #000000;
}
@media (max-width: 425px) {
  .bloq-full-2 .col .cont-btn .btn-main {
    padding: 12px 50px 12px 20px;
    background-position: calc(100% - 20px) !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .col .cont-btn .btn-main {
    padding: 12px 50px 12px 20px;
    background-position: calc(100% - 20px) !important;
  }
}
.bloq-full-2 .col .cont-btn .btn-main:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}

.art-bg .content {
  position: relative;
  min-height: 450px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .art-bg .content {
    min-height: 400px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art-bg .content {
    min-height: 400px;
  }
}
.art-bg .cont-txt {
  padding: 40px;
  max-width: 800px;
  -ms-flex-item-align: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
@media (max-width: 425px) {
  .art-bg .cont-txt {
    padding: 15px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art-bg .cont-txt {
    padding: 15px;
  }
}
@media (max-width: 425px) {
  .art-bg .cont-txt .cont-tit {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art-bg .cont-txt .cont-tit {
    padding: 0;
  }
}
.art-bg .cont-txt .cont-tit .tit {
  color: #ffffff;
  text-transform: none;
  line-height: 1.5;
  font-size: 1.5rem !important;
}
@media (max-width: 425px) {
  .art-bg .cont-txt .cont-tit .tit {
    text-align: left;
    font-size: 1.125rem !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art-bg .cont-txt .cont-tit .tit {
    text-align: left;
    font-size: 1.125rem !important;
  }
}
.art-bg .cont-txt .baj {
  color: #ffffff;
  line-height: 1.3;
  margin-top: 30px;
}

@media (max-width: 425px) {
  .art-icons .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art-icons .auxi {
    padding: 0;
  }
}
.art-icons.bg-rojo p, .art-icons.bg-rojo .tit, .art-icons.bg-rojo .subtit {
  color: #ffffff !important;
}
.art-icons .cont-tit {
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.art-icons .cont-tit .tit {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}
.art-icons .cont-tit .content {
  text-align: center;
  max-width: 750px;
  margin: 30px auto 0;
}
.art-icons .cont-tit .content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 2;
  max-width: 520px;
  margin: 0 auto;
  color: #3C3C3B;
  letter-spacing: 0.5px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.art-icons article {
  margin-bottom: 20px;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.art-icons article .img-wrap {
  margin: 0 auto;
  background: none !important;
  border-radius: 0 !important;
}
.art-icons article .img-wrap img {
  margin: 0 auto;
}
.art-icons article .cont-txt {
  padding: 20px 15px !important;
  text-align: center;
  background: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  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;
}
.art-icons article .cont-txt a {
  color: #d52b1e;
  border-bottom: 1px dotted #d52b1e;
}
.art-icons article .cont-txt .subtit {
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.3;
  max-width: 80%;
  margin: 0 auto;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 425px) {
  .art-icons article .cont-txt .subtit {
    font-size: 0.8125rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art-icons article .cont-txt .subtit {
    font-size: 0.8125rem;
  }
}

.events {
  padding-bottom: 0;
}
.events .tabs-panels {
  padding-top: 0;
}
.events .row .col > .img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.events .row .col > .img-wrap:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.events .row .enc-art {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.events .row .enc-art .tag {
  position: relative;
}
.events .row .enc-art .txt {
  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: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.events .row .enc-art .txt .subtit {
  padding: 0 30px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #ffffff;
  font-size: 1.125rem;
  text-transform: uppercase;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.events .row .enc-art .txt .fecha {
  color: #ffffff;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  -webkit-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}
.events .row .enc-art .txt .hora {
  color: #ffffff;
  font-size: 0.8125rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.events .row .cont-txt {
  background-color: #f2f2f2;
  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;
}
.events .row .cont-txt .txt {
  text-align: center;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.events .row .cont-txt .txt .autor {
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.events .row .cont-txt .txt .pref {
  font-size: 0.8125rem;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: #37424a;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.events .row .cont-btn {
  padding-bottom: 0 !important;
}

.cont-map .cont-tit .epig {
  color: #d52b1e;
}
.cont-map .cont-tit .tit, .cont-map .cont-tit .baj {
  color: #ffffff;
}

.box-logos {
  padding-top: 0;
}
.box-logos img {
  width: auto;
  margin: auto;
}
.box-logos .subtit {
  text-transform: uppercase;
  text-align: center;
  margin: 40px 0;
}
.box-logos .cont-logos {
  padding-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;
}
@media (max-width: 425px) {
  .box-logos .cont-logos {
    -webkit-box-orient: block-axis;
    -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: 729px) {
  .box-logos .cont-logos {
    -webkit-box-orient: block-axis;
    -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-logos .img-wrap {
  padding: 3px;
}
.box-logos .logos {
  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;
}
.box-logos .logos .img-wrap {
  margin-bottom: 40px;
  -webkit-flex: 0 1 14.28%;
  -ms-flex: 0 1 14.28%;
  flex: 0 1 14.28%;
}

.productos {
  padding: 60px 0 20px;
}
@media (max-width: 425px) {
  .productos {
    padding: 30px 0 10px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .productos {
    padding: 30px 0 10px;
  }
}
.productos .cont-tit .tit {
  color: #37424a;
}
.productos .prod-content {
  max-width: 940px;
  margin: 20px auto;
  position: relative;
}
.productos .prod-content.box-4 {
  max-width: 100%;
}
.productos .prod-content.box-4 .row {
  margin-top: 40px;
  margin-left: -30px;
}
.productos .prod-content.box-4 .col {
  border-left-width: 30px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .productos .prod-content.box-4 .col {
    max-width: 50%;
    margin-bottom: 20px;
    border-left-width: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .productos .prod-content.box-4 .col {
    max-width: 50%;
    width: 50%;
    margin-bottom: 20px;
    border-left-width: 20px;
  }
}
@media (min-width: 1200px) {
  .productos .prod-content.box-4 .col {
    max-width: 25%;
  }
}
@media (min-width: 1200px) {
  .productos .prod-content.box-4 .col {
    max-width: 25%;
  }
}
.productos .row {
  margin-left: -35px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .productos .row {
    margin-left: -20px !important;
  }
}
.productos .col {
  border-left-width: 35px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .productos .col {
    max-width: 33.3333333333%;
    border-left-width: 20px;
  }
}
.productos .box-dest {
  background-color: #ffffff;
  padding: 40px 0 0;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0px 1px 18px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 18px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 18px -7px rgba(0, 0, 0, 0.3);
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}
@media (max-width: 425px) {
  .productos .box-dest {
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .productos .box-dest {
    margin-bottom: 20px;
  }
}
.productos .box-dest li {
  background-image: url("../../imag/v1/icon/check.png");
}
.productos .box-dest .enc-card {
  position: relative;
}
.productos .box-dest .enc-card .cont-txt {
  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;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.productos .box-dest .enc-card .cont-txt h3, .productos .box-dest .enc-card .cont-txt p {
  color: #d52b1e;
  display: block;
}
.productos .box-dest .enc-card .cont-txt p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.productos .box-dest .enc-card .cont-txt h3 {
  padding: 0 30px;
  font-size: 1.125rem;
  margin-bottom: 30px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.productos .box-dest .enc-card img {
  width: auto;
}
.productos .box-dest .content {
  padding: 25px;
  padding-bottom: 80px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .productos .box-dest .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.productos .box-dest .content ul {
  text-align: left;
}
.productos .box-dest .content ul li {
  color: #CCCCCC;
  font-size: 0.8125rem;
  line-height: 1.3;
  padding-bottom: 20px;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: left 4px;
  background-size: 15px;
}
.productos .box-dest .content .precio {
  padding: 10px 0;
  font-size: 1.125rem;
}
@media (max-width: 425px) {
  .productos .box-dest .content .precio {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .productos .box-dest .content .precio {
    text-align: center;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .productos .box-dest .content .precio {
    text-align: center;
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .productos .box-dest .content .precio {
    text-align: center;
  }
}
.productos .box-dest .content .precio .dest-price {
  color: #d52b1e;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.productos .box-dest .content .precio .pref {
  font-size: 0.875rem;
}
.productos .box-dest .content .precio .iva {
  font-size: 0.6875rem;
}
.productos .box-dest .content .precio-regular {
  font-size: 0.6875rem;
  color: #CCCCCC;
  text-decoration: line-through;
  text-align: left;
}
@media (max-width: 425px) {
  .productos .box-dest .content .precio-regular {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .productos .box-dest .content .precio-regular {
    text-align: center;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .productos .box-dest .content .precio-regular {
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .productos .box-dest .content .precio-regular {
    text-align: center;
  }
}
.productos .box-dest .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) {
  .productos .box-dest .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .productos .box-dest .cont-btn {
    padding: 15px 0 0;
  }
}
.productos .box-dest .btn-main {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  padding: 12px 30px;
  background-color: #d52b1e;
  border: 1px solid #d52b1e;
  letter-spacing: 1px;
  transition: 0.3s all ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .productos .box-dest .btn-main {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .productos .box-dest .btn-main {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
.productos .box-dest .btn-main:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #d52b1e;
  border-color: #d52b1e;
}
.productos .box-dest .btn-main.more {
  color: #d52b1e;
  border-bottom: 4px solid #CCCCCC;
  margin-left: 20px;
}
.productos .box-dest .cont-btn {
  padding: 20px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.productos .box-dest .cont-btn .btn-main {
  font-size: 1rem;
  width: 100%;
}
@media (max-width: 425px) {
  .productos .box-dest .cont-btn .btn-main {
    padding: 8px 25px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .productos .box-dest .cont-btn .btn-main {
    padding: 8px 25px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .productos .box-dest .cont-btn .btn-main {
    padding: 8px 30px 8px 15px;
  }
}
.productos .box-dest .cont-btn .btn-sec {
  font-size: 0.75rem;
  margin-right: 5px;
  padding: 8px 30px;
}
@media (min-width: 730px) and (max-width: 991px) {
  .productos .box-dest .cont-btn .btn-sec {
    padding: 8px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .productos .box-dest .cont-btn .btn-sec {
    padding: 7px 25px !important;
  }
}
.productos .box-dest .cont-btn .dropbtn-m {
  background-size: 10px;
}
.productos .box-dest .cont-btn .dropdown-content {
  bottom: 45px;
  right: 0;
  z-index: 2;
}

.bloq-full-2 .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .bloq-full-2 .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: 729px) {
  .bloq-full-2 .auxi {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.bloq-full-2 .img-wrap {
  position: relative;
  padding-bottom: 60px;
  -webkit-flex: 0 1 40%;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
}
@media (max-width: 425px) {
  .bloq-full-2 .img-wrap {
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .img-wrap {
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .bloq-full-2 .img-wrap {
    padding-bottom: 0;
    -webkit-flex: 1 0 45%;
    -ms-flex: 1 0 45%;
    flex: 1 0 45%;
  }
}
.bloq-full-2 .img-wrap .cont-box {
  background-color: #d52b1e;
  position: absolute;
  right: -5%;
  bottom: 0;
  padding: 50px;
  text-align: center;
  max-width: 290px;
}
@media (max-width: 425px) {
  .bloq-full-2 .img-wrap .cont-box {
    max-width: 230px;
    right: 0;
    padding: 25px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .img-wrap .cont-box {
    max-width: 230px;
    right: 0;
    padding: 25px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .bloq-full-2 .img-wrap .cont-box {
    padding: 30px;
    max-width: 250px;
    right: 0%;
    top: 40%;
    bottom: auto;
  }
}
.bloq-full-2 .img-wrap .cont-box p {
  color: #f2f2f2;
}
.bloq-full-2 .img-wrap .cont-box .number {
  margin-bottom: 5px;
  letter-spacing: 2px;
  font-size: 3.75rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.bloq-full-2 .img-wrap .cont-box .baj {
  line-height: 1.3;
  letter-spacing: 0.5px;
  font-size: 1.5rem;
}
.bloq-full-2 .cont-txt {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex: 0 1 60%;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
}
@media (max-width: 425px) {
  .bloq-full-2 .cont-txt {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .cont-txt {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .bloq-full-2 .cont-txt {
    -webkit-flex: 1 0 55%;
    -ms-flex: 1 0 55%;
    flex: 1 0 55%;
  }
}
.bloq-full-2 .cont-txt .container {
  padding-bottom: 50px;
  padding-left: 50px;
}
@media (max-width: 425px) {
  .bloq-full-2 .cont-txt .container {
    padding: 30px 0 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .cont-txt .container {
    padding: 30px 0 0 !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .bloq-full-2 .cont-txt .container {
    padding: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bloq-full-2 .cont-txt .container {
    padding: 30px;
  }
}
.bloq-full-2 .cont-txt .container .img-wrap {
  margin-bottom: 10px;
}
.bloq-full-2 .cont-txt .container .img-wrap img {
  width: 60px;
  opacity: 80%;
}
@media (min-width: 730px) and (max-width: 991px) {
  .bloq-full-2 .cont-txt .container .img-wrap img {
    width: 50px;
  }
}
.bloq-full-2 .cont-txt .container h2, .bloq-full-2 .cont-txt .container p {
  color: #37424a;
}
.bloq-full-2 .cont-txt .container h2 {
  margin-bottom: 40px;
  line-height: 1.1;
  color: #d52b1e;
  font-size: 3rem !important;
  text-transform: none;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .bloq-full-2 .cont-txt .container h2 {
    font-size: 1.875rem !important;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .cont-txt .container h2 {
    font-size: 1.875rem !important;
    margin-bottom: 20px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .bloq-full-2 .cont-txt .container h2 {
    font-size: 1.875rem !important;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bloq-full-2 .cont-txt .container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.bloq-full-2 .cont-txt .container h2 .bold {
  color: #37424a;
}
.bloq-full-2 .cont-txt .container .baj {
  font-size: 1rem;
  line-height: 2;
}
@media (max-width: 425px) {
  .bloq-full-2 .cont-txt .container .baj {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .cont-txt .container .baj {
    font-size: 0.875rem;
  }
}
.bloq-full-2 .cont-txt .container .fecha {
  margin-bottom: 15px;
  font-size: 0.875rem;
  color: #8C8C8C;
}
.bloq-full-2 .cont-txt .container ul {
  padding-top: 30px;
}
.bloq-full-2 .cont-txt .container ul li {
  font-size: 1rem;
  color: #37424a;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 1.4;
  background-repeat: no-repeat;
  background-position: left -1px;
  background-size: 16px;
  background-image: url("../../imag/v1/icon/check.png");
}
@media (max-width: 425px) {
  .bloq-full-2 .cont-txt .container ul li {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .cont-txt .container ul li {
    font-size: 0.875rem;
  }
}
@media (max-width: 425px) {
  .bloq-full-2 .cont-btn .btn-main {
    padding: 12px 50px 12px 20px;
    background-position: calc(100% - 20px) !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .bloq-full-2 .cont-btn .btn-main {
    padding: 12px 50px 12px 20px;
    background-position: calc(100% - 20px) !important;
  }
}
.bloq-full-2 .cont-btn .btn-main:hover {
  background-color: #d52b1e;
  border-color: #d52b1e;
  color: #ffffff;
}

.cont-art .bloq-txt {
  padding-left: 30px;
  /*.tit
  * font-size: 3rem !important
  * max-width: 280px
  * color: $mcg_gris
  * text-transform: none
  * margin-bottom: 30px
  * @include noto-regular
  *
  * /////// media query ///////
  *
  * @include media(xxs) // mobile small (min-width : 320px)
  * font-size: $titular_md !important
  * text-align: left
  *
  * @include media(xs)  // mobile medium (min-width : 480px)
  * font-size: $titular_md !important
  * text-align: left*/
}
@media (max-width: 425px) {
  .cont-art .bloq-txt {
    padding-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cont-art .bloq-txt {
    padding-left: 0;
  }
}
.cont-art .bloq-txt .pref {
  color: #d52b1e;
  font-size: 1.125rem;
  margin-bottom: 30px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .cont-art .bloq-txt .pref {
    margin-bottom: 10px;
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cont-art .bloq-txt .pref {
    margin-bottom: 10px;
    font-size: 1rem;
  }
}
.cont-art .bloq-txt .baj {
  font-size: 1rem;
  line-height: 1.8;
  color: #37424a;
}
@media (max-width: 425px) {
  .cont-art .bloq-txt .baj {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cont-art .bloq-txt .baj {
    font-size: 0.875rem;
  }
}
.cont-art .cont-btn {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width: 425px) {
  .cont-art .cont-btn {
    margin-bottom: 30px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .cont-art .cont-btn {
    margin-bottom: 30px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .cont-art .cont-btn {
    margin-bottom: 30px;
  }
}

.small-cal .cal {
  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;
  margin: 20px 0 0;
}
.small-cal .cal .date {
  padding: 0 10px 0 0;
  -webkit-flex: 0 1 15%;
  -ms-flex: 0 1 15%;
  flex: 0 1 15%;
}
@media (max-width: 425px) {
  .small-cal .cal .date {
    -webkit-flex: 0 1 20%;
    -ms-flex: 0 1 20%;
    flex: 0 1 20%;
    padding: 0 5px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .small-cal .cal .date {
    -webkit-flex: 0 1 20%;
    -ms-flex: 0 1 20%;
    flex: 0 1 20%;
    padding: 0 5px 0 0;
  }
}
.small-cal .cal .date span:first-child {
  color: #EC6726;
  font-size: 1rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  float: left;
  clear: both;
}
.small-cal .cal .date span {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 5px;
  float: left;
  clear: both;
}
.small-cal .cal a {
  -webkit-flex: 0 1 85%;
  -ms-flex: 0 1 85%;
  flex: 0 1 85%;
  border-left: 1px solid #CCCCCC;
  padding: 0 0 0 25px;
  color: #000000;
  font-size: 15px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  line-height: 1.4 !important;
}
@media (max-width: 425px) {
  .small-cal .cal a {
    -webkit-flex: 0 1 80%;
    -ms-flex: 0 1 80%;
    flex: 0 1 80%;
    padding: 0 0 0 5px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .small-cal .cal a {
    -webkit-flex: 0 1 80%;
    -ms-flex: 0 1 80%;
    flex: 0 1 80%;
    padding: 0 0 0 5px;
  }
}

.arts.arts-dest {
  padding: 0;
}

.arts-editor {
  padding-top: 20px;
}
.arts-editor .auxi .row {
  margin-bottom: 0;
}
.arts-editor .auxi .row .relative {
  background-color: #000000;
}

.arts-strip {
  padding-top: 20px;
}

.boton-cerrar {
  text-decoration: none;
  position: absolute;
  top: 12px;
  right: 5px;
  font-size: 2rem;
  display: block;
  padding: 0;
  line-height: 1.5rem;
  margin: 0;
  height: 20px;
  width: 20px;
  text-align: center;
  vertical-align: top;
  color: #ffffff;
  cursor: pointer;
}

.video-banner, .banner-fixed {
  display: none;
}

.box-player-video.active-uno.desktop {
  display: block;
}

.box-player-video.desktop {
  display: none;
}

.box-player-video {
  position: fixed;
  z-index: 200;
  right: 10px;
  max-width: 400px;
  width: 100%;
  bottom: 50px;
}
.box-player-video .video-header {
  position: relative;
  padding: 15px;
}
.box-player-video .video-header span {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}
.box-player-video video {
  width: 100%;
}
.box-player-video .video-footer {
  padding: 10px 15px;
}
.box-player-video .video-footer strong {
  font-size: 1rem;
  font-family: "Noto Serif", serif;
  font-weight: 700;
  color: #ffffff;
  float: left;
  margin-bottom: 5px;
}
.box-player-video .video-footer span {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #EC6726;
  clear: both;
  float: left;
  border: 1px solid #EC6726;
  padding: 3px;
}

.video-banner {
  background: #3C3C3B;
}
.video-banner .relative {
  padding: 0 15px;
}
.video-banner .relative.justify {
  padding: 10px 0;
  gap: 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;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.video-banner .relative.justify img {
  height: 30px;
}
.video-banner .relative .play-video {
  width: 100%;
  display: block;
  padding: 8px 0;
  float: left;
  background-image: url("../../imag/v1/icon/play-button.png");
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: auto;
}
@media (max-width: 425px) {
  .video-banner .relative .play-video {
    background-size: 50px 50px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .video-banner .relative .play-video {
    background-size: 50px 50px;
  }
}
.video-banner .relative .play-video strong {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 1.563rem;
  color: #ffffff;
  float: left;
  margin-bottom: 5px;
  padding-right: 25px;
  background-image: url("../../imag/v1/icon/vinculo.png");
  background-repeat: no-repeat;
  background-position: right 6px;
  background-size: 15px auto;
}
@media (max-width: 425px) {
  .video-banner .relative .play-video strong {
    font-size: 1.4rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .video-banner .relative .play-video strong {
    font-size: 1.4rem;
  }
}
.video-banner .relative .play-video span {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #EC6726;
  clear: both;
  float: left;
  border: 1px solid #EC6726;
  padding: 3px 15px;
}

.banner-fixed.active-tres, .active-dos {
  display: table;
  width: 100%;
}

.banner-fixed.active-tres {
  position: fixed;
  z-index: 99;
  bottom: 0;
}

.banner-fixed {
  margin: 0 auto;
  width: auto;
}
.banner-fixed .boton-cerrar {
  top: 0;
  background-color: #A7A7A7;
  height: 25px;
  width: 25px;
}

.top-portada .auxi {
  padding: 10px 0 0;
}
@media (max-width: 425px) {
  .top-portada .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .top-portada .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .top-portada .auxi {
    padding: 0 15px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .top-portada .auxi {
    padding: 0 15px !important;
  }
}
.top-portada .auxi h1.subtit {
  color: #000000;
  font-size: 2.1875rem;
  font-family: "Noto Serif", serif;
  font-weight: 400;
}

.box-banner {
  margin: 0 auto 25px;
}

@media (max-width: 425px) {
  .arts-ultimo .auxi, .arts-ultimo .auxi, .arts-editor .auxi {
    padding: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .arts-ultimo .auxi, .arts-ultimo .auxi, .arts-editor .auxi {
    padding: 0 !important;
  }
}

@media (max-width: 425px) {
  .inter .main {
    padding: 0 15px 10px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .inter .main {
    padding: 0 15px 10px !important;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .inter .main {
    padding: 0 15px 10px !important;
  }
}
.inter .main .arts.arts-dest .auxi {
  padding: 0;
}

.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: 729px) {
  .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.9) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.9) 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: #3C3C3B;
}
.results .search-desp .auxi .search-criteria .criterio {
  color: #EC6726;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.results .search-desp .auxi .results-number {
  font-size: 0.875rem;
  color: #8C8C8C;
}
.results .arts {
  padding-top: 30px;
}
.results .arts .auxi {
  max-width: 900px !important;
}
.results .arts .auxi article {
  margin-bottom: 20px;
  border-bottom: 1px solid #EC6726;
}
.results .arts .auxi article:hover .cont-txt {
  transition: 0.3s all ease;
  background-color: #f2f2f2;
  color: #ffffff;
}
.results .arts .auxi article:hover .cont-txt p, .results .arts .auxi article:hover .cont-txt a {
  color: #000000;
}
.results .arts .auxi article:hover .cont-txt h3 {
  color: #000000;
}
.results .arts .auxi article .cont-txt {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  padding: 20px 30px;
}
.results .arts .auxi article .cont-txt h3.serif {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.25rem !important;
}
.results .arts .auxi article .cont-txt h3.serif a {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.25rem !important;
}
.results .arts .auxi article .bajada {
  padding: 0;
  background: none;
}
@media (max-width: 425px) {
  .results .arts .auxi article .bajada {
    padding-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .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: 729px) {
  .sitemap .content_sitemap {
    padding: 30px 0;
  }
}
@media (min-width: 730px) 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: 729px) {
  .sitemap .cont_tit {
    margin: 40px 10px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .sitemap .cont_tit {
    margin: 40px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .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: 729px) {
  .sitemap .cont_tit .tit {
    font-size: 2rem;
  }
}
@media (min-width: 730px) 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: #d52b1e;
  line-height: 1.3;
}
@media (max-width: 425px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .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: #000000;
  font-size: 1.25rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.sitemap .lista_sitio .lista_seccion h2 a:hover {
  color: #000000;
  transition: 0.2s all ease;
}
.sitemap .lista_sitio .lista_seccion h3 {
  font-size: 0.9rem;
  margin-bottom: 15px;
  padding-left: 10px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.sitemap .lista_sitio .lista_seccion h3 a {
  color: #000000;
}
.sitemap .lista_sitio .lista_seccion h3 a:hover {
  color: #000000;
  transition: 0.2s all ease;
}
.sitemap .lista_sitio .lista_seccion ul {
  margin-top: 25px;
  margin-left: 10px;
  border-left: 3px solid #f2f2f2;
}
.sitemap .lista_sitio .lista_seccion ul li {
  margin: 17px 0 17px 20px;
}
.sitemap .lista_sitio .lista_seccion ul li a {
  color: #CCCCCC;
  font-size: 0.8125rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.sitemap .lista_sitio .lista_seccion ul li a:hover {
  color: #000000;
  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: 729px) {
  .construccion .cont-map img {
    width: 150px;
  }
}

@media (max-width: 425px) {
  .error_404 .cont_msj {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .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: 729px) {
  .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: 729px) {
  .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: 729px) {
  .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: #d52b1e;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .error_404 .voucher .cont-txt .subtit {
    font-size: 1.5rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .error_404 .voucher .cont-txt .subtit {
    font-size: 1.5rem;
  }
}
.error_404 .voucher .cont-txt .baj {
  font-size: 1.125rem;
  color: #d52b1e;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
.error_404 .voucher .cont-txt .pref {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #CCCCCC;
  padding-right: 60px;
}
@media (max-width: 425px) {
  .error_404 .voucher .cont-txt .pref {
    padding-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .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: #000000 !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: "Noto Sans", 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: #000000;
  line-height: 100%;
  letter-spacing: 2px;
  font-family: "Noto Sans", 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: 729px) {
  .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: 729px) {
  .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: 729px) {
  .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: #f2f2f2;
}
@media (max-width: 425px) {
  .social_port .btn-cont .tablink2:before {
    background-size: 16px;
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .social_port .btn-cont .tablink2:before {
    background-size: 16px;
    width: 26px;
    height: 26px;
  }
}
.social_port .btn-cont .tablink2.activo2:before {
  background-color: #000000;
}
.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: #f2f2f2;
  font-size: 1.25rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .social_port .tablink2 {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .social_port .tablink2 {
    font-size: 0.875rem;
  }
}
.social_port .activo2 {
  color: #000000;
}
.social_port .activo2:after {
  content: "";
  position: relative;
  display: block;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #000000;
}

.ad-pnt-slot {
  margin: 0 auto;
}
.ad-pnt-slot .ad-vtxt {
  margin: 5px auto;
}
.ad-pnt-slot div {
  text-align: center;
  margin: 0 auto;
}

.banner-itt {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-itt .banner-itt-overlay-bg {
  background-color: #fff;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-itt .div_cerrar_itt {
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  cursor: pointer;
  background-color: #202020;
  padding: 4px 0px;
  color: white;
  font-family: sans-serif;
  font-size: 14px;
  text-align: center;
}

.banner-itt .icon_close {
  float: left;
  font-weight: 900;
  border: 1px solid white;
  margin: 0px 3px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  font-size: 12px;
}

.CUERPO img.responsive-img {
  max-width: 100%;
  height: auto !important;
}
.CUERPO img.no-responsive-img {
  width: auto !important;
}
.CUERPO iframe {
  width: 100%;
}

.CUERPO {
  padding-top: 1px;
}
.CUERPO .btn {
  margin: 10px 0;
  display: inline-block;
  font-size: 0.8125rem;
  color: #ffffff;
  padding: 6px 30px;
  background-color: #0A1D85;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.CUERPO .btn:hover {
  background-color: #0A1D85;
  color: #ffffff !important;
  transition: 0.3s all ease;
}
.CUERPO.CUERPO, .CUERPO p {
  font-size: 1.1rem;
  line-height: 1.813rem;
  margin: 10px 0 15px;
  color: #000000;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .CUERPO.CUERPO, .CUERPO p {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .CUERPO.CUERPO, .CUERPO p {
    font-size: 1rem;
  }
}
.CUERPO a {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  border-bottom: 1px dotted #0A1D85;
  color: #0A1D85;
}
.CUERPO a:hover {
  color: #0A1D85;
  transition: 0.2s all ease;
}
.CUERPO strong {
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.CUERPO i {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.CUERPO .destacado {
  color: #000000;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.CUERPO .azulbold {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  color: #000000;
}
.CUERPO .gris {
  color: #8C8C8C;
}
.CUERPO .azul {
  color: #0A1D85;
}
.CUERPO .naranjo {
  color: #F74319;
}
.CUERPO .negro {
  color: #000000;
}
.CUERPO .rojo {
  color: #FF2727;
}
.CUERPO .verde {
  color: #167b35;
}
.CUERPO .amarillo {
  color: #F0C000;
}
.CUERPO .blanco {
  color: #ffffff;
}
.CUERPO h1, .CUERPO h2, .CUERPO h3, .CUERPO h4, .CUERPO h5, .CUERPO h6 {
  color: #000000;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.CUERPO h1 {
  font-size: 24px;
}
.CUERPO h2 {
  font-size: 22px;
}
.CUERPO h3 {
  font-size: 20px;
}
.CUERPO h4 {
  font-size: 18px;
}
.CUERPO h5 {
  font-size: 16px;
}
.CUERPO h6 {
  font-size: 14px;
}
.CUERPO .titulos {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
}
.CUERPO .subtit {
  font-size: 25px;
  margin: 0;
  padding: 0;
  font-size: 30px;
  color: #000000;
  width: 100%;
}
.CUERPO .subtit-sinlink {
  font-size: 25px;
  margin: 0;
  padding: 0;
  font-size: 30px;
  color: #000000;
  width: 100%;
}
.CUERPO .resalta {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 17px;
}
.CUERPO address {
  font-size: 12px;
  font-weight: normal;
  color: #000000;
  font-style: italic;
}
.CUERPO pre {
  font-size: 11px;
  font-weight: normal;
  color: #8C8C8C;
  text-align: justify;
  text-indent: 10px;
}
.CUERPO figcaption {
  font-size: 14px;
}
.CUERPO blockquote {
  border-left: 7px solid #0A1D85;
  color: #0A1D85;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.875rem;
  line-height: 1.2;
  padding-bottom: 10px;
  margin: 20px 0 20px 20px;
  padding-left: 20px;
}
@media (max-width: 425px) {
  .CUERPO blockquote {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 20px auto;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .CUERPO blockquote {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 20px auto;
  }
}
.CUERPO blockquote p {
  color: #0A1D85 !important;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.875rem !important;
  line-height: 130% !important;
  margin-bottom: 10px;
}
@media (max-width: 425px) {
  .CUERPO blockquote p {
    font-size: 1.188rem !important;
    line-height: 1.5 !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .CUERPO blockquote p {
    font-size: 1.188rem !important;
    line-height: 1.5 !important;
  }
}
.CUERPO blockquote.cita_med {
  width: 50%;
  margin-right: 25px;
  margin-bottom: 10px;
}
@media (max-width: 425px) {
  .CUERPO blockquote.cita_med {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .CUERPO blockquote.cita_med {
    width: 100%;
  }
}
.CUERPO .tr-estilo-fondorojo {
  background-color: #000000;
  color: #ffffff;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.CUERPO .td-estilo-fondorojo {
  background-color: #000000;
  color: #ffffff;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.CUERPO .tr-estilo-fondogris {
  background-color: #CCCCCC;
}
.CUERPO .td-estilo-fondogris {
  background-color: #CCCCCC;
}
.CUERPO .table-center {
  margin: auto;
}
.CUERPO .table-right {
  float: right;
}
.CUERPO .table-left {
  float: left;
}
.CUERPO .table-responsive {
  margin: 20px 0;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
}
@media (min-width: 426px) and (max-width: 729px) {
  .CUERPO .table-responsive {
    padding: 20px 0;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .CUERPO .table-responsive {
    padding: 20px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .CUERPO .table-responsive {
    padding: 20px 0;
  }
}
@media (min-width: 1200px) {
  .CUERPO .table-responsive {
    overflow-x: hidden;
  }
}
@media (min-width: 1200px) {
  .CUERPO .table-responsive {
    overflow-x: hidden;
  }
}
.CUERPO td {
  border: 1px solid #f2f2f2;
  padding: 8px;
}
.CUERPO table, .CUERPO table td strong {
  font-weight: bold;
  font-size: 14px;
  margin: 0;
  line-height: 1;
}
.CUERPO table, .CUERPO table td {
  border-collapse: collapse;
  font-size: 0.875rem;
  color: #000000;
  font-weight: normal;
  text-align: left;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  vertical-align: top;
}
@media (max-width: 425px) {
  .CUERPO table, .CUERPO table td {
    font-size: 0.75rem;
  }
}
.CUERPO tr, .CUERPO th {
  padding: 0;
}
.CUERPO th {
  color: #000000;
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
  font-size: 1.1rem;
  padding: 15px;
  text-align: left;
  vertical-align: middle;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: initial;
}
.CUERPO table {
  clear: both;
  margin: 20px auto;
  padding: 2px;
  border-collapse: collapse;
  empty-cells: show;
  border: none;
  background: #ffffff;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.CUERPO table a {
  border-bottom: none;
}
.CUERPO table thead {
  border-top: 1px solid #f2f2f2;
}
.CUERPO tr:first-child {
  border-top: none;
}
.CUERPO tr:last-child {
  border-bottom: none;
}
.CUERPO td {
  padding: 8px;
  text-align: left;
  vertical-align: middle;
  font-size: 1.1rem;
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}
.CUERPO td:first-child {
  border-left: 1px solid #f2f2f2;
}
.CUERPO td:last-child {
  border-right: 1px solid #f2f2f2;
}
.CUERPO ul {
  margin-left: 30px;
  list-style: disc;
  display: block !important;
  line-height: 2;
  color: #000000;
  padding-left: 0 !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.CUERPO ul li {
  margin-bottom: 10px;
}
.CUERPO ol {
  margin-left: 30px;
  list-style-type: decimal;
  line-height: 2;
  color: #000000;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.CUERPO ol li {
  margin-bottom: 10px;
}

.art .enc-main {
  padding-top: 30px;
  padding-bottom: 20px;
}
@media (max-width: 425px) {
  .art .enc-main {
    padding-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .enc-main {
    padding-bottom: 0;
  }
}
.art .enc-main p.fecha, .art .enc-main p.epig {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.art .enc-main .tit {
  color: #0A1D85;
  font-size: 2.1875rem;
  line-height: 1.4;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .art .enc-main .tit {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .enc-main .tit {
    font-size: 1.25rem;
  }
}
.art .enc-main .baj {
  margin-top: 20px;
  color: #8C8C8C;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.art .art-content .auxi, .art .enc-art .auxi {
  max-width: 800px;
}
.art .art-content {
  padding-top: 30px !important;
  padding-bottom: 0;
}
@media (max-width: 425px) {
  .art .art-content {
    padding-top: 20px !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .art-content {
    padding-top: 20px !important;
  }
}
.art .art-content .auxi {
  margin-bottom: 30px;
}
.art .enc-art {
  padding-top: 30px;
  padding-bottom: 0;
}
.art .toolbar {
  padding: 20px 0 10px;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .art .toolbar {
    -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: 729px) {
  .art .toolbar {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.art .toolbar .cont-share {
  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;
}
.art .toolbar .cont-share ul {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.art .toolbar .cont-share li {
  padding-right: 5px;
}
.art .toolbar .cont-share li a {
  padding: 5px;
  display: block;
  border-radius: 50%;
}
@media (max-width: 425px) {
  .art .toolbar .cont-share li a {
    padding: 4px;
  }
}
.art .toolbar .cont-share li a:hover {
  background-color: #167b35 !important;
  transition: 0.3s all ease;
}
.art .toolbar .cont-share li a.link {
  background-color: #0A1D85;
}
.art .toolbar .cont-share li a.twitter {
  background-color: #1da1f2;
}
.art .toolbar .cont-share li a.facebook {
  background-color: #1877f2;
}
.art .toolbar .cont-share li a.whatsapp {
  background-color: #25D366;
}
.art .toolbar .cont-share li a.print {
  background: none !important;
}
.art .toolbar .cont-share li img {
  width: 25px;
}
@media (max-width: 425px) {
  .art .toolbar .contact {
    margin-top: 30px;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .toolbar .contact {
    margin-top: 30px;
    -webkit-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.art .toolbar .contact li {
  margin-bottom: 15px;
  font-size: 0.875rem;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .art .toolbar .contact li {
    margin-bottom: 10px;
    font-size: 0.8125rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .toolbar .contact li {
    margin-bottom: 10px;
    font-size: 0.8125rem;
  }
}
.art .toolbar .contact li img {
  margin-right: 10px;
  width: 20px;
}
.art .eng-noticias .auxi {
  padding: 30px 0 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.art .eng-noticias.english-v {
  margin-left: 0;
}
.art .eng-noticias.english-v a {
  color: #0A1D85;
  border-radius: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.art .eng-noticias.english-v a:hover {
  background: none !important;
  color: #0A1D85;
}
.art .eng-noticias.english-v a figure {
  margin-right: 5px;
}
.art .eng-noticias.english-v a figure img {
  width: 35px;
}
.art .anclas {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px auto;
}
@media (max-width: 425px) {
  .art .anclas {
    margin: 10px 10px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .anclas {
    margin: 10px 10px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .art .anclas {
    margin: 10px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .art .anclas {
    margin: 10px 20px;
  }
}
.art .anclas .subtitulos {
  font-weight: normal;
}
.art .anclas .subtitulos a {
  display: block;
  font-size: 1rem;
  color: #EC6726;
  margin: 0.3rem 5px;
  padding: 10px 40px;
  background-color: #ffffff;
  border: 1px solid #EC6726;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.art .anclas .subtitulos a:hover {
  text-decoration: none;
  background-color: #ffffff;
  transition: 0.2s all ease;
}
.art .contsubtit {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  line-height: 1;
  width: 100%;
  margin: 20px 0;
  padding: 0.8em 0;
}
@media (max-width: 425px) {
  .art .contsubtit {
    margin: 10px 0;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .contsubtit {
    margin: 10px 0;
  }
}
.art .contsubtit .titsubtit {
  text-decoration: none;
  color: #EC6726;
  font-size: 1.5rem;
  max-width: 90%;
  line-height: 1.3;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .art .contsubtit .titsubtit {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .contsubtit .titsubtit {
    font-size: 1rem;
  }
}
.art .contsubtit .linksubtit {
  margin: 0 6px 0 0 !important;
  padding: 3px 10px !important;
  text-align: center !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .art .contsubtit .linksubtit {
    font-size: 0.6875rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .contsubtit .linksubtit {
    font-size: 0.6875rem;
  }
}
.art .contsubtit .linksubtit a {
  color: #ffffff !important;
}
.art .contsubtit .linksubtit:hover {
  background-color: #0A1D85;
  transition: 0.2s all ease;
}
.art .contsubtit .linksubtit img {
  width: 20px;
}
.art .media {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
}
.art .cont_video iframe {
  width: 100%;
}
.art .media iframe, .art .media object, .art .media embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.art .relacionados .row {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.art .relacionados .row article {
  margin-bottom: 20px;
}
.art .relacionados .row article:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .art .relacionados .row article {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .art .relacionados .row article {
    margin-bottom: 0;
  }
}
.art .downloads {
  padding: 0;
  margin: 20px 0 40px;
}
@media (max-width: 425px) {
  .art .downloads {
    margin: 20px 10px 30px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .downloads {
    margin: 20px 10px 30px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .art .downloads {
    margin: 20px 20px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .art .downloads {
    margin: 20px 20px 40px;
  }
}
.art .downloads .auxi {
  padding: 30px 0;
}
@media (max-width: 425px) {
  .art .downloads .auxi {
    padding: 20px 10px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .downloads .auxi {
    padding: 20px 10px;
  }
}
@media (min-width: 730px) and (max-width: 991px) {
  .art .downloads .auxi {
    padding: 30px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .art .downloads .auxi {
    padding: 30px 20px;
  }
}
@media (min-width: 1200px) {
  .art .downloads .auxi {
    max-width: 1115px;
  }
}
.art .downloads .auxi h2 {
  font-size: 1rem;
  color: #EC6726;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.art .downloads .auxi ul {
  padding-top: 20px;
}
.art .downloads .auxi ul li {
  margin-bottom: 15px;
}
.art .downloads .auxi ul 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;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 425px) {
  .art .downloads .auxi ul li a {
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .downloads .auxi ul li a {
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.art .downloads .auxi ul li a h3 {
  font-size: 1rem;
  color: #8C8C8C;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 425px) {
  .art .downloads .auxi ul li a h3 {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .downloads .auxi ul li a h3 {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
}
.art .downloads .auxi ul li a h3:hover {
  color: #167b35;
  transition: 0.2s all ease;
}
.art .downloads .auxi ul li a p {
  font-size: 0.9rem;
  color: #CCCCCC;
  display: inline-block;
  margin-left: 5px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .art .downloads .auxi ul li a p {
    font-size: 0.59rem;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .downloads .auxi ul li a p {
    font-size: 0.59rem;
  }
}
.art .downloads .auxi ul li a .img {
  margin-right: 10px;
}
@media (max-width: 425px) {
  .art .downloads .auxi ul li a .img {
    margin-right: 0;
  }
}
.art .downloads .auxi ul li a .img img {
  width: 1.3rem;
}
@media (max-width: 425px) {
  .art .downloads .auxi ul li a .img img {
    width: 0.9rem;
    margin-right: 5px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art .downloads .auxi ul li a .img img {
    width: 0.9rem;
    margin-right: 5px;
  }
}

.form .form-stat {
  max-width: 750px;
  margin: 0 auto;
}
.form .form-stat h3 {
  font-size: 1.125rem;
}
.form .form-stat h3 a {
  margin: 10px 0;
  color: #0A1D85;
  transition: 0.3s all ease;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.form .form-stat h3 a:hover {
  color: #0A1D85;
}
.form .form-stat ul {
  list-style: disc;
  padding: 30px 0;
  padding-left: 30px;
}
.form .form-stat ul li {
  padding: 10px 0;
}
.form .form-stat .legal {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #707070;
  letter-spacing: 0.5px;
  max-width: 700px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.form .form-horizontal {
  padding-top: 30px;
  text-align: center;
  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;
}
.form.respuesta .baj {
  line-height: 1.6;
  margin-top: 30px;
}
.form .main {
  background: none;
}
.form .cont-tit {
  margin-bottom: 50px;
}
.form .form-content {
  padding: 50px 0;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
.form .form-content form {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.form .form-content .auxi {
  max-width: 800px;
}
.form form h3 {
  text-align: center;
  color: #0A1D85;
  margin-bottom: 30px;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
  font-family: "Noto Serif", serif;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}
.form form .form-group {
  padding-bottom: 30px;
}
.form form .form-group label, .form form .form-group h3 {
  padding-bottom: 10px;
  display: block;
  color: #0A1D85;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}
@media (max-width: 425px) {
  .form form .form-group label, .form form .form-group h3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .form form .form-group label, .form form .form-group h3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
.form form .form-group input, .form form .form-group select, .form form .form-group textarea {
  width: 100%;
  font-size: 0.875rem;
  border-radius: 3px;
  background-color: #ffffff;
}
.form form .form-group .adv, .form form .form-group span {
  font-size: 0.875rem;
  color: #FF2727;
  padding-top: 10px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.form form .form-group .__validator-alert span {
  color: #ffffff;
}
.form form .cont-btn {
  padding: 30px 0;
  text-align: center;
}
.form form .cont-btn .btn {
  display: inline-block;
  font-size: 0.8125rem;
  color: #ffffff;
  padding: 12px 50px;
  background-color: #0A1D85;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.form form .cont-btn .btn:hover {
  background-color: #EF5A28;
  transition: 0.3s all ease;
}
.form form .form-input {
  max-width: 800px;
  margin: 0 auto;
}
.form form .form-input .btn-main {
  padding: 20px 65px;
  background-image: none !important;
}
.form form .form-input .btn-main:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  transition: 0.3s all ease;
}
.form form .form-input .radio-cont {
  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;
}
.form form .form-input .checkmark {
  position: absolute;
  top: -4px;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.form form .form-input .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.form form .form-input .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin: 20px;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.4px;
  color: #2d2d2d;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.form form .form-input .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form form .form-input .container input:checked ~ .checkmark {
  background-color: #ffffff;
}
.form form .form-input .container input:checked ~ .checkmark:after {
  display: block;
}
.form form .form-input .container .checkmark:after {
  top: 5px;
  left: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #881a6f;
}
.form form .form-input .container:hover input ~ .checkmark {
  background-color: #ccc;
}
.form form .form-input .checkbox-form {
  text-align: center;
  margin: 30px 0 0;
}
.form form .form-input .checkbox-form label {
  font-size: 0.875rem;
  transition: 0.2s all ease;
  color: #0A1D85;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.form form .form-input .checkbox-form .styled-checkbox {
  position: absolute;
  opacity: 0;
}
.form form .form-input .checkbox-form .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.form form .form-input .checkbox-form .styled-checkbox + label:before {
  content: "";
  transition: 0.2s all ease;
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
  border: 1px solid #0A1D85;
  top: -2px;
  position: relative;
}
.form form .form-input .checkbox-form .styled-checkbox:hover + label:before {
  background: #0A1D85;
}
.form form .form-input .checkbox-form .styled-checkbox:focus + label:before {
  border-color: #0A1D85;
}
.form form .form-input .checkbox-form .styled-checkbox:checked + label:before {
  background: #0A1D85;
}
.form form .form-input .checkbox-form .styled-checkbox:checked + label {
  color: #0A1D85;
}
.form form .form-input .checkbox-form .styled-checkbox:disabled + label {
  color: #CCCCCC;
  cursor: auto;
}
.form form .form-input .checkbox-form .styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #CCCCCC;
}
.form form .form-input .checkbox-form .styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
.form form .form-input .legal {
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  color: #707070;
  letter-spacing: 0.5px;
  max-width: 700px;
  margin: 0 auto;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.form form .box-options {
  margin-top: 50px;
  margin-bottom: 50px;
}
.form form .box-options .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;
}
@media (max-width: 425px) {
  .form form .box-options .row {
    margin-left: -13px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .form form .box-options .row {
    margin-left: -13px;
  }
}
.form form .box-options .row .tag {
  margin: 15px 0;
}
.form form .inputGroup {
  background-color: #fff;
  display: block;
  position: relative;
  margin-bottom: 20px;
  transition: 0.2s all ease;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .form form .inputGroup {
    border-left-width: 13px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .form form .inputGroup {
    border-left-width: 13px;
  }
}
.form form .inputGroup:hover {
  background-color: #0A1D85;
}
.form form .inputGroup:hover .tit, .form form .inputGroup:hover .pref {
  color: #ffffff;
}
.form form .inputGroup .off-text {
  font-size: 0.75rem;
  margin-top: 10px;
  color: #FF2727;
  line-height: 1.5;
  max-width: 130px;
}
.form form .inputGroup a {
  padding: 50px 20px 30px;
  width: 100%;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  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-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 425px) {
  .form form .inputGroup a {
    padding: 50px 15px 20px;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .form form .inputGroup a {
    padding: 50px 15px 20px;
  }
}
.form form .inputGroup a span {
  display: block;
}
.form form .inputGroup a .tit {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #0A1D85;
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.form form .inputGroup a .pref {
  color: #999999;
  line-height: 1.3;
  font-size: 0.8125rem;
}
.form form .inputGroup a:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}
.form form .inputGroup a:before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  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);
}
.form form .inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}
.form form .inputGroup input:checked ~ label {
  color: #fff;
}
.form form .inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(40, 40, 1);
  opacity: 1;
}
.form form .inputGroup input:checked ~ label:after {
  background-color: #167b35;
}
.form form .inputGroup input:checked ~ label span {
  color: #ffffff;
}

.cuerpo-form {
  margin: 0 auto !important;
  max-width: 800px;
  width: 100%;
  float: none !important;
  display: table;
  border: 0 !important;
}

.comentarios {
  width: 100%;
  margin: 0 auto;
  background: #EC6726;
  display: block;
  padding: 15px 0;
}
.comentarios span {
  width: auto;
  margin: 0 auto;
  display: table;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.3;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  background-image: url("../../imag/v1/icon/chevron_d_w.png");
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: 20px auto;
  padding-right: 45px;
}
.comentarios:hover {
  background-color: #E27A3E;
  transition: 0.3s all ease;
}

@media (max-width: 425px) {
  .art.form .main .cont-art .auxi > .row {
    margin: 0 auto !important;
  }
}
@media (min-width: 426px) and (max-width: 729px) {
  .art.form .main .cont-art .auxi > .row {
    margin: 0 auto !important;
  }
}

.CalendarBox {
  max-width: 100%;
  width: 95%;
}
.CalendarBox .calendar-title {
  padding: 20px;
  background-color: #0A1D85;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  background-size: 1.125rem;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.CalendarBox .calendar-title .dateAnt, .CalendarBox .calendar-title .datePro {
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 12px;
  font-size: 0;
  width: 13px;
  height: auto;
}
.CalendarBox .calendar-title .dateAnt {
  background-image: url("../../imag/v1/icon/arrow_l_w.png");
}
.CalendarBox .calendar-title .datePro {
  background-image: url("../../imag/v1/icon/arrow_r_w.png");
}
.CalendarBox .calendar-table {
  width: 100%;
  border: none;
}
.CalendarBox .calendar-table tr th {
  width: 13%;
  color: #0A1D85;
  text-align: center;
  font-size: 15px;
  padding-bottom: 20px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.CalendarBox .calendar-table tr td {
  border: none;
  text-align: center;
  list-style-type: none;
  position: relative;
  width: 14%;
  text-align: center;
  padding-bottom: 20px;
}
.CalendarBox .calendar-table tr td span {
  font-size: 14px;
  color: #4e4e4e;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}
.CalendarBox .calendar-table tr td span a.active_s {
  cursor: pointer;
  color: #EC6726;
}
.CalendarBox .calendar-table tr td span a.active_s:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #EC6726;
  left: calc(50% - 15px);
  bottom: 11px;
}
.CalendarBox .calendar-table tr td span a.active_s:hover {
  background-color: #EC6726;
}

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