@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:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
blockquote, q {
  quotes: none;
}

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

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

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

body {
  line-height: 1;
}

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

ol, ul {
  list-style: none;
}

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

/* Para utilizar las variables basta con reemplazar el atributo por el nombre de la variable en nuestro código ej: "color: $chv_azul" */
/* al modificar el atributo de cualquier variable afectará a todos los selectores donde se utilizó */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @mixin nombre_mixin */
/* para utilizar los mixins llamarlos de la siguiente forma en el código sass: @include nombre_mixin */
/* para utilizar mixins variables llamar de la siguiente forma: @include nombre_mixin(variable1, variable2, ...) */
.swiper-button-next {
  background-image: url("../../imag/v1/icon/arrow_r.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 21px !important;
  z-index: 1 !important;
  width: 50px !important;
  height: 50px !important;
  right: 0px !important;
  outline: none !important;
}
@media (max-width: 425px) {
  .swiper-button-next {
    background-size: 12px !important;
    width: 20px !important;
    height: 20px !important;
  }
}

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

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

.cont-btn {
  padding: 30px 0 0;
}
@media (max-width: 425px) {
  .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-btn {
    padding: 15px 0 0;
  }
}
.cont-btn a:first-child {
  margin-right: 10px;
}

.btn-main {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  padding: 20px 70px 20px 50px;
  background-color: #36424A;
  border-radius: 3px;
  border: 1px solid #36424A;
  letter-spacing: 0.2px;
  transition: 0.3s all ease;
  background-image: url("../../imag/v1/icon/arrow_r_d.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 40px) !important;
  background-size: 15px;
  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: 767px) {
  .btn-main {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
.btn-main:hover {
  background: none;
  color: #36424A;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 40px) !important;
  background-size: 15px !important;
  background-image: url("../../imag/v1/icon/arrow_r_b.png") !important;
}
.btn-main.more {
  color: #af842a;
  border-bottom: 4px solid #808285;
  margin-left: 20px;
}

.btn-sec {
  display: inline-block;
  font-size: 1rem;
  color: #36424A;
  padding: 20px 50px;
  background-color: #ffffff;
  border-radius: 3px;
  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: 767px) {
  .btn-sec {
    font-size: 0.75rem !important;
    padding: 12px 20px;
  }
}
.btn-sec:hover {
  color: #af842a;
}

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

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

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

.cont-play {
  display: block;
  margin: 90px auto 50px;
  width: 115px;
  height: 115px;
  opacity: 0.85;
  background-image: url("../../imag/v1/icon/ic_play_w.png");
  background-repeat: no-repeat;
  background-position: 57%;
  background-size: 45%;
  background-color: #af842a;
  border-radius: 50%;
  position: relative;
  transition: 0.2s all ease;
}
@media (max-width: 425px) {
  .cont-play {
    width: 80px;
    height: 80px;
    margin: 20px auto 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-play {
    width: 80px;
    height: 80px;
    margin: 40px auto 70px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cont-play {
    margin: 50px auto;
  }
}
.cont-play:before {
  content: "";
  width: 135px;
  height: 135px;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #ffffff;
  z-index: 0;
  left: -10px;
  top: -10px;
}
@media (max-width: 425px) {
  .cont-play:before {
    width: 90px;
    height: 90px;
    left: -5px;
    top: -5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-play:before {
    width: 90px;
    height: 90px;
    left: -5px;
    top: -5px;
  }
}
.cont-play:hover {
  opacity: 1;
}

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

.enc-main .auxi {
  text-align: center;
  padding-bottom: 20px;
}
.enc-main .auxi p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #4e4e4e;
}
.enc-main .auxi h1 {
  padding-top: 10px;
  font-size: 2.1875rem;
  font-family: "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: 767px) {
  .enc-main .auxi h1 {
    font-size: 1.875rem;
  }
}

.enc-bg {
  position: relative;
}
.enc-bg:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(0deg, rgba(54, 66, 74, 0.9), rgba(54, 66, 74, 0.9));
}
.enc-bg .breadcrumb, .enc-bg .breadcrumb a {
  color: #ffffff !important;
}
.enc-bg .breadcrumb:after, .enc-bg .breadcrumb a:after {
  color: #ffffff !important;
}
.enc-bg .enc-main {
  z-index: 2;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
@media (max-width: 425px) {
  .enc-bg .enc-main {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-bg .enc-main {
    padding: 20px 0;
  }
}
.enc-bg .enc-main .epig {
  font-size: 1rem;
  padding-top: 0;
  margin-bottom: 20px;
}
.enc-bg .enc-main p {
  padding-top: 15px;
  line-height: 1.4;
  font-size: 1.125rem;
  color: #ffffff;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .enc-bg .enc-main p {
    font-size: 1rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-bg .enc-main p {
    font-size: 1rem;
  }
}
.enc-bg .enc-main p a {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.enc-bg .enc-main .autor {
  font-size: 0.875rem;
  padding-top: 0;
  max-width: 700px;
  text-align: center;
  margin: 15px auto;
  display: table;
  color: #ffffff;
}
.enc-bg .enc-main h1 {
  font-size: 2.1875rem;
  color: #ffffff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .enc-bg .enc-main h1 {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-bg .enc-main h1 {
    font-size: 1.25rem;
  }
}
.enc-bg .enc-main .enc-tags {
  margin-top: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.enc-bg .enc-main .enc-tags li {
  margin-left: 20px;
}
.enc-bg .enc-main .enc-tags li:first-child {
  margin-left: 0;
}
.enc-bg .enc-main .enc-tags li a {
  font-size: 0.875rem;
  color: #36424A;
  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: 767px) {
  .enc-txt {
    padding: 20px 0;
  }
}
.enc-txt .breadcrumbs {
  text-align: left;
}
.enc-txt .auxi {
  text-align: center;
  padding-bottom: 0;
}
.enc-txt .auxi p {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #4e4e4e;
}
.enc-txt .auxi h1 {
  padding-top: 10px;
  color: #36424A;
  font-size: 2.1875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.cont-tit {
  min-height: 36px;
  margin-bottom: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cont-tit {
    padding: 0 10px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit {
    padding: 0 10px 0;
  }
}
.cont-tit .tit {
  font-size: 1.875rem !important;
  color: #36424A;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .cont-tit .tit {
    font-size: 1.25rem !important;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit .tit {
    font-size: 1.25rem !important;
    text-align: center;
    width: 100%;
  }
}
.cont-tit .baj {
  max-width: 900px;
  margin: 10px auto 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
  font-size: 1.125rem;
  color: #36424A;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .cont-tit .baj {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit .baj {
    font-size: 0.875rem;
  }
}
.cont-tit .cont-btn {
  padding-top: 0;
}
.cont-tit .btn-more {
  display: inline-block;
  font-size: 0.875rem !important;
  color: #af842a;
  background-color: #ffffff;
  padding: 10px 20px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  letter-spacing: 0.2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.tit-icon {
  padding: 15px 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.tit-icon img {
  width: 23px;
  margin-right: 10px;
}
.tit-icon h2 {
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #af842a;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

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

.art_dowload {
  position: relative;
  margin-bottom: 20px;
  display: block !important;
}
.art_dowload .art_dowload__auxi {
  min-height: 200px;
  background: #FFFFFF;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -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;
}
@media (max-width: 425px) {
  .art_dowload .art_dowload__auxi {
    padding: 20px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art_dowload .art_dowload__auxi {
    padding: 20px 15px;
  }
}
.art_dowload .art_dowload__auxi a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  clear: both;
  width: 100%;
}
.art_dowload .art_dowload__auxi a .img {
  -webkit-flex: 0 1 23px;
  -ms-flex: 0 1 23px;
  flex: 0 1 23px;
  margin-right: 15px;
}
.art_dowload .art_dowload__auxi a .content {
  -webkit-flex: 0 1 90%;
  -ms-flex: 0 1 90%;
  flex: 0 1 90%;
}
.art_dowload .art_dowload__auxi a .content .title {
  font-size: 0.8125rem;
  color: #36424A;
  line-height: 21px;
  display: inline-block;
  clear: both;
  float: left;
  font-weight: 600;
}
@media (max-width: 425px) {
  .art_dowload .art_dowload__auxi a .content .title {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art_dowload .art_dowload__auxi a .content .title {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
}
.art_dowload .art_dowload__auxi a .content .title:hover {
  color: #E55302;
  transition: 0.2s all ease;
}
.art_dowload .art_dowload__auxi a .content .title--ayuda {
  @font-weight : 600;
  font-size: 18px;
  color: #36424A;
}
@media (max-width: 425px) {
  .art_dowload .art_dowload__auxi a .content .title--ayuda {
    font-size: 14px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art_dowload .art_dowload__auxi a .content .title--ayuda {
    font-size: 14px;
  }
}
.art_dowload .art_dowload__auxi a .content p {
  font-size: 13px;
  color: #36424A;
  line-height: 21px;
  display: inline-block;
  clear: both;
  float: left;
}
.art_dowload .art_dowload__auxi--port {
  padding: 20px 10px;
}
.art_dowload .art_dowload__auxi--ayuda {
  min-height: auto;
}
.art_dowload .cont {
  opacity: 0;
  transition: 0.1s ease;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 152, 170, 0.95), rgba(0, 152, 170, 0.95));
  border-radius: 10px;
  padding: 20px;
}
.art_dowload .cont a {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.5;
  @font-weight : 300;
  padding: 0 10px;
  margin: 0 auto 30px;
  text-align: left;
  opacity: 0;
  transition: 0.5s ease;
}
.art_dowload:hover .cont {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -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;
  opacity: 1;
  transition: 0.1s ease;
}
.art_dowload:hover .cont a {
  opacity: 1;
  transition: 0.5s ease;
}

ul.breadcrumb_art {
  float: left;
  width: 100%;
  margin-bottom: 25px;
}
ul.breadcrumb_art li {
  float: left;
  margin-right: 5px;
  padding: 4px 9px;
  border-radius: 20px;
  margin-bottom: 5px;
  min-width: 30px;
}
ul.breadcrumb_art li a, ul.breadcrumb_art li span {
  font-size: 11px;
  line-height: 15px;
  color: #fff;
}

.user-lock {
  width: 20px;
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.listbox li {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-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 #cccccc;
  padding: 0 0 10px;
  margin: 0 0 15px;
}
@media (max-width: 425px) {
  .listbox li {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .listbox li {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.listbox li div {
  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;
}
.listbox li div img {
  -webkit-flex: 0 1 20px;
  -ms-flex: 0 1 20px;
  flex: 0 1 20px;
  margin: 0 10px 0 0;
}
.listbox li div .user-lock {
  position: relative;
  bottom: 0;
  left: 0;
  line-height: 21px;
  margin: 0 0 0 10px;
}
@media (max-width: 425px) {
  .listbox li div .user-lock {
    margin: 0 0 5px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .listbox li div .user-lock {
    margin: 0 0 5px 10px;
  }
}
.listbox li div .title {
  font-size: 0.8125rem;
  color: #ebebeb;
  line-height: 21px;
  display: inline-block;
}
@media (max-width: 425px) {
  .listbox li div .title {
    margin-bottom: 5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .listbox li div .title {
    margin-bottom: 5px;
  }
}
.listbox__breadcrumb {
  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;
}
.listbox__breadcrumb a, .listbox__breadcrumb span {
  margin: 0 5px;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
  font-weight: 300;
  padding: 4px 8px;
  border-radius: 20px;
}

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

.nav-tabs {
  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;
}
.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-right: 23px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .nav-tabs li .tab-item {
    padding-right: 23px;
  }
}
.nav-tabs li:last-child .tab-item {
  padding-right: 0;
}
.nav-tabs li .img-wrap {
  background-color: rgba(78, 78, 78, 0.5);
  border-radius: 50%;
  padding: 5px;
  margin-right: 5px;
}
.nav-tabs li img {
  width: 20px;
}
@media (max-width: 425px) {
  .nav-tabs li img {
    width: 14px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .nav-tabs li img {
    width: 14px;
  }
}

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

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

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

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

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

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

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

input, select, .select, textarea {
  padding: 10px;
  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: #af842a !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;
  padding: 10px 45px 10px 10px;
}

textarea {
  resize: none;
  outline: none;
}

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

iframe {
  width: 100%;
}

section {
  padding: 40px 0;
}
@media (max-width: 425px) {
  section {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}

.bg_azul {
  background-color: #36424A;
}

.bg_verde {
  background-color: #0098AA;
}

.bg_celeste {
  background-color: #0098AA;
}

.bg_naranja {
  background-color: #E55302;
}

.bg_amarillo {
  background-color: #F4AA00;
}

.bg_gris {
  background-color: #808285;
}

.bg_rojo {
  background-color: #C13832;
}

.acenter {
  margin: 0 auto;
}

.is-hidden {
  display: none;
}

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

.hide {
  display: none !important;
}

.hide-element {
  display: none !important;
}

.aleft {
  float: left;
}

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

.container {
  width: 100%;
}

.auxi.small {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

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

.responsive {
  display: none;
}

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

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

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

.bg-celeste {
  background-color: #36424A;
}

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

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

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

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

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

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

body.contraste .alerta-cerrar a img {
  display: block;
}

body.contraste .header .search-cont .search-wrapper.active .input-holder .search-input, body.contraste .selectores .input-holder {
  border: 1px solid #fff !important;
}

body.contraste .palabras.small .auxi ul.list-palabra {
  padding: 10px;
  display: block;
  background: #fff !important;
}

body.contraste .bloq-full .img-wrap.uno .cont-txt {
  padding: 0 20px;
}

body.contraste .auxi.preguntas .ver-mas {
  margin-bottom: 20px;
}

body.contraste .tooltip .tooltiptext {
  background-color: #fff !important;
  color: #000 !important;
}

body.contraste .tooltip .tooltiptext::after {
  border-color: transparent transparent #fff transparent;
}

body.contraste .cont-grado span.grado {
  background-color: #fff !important;
}

body.contraste .selectores .btn span::after, body.contraste .selectores .btn span::before {
  border: 2px solid #fff !important;
}

body.contraste a, body.contraste p, body.contraste h1, body.contraste h2, body.contraste h3, body.contraste h4, body.contraste input::placeholder,
body.contraste.home .dest-main .bg-blanco .titular, body.contraste.home .dest-main .bg-blanco .epig, body.contraste.home .dest-main .bg-blanco .baj, body.contraste.home .dest-main .bg-blanco .main-title {
  color: #ffffff !important;
}

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

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

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

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

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

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

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

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

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

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

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

body.contraste .aviso {
  border-bottom: 1px solid #fff;
}

body.contraste form .form-group input, body.contraste form .form-group select, body.contraste form .form-group textarea, body.contraste form .cont-btn .btn, body.contraste .anclas .subtitulos a {
  border: 1px solid #fff !important;
}

@media (max-width: 425px) {
  .wp-pagenavi.top {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi.top {
    display: block;
  }
}
@media (max-width: 425px) {
  .wp-pagenavi.top a, .wp-pagenavi.top span {
    float: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi.top a, .wp-pagenavi.top span {
    float: left;
  }
}
@media (max-width: 425px) {
  .wp-pagenavi.top a {
    border-bottom: 3px solid #ffffff;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .wp-pagenavi.top a {
    border-bottom: 3px solid #ffffff;
  }
}

.wp-pagenavi {
  font-size: 0.9375rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 17px auto 0;
  padding: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.wp-pagenavi a {
  padding: 8px 4px;
  margin-right: 17px;
  display: block;
  color: #4e4e4e;
}
.wp-pagenavi a:hover {
  text-decoration: underline;
}
.wp-pagenavi a.page {
  margin-right: 17px;
  border-bottom: 6px solid #808285;
}
.wp-pagenavi span {
  display: block;
  padding: 8px;
  margin-right: 15px;
}

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

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

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

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

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

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

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

.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: 767px) {
  .wrap-car .swiper-5 {
    margin: 0 20px;
  }
}
.wrap-car .swiper-5 .swiper-slide {
  width: 220px;
}
.wrap-car .swiper-5 .swiper-button-prev, .wrap-car .swiper-5 .swiper-button-next {
  top: calc(50% - 35px);
}

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

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

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

body.articulo .gallery-top {
  height: 80%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
body.articulo .gallery-top .swiper-slide {
  background-size: cover;
  background-position: center;
}
body.articulo .gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
body.articulo .swiper-container {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  -webkit-flex: 0 1 90%;
  -ms-flex: 0 1 90%;
  flex: 0 1 90%;
}
@media (max-width: 425px) {
  body.articulo .swiper-container {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.articulo .swiper-container {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.articulo .swiper-container {
    -webkit-flex: 0 1 90%;
    -ms-flex: 0 1 90%;
    flex: 0 1 90%;
  }
}
body.articulo .gallery-thumbs {
  height: 100px;
  box-sizing: border-box;
  padding: 10px 0;
  margin-top: 10px;
}
body.articulo .gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
body.articulo .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
body.articulo .swiper-container-pointer-events {
  touch-action: pan-y;
}
body.articulo .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0 0 20px 0 !important;
  z-index: 1;
}
body.articulo .swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
body.articulo .swiper-container-android .swiper-slide, body.articulo .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
body.articulo .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
body.articulo .swiper-slide {
  background-size: cover;
  background-position: center;
}
body.articulo .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
body.articulo .swiper-slide ul.agenda {
  text-align: left;
}
body.articulo .swiper-slide ul.agenda li {
  text-align: left;
  margin-bottom: 15px;
}
body.articulo .swiper-slide ul.agenda .tit {
  line-height: 1.3;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #36424A;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
body.articulo .swiper-slide ul.agenda a {
  font-size: 1.125rem;
  color: #22213F;
  line-height: 1.3;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
body.articulo .swiper-slide ul.agenda p {
  font-size: 1rem;
  color: #22213F;
  line-height: 1.3;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

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

.mySwiper {
  box-sizing: border-box;
  padding: 10px 0;
}
.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition-property: transform;
  background-size: cover;
  background-position: center;
}
.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.mySwiper .swiper-slide-thumb-active img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 240px;
  background-color: #028B9B;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
}
.tooltip .tooltiptext:after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #028B9B transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}
.tooltip .tooltiptext {
  width: 240px;
  top: 115%;
  left: 50%;
  margin-left: -125px;
  position: absolute;
  z-index: 1;
}

body.search.glosario .glosario.arts {
  padding: 0 0 40px;
}

.btn-logout {
  line-height: 140%;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #36424A;
  border: 1px solid #ccc;
  padding: 3px 30px 3px 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #ffffff;
  float: left;
  clear: both;
  margin: 0 0 0 10px;
  background-image: url("../../imag/v1/icon/ic_logout.svg");
  background-repeat: no-repeat;
  background-position: 90% center;
  background-size: 18px;
  transition: 0.3s all ease;
}
@media (max-width: 425px) {
  .btn-logout {
    margin-top: 10px;
    padding: 5px 30px 5px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn-logout {
    margin-top: 10px;
    padding: 5px 30px 5px 20px;
  }
}
.btn-logout:hover {
  color: #E55302;
  border: 1px solid #E55302;
}

.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 {
  background-color: rgba(255, 255, 255, 0.95);
  transition: 0.2s all ease;
  position: relative;
  z-index: 1000;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .header .desktop {
    display: none !important;
  }
}
.header.sticky {
  position: fixed;
  background-color: #ffffff;
  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 .main-navbar .cont-logo {
  padding: 10px 0;
  -webkit-flex: 0 1 260px;
  -ms-flex: 0 1 260px;
  flex: 0 1 260px;
}
.header.sticky .input-holder {
  height: 36px !important;
}
.header.sticky .input-holder .search-icon.btn {
  bottom: 0;
}
.header.sticky .input-holder .search-icon.btn span:before {
  left: 11px !important;
  top: 12px !important;
}
.header.sticky .input-holder .search-icon.btn span:after {
  left: 7px !important;
  top: 2px !important;
}
.header.sticky .input-holder .search-icon.ic span {
  top: 6px;
}
.header.sticky .menu-responsive .cont-logo img {
  transition: 0.2s all ease;
  width: 260px;
}
.header .top-bar {
  padding: 8px 0;
  transition: 0.2s all ease;
  background-color: #0098AA;
}
.header .top-bar .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.header .top-bar .auxi .cont-links-sec {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .top-bar .auxi .links-sec-dest {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.header .top-bar .auxi .links-sec-dest li {
  color: #ffffff;
  margin-left: 25px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .top-bar .auxi .links-sec-dest li:first-child {
  margin-left: 0;
}
.header .top-bar .auxi .links-sec-dest li a {
  color: #ebebeb;
  font-size: 0.8125rem;
  letter-spacing: 0.8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.header .top-bar .auxi .cont-social {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .top-bar .auxi .cont-social a {
  display: block;
  padding: 0 7px;
}
.header .top-bar .auxi .cont-social img {
  width: 21px;
}
.header .top-bar .auxi .links-sec {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 15px;
  padding-right: 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.header .top-bar .auxi .links-sec li {
  margin-right: 20px;
}
.header .top-bar .auxi .links-sec li:last-child {
  margin-right: 0;
}
.header .top-bar .auxi .links-sec li a {
  font-size: 0.8125rem;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.header .links-sec {
  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: 992px) and (max-width: 1277px) {
  .header .links-sec {
    padding-right: 20px;
  }
}
.header .links-sec li:last-child a {
  padding-right: 0;
}
.header .links-sec li a {
  display: block;
  color: #ffffff;
  font-size: 0.8125rem;
  letter-spacing: 0.2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .header .links-sec li a {
    padding-right: 10px;
  }
}
.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;
  padding: 10px;
}
.header .main-navbar .cont-logo {
  padding: 10px 0;
  transition: 0.2s all ease;
  -webkit-flex: 0 1 300px;
  -ms-flex: 0 1 300px;
  flex: 0 1 300px;
}
@media (max-width: 425px) {
  .header .main-navbar .cont-logo {
    -webkit-flex: 0 1 120px;
    -ms-flex: 0 1 120px;
    flex: 0 1 120px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .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: 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: 0 1 80%;
  -ms-flex: 0 1 80%;
  flex: 0 1 80%;
  gap: 20px;
}
.header .main-navbar .cont-navbar .cont-links {
  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 .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: #E55302;
}
.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;
}
.header .main-navbar .cont-navbar .cont-links li.desp > a:after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #af842a;
  bottom: -10px;
  position: absolute;
  right: 0;
}
.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: 0;
}
.header .main-navbar .cont-navbar .cont-links li a {
  display: block;
  color: #36424A;
  font-size: 0.75rem;
  margin-right: 22px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: 0.3s all ease;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .header .main-navbar .cont-navbar .cont-links li a {
    font-size: 0.75rem;
  }
}
.header .main-navbar .cont-navbar .cont-links li a.selected {
  color: #E55302;
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu {
  display: none;
  position: absolute;
  z-index: 30;
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  padding: 30px 0;
  background-color: #0098AA;
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu ul {
  padding: 0 20px;
  -webkit-flex: 1 0 33.333333%;
  -ms-flex: 1 0 33.333333%;
  flex: 1 0 33.333333%;
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu ul li a {
  padding: 12px 15px;
  color: #ffffff;
  text-align: left;
  border: none;
  font-size: 0.875rem;
  line-height: 1.2;
  display: block;
  text-transform: none;
  margin-right: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.header .main-navbar .cont-navbar .cont-links li .sub-menu ul li a:hover {
  background-color: #ffffff;
  transition: 0.3s all ease;
  color: #36424A;
}
.header .search-cont {
  display: inline-block;
  position: relative;
  width: 42px;
  height: 26px;
  margin-left: 10px;
}
.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: 25vw;
  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: #af842a;
}
.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: #ffffff;
}
.header .search-cont .search-wrapper.active .input-holder .search-icon span::after {
  border-color: #ffffff;
}
.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;
  background-color: #ffffff;
}
.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.09rem;
  height: 6px;
  left: 9px;
  top: 15px;
  border-radius: 2px;
  background: #0098AA;
}
.header .search-cont .search-wrapper .input-holder .search-icon span::after {
  width: 10px;
  height: 10px;
  left: 5px;
  top: 5px;
  border-radius: 50%;
  border: 0.09rem solid #0098AA;
}
.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: #76777a;
}
.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);
}

.menu-responsive {
  top: 0;
  padding: 0 10px;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  z-index: 100;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-responsive {
    display: block !important;
  }
}
.menu-responsive .cont-search, .menu-responsive form.mobile {
  margin-top: 10px;
  position: relative;
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.menu-responsive .cont-search input, .menu-responsive form.mobile input {
  width: 100%;
  padding: 12px 15px 12px;
  position: relative;
  font-size: 0.8125rem;
  background-color: #ffffff;
}
.menu-responsive .cont-search button, .menu-responsive form.mobile button {
  position: relative;
  background-color: #af842a;
  padding: 8px;
  padding-left: 12px;
}
.menu-responsive .cont-search button img, .menu-responsive form.mobile button img {
  width: 19px;
}
.menu-responsive .cont-logo {
  display: inline-block;
  position: relative;
  margin: 20px 0 0 0;
}
.menu-responsive .cont-logo img {
  transition: 0.2s all ease;
  width: 260px;
}
.menu-responsive .search-cont {
  margin-left: 0;
  width: 35px;
  height: 54px;
}
.menu-responsive .search-wrapper {
  margin: 0 auto;
  left: auto;
  right: auto !important;
  z-index: 10;
  transform: translate(-4%, -50%) !important;
}
.menu-responsive .search-wrapper.active {
  height: 54px;
}
.menu-responsive .search-wrapper.active .input-holder {
  top: 20%;
  width: 285px !important;
}
.menu-responsive .search-wrapper.active:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 105%;
  background-color: #ffffff;
}
.menu-responsive .search-wrapper .close {
  top: 33% !important;
}
.menu-responsive .menu {
  clear: both;
  max-height: 0;
  width: 100%;
  transition: max-height 0.3s ease-in-out;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.menu-responsive .menu ul {
  padding: 12px 0 7px;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-responsive .menu ul {
    margin: 0;
  }
}
.menu-responsive .menu li {
  position: relative;
  float: none;
}
.menu-responsive .menu li a {
  display: block;
  color: #36424A;
  padding: 0;
  text-decoration: none;
  padding: 8px 9px;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.menu-responsive .menu .links-sec-dest {
  padding-top: 7px;
  border-top: 1px solid #ebebeb;
}
.menu-responsive .menu .links-sec {
  padding-top: 5px;
}
.menu-responsive .menu .menu-sec-m {
  padding-top: 0;
}
.menu-responsive .menu .menu-sec-m a {
  color: #af842a;
}
.menu-responsive .cont-redes {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.menu-responsive .cont-redes img {
  width: 20px;
}
.menu-responsive .status-bar {
  background-color: #af842a;
}
.menu-responsive .status-bar li {
  padding: 0 10px;
  color: #ffffff;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.menu-responsive .status-bar li .cont-txt {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.menu-responsive .status-bar li .img-wrap {
  margin-right: 4px;
}
.menu-responsive .status-bar li .img-wrap img {
  width: 27px;
}
.menu-responsive .status-bar li .cont-txt p {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.menu-responsive .status-bar li .cont-txt .tipo {
  color: #9fa2a5;
  margin-right: 8px;
}
.menu-responsive .status-bar li .cont-txt .dato-prim {
  color: #ffffff;
  margin-right: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.menu-responsive .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 35px 0;
  position: relative;
  user-select: none;
}
.menu-responsive .menu-icon .navicon {
  background: #36424A;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 28px;
}
.menu-responsive .menu-icon .navicon:before, .menu-responsive .menu-icon .navicon:after {
  background: #36424A;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.menu-responsive .menu-icon .navicon:before {
  top: 7px;
}
.menu-responsive .menu-icon .navicon:after {
  top: -7px;
}
.menu-responsive .menu-btn {
  display: none;
}
.menu-responsive .menu-btn:checked ~ .menu {
  max-height: 90vh;
  height: 90vh;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
  top: 0;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon:not(.steps) .navicon:before {
  top: 0;
}
.menu-responsive .menu-btn:checked ~ .menu-icon .navicon:not(.steps) .navicon:after {
  top: 0;
}
.menu-responsive .accordionItemContent {
  border-bottom: 1px solid #ebebeb;
}
.menu-responsive .accordionItemContent li a {
  padding: 10px 20px;
  text-transform: none;
}
.menu-responsive .accordionItemHeading {
  position: absolute;
  padding: 12px;
  display: block;
  width: auto;
  right: 0;
  top: 0;
}
.menu-responsive .accordionItemHeading img {
  width: 13px;
  transition: 0.2s all ease;
}
.menu-responsive .accordionItemHeading .hide {
  display: none !important;
}
.menu-responsive .accordionItemHeading .show {
  display: block !important;
}
.menu-responsive .open .main-link {
  background-color: #ebebeb;
  color: #af842a;
  transition: 0.2s all ease;
}
.menu-responsive .open .accordionItemHeading img {
  transform: rotate(180deg);
}
.menu-responsive .open .accordionItemHeading .hide {
  display: block !important;
}
.menu-responsive .open .accordionItemHeading .show {
  display: none !important;
}
.menu-responsive .open .accordionItemContent {
  width: 100%;
  display: block;
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  -o-transition: -o-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  box-sizing: border-box;
}
.menu-responsive .close .accordionItemContent {
  height: 0px;
  transition: height 1s ease-out;
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  display: block;
  padding: 0;
}

.sup-menu {
  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;
}

.cont-access {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.cont-access li {
  margin-right: 5px;
  width: 23px;
  height: 23px;
}
.cont-access li:first-child a {
  background-image: url("../../imag/v1/icon/ic_text_l.png");
  background-size: 19px;
}
.cont-access li:nth-child(2) a {
  background-image: url("../../imag/v1/icon/ic_text_s.png");
  background-size: 15px;
}
.cont-access li:nth-child(3) a {
  background-image: url("../../imag/v1/icon/ic_contrast.png");
  background-size: 16px;
}
.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: 25px;
  height: 25px;
}

.barras-colores {
  display: none;
  /* @include flex */
  -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;
}
.barras-colores .barra {
  height: 10px;
  width: 33.33%;
  display: block;
}
.barras-colores .uno {
  background: #1196A5;
}
.barras-colores .dos {
  background: #FEAC00;
}
.barras-colores .tres {
  background: #FF5100;
}

.footer {
  background-color: #36424A;
  padding: 40px 0 60px;
}
@media (max-width: 425px) {
  .footer {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding: 20px 40px 30px;
  }
}

.auxi-footer {
  width: 100%;
  max-width: 1200px;
  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;
}
@media (max-width: 425px) {
  .auxi-footer {
    display: block;
    overflow: hidden;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-footer {
    display: block;
    overflow: hidden;
  }
}
@media (max-width: 425px) {
  .auxi-footer .img-wrap {
    display: table;
    margin: 0 auto 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-footer .img-wrap {
    display: table;
    margin: 0 auto 15px;
  }
}
.auxi-footer .img-wrap a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -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) {
  .auxi-footer .img-wrap a {
    display: table;
    clear: both;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-footer .img-wrap a {
    display: table;
    clear: both;
  }
}
.auxi-footer .img-wrap a img {
  width: auto;
}
@media (max-width: 425px) {
  .auxi-footer .img-wrap a img {
    display: table;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-footer .img-wrap a img {
    display: table;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  .auxi-footer .img-wrap a .txt-footer {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-footer .img-wrap a .txt-footer {
    text-align: center;
  }
}
.auxi-footer .img-wrap a .txt-footer p {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 150%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media (max-width: 425px) {
  ul.rss {
    margin: 0 auto;
    display: table;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  ul.rss {
    margin: 0 auto;
    display: table;
  }
}
ul.rss li {
  float: left;
}

.home .header {
  top: 0;
}
.home .main {
  padding-top: 0;
}
.home .dest-main {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 425px) {
  .home .dest-main {
    padding-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main {
    padding-bottom: 0;
  }
}
@media (max-width: 425px) {
  .home .dest-main video {
    display: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main video {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main video {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main video {
    display: block;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .home .dest-main video {
    display: block;
  }
}
@media (min-width: 1400px) {
  .home .dest-main video {
    display: block;
  }
}
.home .dest-main .bg-azul .img-wrap:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgb(14, 0, 23);
  background: -moz-linear-gradient(180deg, rgba(14, 0, 23, 0) 0%, rgba(14, 0, 23, 0.9) 100%);
  background: -webkit-linear-gradient(180deg, rgba(14, 0, 23, 0) 0%, rgba(14, 0, 23, 0.9) 100%);
  background: linear-gradient(180deg, rgba(14, 0, 23, 0) 0%, rgba(14, 0, 23, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0e0017",endColorstr="#0e0017",GradientType=1);
}
.home .dest-main .bg-blanco .img-wrap:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 87%);
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 87%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 87%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.home .dest-main .bg-blanco .titular, .home .dest-main .bg-blanco .epig, .home .dest-main .bg-blanco .baj, .home .dest-main .bg-blanco .main-title {
  color: #36424A !important;
}
.home .dest-main .txt-sm {
  line-height: 1.3;
  font-size: 2.1875rem !important;
}
@media (max-width: 425px) {
  .home .dest-main .txt-sm {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .txt-sm {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main .txt-sm {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main .txt-sm {
    font-size: 1.375rem !important;
  }
}
.home .dest-main .img-wrap {
  position: relative;
}
.home .dest-main .auxi {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding-top: 65px;
  margin-bottom: 60px;
  max-width: 1000px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: end;
  -moz-box-align: end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -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 {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .auxi {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main .auxi {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main .auxi {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (min-width: 1400px) {
  .home .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;
  }
}
.home .dest-main .auxi .titular {
  max-width: 80vw;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .titular {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .auxi .titular {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 15px;
  }
}
.home .dest-main .auxi .epig {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 1.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .epig {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .auxi .epig {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main .auxi .epig {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main .auxi .epig {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.home .dest-main .auxi .baj {
  margin-top: 20px;
  max-width: 80%;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #ffffff;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .baj {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .auxi .baj {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main .auxi .baj {
    font-size: 0.875rem;
    margin-top: 10px;
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main .auxi .baj {
    font-size: 1rem;
    margin-top: 10px;
    max-width: 100%;
  }
}
.home .dest-main .auxi .main-title {
  max-width: 90%;
  text-align: left;
  color: #ffffff;
  font-size: 4.5rem;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .main-title {
    font-size: 1.5rem;
    max-width: 100%;
    line-height: 1.4;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .auxi .main-title {
    font-size: 1.5rem;
    max-width: 80%;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main .auxi .main-title {
    font-size: 1.875rem;
    max-width: 80%;
    line-height: 1.3;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main .auxi .main-title {
    font-size: 1.875rem;
    max-width: 80%;
    line-height: 1.3;
  }
}
.home .dest-main .auxi .main-title:after {
  content: "";
  display: block;
  position: relative;
  width: 290px;
  height: 6px;
  background-color: #af842a;
  margin-top: 20px;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .main-title:after {
    width: 30vw;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .auxi .main-title:after {
    width: 30vw;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main .auxi .main-title:after {
    width: 174px;
    margin-top: 10px;
  }
}
.home .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 {
    margin-top: 0;
    padding-top: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .auxi .cont-btn {
    margin-top: 0;
    padding-top: 15px;
  }
}
.home .dest-main .auxi .cont-btn .btn-main {
  border-radius: 25px;
  padding: 12px 60px;
  font-size: 1.125rem;
  color: #af842a;
  background-color: #ffffff;
  border-color: #ffffff;
}
@media (max-width: 425px) {
  .home .dest-main .auxi .cont-btn .btn-main {
    padding: 8px 25px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .auxi .cont-btn .btn-main {
    padding: 8px 25px;
  }
}
.home .dest-main .auxi .cont-btn .btn-main:hover {
  background-color: #36424A;
  border-color: #36424A;
}

.aviso {
  padding: 0;
  background: #FFFF9E;
  position: relative;
}
.aviso .auxi {
  position: relative;
}
.aviso .auxi .alerta {
  padding: 15px 0;
}
.aviso .auxi .alerta .alerta-seccion {
  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;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .aviso .auxi .alerta .alerta-seccion {
    width: 97%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .aviso .auxi .alerta .alerta-seccion {
    width: 97%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .aviso .auxi .alerta .alerta-seccion {
    width: 97%;
  }
}
.aviso .auxi .alerta .alerta-seccion .alerta-cont {
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -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) {
  .aviso .auxi .alerta .alerta-seccion .alerta-cont {
    display: block;
  }
}
.aviso .auxi .alerta .alerta-seccion .alerta-cont .alerta1 {
  width: auto;
  margin-right: 10px;
}
.aviso .auxi .alerta .alerta-seccion .alerta-cont .box-text {
  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;
}
.aviso .auxi .alerta .alerta-seccion .alerta-cont .box-text .tit {
  font-size: 0.8125rem;
  color: #36424A;
  line-height: 1.3;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.aviso .auxi .alerta .alerta-seccion .alerta-cont .enlace {
  display: inline-block;
  font-size: 1rem;
  color: #36424A;
  background: #ffffff;
  letter-spacing: 0.2px;
  transition: 0.3s all ease;
  margin-right: 0;
  padding-right: 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  padding: 15px 55px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .aviso .auxi .alerta .alerta-seccion .alerta-cont .enlace {
    padding: 10px 25px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    width: 115px;
    -webkit-flex: 0 0 115px;
    -ms-flex: 0 0 115px;
    flex: 0 0 115px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .aviso .auxi .alerta .alerta-seccion .alerta-cont .enlace {
    padding: 10px 25px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    width: 115px;
    -webkit-flex: 0 0 115px;
    -ms-flex: 0 0 115px;
    flex: 0 0 115px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .aviso .auxi .alerta .alerta-seccion .alerta-cont .enlace {
    padding: 10px 25px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    width: 115px;
    -webkit-flex: 0 0 115px;
    -ms-flex: 0 0 115px;
    flex: 0 0 115px;
  }
}
.aviso .auxi .alerta .alerta-seccion .alerta-cerrar a img {
  width: auto;
  margin-top: 0px;
  margin-left: 15px;
}

.secc-alerta .auxi header {
  padding: 0 0 20px 0;
}
@media (max-width: 425px) {
  .secc-alerta .auxi header {
    overflow: hidden;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi header {
    overflow: hidden;
  }
}
.secc-alerta .auxi header .row {
  -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) {
  .secc-alerta .auxi header .row {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi header .row {
    display: block;
  }
}
.secc-alerta .auxi header .row .col .tit-mesa {
  font-size: 1.375rem;
  color: #ffffff;
  line-height: 120%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 425px) {
  .secc-alerta .auxi header .row .col .tit-mesa {
    text-align: center;
    padding: 0;
    font-size: 1.125rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi header .row .col .tit-mesa {
    text-align: center;
    padding: 0;
    font-size: 1.125rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
  }
}
.secc-alerta .auxi header .row .col .datos {
  background: #ffffff;
  padding: 20px 20px 20px 45px;
  float: left;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-size: 1rem;
  color: #36424A;
  line-height: 120%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .secc-alerta .auxi header .row .col .datos {
    display: table;
    width: 240px;
    margin: 0 auto 15px;
    clear: both;
    float: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi header .row .col .datos {
    display: table;
    width: 240px;
    margin: 0 auto 15px;
    clear: both;
    float: none;
  }
}
.secc-alerta .auxi header .row .col .mail {
  background-image: url("../../imag/v1/icon/ic_mail.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 18px;
}
.secc-alerta .auxi header .row .col .tel {
  background-image: url("../../imag/v1/icon/ic_tel.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 18px;
  margin-left: 10px;
}
@media (max-width: 425px) {
  .secc-alerta .auxi header .row .col .tel {
    margin-left: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi header .row .col .tel {
    margin-left: auto;
  }
}
.secc-alerta .auxi header .row .col:first-child {
  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) {
  .secc-alerta .auxi header .row .col:first-child {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi header .row .col:first-child {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
.secc-alerta .auxi header .row .col figure.img-wrap {
  width: 110px;
  margin: 0 10px 0 0;
}
@media (max-width: 425px) {
  .secc-alerta .auxi header .row .col figure.img-wrap {
    margin: 0 auto 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi header .row .col figure.img-wrap {
    margin: 0 auto 15px;
  }
}
.secc-alerta .auxi header .row .col .baj-alerta {
  font-size: 1.375rem;
  color: #ffffff;
  line-height: 120%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 0 20px 0 0;
}
@media (max-width: 425px) {
  .secc-alerta .auxi header .row .col .baj-alerta {
    text-align: center;
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi header .row .col .baj-alerta {
    text-align: center;
    padding: 0;
  }
}
.secc-alerta .auxi header .row .col:last-child {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 425px) {
  .secc-alerta .auxi header .row .col:last-child {
    display: block;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi header .row .col:last-child {
    display: block;
    width: 100%;
  }
}
.secc-alerta .auxi footer {
  border-top: 1px solid #D9D7C2;
  padding: 20px 0 0 0;
}
@media (max-width: 425px) {
  .secc-alerta .auxi footer {
    border-top: 0 solid #D9D7C2;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi footer {
    border-top: 0 solid #D9D7C2;
  }
}
.secc-alerta .auxi footer h5 {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .secc-alerta .auxi footer h5 {
    text-align: center;
    padding: 0;
    font-size: 1.125rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .secc-alerta .auxi footer h5 {
    text-align: center;
    padding: 0;
    font-size: 1.125rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
  }
}

ul.sucursales {
  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) {
  ul.sucursales {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  ul.sucursales {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
ul.sucursales li {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  ul.sucursales li {
    width: 45%;
    margin: 0 0 10px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  ul.sucursales li {
    width: 45%;
    margin: 0 0 10px 10px;
  }
}
ul.sucursales li span {
  float: left;
  margin-bottom: 3px;
}
ul.sucursales li a {
  clear: both;
  float: left;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
ul.sucursales li + li {
  margin: 0 0 0 10px;
}
@media (max-width: 425px) {
  ul.sucursales li + li {
    margin: 0 0 10px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  ul.sucursales li + li {
    margin: 0 0 10px 10px;
  }
}

section.actualidad {
  background: rgba(196, 193, 160, 0.2);
  overflow: hidden;
}

.art-actualidad {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .art-actualidad {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art-actualidad {
    display: block;
  }
}
.art-actualidad .img-wrap {
  -webkit-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 425px) {
  .art-actualidad .img-wrap {
    margin-bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art-actualidad .img-wrap {
    margin-bottom: 10px;
  }
}
.art-actualidad .img-wrap img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.art-actualidad .cont-txt {
  -webkit-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding: 0 0 0 50px;
}
@media (max-width: 425px) {
  .art-actualidad .cont-txt {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art-actualidad .cont-txt {
    padding: 0;
  }
}
.art-actualidad .cont-txt h3.tit {
  line-height: 130%;
  font-size: 1.938rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #36424A;
  float: left;
  clear: both;
  margin-bottom: 40px;
}
.art-actualidad .cont-txt p {
  line-height: 130%;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #36424A;
  float: left;
  clear: both;
  margin-bottom: 40px;
}
@media (max-width: 425px) {
  .art-actualidad .cont-txt p {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art-actualidad .cont-txt p {
    display: none;
  }
}
.art-actualidad .cont-txt span.fecha {
  line-height: 130%;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #C4C1A0;
  float: left;
  clear: both;
  margin-bottom: 30px;
}
@media (max-width: 425px) {
  .art-actualidad .cont-txt span.fecha {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art-actualidad .cont-txt span.fecha {
    display: none;
  }
}

.ver-mas {
  line-height: 140%;
  font-size: 0.8125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ffffff;
  border: 1px solid #E55302;
  padding: 10px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #E55302;
  float: left;
  clear: both;
}

.tag {
  line-height: 140%;
  font-size: 0.8125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #36424A;
  border: 1px solid #36424A;
  padding: 7px 25px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #ffffff;
  float: left;
  clear: both;
  margin-bottom: 20px;
}

section.saber {
  background: rgba(196, 193, 160, 0.2);
}
section.saber .titu {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 40px;
}

@media (max-width: 425px) {
  .art {
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art {
    margin-bottom: 15px;
  }
}
.art .auxi-art {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 40px 30px;
}
@media (max-width: 425px) {
  .art .auxi-art {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .art .auxi-art {
    width: 100%;
  }
}
.art .auxi-art .img-wrap {
  -webkit-flex: 0 1 45%;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
  margin: 0 20px 0 0;
}
.art .auxi-art .img-wrap img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.art .auxi-art .cont-txt {
  -webkit-flex: 0 1 55%;
  -ms-flex: 0 1 55%;
  flex: 0 1 55%;
}
.art .auxi-art .cont-txt h5 {
  line-height: 140%;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #36424A;
  margin-bottom: 20px;
}
.art .auxi-art .cont-txt a {
  line-height: 140%;
  font-size: 0.8125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #E55302;
  background-image: url("../../imag/v1/icon/arrow_naranja.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 0px) 0;
  background-size: 15px;
  padding: 0 20px 0 0;
}

.bloq-full.big, .bloq-full.big > a {
  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;
  height: 100%;
}
.bloq-full.big .img-wrap, .bloq-full.big > a .img-wrap {
  -webkit-flex: 0 1 100% !important;
  -ms-flex: 0 1 100% !important;
  flex: 0 1 100% !important;
}
.bloq-full.big .img-wrap .cont-txt, .bloq-full.big > a .img-wrap .cont-txt {
  position: relative !important;
  padding: 38px 25px 0 !important;
  width: 100% !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}
@media (max-width: 425px) {
  .bloq-full.big .img-wrap .cont-txt, .bloq-full.big > a .img-wrap .cont-txt {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .bloq-full.big .img-wrap .cont-txt, .bloq-full.big > a .img-wrap .cont-txt {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bloq-full.big .img-wrap .cont-txt, .bloq-full.big > a .img-wrap .cont-txt {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
.bloq-full.big .saber, .bloq-full.big > a .saber {
  float: none !important;
}
.bloq-full.big > a, .bloq-full.big > a > a {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.bloq-full.big > a .img-wrap.uno, .bloq-full.big > a > a .img-wrap.uno {
  height: 100%;
}

.bloq-full.big .img-wrap.uno .cont-txt .auxi-destacado .top-destacado {
  margin-top: 0;
}
.bloq-full.big .overlay__banner {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.3);
}
.bloq-full.big .img-wrap__banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bloq-full {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  padding: 0;
}
@media (max-width: 425px) {
  .bloq-full {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .bloq-full {
    display: block;
  }
}
.bloq-full .img-wrap.uno {
  -webkit-flex: 0 1 60%;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
  position: relative;
}
@media (max-width: 425px) {
  .bloq-full .img-wrap.uno {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .bloq-full .img-wrap.uno {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bloq-full .img-wrap.uno {
    height: 375px;
  }
}
.bloq-full .img-wrap.uno .cont-txt {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  max-width: 560px;
  width: 97%;
  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;
}
@media (max-width: 425px) {
  .bloq-full .img-wrap.uno .cont-txt {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-left: 30px !important;
    padding-right: 30px !important;
    padding-bottom: 37px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .bloq-full .img-wrap.uno .cont-txt {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-left: 30px !important;
    padding-right: 30px !important;
    padding-bottom: 37px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bloq-full .img-wrap.uno .cont-txt {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
.bloq-full .img-wrap.uno .cont-txt .auxi-destacado {
  width: 100%;
}
.bloq-full .img-wrap.uno .cont-txt .auxi-destacado .top-destacado {
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 38px;
  margin-bottom: 25px;
}
.bloq-full .img-wrap.uno .cont-txt .auxi-destacado .top-destacado .tag {
  line-height: 140%;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ffffff;
  border: 1px solid #7B7D80;
  padding: 15px 30px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  margin-right: 25px;
  background: none;
  margin-bottom: 0;
}
@media (max-width: 425px) {
  .bloq-full .img-wrap.uno .cont-txt .auxi-destacado .top-destacado .tag {
    padding: 10px;
  }
}
.bloq-full .img-wrap.uno .cont-txt .auxi-destacado .tit {
  line-height: 130%;
  font-size: 2.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  float: left;
  clear: both;
}
@media (max-width: 425px) {
  .bloq-full .img-wrap.uno .cont-txt .auxi-destacado .tit {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .bloq-full .img-wrap.uno .cont-txt .auxi-destacado .tit {
    font-size: 1.875rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bloq-full .img-wrap.uno .cont-txt .auxi-destacado .tit {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .bloq-full .img-wrap.uno .cont-txt .auxi-destacado .tit {
    font-size: 1.875rem;
  }
}
.bloq-full .img-wrap.uno .cont-txt .auxi-destacado p {
  line-height: 130%;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 25px;
  float: left;
  clear: both;
}
.bloq-full .img-wrap.uno .cont-txt .auxi-destacado a.saber {
  line-height: 130%;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ffffff;
  background: #E55302;
  padding: 15px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  float: left;
  clear: both;
}
.bloq-full .img-wrap.dos {
  -webkit-flex: 0 1 40.2%;
  -ms-flex: 0 1 40.2%;
  flex: 0 1 40.2%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .bloq-full .img-wrap.dos {
    height: 375px;
  }
}
.bloq-full.overlay .img-wrap.uno:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(0deg, rgba(54, 66, 74, 0.8), rgba(54, 66, 74, 0.8));
}

body.articulo .top-art .img-wrap {
  margin-bottom: 25px;
}
body.articulo .cont-grado {
  color: #36424A;
  margin-bottom: 25px;
}

.cont-grado {
  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-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  line-height: 140%;
  font-size: 0.8125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ffffff;
}
.cont-grado span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-left: 5px;
  margin-right: 5px;
}
.cont-grado span.grado {
  background-color: #E55302;
  width: 3px;
  margin: 0 2px;
}

body.articulo .palabras {
  background: rgba(196, 193, 160, 0.2);
  padding: 30px 0;
}

.downloads.small {
  margin-bottom: 30px;
}
.downloads.small .auxi {
  padding: 20px 20px 10px !important;
}
.downloads.small .auxi h2 {
  text-align: left;
}
.downloads.small .auxi ul li {
  float: left;
  clear: both;
}
@media (max-width: 425px) {
  .downloads.small .auxi ul li {
    margin: 0 5px 15px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .downloads.small .auxi ul li {
    margin: 0 5px 15px !important;
  }
}
.downloads.small .auxi ul li a h3 {
  text-align: left;
}
.downloads.small .auxi ul li a .title {
  background-image: url("../../imag/v1/icon/arrow_naranja.svg");
  background-repeat: no-repeat;
  background-position: 5px 2px;
  background-size: 15px;
  padding: 0 0 0 29px;
  font-size: 0.875rem;
}

.palabras.small {
  background: #ffffff !important;
  padding: 0 !important;
}
.palabras.small .auxi .tit {
  text-align: left;
  font-size: 1rem;
  padding: 0 10px;
  padding-bottom: 20px;
}
.palabras.small .auxi ul.list-palabra {
  display: block;
}
.palabras.small .auxi ul.list-palabra li {
  float: left;
  margin: 0 5px 10px;
}
.palabras.small .auxi ul.list-palabra li a {
  float: left;
  padding: 5px;
}
.palabras.small .auxi ul.list-palabra li + li {
  margin-left: 5px;
}

.palabras {
  margin-bottom: 50px;
}
.palabras .auxi .tit {
  line-height: 130%;
  font-size: 1.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #0098AA;
  padding-bottom: 40px;
  text-align: center;
}
.palabras .auxi ul.list-palabra {
  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) {
  .palabras .auxi ul.list-palabra {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .palabras .auxi ul.list-palabra {
    display: block;
  }
}
.palabras .auxi ul.list-palabra li {
  float: left;
}
@media (max-width: 425px) {
  .palabras .auxi ul.list-palabra li {
    margin: 10px 5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .palabras .auxi ul.list-palabra li {
    margin: 10px 5px;
  }
}
.palabras .auxi ul.list-palabra li a {
  line-height: 140%;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ffffff;
  border: 1px solid #0098AA;
  padding: 15px 30px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #0098AA;
}
@media (max-width: 425px) {
  .palabras .auxi ul.list-palabra li a {
    float: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .palabras .auxi ul.list-palabra li a {
    float: left;
  }
}
.palabras .auxi ul.list-palabra li a:hover {
  opacity: 1;
  transition: 0.3s all ease;
}
.palabras .auxi ul.list-palabra li + li {
  margin-left: 15px;
}
@media (max-width: 425px) {
  .palabras .auxi ul.list-palabra li + li {
    margin-left: 5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .palabras .auxi ul.list-palabra li + li {
    margin-left: 5px;
  }
}

h2.titu {
  line-height: 130%;
  font-size: 2.1875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #36424A;
  margin-bottom: 50px;
  text-align: center;
}

.secc-alerta {
  background: #C13832;
}
.secc-alerta .auxi {
  max-width: 1000px;
}

@media (max-width: 425px) {
  .arts {
    clear: both;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts {
    clear: both;
  }
}
.arts .auxi .img-wrap {
  width: 100%;
  position: relative;
}
.arts .auxi .img-wrap img {
  -moz-border-radius-topleft: 20px;
  -webkit-border-top-left-radius: 20px;
  border-top-left-radius: 20px;
  -moz-border-radius-topright: 20px;
  -webkit-border-top-right-radius: 20px;
  border-top-right-radius: 20px;
}
.arts .auxi article {
  margin-bottom: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.arts .auxi article:hover .cont-txt {
  transition: 0.3s all ease;
  background-color: #1196A5;
  color: #ffffff;
}
.arts .auxi article:hover .cont-txt p, .arts .auxi article:hover .cont-txt a, .arts .auxi article:hover .cont-txt .cont-grado {
  color: #ffffff;
}
.arts .auxi article:hover .cont-txt h3 {
  color: #ffffff;
}
.arts .auxi article:hover .cont-txt .tag {
  border: 1px solid #ffffff;
}
.arts .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 article .cont-txt {
  background-color: #ffffff;
  padding: 30px;
  width: 100%;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-border-radius-bottomright: 20px;
  -webkit-border-bottom-right-radius: 20px;
  border-bottom-right-radius: 20px;
  -moz-border-radius-bottomleft: 20px;
  -webkit-border-bottom-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media (max-width: 425px) {
  .arts .auxi article .cont-txt {
    padding: 25px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts .auxi article .cont-txt {
    padding: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .arts .auxi article .cont-txt {
    padding: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .arts .auxi article .cont-txt {
    padding: 25px;
  }
}
.arts .auxi article .cont-txt .content {
  padding: 30px;
}
.arts .auxi article .cont-txt .fecha {
  padding-bottom: 7px;
  font-size: 0.875rem;
  color: #af842a;
}
.arts .auxi article .cont-txt .tag {
  background: none;
}
.arts .auxi article .cont-txt span.fecha {
  line-height: 130%;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #C4C1A0;
  float: left;
  clear: both;
  margin-bottom: 30px;
}
.arts .auxi article .cont-txt h3 {
  font-size: 1.25rem;
  color: #36424A;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  float: left;
  clear: both;
}
.arts .auxi article .cont-txt h3 a {
  font-size: 1.25rem;
  color: #36424A;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.arts .auxi article .cont-txt .bajada {
  font-size: 0.875rem;
  color: #36424A;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .arts .auxi article .cont-txt .bajada {
    font-size: 0.8125rem;
    padding-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts .auxi article .cont-txt .bajada {
    font-size: 0.8125rem;
    padding-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .arts .auxi article .cont-txt .bajada {
    font-size: 0.875rem;
    padding-bottom: 10px;
  }
}
.arts .auxi article .cont-txt .cont-grado {
  color: #36424A;
}

body.search.taxonomia .arts .auxi article .cont-txt .bajada {
  margin-bottom: 0;
}

.dest-full {
  position: relative;
  padding: 0;
}

.auxi.preguntas {
  position: relative;
  padding: 60px 0;
}
@media (max-width: 425px) {
  .auxi.preguntas {
    padding: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi.preguntas {
    padding: 30px;
  }
}
.auxi.preguntas .tit {
  font-size: 2.1875rem;
  color: #ffffff;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.auxi.preguntas .row .col p {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.auxi.preguntas .ver-mas {
  margin-top: 20px;
}

.menujq > ul {
  margin-left: 0 !important;
  list-style: none;
}
.menujq > ul > li {
  list-style: none !important;
  background: #ffffff;
  border-radius: 10px;
}
.menujq > ul > li > a {
  position: relative;
  display: block;
  margin: 10px 0 0;
  padding: 30px 45px 30px 30px;
  background-color: #ffffff;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 10px;
  font-size: 1rem;
  color: #36424A;
  line-height: 1.3;
  font-family: "Montserrat", 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: 767px) {
  .menujq > ul > li > a {
    padding: 15px 25px 15px 15px;
  }
}
.menujq > ul > li > a:after {
  content: "";
  position: absolute;
  right: 0;
  margin-right: 10px;
  width: 21px;
  height: 21px;
  background-image: url("../../imag/v1/icon/arrow_naranja_dos.svg");
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 100%;
}
@media (max-width: 425px) {
  .menujq > ul > li > a:after {
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .menujq > ul > li > a:after {
    width: 15px;
    height: 15px;
    top: calc(50% - 7px);
  }
}
.menujq > ul > li.active a {
  background-color: #ffffff;
  color: #0098AA;
  margin: 10px 0 0;
}
.menujq > ul > li.active a:after {
  content: "";
  background-image: url("../../imag/v1/icon/arrow_naranja_dos.svg");
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
.menujq > ul > li.active ul a {
  color: #36424A;
  background: none;
}
.menujq > ul > li.active ul a:hover {
  color: #E55302;
  transition: 0.2s all ease;
}
.menujq > ul > li:first-child > ul {
  display: block;
}
.menujq > ul > li ul li .CUERPO {
  font-size: 14px !important;
  line-height: 180% !important;
  color: #36424A !important;
  padding: 0 45px 0 30px !important;
}
.menujq > ul > li ul li .CUERPO p {
  font-size: 14px !important;
  line-height: 180% !important;
  color: #36424A !important;
  margin-bottom: 0 !important;
}
.menujq > ul > li ul li .CUERPO ul li {
  margin-bottom: 0;
  line-height: 130%;
  padding-bottom: 10px;
}
.menujq .desplegable ul.box-question {
  padding: 0 30px 30px 30px;
  list-style: none;
}
.menujq .desplegable ul.box-question li.question {
  list-style: none !important;
}
.menujq .desplegable ul.box-question li.question p {
  font-size: 1rem;
  color: #36424A;
  line-height: 130%;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.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: #36424A;
  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;
}

body.taxonomia .enc-txt .auxi h1, body.glosario .enc-txt .auxi h1 {
  margin-bottom: 35px;
}

.selectores {
  padding: 20px 0;
  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) {
  .selectores {
    padding-bottom: 0;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .selectores {
    padding-bottom: 0;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .selectores {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.selectores .input-holder {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  padding: 0;
  margin-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #ecedee;
  -webkit-flex: 0 1 310px;
  -ms-flex: 0 1 310px;
  flex: 0 1 310px;
  padding: 10px 0;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .selectores .input-holder {
    -webkit-flex: 0 1 99%;
    -ms-flex: 0 1 99%;
    flex: 0 1 99%;
    margin: 0 auto 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .selectores .input-holder {
    -webkit-flex: 0 1 99%;
    -ms-flex: 0 1 99%;
    flex: 0 1 99%;
    margin: 0 auto 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .selectores .input-holder {
    -webkit-flex: 0 1 83%;
    -ms-flex: 0 1 83%;
    flex: 0 1 83%;
    margin: 0 0 15px 5px;
    float: left;
  }
}
.selectores .input-holder .buscador {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 425px) {
  .selectores .input-holder .buscador {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .selectores .input-holder .buscador {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.selectores .input-holder .buscador .search-input {
  padding: 0 15px;
  width: 100%;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0) !important;
}
@media (max-width: 425px) {
  .selectores .input-holder .buscador .search-input {
    width: 90%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .selectores .input-holder .buscador .search-input {
    width: 90%;
  }
}
.selectores .form-group, .selectores .cont-btn {
  margin-left: 5px;
  -webkit-flex: 0 1 83%;
  -ms-flex: 0 1 83%;
  flex: 0 1 83%;
}
@media (max-width: 425px) {
  .selectores .form-group, .selectores .cont-btn {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .selectores .form-group, .selectores .cont-btn {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.selectores select, .selectores .ver {
  margin-left: 0 !important;
  width: 100%;
  height: 34px;
  text-transform: uppercase;
  padding: 10px 20px 10px 10px;
  margin-left: 20px;
  background-color: #ecedee;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 10px 20px 10px 10px;
  color: #000;
  font-size: 0.6875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .selectores select, .selectores .ver {
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .selectores select, .selectores .ver {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .selectores select, .selectores .ver {
    margin-bottom: 15px;
  }
}
.selectores .btn {
  width: 30px;
  height: 30px;
  top: 2px;
  right: 3px;
  border: none;
  border-radius: 6px;
  padding: 0px;
  outline: none;
  position: relative;
  z-index: 2;
  float: right;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.selectores .btn span {
  width: 18px;
  height: 21px;
  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);
}
.selectores .btn span::before {
  width: 2px;
  height: 7px;
  left: 8px;
  top: 11px;
  border-radius: 2px;
  background: #36424A;
}
.selectores .btn span::after {
  width: 12px;
  height: 12px;
  left: 3px;
  top: 0px;
  border-radius: 50%;
  border: 2px solid #36424A;
}

.btn span:before, .btn span:after {
  position: absolute;
  content: "";
}

.glosario.arts .tit-glosario {
  font-size: 3.75rem;
  color: #36424A;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.definicion {
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.definicion .auxi {
  padding: 15px;
}
.definicion h5 {
  font-size: 1rem;
  color: #36424A;
  line-height: 1.3;
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.definicion p {
  font-size: 0.875rem;
  color: #36424A;
  line-height: 150%;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.img-wrap.destacado {
  margin-bottom: 15px;
}

.top-cuerpo {
  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-bottom: 15px;
}
.top-cuerpo .fecha {
  line-height: 130%;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #36424A;
}
.top-cuerpo ul {
  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;
}
.top-cuerpo ul li {
  margin: 5px;
}

@media (max-width: 425px) {
  .cont-art.art-general .auxi .row {
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-art.art-general .auxi .row {
    -webkit-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

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

.box__filtros {
  position: relative;
  z-index: 10;
  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: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media (max-width: 425px) {
  .box__filtros {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros {
    display: block;
  }
}
.box__filtros .btn span:before, .box__filtros .btn span:after {
  position: absolute;
  content: "";
}
.box__filtros .formas {
  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) {
  .box__filtros .formas {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .formas {
    display: none;
  }
}
.box__filtros .formas li {
  width: 47px;
  height: 47px;
  margin: 0 5px;
  cursor: pointer;
}
.box__filtros .formas .grupo {
  background-image: url("../../imag/v1/icon/ico_group.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 47px;
  transition: 0.2s all ease;
}
.box__filtros .formas .grupo:hover {
  background-image: url("../../imag/v1/icon/ico_group_hover.svg");
  transition: 0.2s all ease;
}
.box__filtros .formas .grupo.selected {
  background-image: url("../../imag/v1/icon/ico_group_hover.svg");
}
.box__filtros .formas .listado {
  background-image: url("../../imag/v1/icon/ico_listado.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 47px;
  transition: 0.2s all ease;
}
.box__filtros .formas .listado:hover {
  background-image: url("../../imag/v1/icon/ico_listado_hover.svg");
  transition: 0.2s all ease;
}
.box__filtros .formas .listado.selected {
  background-image: url("../../imag/v1/icon/ico_listado_hover.svg");
}
.box__filtros .form_filtro {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-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;
  padding: 10px 5px 9px 15px;
}
@media (max-width: 425px) {
  .box__filtros .form_filtro {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .form_filtro {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.box__filtros .form_filtro .search-input {
  border: 0 solid #808285 !important;
  padding: 0;
  font-size: 16px;
  -webkit-flex: 0 1 90%;
  -ms-flex: 0 1 90%;
  flex: 0 1 90%;
}
@media (max-width: 425px) {
  .box__filtros .form_filtro .search-input {
    width: 90%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .form_filtro .search-input {
    width: 90%;
  }
}
.box__filtros .selectores {
  padding: 20px 0;
  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;
  margin: 0 8px 0 0;
}
@media (max-width: 425px) {
  .box__filtros .selectores {
    padding-bottom: 0;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .selectores {
    padding-bottom: 0;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box__filtros .selectores {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.box__filtros .selectores .form-group {
  margin-left: 5px;
  -webkit-flex: 0 1 83%;
  -ms-flex: 0 1 83%;
  flex: 0 1 83%;
}
@media (max-width: 425px) {
  .box__filtros .selectores .form-group {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .selectores .form-group {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin-left: 0;
  }
}
.box__filtros .selectores .form-group .btn {
  background-color: #F4AA00;
  background-image: url("../../imag/v1/icon/chevron_b_left.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 6px) 9px;
  background-size: 10px;
  float: left;
  padding-top: 0;
  width: 100px;
  top: 0;
}
.box__filtros .selectores select, .box__filtros .selectores .ver {
  margin-left: 0 !important;
  width: 200px;
  padding: 10px 20px 10px 10px;
  margin-left: 20px;
  background-color: #ecedee;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 15px 20px 15px 30px;
  color: #36424A;
  font-size: 16px;
  font-weight: 300;
  background-color: #FFFFFF;
  border: 1px solid rgba(54, 66, 74, 0.3) !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  height: inherit;
}
@media (max-width: 425px) {
  .box__filtros .selectores select, .box__filtros .selectores .ver {
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .selectores select, .box__filtros .selectores .ver {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box__filtros .selectores select, .box__filtros .selectores .ver {
    margin-bottom: 15px;
  }
}
@media (max-width: 425px) {
  .box__filtros .selectores select {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .selectores select {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .box__filtros .block {
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .block {
    display: block;
  }
}
.box__filtros .input-holder {
  padding: 0 !important;
  margin: 0 10px;
  font-weight: 300;
  font-weight: 600;
  background-color: #ecedee;
  -webkit-flex: 0 1 300px;
  -ms-flex: 0 1 300px;
  flex: 0 1 300px;
  padding: 2px 0;
  background: #FFFFFF;
  border: 1px solid rgba(54, 66, 74, 0.3);
  box-sizing: border-box;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
@media (max-width: 425px) {
  .box__filtros .input-holder {
    -webkit-flex: 0 1 99%;
    -ms-flex: 0 1 99%;
    flex: 0 1 99%;
    margin: 0 auto 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .input-holder {
    -webkit-flex: 0 1 99%;
    -ms-flex: 0 1 99%;
    flex: 0 1 99%;
    margin: 0 auto 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box__filtros .input-holder {
    -webkit-flex: 0 1 83%;
    -ms-flex: 0 1 83%;
    flex: 0 1 83%;
    margin: 0 0 15px 5px;
    float: left;
  }
}
.box__filtros .input-holder--big {
  -webkit-flex: 0 1 500px;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
}
@media (max-width: 425px) {
  .box__filtros .input-holder--big {
    -webkit-flex: 0 1 99%;
    -ms-flex: 0 1 99%;
    flex: 0 1 99%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box__filtros .input-holder--big {
    -webkit-flex: 0 1 99%;
    -ms-flex: 0 1 99%;
    flex: 0 1 99%;
  }
}
.box__filtros .input-holder .btn {
  width: 30px;
  height: 30px;
  top: 2px;
  right: 3px;
  border: none;
  border-radius: 6px;
  padding: 0px;
  outline: none;
  position: relative;
  z-index: 2;
  float: right;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.box__filtros .input-holder .btn span {
  width: 18px;
  height: 21px;
  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);
}
.box__filtros .input-holder .btn span::before {
  width: 2px;
  height: 7px;
  left: 8px;
  top: 11px;
  border-radius: 2px;
  background: #36424A;
}
.box__filtros .input-holder .btn span::after {
  width: 12px;
  height: 12px;
  left: 3px;
  top: 0px;
  border-radius: 50%;
  border: 2px solid #36424A;
}

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

.image.align-left {
  float: left;
}
.image.align-right {
  float: right;
}

@media (min-width: 1400px) {
  .articulo .art-cols .row {
    margin-left: -40px;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .articulo .art-cols .row {
    margin-left: -50px;
  }
}
@media (min-width: 1400px) {
  .articulo .art-cols .row .col {
    border-left-width: 40px;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .articulo .art-cols .row .col {
    border-left-width: 40px;
  }
}
.articulo .art-cols .art-content .titular {
  margin-bottom: 15px;
}
.articulo .art-cols .art-content .titular .tit {
  line-height: 1.3;
  text-transform: uppercase;
  font-size: 1.875rem;
  color: #af842a;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.articulo .art-cols .art-content .titular .baj {
  font-size: 1.125rem;
  color: #808285;
  line-height: 1.3;
  letter-spacing: 0.4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.articulo .art-cols .art-content .tags .tags_title {
  font-size: 13px;
}
.articulo .art-cols .art-content .tags .tag a {
  background: none;
  font-size: 12px;
  padding: 4px 12px;
}
.articulo .art-content .auxi, .articulo .enc-art .auxi {
  max-width: 800px;
}
.articulo .art-content .auxi {
  margin-bottom: 30px;
}
.articulo .enc-art {
  padding-top: 30px;
  padding-bottom: 0;
}
.articulo .toolbar {
  padding: 20px 0 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 425px) {
  .articulo .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: 767px) {
  .articulo .toolbar {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.articulo .toolbar .fecha {
  color: #36424A;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .articulo .toolbar .fecha {
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .toolbar .fecha {
    margin-bottom: 15px;
  }
}
.articulo .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;
}
.articulo .toolbar .cont-share ul {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.articulo .toolbar .cont-share li {
  padding-right: 5px;
}
.articulo .toolbar .cont-share li a {
  padding: 5px;
  display: block;
  border-radius: 50%;
}
@media (max-width: 425px) {
  .articulo .toolbar .cont-share li a {
    padding: 4px;
  }
}
.articulo .toolbar .cont-share li a:hover {
  background-color: #1196A5 !important;
  transition: 0.3s all ease;
}
.articulo .toolbar .cont-share li a.link {
  background-color: #1196A5;
}
.articulo .toolbar .cont-share li a.twitter {
  background-color: #1da1f2;
}
.articulo .toolbar .cont-share li a.facebook {
  background-color: #1877f2;
}
.articulo .toolbar .cont-share li a.print {
  background: none !important;
}
.articulo .toolbar .cont-share li img {
  width: 25px;
}
@media (max-width: 425px) {
  .articulo .toolbar .cont-share li img {
    width: 20px;
  }
}
.articulo .toolbar .cont-share li.english-v {
  margin-left: 20px;
}
.articulo .toolbar .cont-share li.english-v a {
  color: #af842a;
  border-radius: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.articulo .toolbar .cont-share li.english-v a:hover {
  background: none !important;
  color: #1196A5;
}
@media (max-width: 425px) {
  .articulo .toolbar .cont-share li.english-v a {
    font-size: 14px;
  }
}
.articulo .toolbar .cont-share li.english-v a figure {
  margin-right: 5px;
}
.articulo .toolbar .cont-share li.english-v a figure img {
  width: 35px;
}
@media (max-width: 425px) {
  .articulo .toolbar .cont-share li.english-v a figure img {
    width: 25px;
  }
}
.articulo .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;
}
.articulo .eng-noticias.english-v {
  margin-left: 0;
}
.articulo .eng-noticias.english-v a {
  color: #af842a;
  border-radius: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.articulo .eng-noticias.english-v a:hover {
  background: none !important;
  color: #1196A5;
}
.articulo .eng-noticias.english-v a figure {
  margin-right: 5px;
}
.articulo .eng-noticias.english-v a figure img {
  width: 35px;
}
.articulo .anclas {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
}
@media (max-width: 425px) {
  .articulo .anclas {
    margin: 10px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .anclas {
    margin: 10px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .articulo .anclas {
    margin: 10px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .articulo .anclas {
    margin: 10px 20px;
  }
}
.articulo .anclas .subtitulos {
  font-weight: normal;
}
.articulo .anclas .subtitulos a {
  display: block;
  font-size: 0.875rem;
  color: #ffffff;
  margin: 0.3rem 2px;
  padding: 10px 20px;
  background-color: #0098AA;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.articulo .anclas .subtitulos a:hover {
  text-decoration: none;
  background-color: #1196A5;
  transition: 0.2s all ease;
}
.articulo .contsubtit {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  line-height: 1;
  width: 100%;
  margin: 20px 0;
  padding: 0.8em 0;
}
@media (max-width: 425px) {
  .articulo .contsubtit {
    margin: 10px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .contsubtit {
    margin: 10px 0;
  }
}
.articulo .contsubtit .titsubtit {
  text-decoration: none;
  color: #36424A;
  font-size: 1.375rem;
  max-width: 90%;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .articulo .contsubtit .titsubtit {
    font-size: 1.25rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .contsubtit .titsubtit {
    font-size: 1.25rem;
  }
}
.articulo .contsubtit .linksubtit {
  margin: 0 6px 0 0 !important;
  padding: 3px 10px !important;
  text-align: center !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .articulo .contsubtit .linksubtit {
    font-size: 0.6875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .contsubtit .linksubtit {
    font-size: 0.6875rem;
  }
}
.articulo .contsubtit .linksubtit a {
  color: #ffffff !important;
}
.articulo .contsubtit .linksubtit:hover {
  background-color: #1196A5;
  transition: 0.2s all ease;
}
.articulo .contsubtit .linksubtit img {
  width: 20px;
}
.articulo .media {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
}
.articulo .cont_video iframe {
  width: 100%;
}
.articulo .media iframe, .articulo .media object, .articulo .media embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.articulo .relacionados .row {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.articulo .relacionados .row article {
  margin-bottom: 20px;
}
.articulo .relacionados .row article:last-child {
  margin-bottom: 0;
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .articulo .relacionados .row article {
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .articulo .relacionados .row article {
    margin-bottom: 0;
  }
}
.articulo.formulario .enc-main {
  text-align: center;
  color: #ffffff;
}
.articulo.formulario .form-content {
  padding: 50px 0;
}
.articulo.formulario .form-content form {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.articulo.formulario .form-content .auxi {
  max-width: 800px;
}
.articulo.formulario form .form-group {
  padding-bottom: 30px;
}
.articulo.formulario form .form-group label, .articulo.formulario form .form-group h3 {
  padding-bottom: 10px;
  display: block;
  color: #1196A5;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .articulo.formulario form .form-group label, .articulo.formulario form .form-group h3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo.formulario form .form-group label, .articulo.formulario form .form-group h3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
.articulo.formulario form .form-group input, .articulo.formulario form .form-group select, .articulo.formulario form .form-group textarea {
  width: 100%;
  font-size: 0.875rem;
}
.articulo.formulario form .form-group .adv, .articulo.formulario form .form-group span {
  font-size: 0.875rem;
  color: #C13832;
  padding-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.articulo.formulario form .cont-btn {
  padding: 30px 0;
  text-align: center;
}
.articulo.formulario form .cont-btn .btn {
  display: inline-block;
  font-size: 0.8125rem;
  color: #ffffff;
  padding: 12px 50px;
  background-color: #FF5100;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.articulo.formulario form .cont-btn .btn:hover {
  background-color: #FEAC00;
  transition: 0.3s all ease;
}
.articulo .downloads {
  background: rgba(196, 193, 160, 0.2);
  border-radius: 30px;
}
.articulo .downloads .auxi {
  padding: 30px;
  text-align: center;
}
@media (max-width: 425px) {
  .articulo .downloads .auxi {
    padding: 20px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .downloads .auxi {
    padding: 20px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .articulo .downloads .auxi {
    padding: 30px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .articulo .downloads .auxi {
    padding: 30px 20px;
  }
}
@media (min-width: 1400px) {
  .articulo .downloads .auxi {
    max-width: 1115px;
  }
}
.articulo .downloads .auxi h2 {
  font-size: 1rem;
  color: #36424A;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.articulo .downloads .auxi ul {
  padding-top: 20px;
  overflow: hidden;
}
.articulo .downloads .auxi ul li {
  margin: 0 auto 15px;
  display: table;
}
.articulo .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: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 425px) {
  .articulo .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: 767px) {
  .articulo .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;
  }
}
.articulo .downloads .auxi ul li a h3 {
  font-size: 0.875rem;
  color: #4e4e4e;
  letter-spacing: 0.5px;
  line-height: 150%;
  display: inline-block;
}
.articulo .downloads .auxi ul li a h3:hover {
  color: #1196A5;
  transition: 0.2s all ease;
}
.articulo .downloads .auxi ul li a p {
  font-size: 0.9rem;
  color: #808285;
  display: inline-block;
  margin-left: 5px;
}
@media (max-width: 425px) {
  .articulo .downloads .auxi ul li a p {
    font-size: 0.59rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .downloads .auxi ul li a p {
    font-size: 0.59rem;
  }
}
.articulo .downloads .auxi ul li a .img {
  margin-right: 5px;
  margin-top: 2px;
}
@media (max-width: 425px) {
  .articulo .downloads .auxi ul li a .img {
    margin-right: 5px;
  }
}
.articulo .downloads .auxi ul li a .img img {
  width: 1.4rem;
}
@media (max-width: 425px) {
  .articulo .downloads .auxi ul li a .img img {
    margin-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .downloads .auxi ul li a .img img {
    margin-right: 0;
  }
}
.articulo .tags .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .articulo .tags .auxi {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .tags .auxi {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .articulo .tags .auxi {
    padding: 0 20px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .articulo .tags .auxi {
    padding: 0 20px;
  }
}
@media (min-width: 1400px) {
  .articulo .tags .auxi {
    max-width: 1115px;
  }
}
.articulo .tags .auxi .tags_title {
  display: inline-block;
  font-size: 1rem;
  color: #1196A5;
  text-transform: uppercase;
  margin-right: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .articulo .tags .auxi .tags_title {
    display: block;
    margin-bottom: 10px;
  }
}
.articulo .tags .auxi .tag {
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.articulo .tags .auxi .tag a {
  color: #ffffff;
  background-color: #1196A5;
  border-radius: 3px;
  display: block;
  padding: 6px 16px;
}
.articulo .tags .auxi .tag a:hover {
  background-color: #af842a;
  transition: 0.2s all ease;
}
.articulo .tags .auxi img {
  display: inline-block;
  vertical-align: middle;
  width: 1.3rem;
  margin-right: 5px;
}

body.articulo .top-art {
  background: rgba(196, 193, 160, 0.2);
  padding-bottom: 30px;
}
body.articulo .top-art .enc-txt .auxi h1 {
  text-align: left;
}
body.articulo .top-art p.bajada {
  max-width: 700px;
  width: 100%;
  font-size: 1.0625rem;
  line-height: 140%;
  color: #36424A;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.taxport .enc-main.filter {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: end;
  -moz-box-align: end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 425px) {
  .taxport .enc-main.filter {
    -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;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .taxport .enc-main.filter {
    -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;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.taxport .enc-main.filter h1 {
  line-height: 1.3;
  text-align: left;
  -webkit-flex: 1 0 25%;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
}
.taxport .enc-main.filter .cont-filter form {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: end;
  -moz-box-align: end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 425px) {
  .taxport .enc-main.filter .cont-filter form {
    margin-top: 20px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .taxport .enc-main.filter .cont-filter form {
    margin-top: 20px;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .taxport .enc-main.filter .cont-filter form {
    margin-top: 20px;
  }
}
.taxport .enc-main.filter .cont-filter form .form-group {
  margin-right: 15px;
}
@media (max-width: 425px) {
  .taxport .enc-main.filter .cont-filter form .form-group {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .taxport .enc-main.filter .cont-filter form .form-group {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.taxport .enc-main.filter .cont-filter form h3 {
  text-align: left;
  margin-bottom: 10px;
}
.taxport .enc-main.filter .cont-filter form select {
  width: 250px;
}
.taxport .enc-main.filter .cont-filter form .cont-btn {
  padding-top: 0;
}
.taxport .enc-main.filter .cont-filter form .cont-btn .btn-more {
  display: inline-block;
  font-size: 0.875rem !important;
  color: #ffffff;
  background-color: #36424A;
  padding: 10px 20px;
  border: 1px solid #36424A;
  border-radius: 4px;
  letter-spacing: 0.2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.taxport .enc-main.filter .cont-filter form .cont-btn .btn-more {
  transition: 0.3s all ease;
}
.taxport .enc-main.filter .cont-filter form .cont-btn .btn-more:hover {
  background-color: #af842a;
  border-color: #af842a;
}
.taxport .taxlist .auxi {
  max-width: 1200px !important;
}
@media (max-width: 425px) {
  .taxport .taxlist .arts {
    padding: 30px 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .taxport .taxlist .arts {
    padding: 30px 15px;
  }
}
.taxport .taxlist .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: #36424A;
}
.results .search-desp .auxi .search-criteria .criterio {
  color: #af842a;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.results .search-desp .auxi .results-number {
  font-size: 0.875rem;
  color: #4e4e4e;
}
.results .arts {
  padding-top: 30px;
}
.results .arts .auxi {
  max-width: 900px !important;
}
.results .arts .auxi article {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
.results .arts .auxi article .cont-txt {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  padding: 20px 30px;
}
.results .arts .auxi article .bajada {
  padding-right: 120px;
}
@media (max-width: 425px) {
  .results .arts .auxi article .bajada {
    padding-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .arts .auxi article .bajada {
    padding-right: 0;
  }
}

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

.sitemap {
  border-top: 1px solid #eeeeee;
}
.sitemap .content_sitemap {
  background-color: #ffffff;
  padding: 60px 0;
}
@media (max-width: 425px) {
  .sitemap .content_sitemap {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .content_sitemap {
    padding: 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .content_sitemap {
    padding: 40px 0;
  }
}
.sitemap .content_sitemap .auxi {
  max-width: 1000px;
}
.sitemap .cont_tit {
  margin: 80px 0;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 425px) {
  .sitemap .cont_tit {
    margin: 40px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .cont_tit {
    margin: 40px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .cont_tit {
    margin: 40px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .sitemap .cont_tit {
    margin: 40px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1278px) {
  .sitemap .cont_tit {
    margin: 40px 20px;
  }
}
.sitemap .cont_tit .tit {
  font-size: 2.1875rem;
}
@media (max-width: 425px) {
  .sitemap .cont_tit .tit {
    font-size: 2rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .cont_tit .tit {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .cont_tit .tit {
    font-size: 2.3rem;
  }
}
.sitemap .cont_tit .baj {
  margin-top: 20px;
  margin-bottom: 10px;
}
.sitemap .cont_tit p {
  font-size: 0.875rem;
  color: #af842a;
  line-height: 1.3;
}
@media (max-width: 425px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1278px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
.sitemap .lista_sitio .lista_seccion {
  margin-bottom: 30px;
}
@media (max-width: 425px) {
  .sitemap .lista_sitio .lista_seccion {
    margin-left: 0;
    margin-bottom: 10px;
    padding: 15px;
  }
}
.sitemap .lista_sitio .lista_seccion h2 {
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}
.sitemap .lista_sitio .lista_seccion h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #d4d4d4;
  bottom: 5px;
  left: 0;
  transition: 0.6s all ease;
}
.sitemap .lista_sitio .lista_seccion h2:hover:after {
  width: 80px;
}
.sitemap .lista_sitio .lista_seccion h2 a {
  color: #36424A;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.sitemap .lista_sitio .lista_seccion h2 a:hover {
  color: #36424A;
  transition: 0.2s all ease;
}
.sitemap .lista_sitio .lista_seccion h3 {
  font-size: 0.9rem;
  margin-bottom: 15px;
  padding-left: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.sitemap .lista_sitio .lista_seccion h3 a {
  color: #af842a;
}
.sitemap .lista_sitio .lista_seccion h3 a:hover {
  color: #36424A;
  transition: 0.2s all ease;
}
.sitemap .lista_sitio .lista_seccion ul {
  margin-top: 25px;
  margin-left: 10px;
  border-left: 3px solid #ebebeb;
}
.sitemap .lista_sitio .lista_seccion ul li {
  margin: 17px 0 17px 20px;
}
.sitemap .lista_sitio .lista_seccion ul li a {
  color: #808285;
  font-size: 0.8125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.sitemap .lista_sitio .lista_seccion ul li a:hover {
  color: #36424A;
  transition: 0.2s all ease;
}

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

#copy_div {
  background: #ffffff !important;
  background-color: #ffffff !important;
  height: auto !important;
  padding: 12px 15px !important;
  width: auto !important;
  border-radius: 5px;
  color: #36424A !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: "Montserrat", 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: #36424A;
  line-height: 100%;
  letter-spacing: 2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .social_port .title-cat .social_title {
    font-size: 1.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .social_port .title-cat .social_title {
    font-size: 1.875rem;
  }
}
.social_port .tab-bar {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 25px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .social_port .tab-bar {
    overflow-x: scroll;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .social_port .tab-bar {
    overflow-x: scroll;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.social_port .btn-cont {
  width: auto !important;
}
@media (max-width: 425px) {
  .social_port .btn-cont {
    border: 0;
    -webkit-flex: 1 0 37%;
    -ms-flex: 1 0 37%;
    flex: 1 0 37%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .social_port .btn-cont {
    border: 0;
    -webkit-flex: 1 0 32%;
    -ms-flex: 1 0 32%;
    flex: 1 0 32%;
  }
}
.social_port .btn-cont .tablink2 {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.social_port .btn-cont .tablink2:before {
  content: "";
  position: relative;
  margin-right: 10px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #9fa2a5;
}
@media (max-width: 425px) {
  .social_port .btn-cont .tablink2:before {
    background-size: 16px;
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .social_port .btn-cont .tablink2:before {
    background-size: 16px;
    width: 26px;
    height: 26px;
  }
}
.social_port .btn-cont .tablink2.activo2:before {
  background-color: #36424A;
}
.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: #9fa2a5;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .social_port .tablink2 {
    font-size: 0.875rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .social_port .tablink2 {
    font-size: 0.875rem;
  }
}
.social_port .activo2 {
  color: #36424A;
}
.social_port .activo2:after {
  content: "";
  position: relative;
  display: block;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #36424A;
}

.login {
  background: #F3F3F3;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.login .row {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.login .row DIV .tabs-cont-v {
  padding: 80px 0;
  max-width: 450px;
  margin: 0 auto;
  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: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.login .row DIV .tabs-cont-v h4 {
  margin: 0 auto;
  display: table;
  font-size: 1.875rem;
  color: #4e4e4e;
  line-height: 1.5;
}
.login .row DIV .tabs-cont-v .cont-tabs .nav-tabs {
  width: auto;
  display: table;
  margin: 10px auto 20px;
  background: rgba(54, 66, 74, 0.1);
  border-radius: 5px;
}
.login .row DIV .tabs-cont-v .cont-tabs .nav-tabs li {
  float: left;
}
.login .row DIV .tabs-cont-v .cont-tabs .nav-tabs li a {
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 5px;
  margin: 5px;
  display: table;
  cursor: pointer;
  font-size: 1.875rem;
  color: #4e4e4e;
  line-height: 1.5;
}
.login .row DIV .tabs-cont-v .cont-tabs .nav-tabs li .inactive {
  background: none;
  color: rgba(54, 66, 74, 0.5);
}
@media (max-width: 425px) {
  .login .row DIV .tabs-cont-v .content .tab-pane {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login .row DIV .tabs-cont-v .content .tab-pane {
    padding: 0 15px;
  }
}
.login .row DIV .tabs-cont-v .content .tab-pane a {
  font-size: 0.75rem;
  color: #E55302;
  line-height: 1.5;
  padding: 0 0 10px 0;
  text-align: left;
  text-decoration: underline;
}
.login .row DIV .tabs-cont-v .content .tab-pane h5 {
  font-size: 1.875rem;
  color: #4e4e4e;
  line-height: 1.5;
  padding: 10px 0;
  text-align: center;
}
.login .row DIV .tabs-cont-v .content .tab-pane p:not(.login__caption) {
  font-size: 1.125rem;
  color: #4e4e4e;
  line-height: 1.5;
  padding: 20px 0 10px 0;
  text-align: left;
}
.login .row DIV .tabs-cont-v .content .tab-pane p.cont-txt--destacado {
  font-weight: 600;
  font-size: 1.3rem;
}
.login .row DIV .tabs-cont-v .content .tab-pane .NumeroSerie {
  position: relative;
}
.login .row DIV .tabs-cont-v .content .tab-pane .dropdown-content {
  position: absolute;
  background-color: #ffffff;
  max-width: 300px;
  left: 0;
  overflow: auto;
  margin-top: 10px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  padding: 15px;
}
.login--bg {
  min-height: 100vh;
}
@media (max-width: 425px) {
  .login--bg {
    min-height: 30vh;
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login--bg {
    min-height: 30vh;
    margin-bottom: 0;
  }
}
.login--bg span {
  font-size: 35px;
  color: #ffffff;
  line-height: 1.5;
  padding: 20px 10px 10px 70px;
  position: relative;
  float: left;
}
@media (max-width: 425px) {
  .login--bg span {
    padding: 20px 10px 10px 15px;
    font-size: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login--bg span {
    padding: 20px 10px 10px 15px;
    font-size: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .login--bg span {
    padding: 20px 10px 10px 15px;
  }
}
.login--bg .cont-logo-idear {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 0 1 55%;
  -ms-flex: 0 1 55%;
  flex: 0 1 55%;
  align-items: center;
  gap: 20px;
}
.login--bg .cont-logo-idear .logo-int {
  max-width: 240px;
  height: auto;
}
.login--bg h1 {
  font-size: 65px;
  color: #ffffff;
  line-height: 1.5;
  padding: 0 0 10px 0;
  text-align: left;
  font-weight: 600;
}
@media (max-width: 425px) {
  .login--bg h1 {
    font-size: 45px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login--bg h1 {
    font-size: 55px;
  }
}
.login--bg p {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.5;
  padding: 0 0 0 0;
  text-align: left;
}
.login--bg:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(88.93deg, rgba(240, 121, 45, 0.8) 3.33%, rgba(247, 151, 45, 0.8) 126.42%);
}
.login__form {
  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;
}
.login__caption {
  font-size: 0.8125rem;
  color: #4e4e4e;
  line-height: 1.3;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
}
.login__caption--error {
  color: #e2425f;
}
.login__txt {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
}
@media (max-width: 425px) {
  .login__txt {
    width: 95%;
    position: relative;
    top: unset;
    transform: none;
    left: 0;
    padding: 40px 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login__txt {
    width: 95%;
    position: relative;
    top: unset;
    transform: none;
    left: 0;
    padding: 40px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .login__txt {
    width: 95%;
  }
}
.login__formulario {
  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;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 50px 30px !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .login__formulario {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.login__formulario .alert {
  background-color: #FFF9D7;
  padding: 15px;
  border-radius: 10px;
  width: 70%;
  margin: 0 auto 0;
}
@media (max-width: 425px) {
  .login__formulario .alert {
    width: 90%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login__formulario .alert {
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .login__formulario .alert {
    width: 90%;
  }
}
.login__formulario .alert p {
  line-height: 1.4;
  color: #4e4e4e;
}
.login__formulario .alert p a {
  color: #E55302;
}
.login__input {
  background: #FFFFFF;
  border: 1px solid rgba(54, 66, 74, 0.2) !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 20px;
  margin: 0 auto 10px;
  width: 100%;
}
.login__cmb {
  background-color: #FFFFFF;
  border: 1px solid rgba(54, 66, 74, 0.2) !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 20px;
  margin: 0 auto 10px;
  width: 100%;
  background-position: 95%;
}
.login__btn {
  text-align: center;
  padding: 10px 0;
}
.login__btn .btn {
  display: inline-block;
  font-size: 0.875rem !important;
  color: #ffffff;
  padding: 20px 60px;
  letter-spacing: 0.2px;
  transition: 0.2s all ease;
  background: linear-gradient(263.07deg, #E55302 9.91%, #F4AA00 226.6%);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  transition: 0.2s all ease;
}
@media (max-width: 425px) {
  .login__btn .btn {
    margin: 10px auto;
    font-size: 16px;
    line-height: 20px;
    padding: 20px 60px;
    width: 100%;
    display: table;
    float: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .login__btn .btn {
    margin: 10px auto;
    font-size: 16px;
    line-height: 20px;
    padding: 20px 60px;
    width: 100%;
    display: table;
    float: none;
  }
}
.login__btn .btn:hover {
  background: linear-gradient(263.72deg, #E55302 -111.58%, #F4AA00 62.66%);
  transition: 0.2s all ease;
  color: #ffffff;
}
.login .loading img {
  max-width: 64px;
  margin: 30px auto;
}

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