@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");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&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;
  text-align: center;
}
@media (max-width: 425px) {
  .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 990px) and (max-width: 1190px) {
  .cont-btn {
    padding: 10px 0;
  }
}

.btn-main {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 20px 45px;
  background-color: #F65A39;
  border-radius: 0;
  letter-spacing: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
.btn-main:hover {
  background-color: #262F32;
  transition: 0.3s all ease;
}
.btn-main.more {
  color: #4F585E;
  border-bottom: 4px solid #4F585E;
  margin-left: 20px;
}

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

.markers {
  text-align: center;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 0 20px;
}
@media (min-width: 426px) and (max-width: 767px) {
  .markers {
    -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;
  }
}
.markers .car_sel:hover {
  transform: translateY(-3px);
  transition: 0.3s all ease;
  background-color: #0D513C;
  border-color: #0D513C;
}
.markers .car_sel:hover p, .markers .car_sel:hover .text_marker, .markers .car_sel:hover h3 {
  color: #ffffff !important;
  transition: 0.3s all ease;
}
.markers .car_sel:hover .img_wrap {
  background-image: url("../../imag/v1/icon/ic_check_white.png");
}
.markers .car_sel .img_wrap {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-image: url("../../imag/v1/icon/ic_check_blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.markers .car_sel p {
  line-height: 1.4;
  font-size: 14px;
  color: #595959;
}
.markers .car_sel img {
  width: 100%;
}
.markers .text_marker {
  color: #373737;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.marker {
  display: none;
}
.marker + .car_sel {
  max-width: 240px;
  flex-shrink: 1;
  position: relative;
  height: auto;
  min-height: 135px;
  width: 100%;
  margin: 5px 10px;
  padding: 30px 20px;
  background-color: #ffffff;
  border: 1px solid #4F585E;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 425px) {
  .marker + .car_sel {
    padding: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .marker + .car_sel {
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .marker + .car_sel {
    max-width: 225px;
  }
}
.marker + .car_sel:before {
  display: inline-block;
  content: "";
}
.marker:checked + .car_sel {
  background-color: #0D513C;
  border-color: #0D513C;
  color: #ffffff !important;
  transform: none;
}
.marker:checked + .car_sel .text_marker {
  color: #ffffff !important;
  transition: 0.1s all ease;
}
.marker:checked + .car_sel .img_wrap {
  background-image: url("../../imag/v1/icon/ic_check_white.png");
}
.marker:checked + .car_sel p {
  color: #ffffff !important;
}
.marker:checked + .car_sel:before {
  left: 0;
  content: "";
}

.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: 13px;
  color: #373737;
  padding: 8px 40px 8px 50px;
  background-color: #ffffff;
  border: 1px solid #4F585E;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .enc-nav .auxi .cont-btn a {
    font-size: 12px;
    padding: 6px 25px 6px 36px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-nav .auxi .cont-btn a {
    font-size: 12px;
    padding: 6px 30px 6px 40px;
  }
}
.enc-nav .auxi .cont-btn a:before {
  content: "";
  position: absolute;
  background-image: url("../../imag/v1/icon/chevron_gris.png");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 100%;
  left: 15px;
  width: 13px;
  height: 13px;
  transform: rotate(90deg);
}

.enc-main .auxi {
  text-align: center;
  padding-bottom: 20px;
}
.enc-main .auxi p {
  font-size: 18px;
  line-height: 1.4;
  color: #595959;
}
.enc-main .auxi h1 {
  padding-top: 10px;
  font-size: 35px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .enc-main .auxi h1 {
    font-size: 32px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .enc-main .auxi h1 {
    font-size: 32px;
  }
}

.enc-bg {
  position: relative;
}
.enc-bg:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgba(0, 93, 66, 0.8);
}
.enc-bg .breadcrumb, .enc-bg .breadcrumb a {
  color: #ffffff !important;
}
.enc-bg .breadcrumb:after, .enc-bg .breadcrumb a:after {
  color: #ffffff !important;
}
.enc-bg .enc-nav .cont-btn a {
  border: none;
}
.enc-bg .enc-main {
  z-index: 2;
  position: relative;
  overflow: hidden;
  padding: 40px 0 80px;
}
@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 p {
  padding-top: 15px;
  line-height: 1.4;
  font-size: 18px;
  color: #ffffff;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.enc-bg .enc-main h1 {
  font-size: 40px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 140%;
  color: #ffffff;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.enc-txt .breadcrumbs {
  text-align: left;
}
.enc-txt .auxi {
  text-align: center;
  padding-bottom: 0;
}
.enc-txt .auxi p {
  font-size: 18px;
  line-height: 1.4;
  color: #595959;
}
.enc-txt .auxi h1 {
  padding-top: 10px;
  font-size: 35px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.cont-tit {
  text-align: center;
  padding: 12px 18px;
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .cont-tit {
    padding-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit {
    padding-bottom: 0;
  }
}
.cont-tit .tit {
  font-size: 35px;
  color: #262F32;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .cont-tit .tit {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit .tit {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
}
.cont-tit .tit:after {
  content: "";
  position: relative;
  display: block;
  margin: 15px auto;
  width: 100px;
  height: 3px;
  background-color: #262F32;
  margin-top: 60px;
}
.cont-tit .baj {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 0;
  font-size: 18px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .cont-tit .baj {
    display: none;
  }
}
.box-dest {
  padding: 20px 40px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 425px) {
  .box-dest {
    padding: 25px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-dest {
    padding: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box-dest {
    padding: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .box-dest {
    padding: 25px;
  }
}
.box-dest .content {
  padding: 30px;
}
.box-dest h1, .box-dest h2 {
  color: #262F32;
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: 0.3px;
  padding-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .box-dest h1, .box-dest h2 {
    font-size: 23px;
    padding-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-dest h1, .box-dest h2 {
    font-size: 23px;
    padding-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box-dest h1, .box-dest h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .box-dest h1, .box-dest h2 {
    font-size: 23px;
    padding-bottom: 15px;
  }
}
.box-dest h1:after, .box-dest h2:after {
  content: "";
  position: relative;
  display: block;
  margin-top: 14px;
  width: 75px;
  height: 3px;
  background-color: #4F585E;
}
.box-dest .dcto {
  padding: 10px 0;
  color: #373737;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .box-dest .dcto {
    font-size: 14px;
    padding-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-dest .dcto {
    font-size: 14px;
    padding-bottom: 15px;
  }
}
.box-dest .baj {
  line-height: 1.5;
  color: #4F585E;
  font-size: 1.0625rem;
  padding-bottom: 20px;
  max-width: 280px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 425px) {
  .box-dest .baj {
    font-size: 13px;
    padding-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-dest .baj {
    font-size: 13px;
    padding-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box-dest .baj {
    font-size: 14px;
    padding-bottom: 10px;
  }
}
.box-dest .precio {
  padding: 10px 0;
  font-size: 1.5625rem;
  text-align: left;
  color: #262F32;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 991px) {
  .box-dest .precio {
    font-size: 18px;
  }
}
.box-dest .precio .pref {
  color: #595959;
  font-size: 1.0625rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media (min-width: 768px) and (max-width: 991px) {
  .box-dest .precio .pref {
    font-size: 14px;
  }
}
.box-dest .precio .iva {
  color: #595959;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
.box-dest .cont-btn {
  padding-bottom: 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.box-dest .cont-btn .cont-btn {
  padding: 30px 0;
  text-align: center;
}
@media (max-width: 425px) {
  .box-dest .cont-btn .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 990px) and (max-width: 1190px) {
  .box-dest .cont-btn .cont-btn {
    padding: 10px 0;
  }
}
.box-dest .cont-btn .btn-main {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 12px 40px;
  background-color: #F65A39;
  border-radius: 0;
  letter-spacing: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .box-dest .cont-btn .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-dest .cont-btn .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
.box-dest .cont-btn .btn-main:hover {
  background-color: #262F32;
  transition: 0.3s all ease;
}
.box-dest .cont-btn .btn-main.more {
  color: #4F585E;
  border-bottom: 4px solid #4F585E;
  margin-left: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .box-dest .cont-btn {
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.box-dest .cont-btn .btn-main {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 991px) {
  .box-dest .cont-btn .btn-main {
    font-size: 12px;
    padding: 8px 30px 8px 20px;
  }
}
.box-dest .cont-btn .btn-sec {
  display: inline-block;
  font-size: 14px;
  color: #373737;
  padding: 10px 45px;
  line-height: 1.5;
  background-color: #ffffff;
  border: 1px solid #4F585E;
  margin-right: 20px;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .box-dest .cont-btn .btn-sec {
    font-size: 12px !important;
    padding: 9px 20px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-dest .cont-btn .btn-sec {
    font-size: 12px !important;
    padding: 9px 20px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box-dest .cont-btn .btn-sec {
    font-size: 12px !important;
    padding: 8px 15px !important;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .box-dest .cont-btn .btn-sec {
    padding: 10px 25px !important;
  }
}
.box-dest .cont-btn .dropdown-m {
  position: relative;
}
.box-dest .cont-btn .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
@media (max-width: 425px) {
  .box-dest .cont-btn .dropdown-content {
    right: 0;
    bottom: 45px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-dest .cont-btn .dropdown-content {
    right: 0;
    bottom: 45px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .box-dest .cont-btn .dropdown-content {
    right: 0;
    bottom: 45px;
  }
}
.box-dest .cont-btn .dropdown-content li {
  text-decoration: none;
  display: block;
  cursor: pointer;
  min-width: 200px;
  background: none !important;
  padding: 0 !important;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.box-dest .cont-btn .dropdown-content li:hover {
  transition: 0.3s all ease;
  background-color: #f9f9f9 !important;
}
.box-dest .cont-btn .dropdown-content li a {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  color: #373737 !important;
  padding: 13px 20px;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.box-dest .cont-btn .dropdown-content li a .precio {
  font-size: 14px !important;
  padding: 0 !important;
}
.box-dest .cont-btn .dropdown {
  position: relative;
  display: inline-block;
}
@media (max-width: 425px) {
  .box-dest .cont-btn .dropdown {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-dest .cont-btn .dropdown {
    width: 100%;
  }
}
.box-dest .cont-btn .dropbtn-m {
  background-color: #F65A39;
  color: white;
  border: none;
  cursor: pointer;
  background-image: url("../../imag/v1/icon/chevron_w_d.png");
  background-repeat: no-repeat;
  background-position: 88% 53%;
  background-size: 13px;
}
.box-dest .cont-btn .dropbtn:hover, .box-dest .cont-btn .dropbtn:focus {
  background-color: #262F32;
}
.box-dest .cont-btn .active {
  display: block;
}

.box-sec {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 425px) {
  .box-sec {
    font-size: 12px;
    padding: 30px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-sec {
    font-size: 12px;
    padding: 30px 20px;
  }
}
.box-sec h2, .box-sec a {
  padding-top: 8px;
  font-size: 14px;
  color: #373737;
  line-height: 1.3;
  letter-spacing: 0.3px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.box-sec .cont-tit {
  padding: 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) {
  .box-sec .cont-tit {
    margin-bottom: 0;
    -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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-sec .cont-tit {
    margin-bottom: 0;
    -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;
  }
}
.box-sec .cont-tit h3 {
  text-align: left;
  line-height: 1.2;
  font-size: 1.1875rem;
  color: #262F32;
}
@media (max-width: 425px) {
  .box-sec .cont-tit h3 {
    margin-top: 15px;
    text-align: center;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-sec .cont-tit h3 {
    margin-top: 15px;
    text-align: center;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
.box-sec .img-wrap img {
  width: 41px;
  margin: 0 auto;
}
.box-sec .cont-btn {
  text-align: center;
  padding: 10px 0 0;
}
.box-sec .cont-btn .btn-sec {
  display: inline-block;
  font-size: 13px !important;
  color: #373737;
  padding: 10px 20px 0;
  border: 1px solid #ffffff;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.box-sec .btn-more {
  text-align: center;
  padding: 80px 0 30px;
}
@media (max-width: 425px) {
  .box-sec .btn-more {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-sec .btn-more {
    padding: 20px 0;
  }
}
.box-sec .btn-more .btn {
  display: inline-block;
  font-size: 14px !important;
  color: #373737;
  padding: 13px 50px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .box-sec .btn-more .btn {
    padding: 8px 20px;
    font-size: 12px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .box-sec .btn-more .btn {
    padding: 8px 20px;
    font-size: 12px !important;
  }
}
.box-sec .cont-txt p {
  font-size: 13px;
  color: #4F585E;
  line-height: 1.5;
  letter-spacing: 0.3px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 425px) {
  .box-sec .cont-txt p {
    display: none;
  }
}

.lateral_bar {
  position: fixed;
  right: 0;
  z-index: 40;
  top: 21.8%;
  right: 9%;
}
.lateral_bar .pref {
  background-color: #ffffff;
  color: #F65A39;
  padding: 13px 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.lateral_bar li {
  text-align: right;
  font-size: 13px;
  margin-bottom: 5px;
}
.lateral_bar li:hover a {
  background-color: #F65A39 !important;
  background: #F65A39 !important;
  transition: 0.3s all ease;
}
.lateral_bar li:first-child a {
  background-color: #1877f2;
}
.lateral_bar li:nth-child(2) a {
  background-color: #1da1f2;
}
.lateral_bar li:nth-child(3) a {
  background-color: #cc0000;
}
.lateral_bar li:nth-child(4) a {
  background: rgb(185, 0, 180);
  background: -moz-linear-gradient(45deg, rgb(185, 0, 180) 0%, rgb(245, 0, 0) 100%);
  background: -webkit-linear-gradient(45deg, rgb(185, 0, 180) 0%, rgb(245, 0, 0) 100%);
  background: linear-gradient(45deg, rgb(185, 0, 180) 0%, rgb(245, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b900b4",endColorstr="#f50000",GradientType=1);
}
.lateral_bar img {
  width: 25px;
  display: block;
  vertical-align: middle;
}
.lateral_bar a {
  padding: 5px;
  display: block;
}

.menu_bar {
  display: none;
  position: fixed;
  bottom: 0;
  background-color: #F65A39;
  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;
}

.list-tabs {
  padding: 50px 0;
}
@media (max-width: 425px) {
  .list-tabs {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs {
    padding: 30px 0;
  }
}
.list-tabs .row {
  overflow: hidden;
  max-height: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .list-tabs .row {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: visible;
    max-height: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: visible;
    max-height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row {
    margin-left: -20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .col {
    border-left-width: 20px;
  }
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .cont-tabs {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .cont-tabs {
    -webkit-flex: 1 0 35%;
    flex: 1 0 35%;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .list-tabs .row .cont-tabs {
    -webkit-flex: 1 0 30%;
    flex: 1 0 30%;
  }
}
@media (max-width: 425px) {
  .list-tabs .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;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .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;
  }
}
.list-tabs .row .cont-tabs ul li {
  display: block;
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs ul li {
    -webkit-flex: 1 0 220px;
    flex: 1 0 220px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .cont-tabs ul li {
    -webkit-flex: 1 0 220px;
    flex: 1 0 220px;
  }
}
.list-tabs .row .cont-tabs ul li a {
  background-color: #ffffff;
  display: block;
  padding: 20px;
  font-size: 14px;
  color: #373737;
  line-height: 1.3;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs ul li a {
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    padding: 15px;
    height: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .cont-tabs ul li a {
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    padding: 15px;
    height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .cont-tabs ul li a {
    padding: 15px 25px;
    font-size: 13px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .list-tabs .row .cont-tabs ul li a {
    padding: 20px 25px;
  }
}
.list-tabs .row .cont-tabs ul li a:not(.inactive) {
  background-color: #F65A39;
  color: #ffffff;
}
@media (max-width: 425px) {
  .list-tabs .row .cont-tabs ul li a:not(.inactive) {
    background: none;
    border-bottom: 5px solid #262F32;
    color: #000000;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .cont-tabs ul li a:not(.inactive) {
    background: none;
    border-bottom: 5px solid #262F32;
    color: #000000;
  }
}
.list-tabs .row .content {
  padding: 0 15px 30px 30px;
  background-color: #ffffff;
}
@media (max-width: 425px) {
  .list-tabs .row .content {
    padding: 0 0 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .content {
    padding: 0 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .content {
    padding: 0px 15px 30px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .list-tabs .row .content {
    padding: 0px 15px 30px 30px;
  }
}
.list-tabs .row .content .cont-txt {
  padding-right: 20px;
  display: block;
  margin: 0 auto;
  max-height: 470px;
  overflow-y: scroll;
  scrollbar-color: #F65A39 #ffffff;
  scrollbar-width: thin;
}
@media (max-width: 425px) {
  .list-tabs .row .content .cont-txt {
    padding: 0;
    padding-right: 0;
    overflow-y: visible;
    max-height: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .row .content .cont-txt {
    padding: 0;
    padding-right: 0;
    overflow-y: visible;
    max-height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-tabs .row .content .cont-txt {
    padding: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .list-tabs .row .content .cont-txt {
    padding: 0 30px;
  }
}
.list-tabs .row .content .cont-txt::-webkit-scrollbar {
  width: 8px;
}
.list-tabs .row .content .cont-txt::-webkit-scrollbar-track {
  background: rgba(0, 60, 158, 0.2);
  border-radius: 5px;
}
.list-tabs .row .content .cont-txt::-webkit-scrollbar-thumb {
  background: #262F32;
  border-radius: 5px;
}
.list-tabs .row .content .cont-txt h3 {
  color: #373737;
  font-size: 23px;
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.list-tabs .row .content .cont-txt p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #373737;
}
.list-tabs .row .content .cont-txt ul {
  margin-top: 0;
  margin-left: 30px;
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.4;
}
.list-tabs .row .content .cont-txt ul li {
  list-style-type: disc;
  font-size: 14px;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.5;
}
.list-tabs .row .content .cont-txt ul li:first-child a {
  margin-top: 0;
}
.list-tabs .row .content .cont-txt ol {
  margin-top: 8px;
  margin-left: 30px;
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.4;
}
.list-tabs .row .content .cont-txt ol li {
  list-style-type: decimal;
  font-size: 14px;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.5;
}
.list-tabs .row .content .cont-txt .bold {
  margin-bottom: 30px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.list-tabs .row .content .tab-pane {
  display: none;
}
.list-tabs .row .content .tab-pane.active {
  display: block;
  -webkit-animation: opacidad 1s ease;
  -moz-animation: opacidad 1s ease;
  -o-animation: opacidad 1s ease;
  animation: opacidad 1s ease;
}
@-webkit-keyframes opacidad {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@-moz-keyframes opacidad {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@-o-keyframes opacidad {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@keyframes opacidad {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
.list-tabs .cont-btn {
  padding: 30px 0;
  text-align: center;
}
@media (max-width: 425px) {
  .list-tabs .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 990px) and (max-width: 1190px) {
  .list-tabs .cont-btn {
    padding: 10px 0;
  }
}
.list-tabs .btn-main {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 10px 20px;
  background-color: #262F32;
  border-radius: 0;
  letter-spacing: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .list-tabs .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .list-tabs .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
.list-tabs .btn-main:hover {
  background-color: #262F32;
  transition: 0.3s all ease;
}
.list-tabs .btn-main.more {
  color: #4F585E;
  border-bottom: 4px solid #4F585E;
  margin-left: 20px;
}

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

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

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

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

input, select, .select, textarea {
  padding: 10px;
  border: 1px solid #4F585E !important;
  background: none;
}
input:focus, select:focus, .select:focus, textarea:focus {
  transition: 0.5s all ease;
  border-color: #262F32 !important;
  background-color: #f2f2f4;
}

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) 20px;
  background-size: 15px;
}

textarea {
  resize: 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;
  flex: 0 0 auto;
}

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

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

.hide {
  display: none !important;
}

.aleft {
  float: left;
}

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

.container {
  width: 100%;
}

.auxi {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .auxi {
    padding: 0 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .auxi {
    padding: 0 15px;
  }
}
@media (min-width: 1400px) {
  .auxi {
    max-width: 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-azul {
  background-color: #262F32;
}

.bg-naranjo {
  background-color: #F65A39;
}

.bg-gris {
  background-color: #4F585E;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumbs {
  padding: 15px 0;
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 425px) {
  .breadcrumbs {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs .breadcrumb {
  color: #595959;
  font-size: 13px;
  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;
}
.breadcrumbs .breadcrumb img {
  width: 6px;
  margin: 0 10px;
}
.breadcrumbs .breadcrumb a {
  color: #595959;
}
.breadcrumbs .breadcrumb a:hover {
  color: #262F32;
}

.main {
  background-color: #ffffff;
}
@media (max-width: 425px) {
  .main {
    margin-top: 40px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .main {
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main {
    margin-top: 40px;
  }
}

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

.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;
  height: inherit !important;
}
.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%;
  flex: 1 1 0%;
}

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

.form-group.cedula.cedula input {
  -webkit-flex: 0 1 61%;
  flex: 0 1 61%;
}
.form-group.cedula.cedula .input-cont .flex-cont {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 425px) {
  .form-group.cedula.cedula .input-cont .flex-cont {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form-group.cedula.cedula .input-cont .flex-cont {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.form-group.cedula.cedula .input-cont input {
  -webkit-flex: 0 1 80%;
  flex: 0 1 80%;
}
.form-group.cedula.cedula .input-cont .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 290px;
  right: 0;
  overflow: auto;
  margin-top: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
@media (max-width: 425px) {
  .form-group.cedula.cedula .input-cont .dropdown-content {
    right: -85%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form-group.cedula.cedula .input-cont .dropdown-content {
    right: -85%;
  }
}
.form-group.cedula.cedula .input-cont .dropdown-content .cont-tit {
  margin-bottom: 0;
}
.form-group.cedula.cedula .input-cont .dropdown-content .cont-tit h4 {
  font-size: 14px;
  color: #373737;
}
.form-group.cedula.cedula .input-cont .dropdown-content .img-wrap {
  padding: 0 20px 20px;
}
.form-group.cedula.cedula .input-cont .dropdown-content .img-wrap img {
  width: 226px;
  margin: 0 auto;
}
.form-group.cedula.cedula .input-cont .dropdown-m {
  padding-left: 15px;
  position: relative;
  display: inline-block;
}
.form-group.cedula.cedula .input-cont .dropbtn-m {
  background: none;
  font-size: 14px;
  color: #262F32;
  text-decoration: underline;
  border: none;
  cursor: pointer;
  margin-right: 0;
}
.form-group.cedula.cedula .input-cont .dropbtn-m:hover, .form-group.cedula.cedula .input-cont .dropbtn-m:focus {
  color: #F65A39;
  transition: 0.3s all ease;
}
.form-group.cedula.cedula .input-cont .active {
  display: block;
}

body.taxport .auxi .row article, .relacionados .auxi .row article, .actualidad .auxi .row article {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
body.taxport .auxi .row article .auxi-art, .relacionados .auxi .row article .auxi-art, .actualidad .auxi .row article .auxi-art {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  -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;
  border: 1px solid #EBEBEB;
}
body.taxport .auxi .row article .auxi-art a, .relacionados .auxi .row article .auxi-art a, .actualidad .auxi .row article .auxi-art a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
body.taxport .auxi .row article .auxi-art a .ver_mas, .relacionados .auxi .row article .auxi-art a .ver_mas, .actualidad .auxi .row article .auxi-art a .ver_mas {
  margin: 20px 0px;
  padding: 10px 30px;
  border: 1px solid #F65A39;
  color: #F65A39;
  font-size: 13px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
body.taxport .auxi .row article .auxi-art a .ver_mas:hover, .relacionados .auxi .row article .auxi-art a .ver_mas:hover, .actualidad .auxi .row article .auxi-art a .ver_mas:hover {
  border: 1px solid #262F32;
  background: #262F32;
  color: #fff;
  transition: 0.3s all ease;
}

body.home.biografia .dest-main {
  padding: 0 0 125px;
}
body.home.biografia .arts-participante {
  padding: 50px 0 0;
}
body.home.biografia .arts-participante:last-child {
  padding: 50px 0 60px;
}
body.home.biografia .finalista-logo {
  max-width: 340px;
  width: 100%;
  display: table;
  margin: 0 auto;
}
@media (max-width: 425px) {
  body.home.biografia .finalista-logo {
    max-width: 250px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .finalista-logo {
    max-width: 250px !important;
  }
}
@media (max-width: 425px) {
  body.home.biografia .arts-participante {
    padding: 0 0 60px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .arts-participante {
    padding: 0 0 60px !important;
  }
}
body.home.biografia .arts-participante .reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 425px) {
  body.home.biografia .arts-participante .reverse {
    display: block !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .arts-participante .reverse {
    display: block !important;
  }
}
body.home.biografia .arts-participante .reverse .box-txt {
  margin-left: 15px;
}
@media (max-width: 425px) {
  body.home.biografia .arts-participante .reverse .box-txt {
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .arts-participante .reverse .box-txt {
    margin-left: 0;
  }
}
body.home.biografia .arts-participante .reverse .box-txt .btn-main-dos {
  float: right;
}
body.home.biografia .arts-participante .reverse .box-txt p.epig, body.home.biografia .arts-participante .reverse .box-txt h2.tit, body.home.biografia .arts-participante .reverse .box-txt .content, body.home.biografia .arts-participante .reverse .box-txt .ver_mas {
  text-align: right;
  float: right !important;
}
@media (max-width: 425px) {
  body.home.biografia .arts-participante .reverse .box-txt p.epig, body.home.biografia .arts-participante .reverse .box-txt h2.tit, body.home.biografia .arts-participante .reverse .box-txt .content, body.home.biografia .arts-participante .reverse .box-txt .ver_mas {
    text-align: left;
    float: left !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .arts-participante .reverse .box-txt p.epig, body.home.biografia .arts-participante .reverse .box-txt h2.tit, body.home.biografia .arts-participante .reverse .box-txt .content, body.home.biografia .arts-participante .reverse .box-txt .ver_mas {
    text-align: left;
    float: left !important;
  }
}
body.home.biografia .arts-participante .direction {
  -webkit-box-orient: inline-axis;
  -webkit-box-orient: horizontal;
  -moz-box-orient: inline-axis;
  -moz-box-orient: horizontal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 425px) {
  body.home.biografia .arts-participante .direction {
    display: block !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .arts-participante .direction {
    display: block !important;
  }
}
body.home.biografia .arts-participante .direction .box-txt {
  margin-right: 15px;
}
body.home.biografia .arts-participante .direction .box-txt p.epig, body.home.biografia .arts-participante .direction .box-txt h2.tit, body.home.biografia .arts-participante .direction .box-txt .content {
  text-align: left;
}
body.home.biografia .arts-participante .auxi {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: rgba(59, 89, 109, 0.1);
}
body.home.biografia .arts-participante .auxi .box-txt {
  -webkit-flex: 0 1 45%;
  flex: 0 1 45%;
  padding: 20px;
}
@media (max-width: 425px) {
  body.home.biografia .arts-participante .auxi .box-txt {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .arts-participante .auxi .box-txt {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home.biografia .arts-participante .auxi .box-txt {
    -webkit-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
body.home.biografia .arts-participante .auxi .box-txt p.epig {
  font-size: 18px;
  color: #373737;
  line-height: 1.3;
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
@media (max-width: 425px) {
  body.home.biografia .arts-participante .auxi .box-txt p.epig {
    font-size: 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .arts-participante .auxi .box-txt p.epig {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home.biografia .arts-participante .auxi .box-txt p.epig {
    font-size: 18px;
  }
}
body.home.biografia .arts-participante .auxi .box-txt h2.tit {
  margin-bottom: 10px;
  font-size: 35px;
  color: #262F32;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  float: left;
  clear: both;
}
@media (max-width: 425px) {
  body.home.biografia .arts-participante .auxi .box-txt h2.tit {
    font-size: 35px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .arts-participante .auxi .box-txt h2.tit {
    font-size: 35px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home.biografia .arts-participante .auxi .box-txt h2.tit {
    font-size: 35px;
  }
}
body.home.biografia .arts-participante .auxi .box-txt .content {
  margin-bottom: 10px;
  font-size: 16px;
  color: #4F585E;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
body.home.biografia .arts-participante .auxi .box-txt .ver_mas {
  margin: 20px 0px;
  padding: 5px 30px;
  border: 1px solid #1673A8;
  color: #1673A8;
  font-size: 13px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
body.home.biografia .arts-participante .auxi .media-img {
  -webkit-flex: 0 1 55%;
  flex: 0 1 55%;
}
@media (max-width: 425px) {
  body.home.biografia .arts-participante .auxi .media-img {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.home.biografia .arts-participante .auxi .media-img {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.home.biografia .arts-participante .auxi .media-img {
    -webkit-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}

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

.envio .header, .pago .header, .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);
}

.home .header {
  background: rgba(255, 255, 255, 0.4);
  position: fixed;
}
@media (max-width: 425px) {
  .home .header {
    position: relative;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .header {
    position: relative;
  }
}
.home .header .main-navbar .navbar .cont-navbar .cont-links li a {
  color: #262F32;
}
.home .header .main-navbar .navbar .cont-navbar .cont-links li a.selected {
  color: #F65A39;
}
.home .header .main-navbar .navbar .cont-navbar .cont-links li a.selected:after {
  background-color: #F65A39;
}
.home .header.sticky .main-navbar .navbar .cont-navbar .cont-links li a {
  color: #262F32;
}
.home .header.sticky .main-navbar .navbar .cont-navbar .cont-links li a.selected {
  color: #F65A39;
}
.home .header.sticky .main-navbar .navbar .cont-navbar .cont-links li a.selected:after {
  background-color: #F65A39;
}

.header {
  padding: 0;
  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 !important;
  transition: 0.2s all ease;
  padding: 5px 0;
  -webkit-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 3px 5px -3px rgba(0, 0, 0, 0.14);
}
.header.sticky .main-navbar .cont-logo {
  -webkit-flex: 0 1 20%;
  flex: 0 1 20%;
  transition: 0.2s all ease;
}
.header.sticky .main-navbar .cont-logo .normal {
  max-width: 175px;
}
.header .main-navbar {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header .main-navbar .cont-logo {
  -webkit-flex: 0 1 21%;
  flex: 0 1 21%;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .header .main-navbar .cont-logo {
    margin-right: 40px;
  }
}
.header .main-navbar .navbar {
  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: end;
  -moz-box-align: end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.header .main-navbar .navbar .cont-btn {
  padding-top: 0 !important;
  padding-bottom: 12px !important;
}
.header .main-navbar .navbar .cont-btn {
  padding: 30px 0;
  text-align: center;
}
@media (max-width: 425px) {
  .header .main-navbar .navbar .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 990px) and (max-width: 1190px) {
  .header .main-navbar .navbar .cont-btn {
    padding: 10px 0;
  }
}
.header .main-navbar .navbar .btn-main {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 9px 18px;
  background-color: #262F32;
  border-radius: 0;
  letter-spacing: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .header .main-navbar .navbar .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .header .main-navbar .navbar .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
.header .main-navbar .navbar .btn-main:hover {
  background-color: #262F32;
  transition: 0.3s all ease;
}
.header .main-navbar .navbar .btn-main.more {
  color: #4F585E;
  border-bottom: 4px solid #4F585E;
  margin-left: 20px;
}
.header .main-navbar .navbar .btn-main {
  font-size: 12px;
}
.header .main-navbar .navbar .cont-navbar {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 0 1 80%;
  flex: 0 1 80%;
}
.header .main-navbar .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: 1 0 50%;
  flex: 1 0 50%;
  padding-right: 50px;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .header .main-navbar .navbar .cont-navbar .cont-links {
    padding-right: 35px;
  }
}
.header .main-navbar .navbar .cont-navbar .cont-links li {
  position: relative;
}
.header .main-navbar .navbar .cont-navbar .cont-links li:hover .sub-menu {
  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;
  border-radius: 10px;
  background: #FFF;
  padding: 10px;
  gap: 10px;
}
.header .main-navbar .navbar .cont-navbar .cont-links li:hover .sub-menu li a {
  margin-right: 0;
  padding-bottom: 0;
}
.header .main-navbar .navbar .cont-navbar .cont-links li.desp > a {
  padding-right: 20px;
  background-image: url("../../imag/v1/icon/menu_arrow.png");
  background-repeat: no-repeat;
  background-position: right 5px;
  background-size: 11px;
}
.header .main-navbar .navbar .cont-navbar .cont-links li:last-child a {
  margin-right: 0;
}
.header .main-navbar .navbar .cont-navbar .cont-links li a {
  display: block;
  color: #373737;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-right: 22px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding-bottom: 5px;
  font-weight: 600;
  transition: 0.2s all ease;
}
.header .main-navbar .navbar .cont-navbar .cont-links li a:after {
  content: "";
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 3px;
  background-color: transparent;
  margin-top: 5px;
  transition: 0.2s all ease;
}
.header .main-navbar .navbar .cont-navbar .cont-links li a:hover:after {
  content: "";
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 3px;
  background-color: #F65A39;
  margin-top: 5px;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .header .main-navbar .navbar .cont-navbar .cont-links li a {
    font-size: 12px;
  }
}
.header .main-navbar .navbar .cont-navbar .cont-links li a.selected {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-weight: 600;
  color: #F65A39;
  padding-bottom: 5px;
}
.header .main-navbar .navbar .cont-navbar .cont-links li a.selected:after {
  content: "";
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 3px;
  background-color: #F65A39;
  margin-top: 5px;
}
.header .main-navbar .navbar .cont-navbar .cont-links li:nth-last-child(-n+2) .sub-menu {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu {
  display: none;
  position: absolute;
  z-index: 30;
  border-radius: 10px;
  background: #FFF;
  min-width: 270px;
  padding: 10px;
  gap: 10px;
}
.header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu li {
  padding: 10px;
}
.header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu li a {
  display: block;
  padding: 0;
  font-style: normal;
  line-height: normal;
}
.header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu li a:after {
  display: none;
}
.header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu li:hover {
  border-radius: 8px;
  background: rgba(246, 90, 57, 0.1);
}
.header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu ul {
  padding: 10px;
  background-color: #262F32;
  -webkit-flex: 1 0 240px;
  flex: 1 0 240px;
}
.header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu ul li a {
  padding: 12px 15px;
  color: #ffffff;
  text-align: left;
  border: none;
  font-size: 12px;
  line-height: 1.2;
  display: block;
  text-transform: none;
  margin-right: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.header .main-navbar .navbar .cont-navbar .cont-links li .sub-menu ul li a:hover {
  background-color: #ffffff;
  transition: 0.3s all ease;
  color: #262F32;
}
.header .main-navbar .navbar .cont-navbar .links-sec {
  padding-right: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .header .main-navbar .navbar .cont-navbar .links-sec {
    padding-right: 20px;
  }
}
.header .main-navbar .navbar .cont-navbar .links-sec li:last-child a {
  padding-right: 0;
}
.header .main-navbar .navbar .cont-navbar .links-sec li a {
  display: block;
  color: #939598;
  font-size: 13px;
  letter-spacing: 0.2px;
  padding-right: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .header .main-navbar .navbar .cont-navbar .links-sec li a {
    padding-right: 10px;
  }
}
.header .main-navbar .navbar .cont-navbar .search-cont {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 25px;
  margin-left: 10px;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper {
  position: absolute;
  transform: translate(-7%, -50%);
  top: 50%;
  right: 0;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .close {
  right: -23px;
  opacity: 1;
  transform: rotate(45deg);
  transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition-delay: 0.5s;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder {
  width: 410px;
  background-color: #ffffff;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-input {
  opacity: 1;
  padding: 5px 15px;
  outline: none;
  color: #373737;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: none;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon span::before {
  background-color: #262F32;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon span::after {
  border-color: #262F32;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon.btn {
  display: block;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper.active .input-holder .search-icon.ic {
  display: none;
}
.header .main-navbar .navbar .cont-navbar .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 .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .close::before {
  width: 2px;
  height: 16px;
  left: 7px;
  top: 0;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .close::after {
  width: 16px;
  height: 2px;
  left: 0px;
  top: 7px;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder {
  height: 32px;
  width: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.header .main-navbar .navbar .cont-navbar .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-radius: 20px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition-delay: 0.3s;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon {
  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;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span {
  width: 22px;
  height: 22px;
  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 .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span::before {
  width: 2px;
  height: 6px;
  left: 9px;
  top: 13px;
  border-radius: 2px;
  background: #76777a;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span::after {
  width: 14px;
  height: 14px;
  left: 3px;
  top: 0px;
  border-radius: 16px;
  border: 2px solid #76777a;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span:before, .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .input-holder .search-icon span:after {
  position: absolute;
  content: "";
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .close:before, .header .main-navbar .navbar .cont-navbar .search-cont .search-wrapper .close:after {
  position: absolute;
  content: "";
  background: #76777a;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-icon.btn {
  display: none;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-icon.ic {
  text-align: center;
}
.header .main-navbar .navbar .cont-navbar .search-cont .search-icon.ic span {
  top: 4px;
}
.header .main-navbar .navbar .mail {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 20px;
  height: 20px;
  background-image: url("../../imag/v1/icon/ic_mail.png");
}
.header .main-navbar .navbar .mail:hover {
  background-image: url("../../imag/v1/icon/ic_mail_b.png");
}

body .header .cont-logo {
  -webkit-flex: 0 1 21%;
  flex: 0 1 21%;
}
body .header .normal {
  display: none;
}
body .header .cont-access {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  margin: -10px 0 0 0;
}
body .header .cont-access li {
  margin-right: 5px;
  width: 23px;
  height: 23px;
}
body .header .cont-access li a.ico_facebook {
  background-image: url("../../imag/v1/icon/ic_facebook.svg");
  background-size: 11px;
}
body .header .cont-access li a.ico_twitter {
  background-image: url("../../imag/v1/icon/ic_twitter.svg");
}
body .header .cont-access li a.ico_instagram {
  background-image: url("../../imag/v1/icon/ic_instagram.svg");
  background-size: 18px;
}
body .header .cont-access li a.ico_youtube {
  background-image: url("../../imag/v1/icon/ic_youtube.svg");
  background-size: 18px;
}
body .header.sticky .cont-access {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
body .header.sticky .cont-access li {
  margin-right: 5px;
  width: 23px;
  height: 23px;
}
body .header.sticky .cont-access li a.ico_facebook {
  background-image: url("../../imag/v1/icon/ic_facebook.svg");
  background-size: 11px;
}
body .header.sticky .cont-access li a.ico_twitter {
  background-image: url("../../imag/v1/icon/ic_twitter.svg");
}
body .header.sticky .cont-access li a.ico_instagram {
  background-image: url("../../imag/v1/icon/ic_instagram.svg");
  background-size: 18px;
}
body .header.sticky .cont-access li a.ico_youtube {
  background-image: url("../../imag/v1/icon/ic_youtube.svg");
  background-size: 18px;
}
body .header.sticky .cont-logo {
  -webkit-flex: 0 1 20%;
  flex: 0 1 20%;
}
body .header.sticky .fixed {
  display: none;
}
body .header.sticky .normal {
  display: block;
}

.menu-responsive.mobile li a.ico_facebook {
  background-image: url("../../imag/v1/icon/ic_facebook.svg") !important;
  background-size: 11px;
}
.menu-responsive.mobile li a.ico_twitter {
  background-image: url("../../imag/v1/icon/ic_twitter.svg") !important;
}
.menu-responsive.mobile li a.ico_instagram {
  background-image: url("../../imag/v1/icon/ic_instagram.svg") !important;
  background-size: 18px;
}
.menu-responsive.mobile li a.ico_youtube {
  background-image: url("../../imag/v1/icon/ic_youtube.svg") !important;
  background-size: 18px;
}

.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 a.ico_facebook {
  background-image: url("../../imag/v1/icon/ic_facebook.svg");
  background-size: 11px;
}
.cont-access li a.ico_twitter {
  background-image: url("../../imag/v1/icon/ic_twitter.svg");
}
.cont-access li a.ico_instagram {
  background-image: url("../../imag/v1/icon/ic_instagram.svg");
  background-size: 18px;
}
.cont-access li a.ico_youtube {
  background-image: url("../../imag/v1/icon/ic_youtube.svg");
  background-size: 18px;
}
.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;
  background-size: 20px;
  width: 20px;
  height: 20px;
}

.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 {
  position: fixed;
  top: 0;
  padding: 7px 20px 0 0;
  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-logo {
  display: inline-block;
}
.menu-responsive .cont-logo img {
  width: 175px;
  margin-left: 20px;
}
@media (max-width: 350px) {
  .menu-responsive .cont-logo img {
    width: 175px;
    margin-left: 10px;
  }
}
.menu-responsive .cont-search {
  margin-top: 20px;
  position: relative;
  width: 100%;
}
.menu-responsive .cont-search input {
  width: 100%;
  padding: 12px 15px 12px 60px;
  position: relative;
  font-size: 13px;
  background-color: #ffffff;
}
.menu-responsive .cont-search button {
  position: absolute;
  top: 5px;
  left: 9px;
  padding: 8px;
  padding-left: 12px;
}
.menu-responsive .cont-search button img {
  width: 19px;
}
.menu-responsive .menu {
  clear: both;
  padding: 0;
  max-height: 0;
  width: 100%;
  transition: max-height 0.3s ease-in-out;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.menu-responsive .menu ul {
  padding: 25px;
  max-width: 300px;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-responsive .menu ul {
    margin: 0;
  }
}
.menu-responsive .menu li {
  position: relative;
  float: none;
}
.menu-responsive .menu li a {
  display: block;
  color: #262F32;
  padding: 0;
  text-decoration: none;
  padding: 10px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.menu-responsive .menu .menu-sec-m {
  padding-top: 0;
}
.menu-responsive .menu .menu-sec-m a {
  color: #262F32;
}
.menu-responsive .menu .btn-renovar {
  font-size: 12px;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 6px 20px;
  border-radius: 16px;
}
.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 .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 25px 0;
  position: relative;
  user-select: none;
}
.menu-responsive .menu-icon .navicon {
  background: #F65A39;
  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: #F65A39;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 70%;
}
.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 #f2f2f4;
}
.menu-responsive .accordionItemContent li a {
  padding: 7px 15px;
  text-transform: none;
}
.menu-responsive .accordionItemHeading {
  width: auto;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.menu-responsive .accordionItemHeading figure {
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
}
.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: #262F32;
  color: #ffffff;
  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;
  padding: 5px;
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  -o-transition: -o-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  box-sizing: border-box;
}
.menu-responsive .close .accordionItemContent {
  height: 0px;
  transition: height 1s ease-out;
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  display: block;
  padding: 0;
}

.footer {
  background-color: #0D513C;
  padding: 40px 0 40px;
}
@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 20px 30px;
  }
}
@media (max-width: 425px) {
  .footer .auxi {
    padding: 0 18px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .auxi {
    padding: 0 18px 20px;
  }
}
.footer .auxi > .row {
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .footer .auxi > .row {
    display: block;
    margin-left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .auxi > .row {
    display: block;
    margin-left: 0;
  }
}
.footer__texto {
  color: #ffffff;
  font-size: 14px;
  line-height: 160%;
  font-weight: 100;
}
@media (max-width: 425px) {
  .footer .cont-logos {
    margin-bottom: 30px;
    border-left-width: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .cont-logos {
    margin-bottom: 30px;
    border-left-width: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .cont-logos {
    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 (min-width: 992px) and (max-width: 1277px) {
  .footer .cont-logos {
    width: 25%;
  }
}
.footer .cont-logos a {
  display: block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .cont-logos a {
    padding: 10px;
  }
}
.footer .cont-logos .logo {
  width: 340px;
}
@media (max-width: 425px) {
  .footer .cont-logos .logo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .cont-logos .logo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .cont-logos .logo {
    padding-bottom: 50px;
    margin-bottom: 20px;
    flex: 1 0 260px;
  }
}
.footer .cont-logos .logo img {
  width: 250px;
}
@media (max-width: 425px) {
  .footer .cont-logos .logo img {
    width: 250px;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .cont-logos .logo img {
    width: 250px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) and (max-width: 1040px) {
  .footer .cont-logos .logo img {
    width: 250px;
  }
}
.footer .cont-logos img {
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer .cont-links {
    width: 75%;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .footer .cont-links {
    width: 75%;
  }
}
.footer .cont-links .row {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .footer .cont-links .row {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 270px;
    margin: 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .cont-links .row {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 270px;
    margin: 0 auto;
  }
}
.footer .cont-links .row .lg-4:first-child {
  border-left-width: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .cont-links .row .lg-4:first-child {
    max-width: 40%;
  }
}
@media (min-width: 992px) and (max-width: 1040px) {
  .footer .cont-links .row .lg-4:first-child {
    width: 38%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .cont-links .row .lg-4:nth-child(2) {
    max-width: 30%;
  }
}
.footer .cont-links .row .lg-4:last-child {
  -ms-flex-item-align: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .cont-links .row .lg-4:last-child {
    max-width: 30%;
  }
}
@media (min-width: 992px) and (max-width: 1040px) {
  .footer .cont-links .row .lg-4:last-child {
    max-width: 30%;
  }
}
.footer .cont-links .row .lg-4:last-child .contact {
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .footer .cont-links .row .lg-4:last-child .contact {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .cont-links .row .lg-4:last-child .contact {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding-bottom: 0;
  }
}
.footer .cont-links .row .lg-4:last-child .contact img {
  top: 0;
}
.footer .cont-links .row .lg-4:last-child .contact .contact-txt {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 425px) {
  .footer .cont-links .row .lg-4:last-child .contact .contact-txt {
    font-size: 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .cont-links .row .lg-4:last-child .contact .contact-txt {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1040px) {
  .footer .cont-links .row .lg-4:last-child .contact .contact-txt a {
    font-size: 18px;
  }
}
.footer .contact {
  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: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width: 425px) {
  .footer .contact {
    padding-bottom: 30px;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .contact {
    padding-bottom: 30px;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.footer .contact p, .footer .contact a {
  color: #ffffff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .contact p, .footer .contact a {
    font-size: 12px;
  }
}
@media (min-width: 992px) and (max-width: 1040px) {
  .footer .contact p, .footer .contact a {
    font-size: 12px;
  }
}
.footer .contact p.pref, .footer .contact a.pref {
  font-size: 14px;
  padding-bottom: 10px;
  letter-spacing: 0.3px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 425px) {
  .footer .contact p.pref, .footer .contact a.pref {
    font-size: 12px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .contact p.pref, .footer .contact a.pref {
    font-size: 12px;
  }
}
.footer .contact p.phone, .footer .contact a.phone {
  font-size: 23px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
@media (max-width: 425px) {
  .footer .contact p.phone, .footer .contact a.phone {
    font-size: 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .contact p.phone, .footer .contact a.phone {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .contact p.phone, .footer .contact a.phone {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1040px) {
  .footer .contact p.phone, .footer .contact a.phone {
    font-size: 18px;
  }
}
.footer .contact img {
  top: 4px;
  position: relative;
  width: 33px;
  margin-right: 13px;
}
.footer .sub-footer {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  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-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.footer .sub-footer .cont-social {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 425px) {
  .footer .sub-footer .cont-social {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .sub-footer .cont-social {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .sub-footer .cont-social {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.footer .sub-footer .cont-social p {
  padding-right: 30px;
  font-size: 18px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 425px) {
  .footer .sub-footer .cont-social p {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .sub-footer .cont-social p {
    display: none;
  }
}
.footer .sub-footer .cont-social li {
  padding-bottom: 0;
  padding-left: 30px;
}
@media (max-width: 425px) {
  .footer .sub-footer .cont-social li {
    padding: 0 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .sub-footer .cont-social li {
    padding: 0 15px;
  }
}
.footer .sub-footer .cont-social li:first-child {
  padding-left: 0;
}
@media (max-width: 425px) {
  .footer .sub-footer .cont-social li:first-child {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .sub-footer .cont-social li:first-child {
    display: none;
  }
}
.footer .sub-footer .cont-social li a {
  display: block;
}
.footer .sub-footer .cont-social li a:hover img {
  opacity: 0.7;
  transition: 0.2s all ease;
}
.footer .sub-footer .cont-social li a img {
  width: 39px;
}
@media (max-width: 425px) {
  .footer .sub-footer .cont-social li a img {
    width: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .sub-footer .cont-social li a img {
    width: 30px;
  }
}
.footer .sub-footer .direccion {
  padding-left: 20px;
  color: #ffffff;
}
.footer .cont-legal {
  padding: 30px 0 0;
  text-align: center;
}
.footer .cont-legal a {
  font-size: 14px;
  padding-right: 8px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.footer .cont-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 425px) {
  .footer .cont-legal a {
    font-size: 13px;
    display: block;
    padding-bottom: 7px;
    float: left;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .footer .cont-legal a {
    font-size: 13px;
    display: block;
    padding-bottom: 7px;
    float: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .cont-legal a {
    font-size: 14px;
  }
}
.footer .cont-legal a:last-child {
  padding-right: 0;
}
.footer .cont-legal a:last-child:after {
  content: none;
}

.home .header {
  top: 0;
  background-color: rgb(255, 255, 255);
}
.home .main {
  padding-top: 0;
}
.home .dest-main {
  position: relative;
}
.home .dest-main.box-min .auxi {
  padding-top: 15px !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main.box-min .swiper-slide .img-wrap {
    overflow: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main.box-min .swiper-slide .img-wrap {
    overflow: hidden;
  }
}
@media (min-width: 1200px) and (max-width: 1278px) {
  .home .dest-main.box-min .swiper-slide .img-wrap img {
    left: 0;
  }
}
.home .dest-main.box-min .swiper-slide .img-wrap:before {
  z-index: 2;
}
.home .dest-main.box-min .swiper-slide .card-pack {
  max-width: 39%;
  width: 100%;
}
@media (max-width: 425px) {
  .home .dest-main.box-min .swiper-slide .card-pack {
    max-width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main.box-min .swiper-slide .card-pack {
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main.box-min .swiper-slide .card-pack {
    max-width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main.box-min .swiper-slide .card-pack {
    max-width: 50%;
  }
}
@media (min-width: 1200px) and (max-width: 1278px) {
  .home .dest-main.box-min .swiper-slide .card-pack {
    max-width: 45%;
  }
}
.home .dest-main.box-min .swiper-slide .card-pack h1, .home .dest-main.box-min .swiper-slide .card-pack h2 {
  font-size: 24px;
  padding-bottom: 10px;
}
.home .dest-main.box-min .swiper-slide .card-pack h1:after, .home .dest-main.box-min .swiper-slide .card-pack h2:after {
  content: none;
}
.home .dest-main.box-min .swiper-slide .card-pack .baj {
  max-width: 100%;
  font-size: 14px;
  padding-bottom: 10px;
}
.home .dest-main.box-min .swiper-slide .card-pack .dcto {
  font-size: 14px;
  padding: 5px 0;
}
.home .dest-main.box-min .swiper-slide .card-pack .precio {
  padding: 0 0 5px;
  font-size: 18px;
}
.home .dest-main.box-min .swiper-slide .card-pack .precio .pref {
  font-size: 14px;
}
.home .dest-main.box-min .swiper-slide .card-pack .precio .iva {
  font-size: 12px;
}
.home .dest-main.box-min .swiper-slide .card-pack .cont-btn {
  padding-top: 20px;
  padding-bottom: 0;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.home .dest-main.box-min .swiper-slide .card-pack .cont-btn .dropdown-content {
  bottom: 0;
  left: 100%;
}
@media (max-width: 425px) {
  .home .dest-main.box-min .swiper-slide .card-pack .cont-btn .dropdown-content {
    bottom: 50px;
    left: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main.box-min .swiper-slide .card-pack .cont-btn .dropdown-content {
    bottom: 50px;
    left: 0;
  }
}
.home .dest-main.box-min .swiper-slide .card-pack .cont-btn .btn-sec, .home .dest-main.box-min .swiper-slide .card-pack .cont-btn .btn-main {
  padding: 9px 32px;
  font-size: 13px;
  background-size: 10px;
}
.home .dest-main.box-min .swiper-slide .card-pack .cont-btn .btn-sec {
  margin-right: 10px;
}
@media (max-width: 425px) {
  .home .dest-main .swiper-wrapper {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .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;
  }
}
.home .dest-main .swiper-slide {
  position: relative;
}
@media (max-width: 425px) {
  .home .dest-main .swiper-slide {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .swiper-slide {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
  }
}
.home .dest-main .swiper-slide .img-wrap {
  position: relative;
}
.home .dest-main .swiper-slide .img-wrap:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  z-index: 0;
  background: rgb(104, 105, 94);
  background: -moz-linear-gradient(45deg, rgb(104, 105, 94) 0%, rgba(104, 105, 94, 0.91) 5%, rgba(175, 78, 63, 0) 58%, rgba(231, 56, 39, 0) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(104, 105, 94)), color-stop(5%, rgba(104, 105, 94, 0.91)), color-stop(58%, rgba(175, 78, 63, 0)), color-stop(100%, rgba(231, 56, 39, 0)));
  background: -webkit-linear-gradient(45deg, rgb(104, 105, 94) 0%, rgba(104, 105, 94, 0.91) 5%, rgba(175, 78, 63, 0) 58%, rgba(231, 56, 39, 0) 100%);
  background: -o-linear-gradient(45deg, rgb(104, 105, 94) 0%, rgba(104, 105, 94, 0.91) 5%, rgba(175, 78, 63, 0) 58%, rgba(231, 56, 39, 0) 100%);
  background: -ms-linear-gradient(45deg, rgb(104, 105, 94) 0%, rgba(104, 105, 94, 0.91) 5%, rgba(175, 78, 63, 0) 58%, rgba(231, 56, 39, 0) 100%);
}
.home .dest-main .swiper-slide .img-wrap.video:before {
  display: none;
}
.home .dest-main .swiper-slide .auxi {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-top: 50px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 425px) {
  .home .dest-main .swiper-slide .auxi {
    padding: 20px;
    -ms-flex-align: end;
    -moz-box-align: end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .swiper-slide .auxi {
    padding: 20px;
    -ms-flex-align: end;
    -moz-box-align: end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main .swiper-slide .auxi {
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main .swiper-slide .auxi {
    padding: 0;
  }
}
@media (min-width: 1400px) {
  .home .dest-main .swiper-slide .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 .swiper-slide .card-pack {
  background-color: #ffffff;
  max-width: 35%;
}
@media (max-width: 425px) {
  .home .dest-main .swiper-slide .card-pack {
    max-width: 100%;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .swiper-slide .card-pack {
    max-width: 100%;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main .swiper-slide .card-pack {
    max-width: 45%;
  }
}
.home .dest-main .swiper-slide .card-pack .cont-btn {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.home .dest-main .scroll-downs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  margin: 50px auto 60px;
  width: 29px;
  height: 65px;
  cursor: pointer;
  display: block;
  background-image: url("../../imag/v1/icon/chevron_w_d.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 15px;
}
@media (max-width: 425px) {
  .home .dest-main .scroll-downs {
    display: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .dest-main .scroll-downs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .dest-main .scroll-downs {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .dest-main .scroll-downs {
    display: none !important;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .home .dest-main .scroll-downs {
    display: block;
  }
}
@media (min-width: 1400px) {
  .home .dest-main .scroll-downs {
    display: block;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .home .dest-main .scroll-downs {
    margin: 0 auto 60px;
    bottom: 90px;
  }
}
.home .dest-main .scroll-downs .mousey {
  width: 3px;
  padding: 10px 11px;
  height: 21px;
  border: 2px solid #ffffff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.home .dest-main .scroll-downs .mousey .scroller {
  width: 2px;
  height: 9px;
  border-radius: 25%;
  background-color: #ffffff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
}
.home .productos {
  padding: 60px 0 20px;
}
@media (max-width: 425px) {
  .home .productos {
    padding: 30px 0 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos {
    padding: 30px 0 10px;
  }
}
.home .productos .auxi {
  max-width: 1340px;
}
@media (max-width: 425px) {
  .home .productos .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .auxi {
    padding: 0;
  }
}
@media (min-width: 1180px) and (max-width: 1300px) {
  .home .productos .auxi {
    padding: 0;
  }
}
.home .productos .prod-content {
  max-width: 940px;
  margin: 20px auto;
  position: relative;
}
.home .productos .prod-content.box-4 {
  max-width: 100%;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .productos .prod-content.box-4 {
    max-width: 100%;
  }
}
.home .productos .prod-content.box-4 .swiper-container {
  margin: 0 65px;
  padding: 30px 10px;
  position: initial;
}
@media (max-width: 425px) {
  .home .productos .prod-content.box-4 .swiper-container {
    margin: 0 12px;
    padding: 20px 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .prod-content.box-4 .swiper-container {
    margin: 0 20px;
    padding: 30px 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .productos .prod-content.box-4 .swiper-container {
    margin: 0 55px;
    padding: 30px 10px !important;
  }
}
@media (min-width: 1180px) and (max-width: 1300px) {
  .home .productos .prod-content.box-4 .swiper-container {
    margin: 0 30px;
  }
}
@media (max-width: 425px) {
  .home .productos .prod-content.box-4 .swiper-container .swiper-slide {
    padding: 0 8px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .prod-content.box-4 .swiper-container .swiper-slide {
    padding: 0 8px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .productos .prod-content.box-4 .swiper-container .swiper-slide {
    padding: 0 10px;
  }
}
.home .productos .prod-content.box-4 .swiper-container .swiper-button-prev {
  background-image: url(../../imag/v1/icon/arrow_l_g.png) !important;
  left: 10px !important;
}
@media (max-width: 425px) {
  .home .productos .prod-content.box-4 .swiper-container .swiper-button-prev {
    left: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .prod-content.box-4 .swiper-container .swiper-button-prev {
    left: 0 !important;
  }
}
@media (min-width: 1180px) and (max-width: 1300px) {
  .home .productos .prod-content.box-4 .swiper-container .swiper-button-prev {
    left: 0 !important;
    width: 35px;
    height: 35px;
  }
}
.home .productos .prod-content.box-4 .swiper-container .swiper-button-next {
  background-image: url(../../imag/v1/icon/arrow_r_g.png) !important;
  right: 10px !important;
}
@media (max-width: 425px) {
  .home .productos .prod-content.box-4 .swiper-container .swiper-button-next {
    right: 0 !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .prod-content.box-4 .swiper-container .swiper-button-next {
    right: 0 !important;
  }
}
@media (min-width: 1180px) and (max-width: 1300px) {
  .home .productos .prod-content.box-4 .swiper-container .swiper-button-next {
    right: 0 !important;
    width: 35px;
    height: 35px;
  }
}
.home .productos .prod-content.box-4 .row {
  margin-left: -30px;
}
.home .productos .prod-content.box-4 .col {
  border-left-width: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .productos .prod-content.box-4 .col {
    max-width: 50%;
    margin-bottom: 20px;
    border-left-width: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .productos .prod-content.box-4 .col {
    max-width: 50%;
    width: 50%;
    margin-bottom: 20px;
    border-left-width: 20px;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .home .productos .prod-content.box-4 .col {
    max-width: 25%;
  }
}
@media (min-width: 1400px) {
  .home .productos .prod-content.box-4 .col {
    max-width: 25%;
  }
}
.home .productos .row {
  margin-left: -35px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .productos .row {
    margin-left: -20px;
  }
}
.home .productos .col {
  border-left-width: 35px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .productos .col {
    max-width: 33.3333333333%;
    border-left-width: 20px;
  }
}
.home .productos .box-dest {
  padding: 0;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0px 1px 18px -7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 18px -7px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 18px -7px rgba(0, 0, 0, 0.3);
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1 0 100%;
  flex: 1 0 100%;
}
@media (max-width: 425px) {
  .home .productos .box-dest {
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .box-dest {
    margin-bottom: 20px;
  }
}
.home .productos .box-dest.azul .img-wrap:after {
  background-color: rgba(0, 85, 184, 0.7);
}
.home .productos .box-dest.azul li {
  background-image: url("../../imag/v1/icon/check_blue.png");
}
.home .productos .box-dest.naranjo .img-wrap:after {
  background-color: rgba(235, 160, 33, 0.7);
}
.home .productos .box-dest.naranjo li {
  background-image: url("../../imag/v1/icon/check_naranjo.png");
}
.home .productos .box-dest.verde .img-wrap:after {
  background-color: rgba(0, 176, 104, 0.7);
}
.home .productos .box-dest.verde li {
  background-image: url("../../imag/v1/icon/check_green.png");
}
.home .productos .box-dest.morado .img-wrap:after {
  background-color: rgba(74, 74, 150, 0.7);
}
.home .productos .box-dest.morado li {
  background-image: url("../../imag/v1/icon/check_purple.png");
}
.home .productos .box-dest.cyan .img-wrap:after {
  background-color: rgba(43, 176, 198, 0.7);
}
.home .productos .box-dest.cyan li {
  background-image: url("../../imag/v1/icon/check_cyan.png");
}
.home .productos .box-dest .enc-card {
  position: relative;
}
.home .productos .box-dest .enc-card .img-wrap {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.home .productos .box-dest .enc-card .img-wrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.home .productos .box-dest .enc-card .cont-txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-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;
}
.home .productos .box-dest .enc-card .cont-txt h3, .home .productos .box-dest .enc-card .cont-txt p {
  color: #ffffff;
  display: block;
}
.home .productos .box-dest .enc-card .cont-txt p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.home .productos .box-dest .enc-card .cont-txt .nuevo {
  font-size: 13px;
  color: #F65A39;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 2px 8px;
  margin-bottom: 5px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.home .productos .box-dest .enc-card .cont-txt h3 {
  padding-top: 5px;
  font-size: 32px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.home .productos .box-dest .content {
  padding: 25px;
  padding-bottom: 80px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .productos .box-dest .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home .productos .box-dest .content ul {
  text-align: left;
}
.home .productos .box-dest .content ul li {
  color: #4F585E;
  font-size: 13px;
  line-height: 1.3;
  padding-bottom: 20px;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: left 4px;
  background-size: 15px;
}
.home .productos .box-dest .content .precio {
  padding: 10px 0;
  font-size: 20px;
}
@media (max-width: 425px) {
  .home .productos .box-dest .content .precio {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .box-dest .content .precio {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .productos .box-dest .content .precio {
    text-align: center;
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .productos .box-dest .content .precio {
    text-align: center;
  }
}
.home .productos .box-dest .content .precio .pref {
  font-size: 14px;
}
.home .productos .box-dest .content .precio .iva {
  font-size: 0.6875rem;
}
.home .productos .box-dest .content .precio-regular {
  font-size: 0.6875rem;
  color: #4F585E;
  text-decoration: line-through;
  text-align: left;
}
@media (max-width: 425px) {
  .home .productos .box-dest .content .precio-regular {
    text-align: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .box-dest .content .precio-regular {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .productos .box-dest .content .precio-regular {
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .productos .box-dest .content .precio-regular {
    text-align: center;
  }
}
.home .productos .box-dest .cont-btn {
  padding: 30px 0;
  text-align: center;
}
@media (max-width: 425px) {
  .home .productos .box-dest .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 990px) and (max-width: 1190px) {
  .home .productos .box-dest .cont-btn {
    padding: 10px 0;
  }
}
.home .productos .box-dest .btn-main {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 8px 30px;
  background-color: #F65A39;
  border-radius: 0;
  letter-spacing: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .home .productos .box-dest .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .box-dest .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
.home .productos .box-dest .btn-main:hover {
  background-color: #262F32;
  transition: 0.3s all ease;
}
.home .productos .box-dest .btn-main.more {
  color: #4F585E;
  border-bottom: 4px solid #4F585E;
  margin-left: 20px;
}
.home .productos .box-dest .cont-btn {
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.home .productos .box-dest .cont-btn .btn-main {
  font-size: 12px;
}
@media (max-width: 425px) {
  .home .productos .box-dest .cont-btn .btn-main {
    padding: 8px 25px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .productos .box-dest .cont-btn .btn-main {
    padding: 8px 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .productos .box-dest .cont-btn .btn-main {
    padding: 8px 30px 8px 15px;
  }
}
.home .productos .box-dest .cont-btn .btn-sec {
  font-size: 12px;
  margin-right: 5px;
  padding: 8px 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .productos .box-dest .cont-btn .btn-sec {
    padding: 8px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home .productos .box-dest .cont-btn .btn-sec {
    padding: 7px 25px !important;
  }
}
.home .productos .box-dest .cont-btn .dropbtn-m {
  background-size: 10px;
}
.home .productos .box-dest .cont-btn .dropdown-content {
  bottom: 45px;
  right: 0;
  z-index: 2;
}
.home .servicios {
  padding: 60px 0;
  position: relative;
}
@media (max-width: 425px) {
  .home .servicios {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .servicios {
    padding: 30px 0;
  }
}
@media (max-width: 425px) {
  .home .servicios {
    background: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .servicios {
    background: none !important;
  }
}
.home .servicios .cont-tit h2 {
  color: #ffffff;
}
.home .servicios .cont-tit .baj {
  color: #ffffff;
}
.home .servicios .auxi {
  position: relative;
  max-width: 1200px !important;
  z-index: 2;
}
.home .servicios:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
}
.home .servicios .filt-container {
  padding: 30px 0 50px;
}
@media (max-width: 425px) {
  .home .servicios .filt-container {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .servicios .filt-container {
    padding: 30px 0;
  }
}
.home .servicios .filt-container .auxi {
  max-width: 700px !important;
}
.home .servicios .filt-container ul {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  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) {
  .home .servicios .filt-container ul {
    overflow-x: scroll;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .servicios .filt-container ul {
    overflow-x: scroll;
  }
}
.home .servicios .filt-container ul li {
  color: #ffffff;
  cursor: pointer;
  text-align: center;
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 4px solid rgba(255, 255, 255, 0);
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 425px) {
  .home .servicios .filt-container ul li {
    padding: 10px;
  }
}
.home .servicios .filt-container ul li.selected {
  border-bottom: 4px solid #262F32;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.home .servicios .wrap-car {
  padding: 10px 0 70px;
}
@media (max-width: 425px) {
  .home .servicios .wrap-car {
    padding: 10px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home .servicios .wrap-car {
    padding: 10px 0;
  }
}
.home .servicios .wrap-car .box-sec {
  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;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex: 1 0 100%;
  flex: 1 0 100%;
  min-height: 270px;
}
.home.prelanding .main {
  margin: 0 !important;
}
.home.prelanding .auxi {
  max-width: 1088px;
}
.home.prelanding .header {
  padding: 0 !important;
  background: none;
  position: absolute;
}
.home.prelanding .header .img-wrap {
  padding: 30px 0 20px;
  width: 260px;
  background-color: #ffffff;
}
@media (max-width: 425px) {
  .home.prelanding .header .img-wrap {
    padding: 20px 0 20px;
    width: 200px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .header .img-wrap {
    padding: 20px 0 20px;
    width: 200px;
  }
}
.home.prelanding .header .img-wrap img {
  margin: 0 auto;
  width: 235px;
}
@media (max-width: 425px) {
  .home.prelanding .header .img-wrap img {
    width: 180px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .header .img-wrap img {
    width: 180px;
  }
}
.home.prelanding .dest-full {
  min-height: 643px;
}
@media (max-width: 425px) {
  .home.prelanding .dest-full {
    background-position: 57%;
    min-height: 500px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .dest-full {
    background-position: 57%;
    min-height: 500px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home.prelanding .dest-full {
    min-height: 580px;
  }
}
.home.prelanding .dest-full .auxi {
  padding-top: 120px;
}
.home.prelanding .art-hide {
  position: relative;
  top: -150px;
  margin-bottom: -100px;
}
@media (max-width: 425px) {
  .home.prelanding .art-hide {
    top: -80px;
    margin-bottom: -60px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .art-hide {
    top: -80px;
    margin-bottom: -60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home.prelanding .art-hide {
    top: -90px;
    margin-bottom: -60px;
  }
}
.home.prelanding .art-hide .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;
}
.home.prelanding .art-hide .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.home.prelanding .art-hide .item h3, .home.prelanding .art-hide .item p {
  color: #ffffff;
}
.home.prelanding .art-hide .item p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.4;
}
@media (max-width: 425px) {
  .home.prelanding .art-hide .item p {
    font-size: 13px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .art-hide .item p {
    font-size: 13px;
  }
}
.home.prelanding .art-hide .item h3 {
  padding-bottom: 10px;
  font-size: 23px;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .home.prelanding .art-hide .item h3 {
    font-size: 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .art-hide .item h3 {
    font-size: 18px;
  }
}
@media (max-width: 425px) {
  .home.prelanding .art-hide .item .cont-btn {
    padding-top: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .art-hide .item .cont-btn {
    padding-top: 10px;
  }
}
.home.prelanding .art-hide .item .cont-btn .btn-main {
  padding: 9px 33px 9px 27px;
  font-size: 13px;
  background-image: url("../../imag/v1/icon/arrow_r.png") !important;
  background-repeat: no-repeat;
  background-position: 88% 53%;
  background-size: 6px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.home.prelanding .art-hide .item .img-wrap:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  z-index: 0;
  opacity: 0.7;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgb(0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.home.prelanding .art-hide .item:hover .img-wrap:before {
  opacity: 0.9;
  background: rgb(0, 85, 184);
  background: -moz-linear-gradient(180deg, rgba(0, 85, 184, 0.6) 0%, rgb(0, 85, 184) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 85, 184, 0.6) 0%, rgb(0, 85, 184) 100%);
  background: linear-gradient(180deg, rgba(0, 85, 184, 0.6) 0%, rgb(0, 85, 184) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0055b8",endColorstr="#0055b8",GradientType=1);
}
.home.prelanding .art-hide .item:hover .cont-txt {
  top: 0;
}
.home.prelanding .art-hide .item:hover .cont-txt .baj {
  opacity: 1;
}
.home.prelanding .art-hide .cont-txt {
  position: absolute;
  transition: 0.3s all ease;
  top: 60%;
  bottom: 40px;
  padding: 30px 30px 25px;
}
@media (max-width: 425px) {
  .home.prelanding .art-hide .cont-txt {
    top: 0;
    padding: 20px 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .art-hide .cont-txt {
    top: 0;
    padding: 20px 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home.prelanding .art-hide .cont-txt {
    top: 0;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home.prelanding .art-hide .cont-txt {
    padding: 20px 20px 20px;
  }
}
.home.prelanding .art-hide .cont-txt .baj {
  opacity: 0;
}
@media (max-width: 425px) {
  .home.prelanding .art-hide .cont-txt .baj {
    opacity: 1;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .art-hide .cont-txt .baj {
    opacity: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home.prelanding .art-hide .cont-txt .baj {
    opacity: 1;
  }
}
.home.prelanding .art-hide .cont-btn {
  padding: 20px 0;
  text-align: left;
}
.home.prelanding .prel-footer .auxi {
  max-width: 1183px;
  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) {
  .home.prelanding .prel-footer .auxi {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .prel-footer .auxi {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home.prelanding .prel-footer .auxi {
    -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) {
  .home.prelanding .prel-footer .links {
    margin-bottom: 40px;
  }
}
@media (max-width: 425px) {
  .home.prelanding .prel-footer .links a {
    padding-bottom: 20px;
    display: block;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .prel-footer .links a {
    padding-bottom: 20px;
    display: block;
  }
}
.home.prelanding .prel-footer ul {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .home.prelanding .prel-footer ul {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .home.prelanding .prel-footer ul {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.home.prelanding .prel-footer ul a {
  padding-right: 30px;
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home.prelanding .prel-footer ul a {
    padding-right: 15px;
  }
}
.home.prelanding .prel-footer p.phone, .home.prelanding .prel-footer a.phone {
  font-size: 18px;
}
.home.prelanding .prel-footer .contact {
  margin-right: 40px;
}
@media (min-width: 992px) and (max-width: 1277px) {
  .home.prelanding .prel-footer .contact {
    margin-right: 15px;
  }
}
.home.prelanding .prel-footer .contact:last-child {
  margin-right: 0;
}
.home.prelanding .prel-footer .contact a {
  text-transform: none;
}
.home.prelanding .prel-footer .contact .img-wrap a {
  padding-right: 0;
  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;
}

.dest-main {
  position: relative;
}
@media (max-width: 425px) {
  .dest-main .swiper-wrapper {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -ms-flex-align: stretch;
    -moz-box-align: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-main .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;
  }
}
.dest-main .swiper-slide {
  position: relative;
}
.dest-main .swiper-slide .video-replace {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .dest-main .swiper-slide .video-replace {
    display: block !important;
  }
}
@media (max-width: 425px) {
  .dest-main .swiper-slide video {
    display: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-main .swiper-slide video {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dest-main .swiper-slide video {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .dest-main .swiper-slide video {
    display: block;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .dest-main .swiper-slide video {
    display: block;
  }
}
@media (min-width: 1400px) {
  .dest-main .swiper-slide video {
    display: block;
  }
}
.dest-main .swiper-slide .video {
  max-height: 100vh;
  overflow: hidden;
}
@media (max-width: 425px) {
  .dest-main .swiper-slide .cont-tit {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-main .swiper-slide .cont-tit {
    padding: 0;
  }
}
.dest-main .swiper-slide .cont-tit .tit_slider, .dest-main .swiper-slide .cont-tit .tit_slider > a {
  font-size: 55px;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: 0;
  color: #ffffff;
  text-align: left;
  font-weight: 800;
}
@media (max-width: 425px) {
  .dest-main .swiper-slide .cont-tit .tit_slider, .dest-main .swiper-slide .cont-tit .tit_slider > a {
    font-size: 25px;
    max-width: 100%;
    line-height: 1.4;
    margin-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-main .swiper-slide .cont-tit .tit_slider, .dest-main .swiper-slide .cont-tit .tit_slider > a {
    font-size: 30px;
    max-width: 100%;
    line-height: 1.4;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dest-main .swiper-slide .cont-tit .tit_slider, .dest-main .swiper-slide .cont-tit .tit_slider > a {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 auto;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .dest-main .swiper-slide .cont-tit .tit_slider, .dest-main .swiper-slide .cont-tit .tit_slider > a {
    line-height: 1.2;
  }
}
@media (min-width: 990px) and (max-width: 1190px) {
  .dest-main .swiper-slide .cont-tit .tit_slider, .dest-main .swiper-slide .cont-tit .tit_slider > a {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.dest-main .swiper-slide .cont-tit .baj {
  line-height: 1.5;
  max-width: 1000px;
  text-align: left;
  width: 100%;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .dest-main .swiper-slide .cont-tit .baj {
    font-size: 20px;
    line-height: 1.6;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .dest-main .swiper-slide .cont-tit .baj {
    font-size: 20px;
    line-height: 1.6;
  }
}
.dest-main .swiper-slide .auxi {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  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-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) {
  .dest-main .swiper-slide .auxi {
    padding: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-main .swiper-slide .auxi {
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dest-main .swiper-slide .auxi {
    max-width: 100%;
    padding: 20px;
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .dest-main .swiper-slide .auxi {
    padding-top: 120px;
    padding-bottom: 0;
    max-height: 100%;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.dest-main .swiper-slide .auxi.text-video {
  position: absolute;
}
@media (max-width: 425px) {
  .dest-main .swiper-slide .auxi.text-video {
    position: relative;
    height: 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-main .swiper-slide .auxi.text-video {
    position: relative;
    height: 100%;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dest-main .swiper-slide .auxi.text-video {
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 30px;
    -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) {
  .dest-main .swiper-slide .auxi.text-video {
    padding-top: 120px;
    max-height: 100%;
    -ms-flex-align: start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 1400px) {
  .dest-main .swiper-slide .auxi.text-video {
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.dest-main .swiper-slide .auxi .cont-tit {
  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;
  padding: 0;
  bottom: 0;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  position: absolute;
  transition: 0.2s all ease;
  padding: 0 15px 15px;
}
@media (max-width: 425px) {
  .dest-main .swiper-slide .auxi .cont-tit {
    left: 0;
    padding: 10px 20px 25px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-main .swiper-slide .auxi .cont-tit {
    padding: 10px 20px 0;
    left: 0;
  }
}
.dest-main .swiper-slide .auxi .cont-tit .logo-slider {
  -webkit-flex: 0 1 20%;
  flex: 0 1 20%;
  padding: 20px;
}
.dest-main .swiper-slide .auxi .cont-tit .cont-txt {
  max-width: 800px;
  width: 100%;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 425px) {
  .dest-main .swiper-slide .auxi .cont-tit .cont-txt {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-main .swiper-slide .auxi .cont-tit .cont-txt {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 990px) and (max-width: 1190px) {
  .dest-main .swiper-slide .auxi .cont-tit .cont-txt {
    max-width: 700px;
  }
}
.dest-main .swiper-pagination {
  bottom: 40px;
  position: absolute;
}
@media (max-width: 425px) {
  .dest-main .swiper-pagination {
    bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-main .swiper-pagination {
    bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dest-main .swiper-pagination {
    bottom: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .dest-main .swiper-pagination {
    bottom: 30px;
  }
}
.dest-main .swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  border-radius: 0;
  width: 48px;
  height: 4px;
  margin: 0 8px !important;
  transition: 0.2s all ease;
}

.ayuda {
  padding: 60px 0;
  position: relative;
}
@media (max-width: 425px) {
  .ayuda {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda {
    padding: 30px 0;
  }
}
@media (max-width: 425px) {
  .ayuda {
    background-image: none !important;
    background-color: #262F32;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda {
    background-image: none !important;
    background-color: #262F32;
  }
}
@media (max-width: 425px) {
  .ayuda:before {
    content: none !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda:before {
    content: none !important;
  }
}
.ayuda .cont-tit h2 {
  color: #ffffff;
}
.ayuda .cont-tit .baj {
  color: #ffffff;
}
.ayuda .auxi {
  position: relative;
  max-width: 1000px !important;
  z-index: 2;
}
@media (max-width: 425px) {
  .ayuda .auxi {
    padding: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .auxi {
    padding: 0;
  }
}
.ayuda:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgba(0, 93, 66, 0.8);
}
.ayuda .content {
  padding-top: 50px;
  text-align: center;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
@media (max-width: 425px) {
  .ayuda .content {
    padding-top: 20px;
    -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) {
  .ayuda .content {
    padding-top: 20px;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.ayuda .content .swiper-container {
  margin: 0 50px;
  position: initial;
}
@media (max-width: 425px) {
  .ayuda .content .swiper-container {
    margin: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .swiper-container {
    margin: 0;
  }
}
@media (max-width: 425px) {
  .ayuda .content .swiper-container .swiper-button-prev, .ayuda .content .swiper-container .swiper-button-next {
    display: none;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .swiper-container .swiper-button-prev, .ayuda .content .swiper-container .swiper-button-next {
    display: none;
  }
}
@media (max-width: 425px) {
  .ayuda .content .swiper-slide {
    max-width: 260px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .swiper-slide {
    max-width: 260px;
  }
}
.ayuda .content .box-sec {
  margin: 0;
  -webkit-flex: 1 1 33.3333333333%;
  flex: 1 1 33.3333333333%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 425px) {
  .ayuda .content .box-sec {
    margin: 0;
    margin-bottom: 15px;
    padding: 15px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .box-sec {
    margin: 0;
    margin-bottom: 15px;
    padding: 15px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.ayuda .content .box-sec .img-wrap {
  padding-bottom: 20px;
}
@media (max-width: 425px) {
  .ayuda .content .box-sec .img-wrap {
    padding-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .box-sec .img-wrap {
    padding-bottom: 0;
  }
}
.ayuda .content .box-sec .img-wrap img {
  width: 50px;
  margin: 0 auto;
}
.ayuda .content .box-sec .cont-txt {
  padding: 0 10px;
}
@media (max-width: 425px) {
  .ayuda .content .box-sec .cont-txt {
    max-width: 50vw;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .box-sec .cont-txt {
    max-width: 50vw;
  }
}
.ayuda .content .box-sec .cont-txt h3 {
  margin-bottom: 25px;
  line-height: 1.2;
  font-size: 23px;
  color: #262F32;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 425px) {
  .ayuda .content .box-sec .cont-txt h3 {
    margin-bottom: 0;
    text-align: left;
    font-size: 18px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .box-sec .cont-txt h3 {
    margin-bottom: 0;
    text-align: left;
    font-size: 18px;
  }
}
.ayuda .content .box-sec .cont-txt p {
  font-size: 13px;
  color: #4F585E;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 425px) {
  .ayuda .content .box-sec .cont-btn {
    text-align: right !important;
    padding-top: 0 !important;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .box-sec .cont-btn {
    text-align: right !important;
    padding-top: 0 !important;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (max-width: 425px) {
  .ayuda .content .box-sec .cont-btn a.btn-sec {
    font-size: 0 !important;
    padding: 20px 0 !important;
    width: 100%;
    height: 100%;
    text-align: right;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .ayuda .content .box-sec .cont-btn a.btn-sec:after {
    content: "";
    background-image: url("../../imag/v1/icon/chevron_gris.png");
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: 100%;
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    transform: rotate(-90deg);
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .box-sec .cont-btn a.btn-sec {
    font-size: 0 !important;
    padding: 20px 0 !important;
    width: 100%;
    height: 100%;
    text-align: right;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .ayuda .content .box-sec .cont-btn a.btn-sec:after {
    content: "";
    background-image: url("../../imag/v1/icon/chevron_gris.png");
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: 100%;
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    transform: rotate(-90deg);
  }
}
.ayuda .content .box-sec .cont-btn {
  text-align: center;
  padding: 10px 0 0;
}
.ayuda .content .box-sec .cont-btn .btn-sec {
  display: inline-block;
  font-size: 13px !important;
  color: #373737;
  padding: 13px 50px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.ayuda .content .box-sec .btn-more {
  text-align: center;
  padding: 80px 0 30px;
}
@media (max-width: 425px) {
  .ayuda .content .box-sec .btn-more {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .box-sec .btn-more {
    padding: 20px 0;
  }
}
.ayuda .content .box-sec .btn-more .btn {
  display: inline-block;
  font-size: 14px !important;
  color: #373737;
  padding: 13px 50px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .ayuda .content .box-sec .btn-more .btn {
    padding: 8px 20px;
    font-size: 12px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .content .box-sec .btn-more .btn {
    padding: 8px 20px;
    font-size: 12px !important;
  }
}
.ayuda .cont-btn {
  text-align: center;
  padding: 10px 0 0;
}
.ayuda .cont-btn .btn-sec {
  display: inline-block;
  font-size: 14px !important;
  color: #ffffff;
  padding: 13px 50px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.ayuda .btn-more {
  text-align: center;
  padding: 80px 0 30px;
}
@media (max-width: 425px) {
  .ayuda .btn-more {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .btn-more {
    padding: 20px 0;
  }
}
.ayuda .btn-more .btn {
  display: inline-block;
  font-size: 14px !important;
  color: #ffffff;
  padding: 13px 50px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .ayuda .btn-more .btn {
    padding: 8px 20px;
    font-size: 12px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ayuda .btn-more .btn {
    padding: 8px 20px;
    font-size: 12px !important;
  }
}

.atencion {
  padding: 60px 0;
}
@media (max-width: 425px) {
  .atencion {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion {
    padding: 30px 0;
  }
}
.atencion .cont-tit {
  text-align: left;
}
.atencion .cont-tit .tit {
  color: #262F32;
}
.atencion .cont-tit .baj {
  color: #4F585E;
}
.atencion .auxi {
  max-width: 1200px !important;
}
.atencion .auxi .row {
  max-width: 1150px;
  margin: 0 auto;
  padding: 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) {
  .atencion .auxi .row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion .auxi .row {
    -webkit-box-orient: block-axis;
    -webkit-box-orient: vertical;
    -moz-box-orient: block-axis;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 425px) {
  .atencion .auxi .row .col {
    border-left-width: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion .auxi .row .col {
    border-left-width: 0;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .atencion .auxi .lg-3 {
    width: 30%;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .atencion .auxi .lg-9 {
    width: 70%;
  }
}
.atencion .auxi .cont-tit h2:after {
  margin-left: 0;
}
@media (max-width: 425px) {
  .atencion .auxi .cont-tit h2:after {
    margin-left: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion .auxi .cont-tit h2:after {
    margin-left: auto;
  }
}
.atencion .auxi .form-control {
  padding-left: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .atencion .auxi .form-control {
    padding-left: 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) {
  .atencion .auxi .form-control {
    padding-left: 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) {
  .atencion .auxi .form-control {
    padding: 0 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;
  }
}
.atencion .auxi .form-control .form-group {
  padding-right: 20px;
}
@media (max-width: 425px) {
  .atencion .auxi .form-control .form-group {
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion .auxi .form-control .form-group {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .atencion .auxi .form-control .form-group {
    margin-bottom: 20px;
    padding-right: 0;
  }
}
.atencion .auxi .form-control .form-group:first-child {
  -webkit-flex: 1 0 40%;
  flex: 1 0 40%;
}
@media (max-width: 425px) {
  .atencion .auxi .form-control .form-group:first-child {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
    padding-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion .auxi .form-control .form-group:first-child {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
    padding-right: 0;
  }
}
.atencion .auxi .form-control .form-group:nth-child(2) {
  -webkit-flex: 1 0 35%;
  flex: 1 0 35%;
}
@media (max-width: 425px) {
  .atencion .auxi .form-control .form-group:nth-child(2) {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
    padding-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion .auxi .form-control .form-group:nth-child(2) {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
    padding-right: 0;
  }
}
.atencion .auxi .form-control .form-group select {
  width: 100%;
  background-color: #e6e7e8;
  padding: 13px 45px 13px 30px;
  font-size: 18px;
  border-radius: 30px;
  border: none !important;
  background-image: url("../../imag/v1/icon/chevron_gris.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 20px;
  background-size: 15px;
  color: #373737;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 425px) {
  .atencion .auxi .form-control .form-group select {
    font-size: 14px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion .auxi .form-control .form-group select {
    font-size: 14px;
  }
}
.atencion .auxi .form-control .btn {
  line-height: 1.5;
  background-color: #262F32;
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 30px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  -webkit-flex: 1 0 20%;
  flex: 1 0 20%;
}
@media (max-width: 425px) {
  .atencion .auxi .form-control .btn {
    width: 200px;
    margin: 0 auto;
    -webkit-flex: 0 1 200px;
    flex: 0 1 200px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion .auxi .form-control .btn {
    width: 200px;
    margin: 0 auto;
    -webkit-flex: 0 1 200px;
    flex: 0 1 200px;
  }
}
.atencion .direccion {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #e6e7e8;
  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) {
  .atencion .direccion {
    -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) {
  .atencion .direccion {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.atencion .direccion .dir {
  color: #4F585E;
  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) {
  .atencion .direccion .dir {
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .atencion .direccion .dir {
    margin-bottom: 15px;
  }
}
.atencion .direccion .dir p {
  font-size: 0.875rem;
}
.atencion .direccion .img-wrap {
  padding-right: 10px;
}
.atencion .direccion .img-wrap img {
  width: 21px;
}

.__validator-alert {
  margin: 0 auto 12px;
  width: 90%;
}
.__validator-alert span {
  color: #f65977;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.informacion {
  padding: 60px 0;
}
@media (max-width: 425px) {
  .informacion {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .informacion {
    padding: 30px 0;
  }
}
@media (max-width: 425px) {
  .informacion .auxi {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .informacion .auxi {
    padding-left: 0;
    padding-right: 0;
  }
}
.informacion .row {
  padding-top: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 425px) {
  .informacion .row {
    padding: 30px 0 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) {
  .informacion .row {
    padding: 30px 0 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) {
  .informacion .row {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.informacion .item {
  text-align: center;
  padding: 0 40px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 425px) {
  .informacion .item {
    width: 50%;
    padding: 0 10px 15px;
    margin-bottom: 15px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .informacion .item {
    width: 50%;
    padding: 0 10px 15px;
    margin-bottom: 15px;
  }
}
.informacion .item img {
  width: 80px;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .informacion .item img {
    width: 58px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .informacion .item img {
    width: 58px;
  }
}
.informacion .item .cont-txt {
  padding-top: 20px;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 425px) {
  .informacion .item .cont-txt {
    padding-top: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .informacion .item .cont-txt {
    padding-top: 10px;
  }
}
@media (min-width: 1400px) {
  .informacion .item .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 0 auto;
    flex: 1 0 auto;
  }
}
.informacion .item .cont-txt h3 {
  line-height: 1.5;
  color: #262F32;
  font-size: 20px;
  padding: 0 20px;
  margin-bottom: 15px;
  max-height: 58px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 425px) {
  .informacion .item .cont-txt h3 {
    font-size: 14px;
    padding: 0;
    height: auto;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .informacion .item .cont-txt h3 {
    font-size: 14px;
    padding: 0;
    height: auto;
  }
}
@media (min-width: 1400px) {
  .informacion .item .cont-txt h3 {
    flex: 0 1 auto;
  }
}
.informacion .item .cont-txt .baj {
  line-height: 1.3;
  color: #4F585E;
  font-size: 13px;
  min-height: 80px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
.informacion .logos {
  padding: 60px 0;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media (max-width: 425px) {
  .informacion .logos {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .informacion .logos {
    padding: 30px 0;
  }
}
.informacion .logos li {
  padding: 0 10px;
}

.arts, .actualidad {
  padding: 60px 0;
}
@media (max-width: 425px) {
  .arts, .actualidad {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts, .actualidad {
    padding: 30px 0;
  }
}
.arts .row, .actualidad .row {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  -moz-box-align: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.arts .row .col, .actualidad .row .col {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 425px) {
  .arts .row .col, .actualidad .row .col {
    margin-bottom: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .arts .row .col, .actualidad .row .col {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .arts .row .col, .actualidad .row .col {
    margin-bottom: 20px;
  }
}
.arts .auxi, .actualidad .auxi {
  position: relative;
  z-index: 2;
  max-width: 1100px !important;
}
.arts .auxi article > a, .actualidad .auxi article > a {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
.arts .auxi .cont-txt, .actualidad .auxi .cont-txt {
  background-color: #ffffff;
  padding: 15px;
  width: 100%;
}
.arts .auxi .cont-txt .fecha, .actualidad .auxi .cont-txt .fecha {
  padding-bottom: 7px;
  font-size: 13px;
  color: #373737;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
.arts .auxi .cont-txt h3, .actualidad .auxi .cont-txt h3 {
  font-size: 23px;
  color: #262F32;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
.arts .auxi .cont-txt h3 a, .actualidad .auxi .cont-txt h3 a {
  font-size: 18px;
  color: #262F32;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.arts .auxi .cont-txt .bajada, .actualidad .auxi .cont-txt .bajada {
  font-size: 14px;
  color: #4F585E;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}

.menujq > ul {
  margin-left: 0 !important;
  list-style: none;
}
.menujq > ul > li {
  list-style: none !important;
}
.menujq > ul > li > a {
  position: relative;
  display: block;
  margin: 10px 0;
  padding: 15px;
  background-color: #f2f2f4;
  color: #595959;
}
@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/ic_arrow_down_blue.png");
  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: #262F32;
  color: #ffffff;
}
.menujq > ul > li.active a:after {
  content: "";
  background-image: url("../../imag/v1/icon/chevron_w_d.png");
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
.menujq > ul > li.active ul a {
  color: #262F32;
  background: none;
}
.menujq > ul > li.active ul a:hover {
  color: #F65A39;
  transition: 0.2s all ease;
}
.menujq > ul > li:first-child > ul {
  display: block;
}
.menujq .desplegable ul {
  margin-left: 15px !important;
  list-style: none;
}
.menujq .desplegable ul li {
  list-style: none !important;
}
.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: #262F32;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.menujq .list ul li a:after {
  content: none;
}
.menujq .list ul li a img {
  width: 23px;
  margin-right: 8px;
}

.dest-full {
  position: relative;
  padding: 60px 0;
}
@media (max-width: 425px) {
  .dest-full {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-full {
    padding: 30px 0;
  }
}
.dest-full:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  opacity: 0.61;
  z-index: 0;
  background: rgb(0, 85, 184);
  background: -moz-linear-gradient(180deg, rgba(0, 85, 184, 0.1) 0%, rgb(0, 85, 184) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 85, 184, 0.1) 0%, rgb(0, 85, 184) 100%);
  background: linear-gradient(180deg, rgba(0, 85, 184, 0.1) 0%, rgb(0, 85, 184) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0055b8",endColorstr="#0055b8",GradientType=1);
}
.dest-full .auxi {
  z-index: 2;
  position: relative;
}
.dest-full .auxi .cont-tit {
  text-align: left;
}
.dest-full .auxi .cont-tit .tit:after {
  content: none;
}
.dest-full .auxi > .tit {
  line-height: 1.3;
  font-size: 3rem;
  max-width: 45%;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .dest-full .auxi > .tit {
    font-size: 1.5rem;
    max-width: 100%;
    margin-top: 80px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-full .auxi > .tit {
    font-size: 1.5rem;
    max-width: 100%;
    margin-top: 80px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dest-full .auxi > .tit {
    max-width: 65%;
  }
}
.dest-full .auxi > .tit:after {
  content: "";
  position: relative;
  display: block;
  margin: 15px 0;
  width: 90px;
  height: 3px;
  background-color: #F65A39;
}
.dest-full .auxi > .baj {
  margin-left: 0;
  line-height: 1.5;
  max-width: 45%;
  font-size: 18px;
}
@media (max-width: 425px) {
  .dest-full .auxi > .baj {
    font-size: 14px;
    max-width: 100%;
    margin-top: 8px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .dest-full .auxi > .baj {
    font-size: 14px;
    max-width: 100%;
    margin-top: 8px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .dest-full .auxi > .baj {
    max-width: 65%;
  }
}
.dest-full .auxi p, .dest-full .auxi h3, .dest-full .auxi h2 {
  color: #ffffff;
}

.box_top {
  margin: 0 auto;
  display: table;
}

ul.top-art {
  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;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
}
ul.top-art li.tag {
  background: #ffffff;
  color: #262F32;
}
ul.top-art li.tag a {
  color: #262F32;
}
ul.top-art li {
  border: 1px solid #ffffff;
  padding: 5px 20px;
  margin: 5px;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
ul.top-art li a {
  color: #ffffff;
}

body.taxport .enc-txt .auxi h1 {
  font-size: 35px;
  color: #262F32;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  body.taxport .enc-txt .auxi h1 {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  body.taxport .enc-txt .auxi h1 {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
}
body.taxport .enc-txt .auxi h1:after {
  content: "";
  position: relative;
  display: block;
  margin: 15px auto;
  width: 100px;
  height: 3px;
  background-color: #262F32;
  margin-top: 15px;
}

.taxlist.arts {
  padding: 0 0 60px;
}

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

.compromiso, .logros {
  padding: 60px 0;
}
@media (max-width: 425px) {
  .compromiso, .logros {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .compromiso, .logros {
    padding: 30px 0;
  }
}
.compromiso .row article, .logros .row article {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media (max-width: 425px) {
  .compromiso .row article, .logros .row article {
    display: block;
  }
}
.compromiso .row article .box-txt, .logros .row article .box-txt {
  -webkit-flex: 0 1 60%;
  flex: 0 1 60%;
  margin: 0 20px 0 0;
  font-size: 13px;
  color: #262F32;
  line-height: 150%;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .compromiso .row article .box-txt, .logros .row article .box-txt {
    margin: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .compromiso .row article .box-txt, .logros .row article .box-txt {
    margin: 0;
  }
}
.compromiso .row article .box-txt span, .logros .row article .box-txt span {
  font-size: 20px;
  color: #262F32;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
@media (max-width: 425px) {
  .compromiso .row article .box-txt span, .logros .row article .box-txt span {
    display: table;
    float: none;
    margin: 0 auto;
  }
}
.compromiso .row article .box-txt p, .logros .row article .box-txt p {
  font-size: 14px;
  color: #4F585E;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
@media (max-width: 425px) {
  .compromiso .row article .box-txt p, .logros .row article .box-txt p {
    display: table;
    float: none;
    margin: 0 auto;
  }
}
.compromiso .row article .box-txt .art-link, .logros .row article .box-txt .art-link {
  margin: 20px 0px;
  padding: 10px 20px;
  border: 1px solid #F65A39;
  color: #F65A39;
  font-size: 13px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  float: left;
  clear: both;
}
.compromiso .row article .box-txt .art-link:hover, .logros .row article .box-txt .art-link:hover {
  border: 1px solid #262F32;
  background-color: #262F32;
  color: #fff;
  transition: 0.3s all ease;
}
@media (max-width: 425px) {
  .compromiso .row article .box-txt .art-link, .logros .row article .box-txt .art-link {
    display: table;
    float: none;
    margin: 10px auto;
  }
}
.compromiso .row article img, .logros .row article img {
  width: 110px;
  margin: 0 15px 0 0;
  -ms-flex-item-align: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
@media (max-width: 425px) {
  .compromiso .row article img, .logros .row article img {
    width: 110px;
    margin: 0 auto 20px;
  }
}

.cont-tit {
  text-align: center;
  padding: 12px 18px;
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .cont-tit {
    padding-bottom: 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit {
    padding-bottom: 0;
  }
}
.cont-tit .tit {
  font-size: 35px;
  color: #262F32;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .cont-tit .tit {
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit .tit {
    text-align: center;
    width: 100%;
  }
}
.cont-tit .tit:after {
  content: "";
  position: relative;
  display: block;
  margin: 15px auto;
  width: 80px;
  height: 3px;
  background-color: #262F32;
  margin-top: 60px;
}
@media (max-width: 425px) {
  .cont-tit .tit:after {
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .cont-tit .tit:after {
    margin-top: 20px;
  }
}

.sec-rss {
  padding: 0 0 60px;
}

.head_rss {
  background: rgba(59, 89, 109, 0.1);
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 15px;
}
.head_rss img {
  width: auto;
  margin: 0 10px 0 0;
}
.head_rss span {
  font-size: 16px;
  color: #262F32;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.ico_play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  margin: 0 auto;
  position: absolute;
  transition: 0.2s all ease;
}

.ver_todo {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 15px 20px;
  background-color: #F65A39;
  border-radius: 0;
  letter-spacing: 0px;
  margin: 30px auto;
  display: table;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .ver_todo {
    margin: 0 auto 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .ver_todo {
    margin: 0 auto 20px;
  }
}
.ver_todo:hover {
  background-color: #262F32;
  transition: 0.3s all ease;
}

.multimedia {
  padding: 40px 0 60px;
}
.multimedia .auxi .row article {
  position: relative;
  margin-bottom: 15px;
}
.multimedia .auxi .row article a:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.bg_uno {
  background: #0D513C;
}
.bg_uno .auxi_form h4 {
  color: #ffffff;
}
.bg_uno .auxi_form p {
  color: #ffffff;
}

.bg_dos {
  background: #262F32;
}
.bg_dos .auxi_form h4 {
  color: #ffffff;
}
.bg_dos .auxi_form p {
  color: #ffffff;
}

.bg_tres {
  background: #F7F4F4;
}
.bg_tres .auxi_form h4 {
  color: #373737;
}
.bg_tres .auxi_form p {
  color: #373737;
}

.formularios .row {
  margin-left: 0;
}
.formularios .row .col {
  border-left-width: 0;
}

.form_port {
  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;
}
.form_port p iframe {
  width: 100%;
}
.form_port .auxi_form {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  -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: 30px;
}
.form_port .auxi_form .ico_form {
  width: 50px;
  margin: 0 auto 30px;
}
.form_port .auxi_form h4 {
  font-size: 35px;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-align: center;
}
.form_port .auxi_form p {
  font-size: 18px;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 130%;
}
.form_port form {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.form_port form input, .form_port form select, .form_port form textarea {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #ffffff !important;
  background: #ffffff;
  padding: 10px !important;
  margin: 0 auto 10px;
  width: 90%;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.form_port form input::placeholder, .form_port form select::placeholder, .form_port form textarea::placeholder {
  color: #676767;
  opacity: 1;
}
.form_port form input::-webkit-input-placeholder, .form_port form select::-webkit-input-placeholder, .form_port form textarea::-webkit-input-placeholder {
  color: #676767;
  opacity: 1;
}
.form_port form input:-ms-input-placeholder, .form_port form select:-ms-input-placeholder, .form_port form textarea:-ms-input-placeholder {
  color: #676767;
  opacity: 1;
}
.form_port form .cont-btn {
  padding: 30px 0;
  text-align: center;
}
.form_port form .cont-btn .btn {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 10px 20px;
  background-color: #262F32;
  border: 1px solid #ffffff;
  border-radius: 0;
  letter-spacing: 0px;
  margin: 30px auto;
  display: table;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.form_port form .cont-btn .btn:hover {
  background-color: #262F32;
  transition: 0.3s all ease;
}

.bg_dos form .cont-btn .btn {
  background-color: #373737;
}
.bg_dos form .cont-btn .btn:hover {
  background-color: #262F32;
}

.logros.bg_uno .cont-tit .tit {
  color: #ffffff;
}
.logros.bg_uno .cont-tit .tit:after {
  background-color: #ffffff;
}
.logros.bg_uno .row article .box-txt span, .logros.bg_uno .row article .box-txt p {
  color: #ffffff;
}
.logros.bg_uno .row article .box-txt .art-link {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.logros.bg_uno .row article .box-txt .art-link:hover {
  border: 1px solid #262F32;
  background: #262F32;
  color: #fff;
  transition: 0.3s all ease;
}
.logros.bg_uno .row .art-link-seccion {
  display: inline-flex;
  background: #ffffff;
  color: #0D513C;
  margin: 20px 0px;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.logros.bg_uno .row .art-link-seccion:hover {
  border: 1px solid #262F32;
  background: #262F32;
  color: #fff;
  transition: 0.3s all ease;
}
.logros.bg_uno section {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
.logros.bg_uno section .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;
}

.auxi-cover {
  max-width: 600px;
  width: 100%;
  background: rgba(0, 93, 66, 0.8);
  padding: 50px 50px 90px;
}
@media (max-width: 425px) {
  .auxi-cover {
    padding: 30px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-cover {
    padding: 30px 20px;
  }
}
.auxi-cover h4 {
  color: #ffffff;
  font-size: 35px;
  margin-bottom: 60px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 425px) {
  .auxi-cover h4 {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-cover h4 {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
}
.auxi-cover h4:after {
  content: "";
  position: relative;
  display: block;
  margin: 15px auto;
  width: 80px;
  height: 3px;
  background-color: #ffffff;
  margin-top: 60px;
}
@media (max-width: 425px) {
  .auxi-cover h4:after {
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-cover h4:after {
    margin-top: 20px;
  }
}
.auxi-cover p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 60px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 425px) {
  .auxi-cover p {
    margin-bottom: 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-cover p {
    margin-bottom: 30px;
  }
}
.auxi-cover p.cita {
  color: #ffffff;
  font-size: 25px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .auxi-cover p.cita {
    width: 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .auxi-cover p.cita {
    width: 100%;
  }
}
.auxi-cover .art-link {
  margin: 20px 0px;
  padding: 10px 20px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  clear: both;
  margin: 20px auto 0;
  display: table;
}
.auxi-cover .art-link:hover {
  border: 1px solid #262F32;
  background: #262F32;
  color: #fff;
  transition: 0.3s all ease;
}
@media (max-width: 425px) {
  .auxi-cover .art-link {
    display: table;
    float: none;
    margin: 10px auto;
  }
}

.sec-rss .cont-tit .tit:after {
  margin: 0;
  width: 0;
  height: 0;
  margin-top: 0;
}

.sec-rss .auxi .row article {
  margin-bottom: 20px;
}
.sec-rss .auxi .row article iframe {
  width: 100%;
}

.iframe {
  width: 100%;
}

.CUERPO img.responsive-img, .CUERPO_uno img.responsive-img, .CUERPO_dos img.responsive-img, .CUERPO_tres img.responsive-img, .CUERPO_cuatro img.responsive-img, .CUERPO_cinco img.responsive-img, .CUERPO_seis img.responsive-img, .CUERPO_siete img.responsive-img, .CUERPO_ocho img.responsive-img, .CUERPO_nueve img.responsive-img, .CUERPO_diez img.responsive-img, .CUERPO_once img.responsive-img, .CUERPO_doce img.responsive-img, .CUERPO_trece img.responsive-img, .CUERPO_catorce img.responsive-img, .CUERPO_quince img.responsive-img, .CUERPO_dieciseis img.responsive-img, .CUERPO_diecisiete img.responsive-img, .CUERPO_dieciocho img.responsive-img, .CUERPO_diecinueve img.responsive-img, .CUERPO_veinte 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, .CUERPO_tres img.no-responsive-img, .CUERPO_cuatro img.no-responsive-img, .CUERPO_cinco img.no-responsive-img, .CUERPO_seis img.no-responsive-img, .CUERPO_siete img.no-responsive-img, .CUERPO_ocho img.no-responsive-img, .CUERPO_nueve img.no-responsive-img, .CUERPO_diez img.no-responsive-img, .CUERPO_once img.no-responsive-img, .CUERPO_doce img.no-responsive-img, .CUERPO_trece img.no-responsive-img, .CUERPO_catorce img.no-responsive-img, .CUERPO_quince img.no-responsive-img, .CUERPO_dieciseis img.no-responsive-img, .CUERPO_diecisiete img.no-responsive-img, .CUERPO_dieciocho img.no-responsive-img, .CUERPO_diecinueve img.no-responsive-img, .CUERPO_veinte img.no-responsive-img {
  width: auto !important;
}
.CUERPO iframe, .CUERPO_uno iframe, .CUERPO_dos iframe, .CUERPO_tres iframe, .CUERPO_cuatro iframe, .CUERPO_cinco iframe, .CUERPO_seis iframe, .CUERPO_siete iframe, .CUERPO_ocho iframe, .CUERPO_nueve iframe, .CUERPO_diez iframe, .CUERPO_once iframe, .CUERPO_doce iframe, .CUERPO_trece iframe, .CUERPO_catorce iframe, .CUERPO_quince iframe, .CUERPO_dieciseis iframe, .CUERPO_diecisiete iframe, .CUERPO_dieciocho iframe, .CUERPO_diecinueve iframe, .CUERPO_veinte iframe {
  width: 100%;
}

.articulo .art-content .auxi, .articulo .enc-art .auxi {
  max-width: 800px;
}
.articulo .art-content .auxi {
  margin-bottom: 30px;
}
.articulo .enc-art {
  padding-top: 30px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.articulo .enc-art .box-toolbar {
  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;
}
.articulo .enc-art .box-toolbar .rss, .articulo .enc-art .box-toolbar .toolbar {
  padding: 20px 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;
}
.articulo .enc-art .box-toolbar .rss li, .articulo .enc-art .box-toolbar .toolbar li {
  margin: 0 10px;
}
.articulo .enc-art .box-toolbar .rss .fecha, .articulo .enc-art .box-toolbar .toolbar .fecha {
  color: #373737;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.articulo .enc-art .box-toolbar .rss .cont-share, .articulo .enc-art .box-toolbar .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 .enc-art .box-toolbar .rss .cont-share ul, .articulo .enc-art .box-toolbar .toolbar .cont-share ul {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
}
.articulo .enc-art .box-toolbar .rss .cont-share li, .articulo .enc-art .box-toolbar .toolbar .cont-share li {
  padding-right: 5px;
}
.articulo .enc-art .box-toolbar .rss .cont-share li a, .articulo .enc-art .box-toolbar .toolbar .cont-share li a {
  padding: 5px;
  display: block;
  border-radius: 50%;
}
.articulo .enc-art .box-toolbar .rss .cont-share li a:hover, .articulo .enc-art .box-toolbar .toolbar .cont-share li a:hover {
  background-color: #F65A39 !important;
  transition: 0.3s all ease;
}
.articulo .enc-art .box-toolbar .rss .cont-share li a.link, .articulo .enc-art .box-toolbar .toolbar .cont-share li a.link {
  background-color: #262F32;
}
.articulo .enc-art .box-toolbar .rss .cont-share li a.twitter, .articulo .enc-art .box-toolbar .toolbar .cont-share li a.twitter {
  background-color: #1da1f2;
}
.articulo .enc-art .box-toolbar .rss .cont-share li a.facebook, .articulo .enc-art .box-toolbar .toolbar .cont-share li a.facebook {
  background-color: #1877f2;
}
.articulo .enc-art .box-toolbar .rss .cont-share li a.print, .articulo .enc-art .box-toolbar .toolbar .cont-share li a.print {
  background: none !important;
}
.articulo .enc-art .box-toolbar .rss .cont-share li img, .articulo .enc-art .box-toolbar .toolbar .cont-share li img {
  width: 25px;
}
.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: 30px 0 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: 14px;
  color: #ffffff;
  margin: 0.3rem 2px;
  padding: 10px 20px;
  background-color: #444444;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.articulo .anclas .subtitulos a:hover {
  text-decoration: none;
  background-color: #262F32;
  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;
}
.articulo .contsubtit .titsubtit {
  text-decoration: none;
  color: #262F32;
  font-size: 23px;
  max-width: 90%;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .articulo .contsubtit .titsubtit {
    font-size: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .contsubtit .titsubtit {
    font-size: 20px;
  }
}
.articulo .contsubtit .linksubtit {
  margin: 0 6px 0 0 !important;
  padding: 3px 10px !important;
  text-align: center !important;
  font-size: 13px;
  color: #ffffff !important;
  background-color: #262F32 !important;
  font-family: "Open Sans", 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: #262F32;
  transition: 0.2s all ease;
}
.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 .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;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .articulo.formulario form .form-group label, .articulo.formulario form .form-group h3 {
    font-size: 14px;
    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: 14px;
    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: 14px;
}
.articulo.formulario form .form-group .adv, .articulo.formulario form .form-group span {
  font-size: 14px;
  color: #FF2727;
  padding-top: 10px;
  font-family: "Open Sans", 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: 13px;
  color: #ffffff;
  padding: 12px 50px;
  background-color: #262F32;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.articulo.formulario form .cont-btn .btn:hover {
  background-color: #F65A39;
  transition: 0.3s all ease;
}
.articulo .downloads {
  margin: 20px 0 40px;
}
@media (max-width: 425px) {
  .articulo .downloads {
    margin: 20px 10px 30px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .downloads {
    margin: 20px 10px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .articulo .downloads {
    margin: 20px 20px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .articulo .downloads {
    margin: 20px 20px 40px;
  }
}
.articulo .downloads .auxi {
  padding: 30px 40px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.31);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.31);
}
@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: 16px;
  color: #262F32;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.articulo .downloads .auxi ul {
  padding-top: 20px;
}
.articulo .downloads .auxi ul li {
  margin-bottom: 15px;
}
.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: 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: 16px;
  color: #373737;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 425px) {
  .articulo .downloads .auxi ul li a h3 {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .downloads .auxi ul li a h3 {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
}
.articulo .downloads .auxi ul li a h3:hover {
  color: #262F32;
  transition: 0.2s all ease;
}
.articulo .downloads .auxi ul li a p {
  font-size: 0.9rem;
  color: #4F585E;
  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: 10px;
}
@media (max-width: 425px) {
  .articulo .downloads .auxi ul li a .img {
    margin-right: 0;
  }
}
.articulo .downloads .auxi ul li a .img img {
  width: 1.3rem;
}
@media (max-width: 425px) {
  .articulo .downloads .auxi ul li a .img img {
    width: 0.9rem;
    margin-right: 5px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .articulo .downloads .auxi ul li a .img img {
    width: 0.9rem;
    margin-right: 5px;
  }
}
.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: 16px;
  color: #262F32;
  text-transform: uppercase;
  margin-right: 10px;
  font-family: "Open Sans", 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: "Open Sans", sans-serif;
  font-weight: 600;
}
.articulo .tags .auxi .tag a {
  color: #ffffff;
  background-color: #262F32;
  border-radius: 10px;
  display: block;
  padding: 6px 16px;
}
.articulo .tags .auxi .tag a:hover {
  background-color: #262F32;
  color: #ffffff;
  transition: 0.2s all ease;
}
.articulo .tags .auxi img {
  display: inline-block;
  vertical-align: middle;
  width: 1.3rem;
  margin-right: 5px;
}

.noticias .noticias-dest {
  padding: 60px 0;
  padding-bottom: 0;
}
@media (max-width: 425px) {
  .noticias .noticias-dest {
    padding: 30px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .noticias .noticias-dest {
    padding: 30px 0;
  }
}
.noticias .noticias-dest .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) {
  .noticias .noticias-dest .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) {
  .noticias .noticias-dest .auxi {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.noticias .noticias-dest .auxi .col-4 {
  margin-right: 18px;
  -webkit-flex: 1 0 32%;
  flex: 1 0 32%;
}
@media (max-width: 425px) {
  .noticias .noticias-dest .auxi .col-4 {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .noticias .noticias-dest .auxi .col-4 {
    -webkit-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.noticias .noticias-dest .auxi .col-4:last-child {
  margin-right: 0;
}
.noticias .noticias-dest .auxi .col-4 .not-big, .noticias .noticias-dest .auxi .col-4 .not-small {
  position: relative;
  margin-bottom: 18px;
}
.noticias .noticias-dest .auxi .col-4 .not-big:hover .img-wrap:before, .noticias .noticias-dest .auxi .col-4 .not-small:hover .img-wrap:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgba(0, 93, 66, 0.8);
}
.noticias .noticias-dest .auxi .col-4 .not-big .img-wrap, .noticias .noticias-dest .auxi .col-4 .not-small .img-wrap {
  position: relative;
}
.noticias .noticias-dest .auxi .col-4 .not-big .img-wrap:before, .noticias .noticias-dest .auxi .col-4 .not-small .img-wrap:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: 0.2s all ease;
  opacity: 0.9;
  position: absolute;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.noticias .noticias-dest .auxi .col-4 .not-big .cont-txt, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt {
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  padding: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .noticias .noticias-dest .auxi .col-4 .not-big .cont-txt, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt {
    padding: 20px;
  }
}
.noticias .noticias-dest .auxi .col-4 .not-big .cont-txt h2, .noticias .noticias-dest .auxi .col-4 .not-big .cont-txt p, .noticias .noticias-dest .auxi .col-4 .not-big .cont-txt span, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt h2, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt p, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt span {
  color: #ffffff;
}
.noticias .noticias-dest .auxi .col-4 .not-big .cont-txt .tag, .noticias .noticias-dest .auxi .col-4 .not-small .cont-txt .tag {
  font-size: 12px;
  border: 1px solid #f2f2f4;
  border-radius: 15px;
  padding: 6px 15px;
  margin-bottom: 10px;
  display: inline-block;
  border-color: #0D513C;
  background-color: #0D513C;
}
.noticias .noticias-dest .auxi .col-4 .not-big h2 {
  line-height: 1.4;
  font-size: 23px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 991px) {
  .noticias .noticias-dest .auxi .col-4 .not-big h2 {
    font-size: 20px;
  }
}
.noticias .noticias-dest .auxi .col-4 .not-big .fecha {
  position: relative;
  bottom: 0;
  padding-top: 25px;
  font-size: 14px;
}
.noticias .noticias-dest .auxi .col-4 .not-small .img-wrap {
  overflow: hidden;
}
.noticias .noticias-dest .auxi .col-4 .not-small h2 {
  line-height: 1.3;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 991px) {
  .noticias .noticias-dest .auxi .col-4 .not-small h2 {
    font-size: 14px;
    line-height: 1.5;
  }
}
.noticias .noticias-ant .auxi {
  max-width: 1200px !important;
}
.noticias .noticias-ant .auxi .cont-btn {
  text-align: center;
  padding: 10px 0 0;
}
.noticias .noticias-ant .auxi .cont-btn .btn-sec {
  display: inline-block;
  font-size: 14px !important;
  color: #373737;
  padding: 13px 50px;
  border: 1px solid #4F585E;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.noticias .noticias-ant .auxi .btn-more {
  text-align: center;
  padding: 80px 0 30px;
}
@media (max-width: 425px) {
  .noticias .noticias-ant .auxi .btn-more {
    padding: 20px 0;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .noticias .noticias-ant .auxi .btn-more {
    padding: 20px 0;
  }
}
.noticias .noticias-ant .auxi .btn-more .btn {
  display: inline-block;
  font-size: 14px !important;
  color: #373737;
  padding: 13px 50px;
  border: 1px solid #4F585E;
  border-radius: 30px;
  letter-spacing: 0.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .noticias .noticias-ant .auxi .btn-more .btn {
    padding: 8px 20px;
    font-size: 12px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .noticias .noticias-ant .auxi .btn-more .btn {
    padding: 8px 20px;
    font-size: 12px !important;
  }
}

.taxport .taxlist .auxi {
  max-width: 1200px !important;
}
.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: 40px;
}

.results .search-desp {
  margin-top: 50px;
  padding-left: 20px;
}
@media (max-width: 425px) {
  .results .search-desp {
    padding: 0 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .search-desp {
    padding: 0 10px;
  }
}
.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: 20px;
  color: #373737;
  line-height: 1.4;
}
@media (max-width: 425px) {
  .results .search-desp .auxi .search-criteria span {
    font-size: 18px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .search-desp .auxi .search-criteria span {
    font-size: 18px !important;
  }
}
.results .search-desp .auxi .search-criteria .criterio {
  color: #262F32;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.results .search-desp .auxi .results-number {
  font-size: 14px;
  color: #595959;
  line-height: 1.4;
}
.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 #f2f2f4;
}
.results .arts .auxi article .cont-txt {
  border-radius: 10px;
}
.results .arts .auxi article .bajada {
  padding-right: 90px;
}
@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;
  }
}
.results .form-group {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 10px 0;
  width: 100%;
}
@media (max-width: 425px) {
  .results .form-group {
    -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) {
  .results .form-group {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.results .container {
  margin: 10px 0;
  border-top: 1px solid #dddddd;
  padding-top: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (max-width: 425px) {
  .results .container {
    -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) {
  .results .container {
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.results .filt-adv {
  display: none;
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 425px) {
  .results .filt-adv {
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .filt-adv {
    margin-top: 20px;
  }
}
.results .filt {
  width: 100%;
}
.results .filt .form-group input.form-control::placeholder {
  color: #333333 !important;
}
.results .filt .form-group input.form-control::-moz-placeholder {
  color: #333333 !important;
}
.results .filt .form-group input.form-control:-ms-input-placeholder {
  color: #333333 !important;
}
.results .filt .form-group input.form-control:focus {
  outline: none;
  box-shadow: none !important;
  color: #333333;
}
.results .filt .form-group input.form-control:-moz-placeholder {
  color: #333333 !important;
}
.results .filt .form-group input.form-control:placeholder-shown {
  color: #333333 !important;
}
.results .filt .form-group .btn.btn-default {
  z-index: 100;
  background: none;
  border: none;
  cursor: pointer;
  right: 20px;
  position: relative;
}
.results .filt .form-group .btn.btn-default .cont-btn {
  padding: 30px 0;
  text-align: center;
}
@media (max-width: 425px) {
  .results .filt .form-group .btn.btn-default .cont-btn {
    padding: 15px 0 0;
  }
}
@media (min-width: 990px) and (max-width: 1190px) {
  .results .filt .form-group .btn.btn-default .cont-btn {
    padding: 10px 0;
  }
}
.results .filt .form-group .btn.btn-default .btn-main {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  padding: 10px 45px;
  background-color: #F65A39;
  border-radius: 0;
  letter-spacing: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .results .filt .form-group .btn.btn-default .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .filt .form-group .btn.btn-default .btn-main {
    font-size: 12px !important;
    padding: 12px 20px;
  }
}
.results .filt .form-group .btn.btn-default .btn-main:hover {
  background-color: #262F32;
  transition: 0.3s all ease;
}
.results .filt .form-group .btn.btn-default .btn-main.more {
  color: #4F585E;
  border-bottom: 4px solid #4F585E;
  margin-left: 20px;
}
.results .filt .form-group .form-control {
  width: 100%;
  height: 40px;
  padding: 1px 20px 1px 30px;
  font-size: 15px;
  z-index: 2;
  background: none;
  background-color: #ffffff;
  position: relative;
  bottom: 0;
  border-radius: 30px;
}
.results .filt .filter {
  display: block;
  margin: 0 auto;
  max-width: 600px;
}
.results .filt #filtrar {
  outline: none;
  background: none;
  border: none;
  background-color: #262F32;
  position: relative;
  display: block;
  float: left;
  color: #ffffff;
  padding: 14px 66px;
  cursor: pointer;
  border-radius: 30px;
  font-size: 16px;
  margin-top: 3px;
  margin-left: 10px;
}
.results .filt #filtrar:hover {
  background-color: #F65A39;
  transition: 0.3s all ease;
}
.results .filt select {
  width: 100%;
  height: 40px;
  padding: 1px 20px 1px 30px;
  font-size: 15px;
  z-index: 2;
  background-color: #ffffff;
  border: 1px solid #cccccc !important;
  position: relative;
  border-radius: 30px;
}
.results .filt select:focus {
  outline: none;
}
.results .opt-cont {
  width: 100%;
}
.results .adv-btn {
  position: relative;
  color: #262F32;
  font-size: 14px;
  letter-spacing: 0.9px;
  padding: 10px 25px;
  background-color: #f2f2f4;
  border-radius: 22px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
@media (max-width: 425px) {
  .results .adv-btn {
    margin-top: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .adv-btn {
    margin-top: 20px;
  }
}
.results .sub-btn {
  text-align: center;
}
.results .sub-btn .btn {
  background: none;
  background-color: #262F32;
  color: #ffffff;
  border-radius: 26px;
  padding: 13px 70px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin: 25px 0 0;
}
.results .sub-btn .btn:hover {
  background-color: #F65A39;
  transition: 0.3s all ease;
}
.results .control-label {
  min-width: 215px;
  text-align: right;
  color: #595959;
}
@media (max-width: 425px) {
  .results .control-label {
    text-align: left;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .results .control-label {
    text-align: left;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.results .date {
  position: relative;
  width: 100%;
}
.results .date .input-group-addon {
  position: absolute;
  right: 0;
  z-index: 2;
  margin-top: 9px;
  margin-right: 20px;
}
.results .date img {
  width: 20px;
}

.sitemap {
  border-top: 1px solid #eeeeee;
}
.sitemap .content_sitemap {
  background-color: #f2f2f4;
  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 .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: 35px;
}
@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: 14px;
  color: #373737;
  line-height: 1.3;
}
@media (max-width: 425px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .cont_tit p {
    font-size: 0.9rem;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1278px) {
  .sitemap .lista_sitio {
    padding: 0 20px;
  }
}
.sitemap .lista_sitio .lista_seccion {
  margin-bottom: 30px;
}
@media (max-width: 425px) {
  .sitemap .lista_sitio .lista_seccion {
    margin-left: 0;
    margin-bottom: 10px;
    padding: 15px;
  }
}
.sitemap .lista_sitio .lista_seccion h2 {
  margin-bottom: 15px;
}
.sitemap .lista_sitio .lista_seccion h2 a {
  color: #262F32;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.sitemap .lista_sitio .lista_seccion h2 a:hover {
  color: #F65A39;
  transition: 0.2s all ease;
}
.sitemap .lista_sitio .lista_seccion h3 {
  font-size: 0.9rem;
  margin-bottom: 15px;
  padding-left: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.sitemap .lista_sitio .lista_seccion h3 a {
  color: #262F32;
}
.sitemap .lista_sitio .lista_seccion h3 a:hover {
  color: #F65A39;
  transition: 0.2s all ease;
}
.sitemap .lista_sitio .lista_seccion ul {
  margin-top: 25px;
  margin-left: 10px;
  border-left: 3px solid #f2f2f4;
}
.sitemap .lista_sitio .lista_seccion ul li {
  margin: 17px 0 17px 20px;
}
.sitemap .lista_sitio .lista_seccion ul li a {
  color: #4F585E;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.sitemap .lista_sitio .lista_seccion ul li a:hover {
  color: #F65A39;
  transition: 0.2s all ease;
}

#copy_div {
  background: #ffffff !important;
  background-color: #ffffff !important;
  height: auto !important;
  padding: 12px 15px !important;
  width: auto !important;
  border-radius: 5px;
  color: #262F32 !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: "Open Sans", sans-serif;
  font-weight: 600;
}

@media (max-width: 425px) {
  .form-modal {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form-modal {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .form-modal {
    width: 700px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .form-modal {
    width: 700px;
  }
}
@media (min-width: 1278px) and (max-width: 1399px) {
  .form-modal {
    width: 700px;
  }
}
@media (min-width: 1400px) {
  .form-modal {
    width: 800px;
  }
}
@media (max-width: 425px) {
  .form-modal .cont-tit {
    padding: 12px 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form-modal .cont-tit {
    padding: 12px 0;
    margin-bottom: 10px;
  }
}
.form-modal .baj {
  display: block !important;
}
@media (max-width: 425px) {
  .form-modal .baj {
    font-size: 16px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .form-modal .baj {
    font-size: 16px;
  }
}
.form-modal .form-content {
  padding: 0 !important;
}
.form-modal .form-group {
  display: block !important;
}
.form-modal .form-group input, .form-modal .form-group select {
  margin-left: 0 !important;
}
.form-modal .form-group .__validator-alert {
  margin-top: 10px;
}

.error {
  background-color: #f2f2f4;
  padding-bottom: 0;
}
.error .auxi {
  margin: 0 auto;
  padding: 90px 0;
  min-height: 80vh;
  max-width: 1300px;
  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) {
  .error .auxi {
    padding: 30px 15px;
    min-height: 60vh;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error .auxi {
    padding: 30px 15px;
    min-height: 60vh;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.error__img {
  -webkit-flex: 1 1 35%;
  flex: 1 1 35%;
}
@media (max-width: 425px) {
  .error__img {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__img {
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.error__img img {
  max-width: 100%;
}
@media (max-width: 425px) {
  .error__img img {
    max-width: 200px;
    margin: 0 auto 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__img img {
    max-width: 200px;
    margin: 0 auto 20px;
  }
}
.error__content {
  text-align: left;
  margin-left: 30px;
  -webkit-flex: 1 1 65%;
  flex: 1 1 65%;
}
@media (max-width: 425px) {
  .error__content {
    margin-left: 0;
    text-align: center;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__content {
    margin-left: 0;
    text-align: center;
    -webkit-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.error__subtit {
  font-size: 45px;
  padding-bottom: 15px;
  color: #0D513C;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 425px) {
  .error__subtit {
    font-size: 32px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__subtit {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .error__subtit {
    font-size: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1277px) {
  .error__subtit {
    font-size: 32px;
  }
}
.error__baj {
  font-size: 32px;
  color: #262F32;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 425px) {
  .error__baj {
    font-size: 20px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__baj {
    font-size: 20px;
  }
}
.error__pref {
  font-size: 16px;
  line-height: 1.5;
  color: #262F32;
}
@media (max-width: 425px) {
  .error__pref {
    font-size: 13px;
  }
}
@media (min-width: 426px) and (max-width: 767px) {
  .error__pref {
    font-size: 13px;
  }
}

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