/*========== Font and typography - Poppins ==========*/
@font-face {
  font-family: "ChilenaItalic-BoldCondensed";
  src: url("../fonts/ChilenaItalic-BoldCondensed.woff2") format("woff2"), url("../fonts/ChilenaItalic-BoldCondensed.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chilena-Regular";
  src: url("../fonts/Chilena-Regular.woff2") format("woff2"), url("../fonts/Chilena-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ChilenaItalic-Regular";
  src: url("../fonts/ChilenaItalic-Regular.woff2") format("woff2"), url("../fonts/ChilenaItalic-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ChilenaItalic-Condensed";
  src: url("../fonts/ChilenaItalic-Condensed.woff2") format("woff2"), url("../fonts/ChilenaItalic-Condensed.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chilena-Bold";
  src: url("../fonts/Chilena-Bold.woff2") format("woff2"), url("../fonts/Chilena-Bold.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chilena-BoldCondensed";
  src: url("../fonts/Chilena-BoldCondensed.woff2") format("woff2"), url("../fonts/Chilena-BoldCondensed.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ChilenaItalic-Bold";
  src: url("../fonts/ChilenaItalic-Bold.woff2") format("woff2"), url("../fonts/ChilenaItalic-Bold.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
/*=============== VARIABLES CSS ===============*/
:root {
  --hue: 350;
  --header-height: 1.5rem;
  --first-color: hsl(var(--hue), 99%, 46%);
  --first-color-light: hsl(var(--hue), 99%, 56%);
  --title-color: hsl(0, 0%, 18%);
  --text-color: hsl(0, 0%, 83%);
  --button-color: hsla(var(--hue), 100%, 33%, 80%);
  --body-color: hsl(0, 0%, 100%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --border-radius: 50%;
}

/*=============== BASE ===============*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media screen and (min-width: 1500px) {
  html {
    font-size: 24px;
  }
}
@media screen and (min-width: 2050px) {
  html {
    font-size: 26px;
  }
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: 16px;
}

body {
  color: var(--text-color);
  background-color: var(--body-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-font-smoothing: antialiased;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

::-moz-selection {
  background: var(--first-color);
  color: #FFFFFF;
}

::selection {
  background: var(--first-color);
  color: #FFFFFF;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  margin-left: 2rem;
  margin-right: 2rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main {
  margin-top: 5rem;
  overflow: hidden; /*For animation*/
}

@media screen and (min-width: 1200px) {
  .container {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 75%);
  --body-color: hsl(var(--hue), 8%, 12%);
  --bg-color: hsl(var(--hue), 8%, 35%);
}

.dark-theme .scroll-header {
  -webkit-box-shadow: 0 1px 4px hsla(var(--hue), 4%, 4%, 0.3);
          box-shadow: 0 1px 4px hsla(var(--hue), 4%, 4%, 0.3);
}

.hide {
  display: none !important;
}

.show {
  display: inline-block !important;
}

.hidden {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

[id] {
  scroll-margin-top: 2rem;
}

.swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  background-color: #FFF;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  font-size: 0.875rem;
}

.line-gris {
  width: 80%;
  height: 3px;
  display: block;
  background-color: #707070;
  margin: 2rem auto;
}

.carousel__images .swiper-slide {
  text-align: center;
}
.carousel__images .swiper-slide a {
  background-color: #2E2E2E;
  color: #FFF;
  font-family: "ChilenaItalic-BoldCondensed";
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  display: inline-block;
  margin-top: var(--mb-1);
}
.carousel__images .swiper-slide a:hover {
  background-color: #3c3c3c;
}

#moments-carousel {
  margin-bottom: var(--mb-1);
}
#moments-carousel .f-carousel__slide {
  position: relative;
}
#moments-carousel .f-carousel__slide img {
  width: 100%;
  height: auto;
}
#moments-carousel .f-carousel__slide .play {
  position: absolute;
  top: 3rem;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 2rem;
  height: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
}

#moments-navigation {
  --f-carousel-spacing: 10px;
  --f-carousel-slide-width: calc((100% - 50px) / 5);
}
@media screen and (max-width: 968px) {
  #moments-navigation {
    --f-carousel-spacing: 10px;
    --f-carousel-slide-width: calc((100% - 100px) / 2);
  }
}
#moments-navigation .f-carousel__slide img {
  width: 100%;
  height: auto;
}
#moments-navigation .f-carousel__slide p {
  font-size: 0.6rem;
  color: var(--title-color);
  padding-top: var(--mb-0-5);
  font-family: "ChilenaItalic-BoldCondensed", sans-serif;
  text-align: center;
}
@media screen and (max-width: 968px) {
  #moments-navigation .f-carousel__slide p {
    font-size: 0.675rem;
  }
}

#gallery-carousel {
  margin-bottom: var(--mb-1);
}
#gallery-carousel .f-carousel__slide img {
  width: 100%;
  height: auto;
}
#gallery-carousel .f-carousel__nav .f-button {
  background-color: #FFF;
  border-radius: 50%;
}

#gallery-navigation {
  --f-carousel-spacing: 14px;
  --f-carousel-slide-width: calc((100% - 62px) / 4);
}
#gallery-navigation .f-carousel__slide img {
  width: 100%;
  height: auto;
}

/** Jahir Velasquez G. - julvervelasquez@gmail.com */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  max-width: 100vw;
  /* padding-top: 0.75rem; */
}

header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 2.5rem;
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  header .wrap {
    padding: 0 15px;
  }
}

header .wrap .logo {
  display: block;
  margin-bottom: -0.6rem;
  margin-top: 0px;
  width: 13rem;
  min-width: 13rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .wrap .logo img {
  width: 100%;
  vertical-align: bottom;
}

@media only screen and (max-width: 550px) {
  header .wrap .logo {
    width: 11rem;
    min-width: 11rem;
    position: relative;
    z-index: 10;
  }
}
header .wrap .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0rem;
  margin-top: -0.6rem;
}

header .wrap .head nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

header .wrap .head nav > ul > li {
  padding: 0 0.2rem;
  border-right: 1px solid #E5E5E5;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 991px) {
  header .wrap .head nav > ul > li {
    padding-right: 0.5rem;
  }
}
header .wrap .head nav > ul > li:last-child {
  border: none;
}
header .wrap .head nav > ul > li:nth-child(3) a {
  color: #000000;
}
header .wrap .head nav > ul > li:nth-child(4) a {
  color: #000000;
}
header .wrap .head nav > ul > li:nth-child(5) a {
  color: #000000;
}
header .wrap .head nav > ul > li:nth-child(6) a {
  color: #000000;
}
header .wrap .head nav > ul > li:nth-child(7) a {
  color: #000000;
}
@media only screen and (max-width: 1200px) {
  header .wrap .head nav > ul > li {
    padding: 0 0.4rem;
  }
}
header .wrap .head nav > ul > li.menu-item-has-children {
  padding-right: 0rem;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  header .wrap .head nav > ul > li.menu-item-has-children {
    padding-right: 0rem;
  }
}
header .wrap .head nav > ul > li.menu-item-has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .wrap .head nav > ul > li.menu-item-has-children > a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  color: #707070;
  font-size: 0.7rem;
  padding-left: 0.3rem;
}
header .wrap .head nav > ul > li ul li {
  border: none;
}
header .wrap .head nav > ul > li ul li a {
  font-size: 0.7rem;
}

header .wrap .head nav ul li a {
  color: #707070;
  font-size: 0.65rem;
  font-weight: bold;
  display: block;
  height: 2rem;
  padding: 0.3rem 0.5rem 0.3rem 0.2rem;
  border-bottom: none;
  text-transform: uppercase;
  line-height: 1;
}
header .wrap .head nav ul li a:hover {
  color: #f91026;
}
@media only screen and (max-width: 1650px) {
  header .wrap .head nav ul li a {
    font-size: 0.5rem;
  }
}
@media only screen and (max-width: 1500px) {
  header .wrap .head nav ul li a {
    font-size: 0.65rem;
  }
}
@media only screen and (max-width: 1220px) {
  header .wrap .head nav ul li a {
    font-size: 0.5rem;
  }
}

header .wrap .head nav ul li:hover > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
}

header .wrap .head nav > ul > li > ul {
  position: absolute;
  margin-left: 0;
  display: none;
  padding: 1.4rem 0.5rem 1rem;
  min-width: 10rem;
}

#menu-item-48694 {
  min-width: 8rem;
}

header .wrap .head nav > ul > li > ul ul {
  padding-top: 0.8rem;
  padding-bottom: 0rem;
}

header .wrap .head nav > ul > li > ul li {
  width: 100%;
  margin-bottom: 0px;
}

header .wrap .head nav > ul > li > ul li a {
  color: #707070;
  font-size: 0.65rem;
  text-transform: none;
  padding: 0.5rem;
  border: none;
  font-weight: normal;
  height: auto;
}

header .wrap .head nav > ul > li > ul li:hover a {
  border: none;
}

header .wrap .head nav > ul > li > ul ul {
  list-style: circle;
  padding-left: 2rem;
}

header .wrap .head nav > ul > li > ul ul li {
  padding-left: 0;
}

header .wrap .head nav > ul > li > ul ul li a {
  padding-left: 0;
  color: #7A7A7A !important;
}

header .wrap .head nav > ul > li .c-menu {
  background: #f5f5f5;
  padding: 20px;
}

header .wrap .head nav > ul > li > ul ul li a:hover {
  color: #eb0028 !important;
}

header .wrap .head nav > ul > li > ul > li > a:hover {
  color: #eb0028 !important;
}

header .wrap .head nav > ul > li .c-menu figure {
  width: 100%;
  margin-bottom: 1rem;
}

header .wrap .head nav > ul > li .c-menu figure img {
  width: 100%;
}

header .wrap .head nav > ul > li .c-menu a {
  font-size: 0.75rem;
  color: #eb0028;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0;
}

header .wrap .head nav > ul > li .c-menu h4 {
  color: #1b1b1b;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

@media only screen and (max-width: 1100px) {
  header .wrap .head nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 330px;
    z-index: 99;
    background: #fff;
    padding: 100px 30px 30px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  header .wrap .head nav.visible {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  header .wrap .head nav ul {
    display: block;
  }
  header .wrap .head nav ul li {
    width: 100%;
    padding: 0;
  }
  header .wrap .head nav ul li a {
    padding: 10px 0;
  }
}
header .wrap .head .lupa {
  color: #000;
  font-size: 1.4rem;
  padding: 0 0.5rem;
  margin-left: 1rem;
  cursor: pointer;
}

header .wrap .head .idioma {
  margin-left: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .wrap .head .idioma a {
  color: #707070;
  font-weight: 600;
  font-size: 0.5rem;
  display: block;
}

header .wrap .head .idioma a.activo {
  opacity: 0.5;
}

header .wrap .head .idioma a:first-child {
  border-right: none;
  padding-right: 0rem;
  margin-right: 0rem;
}

header.c-linea .wrap {
  position: relative;
}

header.c-linea .wrap:after {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  bottom: 0;
  z-index: -1;
  height: 2px;
  background: #666666;
}

@media only screen and (max-width: 550px) {
  header.c-linea .wrap:after {
    width: calc(100% - 30px);
  }
}
.btn-menu {
  display: none;
  z-index: 999;
  margin-left: 20px;
}

.btn-menu span {
  width: 35px;
  height: 3px;
  background-color: #000;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
}

.btn-menu.open span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.btn-menu.open span:nth-child(2) {
  opacity: 0;
}

.btn-menu.open span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-6px, -5px);
  transform: rotate(45deg) translate(-6px, -5px);
}

@media only screen and (max-width: 1100px) {
  .btn-menu {
    display: block;
    right: 40px;
  }
}
@media only screen and (max-width: 640px) {
  .btn-menu {
    right: 20px;
  }
}
.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  padding: 10px 15px 15px 15px;
  overflow: scroll;
  display: none;
}

@media only screen and (max-width: 1100px) {
  .menu-mobile {
    display: block;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .menu-mobile.visible {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.menu-mobile .menu-header .cerrar {
  position: absolute;
  top: 35px;
  right: 15px;
  color: #000;
  font-size: 1.4rem;
}

.menu-mobile .menu-body {
  margin-bottom: 20px;
  min-height: 70vh;
}

.menu-mobile .menu-body nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}

.menu-mobile .menu-body nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}

.menu-mobile .menu-body nav .item,
.menu-mobile .menu-body nav > ul > li {
  width: 100%;
  margin-bottom: 8px;
  display: block;
  padding-right: 0.5rem;
}

.menu-mobile .menu-body nav .item {
  margin-bottom: 2rem;
  padding-right: 0.5rem;
}

.menu-mobile .menu-body nav a,
.menu-mobile .menu-body nav > ul > li > a {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.menu-mobile .menu-body nav .item h4 a,
.menu-mobile .menu-body nav a {
  color: #fff;
}

.menu-mobile .menu-body nav .item ul,
.menu-mobile .menu-body nav > ul > li > div > ul {
  padding-left: 0;
  list-style: none;
  padding-right: 20px;
  margin-top: 15px;
}

.menu-mobile .menu-body nav .item ul li,
.menu-mobile .menu-body nav ul li {
  margin-bottom: 10px;
}

.menu-mobile .menu-body nav .item ul li a,
.menu-mobile .menu-body nav > ul > li a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.menu-mobile .menu-body nav .item ul li .submenu,
.menu-mobile .menu-body nav > ul > li > div > ul {
  padding-left: 0px;
  margin-top: 5px;
}

.menu-mobile .menu-body nav > ul > li > div > ul > li ul {
  list-style: none;
  padding-left: 0;
}

.menu-mobile .menu-body nav .item ul li .submenu li,
.menu-mobile .menu-body nav > ul > li > div > ul > li li {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  padding-left: 0.7rem;
  position: relative;
}

.menu-mobile .menu-body nav .item ul li .submenu li:before,
.menu-mobile .menu-body nav ul li div ul li li:before {
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  content: "";
  position: absolute;
  border-radius: 50%;
  left: 0;
  display: block;
  top: 6px;
}

.menu-mobile .menu-body nav .item ul li .submenu li a,
.menu-mobile .menu-body nav ul > li > div > ul > li > a {
  font-weight: normal;
}

.menu-mobile .menu-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 0px 0;
  border-top: 1px solid #fff;
}

.menu-mobile .menu-footer .redes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu-mobile .menu-footer .redes a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  margin: 0 5px;
}

.menu-mobile .menu-body nav ul li > a {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-right: 0.5rem;
  display: block;
}

.menu-mobile .menu-body nav ul li > ul {
  list-style: none;
  padding-left: 0;
  margin-top: -1rem;
  margin-bottom: 1.4rem;
}

.menu-mobile .menu-body nav ul li > ul li a {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  padding-right: 0;
}

@media only screen and (max-width: 340px) {
  .menu-mobile .menu-footer .redes a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.menu-mobile .menu-footer p {
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  padding-left: 5px;
}

.header-creadores {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header-creadores .logo {
  width: 33%;
  display: block;
  margin-top: -1%;
  max-width: 680px;
}
@media only screen and (max-width: 1550px) {
  .header-creadores .logo {
    max-width: 450px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-creadores .logo {
    max-width: 100%;
  }
}
.header-creadores .logo img {
  width: 100%;
}
.header-creadores .idioma {
  position: fixed;
  right: 1rem;
  top: 1.35rem;
}
.header-creadores .idioma a {
  color: #fff;
}
@media only screen and (max-width: 550px) {
  .header-creadores .idioma a {
    font-size: 0.9rem;
  }
}
.header-creadores .btn-menu {
  z-index: 999;
  height: auto;
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: none;
}
.header-creadores .btn-menu span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
}
.header-creadores .btn-menu.open span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}
.header-creadores .btn-menu.open span:nth-child(2) {
  opacity: 0;
}
.header-creadores .btn-menu.open span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-7px, -4px);
}

.wrapper {
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .wrapper {
    margin-top: 4rem;
  }
}

.menu-mobile {
  border-bottom: 10px solid #E31B2F;
}

.menu-mobile .menu-header .logo {
  width: 180px;
  display: block;
}
.menu-mobile .menu-header .logo img {
  width: 100%;
}

.menu-mobile .menu-body {
  margin-bottom: 0;
}

.menu-mobile .menu-body nav {
  margin-top: 0;
}

.menu-mobile .menu-body nav ul > li {
  border-bottom: 1px solid #bcbcbc;
  margin-bottom: 0;
}

.menu-mobile .menu-body nav ul > li.menu-item-has-children.activo {
  border-bottom: none;
}

.menu-mobile .menu-body nav ul > li.menu-item-has-children > a {
  margin-bottom: 0px;
  color: #666;
}

.menu-mobile .menu-body nav ul li > ul {
  list-style: none;
  padding-left: 0;
  margin-top: -10px;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-height: 0;
}

.menu-mobile .menu-body nav ul li.activo > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-height: 1000px;
}

.menu-mobile .menu-body nav ul > li > a {
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 12px 0;
  font-size: 14px;
  position: relative;
}

.menu-mobile .menu-body nav ul > li.menu-item-has-children > a:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: #666;
  right: 0;
  top: auto;
  font-size: 11px;
  margin-left: 10px;
}

.menu-mobile .menu-body nav ul li a br {
  display: none;
}

.menu-mobile .menu-body nav ul li > ul li a {
  text-transform: none;
  margin-bottom: 0;
  color: #707070;
  padding: 7px 0;
}

.menu-mobile .menu-body nav ul li > ul li {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 0;
}

.menu-mobile .menu-footer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0;
}

.menu-mobile .menu-footer .redes {
  margin-bottom: 15px;
}

.menu-mobile .menu-footer .redes a {
  border-color: #E31B2F;
  color: #E31B2F;
  font-size: 18px;
}

.menu-mobile .menu-footer p {
  color: #999;
}

.nav {
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e8e8e8;
  padding-top: var(--mb-0-5);
  padding-right: var(--mb-0-5);
}
.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
  background-color: var(--first-color);
  color: #FFFFFF;
  padding: 0.25rem var(--mb-0-5);
  border-radius: 0.25rem;
}
.nav__menu {
  position: relative;
}
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: #e8e8e8;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 3rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 999;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.5rem;
  margin-top: var(--mb-2);
  margin-right: 0;
}
.nav__item {
  text-align: right;
}
.nav__link {
  color: var(--title-color);
  font-weight: 400;
  text-transform: capitalize;
  font-size: 1.5rem;
  font-family: "Chilena-BoldCondensed", sans-serif;
}
.nav__link br {
  display: inline-block;
}
.nav__link:hover {
  color: var(--first-color);
}
.nav__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #FFFFFF;
  cursor: pointer;
  background-color: var(--first-color);
  padding: var(--mb-0-5);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__dark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}
.nav .change-theme-name {
  color: var(--title-color);
}

/* show menu */
.show-menu {
  right: 0;
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

@media screen and (min-width: 768px) {
  .nav {
    height: calc(var(--header-height) + 1.5rem);
    background-color: var(--title-color);
  }
  .nav__link {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
  }
  .nav__link br {
    display: none;
  }
  .nav__link:hover {
    color: var(--first-color);
  }
  .nav__dark {
    position: initial;
  }
  .nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
    margin-top: 0;
    margin-right: calc(var(--mb-2-5) * 2);
  }
  .nav__toggle, .nav__close {
    display: none;
  }
  .change-theme-name {
    display: none;
  }
  .active-link::before {
    background-color: var(--title-color);
  }
}
.home {
  background-color: #e8e8e8;
}
.home__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 1.5rem 0;
}
.home__container .data {
  width: 100%;
}
.home__container .data .skew {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 12rem;
  height: 1.5rem;
  background-color: var(--first-color);
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  -webkit-transform: skew(-13deg, 0);
          transform: skew(-13deg, 0);
  -webkit-transform-origin: right;
          transform-origin: right;
  padding: 0.5rem var(--mb-0-5);
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home__container .data .skew span {
  color: #FFFFFF;
  display: block;
  -webkit-transform: skew(13deg, 0) !important;
          transform: skew(13deg, 0) !important;
  font-size: 0.875rem;
  font-family: "ChilenaItalic-Regular", sans-serif;
}
.home__container .data .skew:hover {
  background-color: var(--first-color-light);
}
.home__container .data .title {
  font-size: 2rem;
  line-height: 2.25rem;
  margin-bottom: var(--mb-1);
  color: var(--title-color);
  text-align: center;
  font-family: "ChilenaItalic-BoldCondensed", sans-serif;
}
.home__container .data .title br {
  display: none;
}
.home__container .data .box {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  margin-bottom: calc(var(--mb-2));
  -webkit-box-shadow: 10px 10px 0 var(--first-color);
          box-shadow: 10px 10px 0 var(--first-color);
}
.home__container .data .box::after {
  content: "";
  width: 90%;
  height: 90%;
  background-color: var(--first-color);
  display: inline-block;
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: 3;
}
.home__container .data .box video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 9;
}
.home__container .data .description {
  font-size: 0.775rem;
  color: var(--title-color);
  font-weight: 700;
  font-family: "Chilena-Regular", sans-serif;
}
.home__container .data .description strong {
  font-family: "Chilena-Bold", sans-serif;
}
.home__container .image {
  width: 100%;
}
.home__container .image .box {
  display: none;
}

.exclusive {
  padding: calc(var(--mb-2) * 0.5) 0 calc(var(--mb-2) * 2) 0;
}
.exclusive__container {
  margin-left: 10rem;
}
.exclusive__container .title {
  font-size: 2rem;
  display: inherit;
  font-family: "ChilenaItalic-BoldCondensed", sans-serif;
}
.exclusive__container .content {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: calc(var(--mb-2) * 2) 0;
}
.exclusive__container .content .info {
  margin-left: 5rem;
}
.exclusive__container .content .image {
  min-width: 65%;
  width: 65%;
  max-width: 65%;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
  display: inline-block;
}
.exclusive__container .content .responsive {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
  display: none;
}
.exclusive__container .content .title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: var(--title-color);
  margin-bottom: var(--mb-1);
  border: 0;
  font-family: "ChilenaItalic-BoldCondensed", sans-serif;
}
.exclusive__container .content .title.proximamente {
  font-size: 3rem;
  line-height: 3.25rem;
}
.exclusive__container .content .description {
  font-size: 0.675rem;
  color: var(--title-color);
  margin-bottom: var(--mb-1);
  font-family: "Chilena-Regular", sans-serif;
}
.exclusive__container .content .subtitle {
  font-size: 0.875rem;
  color: var(--title-color);
  margin-bottom: var(--mb-1);
  font-family: "Chilena-bold", sans-serif;
}
.exclusive__container .content .btn {
  font-size: 0.875rem;
  padding: 0 var(--mb-0-5);
  background-color: var(--first-color);
  color: #FFF;
  font-family: "ChilenaItalic-Regular", sans-serif;
}
.exclusive__container .content .links {
  text-align: right;
  -webkit-transform: skew(-13deg, 0) !important;
          transform: skew(-13deg, 0) !important;
  position: absolute;
  bottom: 0;
  left: 15.75%;
}
.exclusive__container .content .links.proximamente {
  left: 25%;
}
.exclusive__container .content .links .link {
  background-color: var(--first-color);
  padding: 0.25rem var(--mb-2);
  color: #FFF;
  font-size: 0.875rem;
  text-transform: uppercase;
  text-align: right;
  display: inline-block;
  font-family: "Chilena-Regular", sans-serif;
}
.exclusive__container .content .links .linkspan {
  -webkit-transform: skew(13deg, 0) !important;
          transform: skew(13deg, 0) !important;
}
.exclusive__container .content .links .link:hover {
  background-color: var(--first-color-light);
}

@media screen and (max-width: 1400px) {
  .exclusive__container .content .title {
    font-size: 1.75rem;
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 968px) {
  .exclusive__container {
    margin-left: 0;
  }
  .exclusive__container .content .info {
    margin: 0 var(--mb-2);
  }
  .exclusive__container .content .image {
    display: none;
  }
  .exclusive__container .content .responsive {
    display: inline-block;
  }
  .exclusive__container .content .links {
    left: 0;
    right: 0;
    z-index: 9;
    margin: auto;
    text-align: center;
  }
  .exclusive__container .content .links.proximamente {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
  .exclusive__container .content .links .link {
    font-size: 1rem;
  }
}
.gallery {
  padding: calc(var(--mb-2) * 3) 0;
}
.gallery__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.gallery__container .data {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: var(--mb-1);
     -moz-column-gap: var(--mb-1);
          column-gap: var(--mb-1);
  border-top: 5px solid var(--first-color);
  margin-bottom: var(--mb-2);
  margin-left: 2rem;
  margin-right: 2rem;
}
.gallery__container .data h2 {
  font-size: 2.5rem;
  color: var(--title-color);
  font-family: "ChilenaItalic-BoldCondensed", sans-serif;
}
.gallery__container .data p {
  font-size: 0.675rem;
  color: var(--title-color);
  text-align: right;
  font-family: "ChilenaItalic-Regular", sans-serif;
}
.gallery__container .image {
  width: 100%;
  margin: auto;
}
.gallery__container .image .thumbs {
  margin-top: var(--mb-1-5);
}
.gallery__container .image .swiper-slide {
  width: 100%;
}
.gallery__container .image .swiper-slide img {
  width: 100%;
  height: auto;
}

.moments {
  background-color: #e8e8e8;
  padding: calc(var(--mb-2) * 3) 0;
}
.moments__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: var(--mb-2);
     -moz-column-gap: var(--mb-2);
          column-gap: var(--mb-2);
}
.moments__container .data {
  width: 100%;
  margin-bottom: var(--mb-2);
}
.moments__container .data h2 {
  font-size: 2.5rem;
  color: var(--title-color);
  display: inline-block;
  border-top: 5px solid var(--first-color);
  font-family: "ChilenaItalic-BoldCondensed", sans-serif;
}
.moments__container .data h3 {
  font-size: 2rem;
  color: var(--title-color);
  margin-top: -0.5rem;
  margin-bottom: var(--mb-2);
  font-family: "ChilenaItalic-Condensed", sans-serif;
}
.moments__container .data p {
  width: 100%;
  color: var(--title-color);
  font-size: 1.25rem;
  font-family: "Chilena-Regular", sans-serif;
}
.moments__container .image {
  width: 100%;
}
.moments__container .image .moments-image .swiper-slide {
  width: 100%;
}
.moments__container .image .moments-image .swiper-slide img {
  width: 100%;
}
.moments__container .image .moments-thumbs {
  margin-top: var(--mb-1-5);
}
.moments__container .image .moments-thumbs .swiper-slide {
  width: 15rem !important;
}
.moments__container .image .moments-thumbs .swiper-slide img {
  width: 100%;
}
.moments__container .image .moments-thumbs .swiper-slide p {
  font-size: 0.875rem;
  color: var(--title-color);
  padding: var(--mb-0-5);
}

.second {
  background-color: #e8e8e8;
}
.second__container .atras {
  position: absolute;
  top: 2rem;
  left: 0.5rem;
  color: var(--title-color);
  font-size: 1.25rem;
}
.second__container .atras:hover {
  color: var(--first-color);
}
.second__container .content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--mb-2) 0;
}
.second__container .content .info {
  margin-left: 5rem;
}
.second__container .content .image {
  min-width: 60%;
  width: 60%;
  max-width: 60%;
  display: inline-block;
}
.second__container .content .responsive {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
  display: none;
}
.second__container .content .title {
  font-size: 2rem;
  line-height: 2.25rem;
  color: var(--title-color);
  margin-bottom: var(--mb-1);
  border: 0;
  font-family: "ChilenaItalic-BoldCondensed", sans-serif;
}
.second__container .content .description {
  font-size: 1rem;
  color: var(--title-color);
  margin: var(--mb-1) 0;
  font-family: "Chilena-Regular", sans-serif;
}
.second__container .content .subtitle {
  font-size: 0.875rem;
  color: var(--title-color);
  font-family: "Chilena-bold", sans-serif;
  background-color: var(--first-color);
  color: #FFFFFF;
  padding: 0.15rem;
  line-height: normal;
}
.second__container .content .btn {
  font-size: 0.875rem;
  padding: 0 var(--mb-0-5);
  background-color: var(--first-color);
  color: #FFF;
  font-family: "ChilenaItalic-Regular", sans-serif;
}
.second__container .content .frase {
  font-size: 1.5rem;
  color: var(--title-color);
  margin: var(--mb-1) 0;
  font-family: "ChilenaItalic-BoldCondensed", sans-serif;
}

@media screen and (max-width: 968px) {
  .second__container .atras {
    position: absolute;
    top: 0.5rem;
    left: 0;
    color: var(--title-color);
    font-size: 1rem;
    z-index: 999;
  }
  .second__container .content .info {
    margin-left: 0;
  }
  .second__container .content .title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media screen and (max-width: 500px) {
  .second__container .content .title {
    font-size: 1.35rem;
    line-height: 1.5rem;
  }
}
.texto__container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: calc(var(--mb-2-5) + 1rem);
  margin-bottom: var(--mb-1);
}
.texto__container .content .data {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.texto__container .content .data p {
  color: var(--title-color);
  margin-bottom: var(--mb-1);
  font-size: 0.875rem;
  font-family: "Chilena-Regular", sans-serif;
}
.texto__container .video .iframe {
  width: 100% !important;
  height: 100%;
}
.texto__container .image {
  width: 100%;
  margin-bottom: var(--mb-1-5);
}
.texto__container .image img {
  width: 100%;
  height: auto;
}
.texto__container .image p {
  font-size: 0.675rem;
  color: var(--title-color);
  text-align: center;
  padding: var(--mb-0-5);
  margin-bottom: var(--mb-1-5);
  font-family: "Chilena-Regular", sans-serif;
  font-style: italic;
}
.texto__container .line {
  width: 90%;
  height: 5px;
  background-color: var(--first-color);
  margin: var(--mb-2-5) auto;
}
.texto__container .gallery {
  width: 100%;
  margin: auto;
  padding: 0;
}
.texto__container .gallery .f-carousel__slide {
  width: 100%;
}
.texto__container .gallery .f-carousel__slide img {
  width: 100%;
}
.texto__container .gallery .f-carousel__nav .f-button {
  background-color: #FFF;
  border-radius: 50%;
}
.texto__container .punto {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--first-color);
  display: inline-block;
  border-radius: 50%;
}

.franja {
  background-color: var(--first-color);
  padding: var(--mb-1);
  position: sticky;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
}
.franja__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.franja__container .data {
  width: 50%;
}
.franja__container .data h3 {
  text-align: left;
  color: #FFFFFF;
  font-size: 1rem;
}
.franja__container .form {
  width: 50%;
}
.franja__container .form .suscribete {
  background-color: #2E2E2E;
  color: #FFFFFF;
  padding: 0.25rem var(--mb-0-75);
  border: 0;
  font-size: 1rem;
  font-family: "ChilenaItalic-Bold";
  margin: auto;
  display: block;
}
.franja__container .form .suscribete:hover {
  background-color: #FFFFFF;
  color: #2E2E2E;
}
.franja__container .form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: var(--mb-0-5);
     -moz-column-gap: var(--mb-0-5);
          column-gap: var(--mb-0-5);
}
.franja__container .form form .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
  width: 60%;
}
.franja__container .form form input[type=text],
.franja__container .form form input[type=email] {
  background-color: #FFFFFF;
  padding: 0.25rem var(--mb-0-5);
  border: 0;
  font-size: 0.675rem;
  display: block;
  font-family: "Chilena-Regular";
}
.franja__container .form form input[type=submit] {
  background-color: #2E2E2E;
  padding: 0.25rem var(--mb-0-75);
  border: 0;
  font-size: 0.875rem;
  color: #FFFFFF;
  font-family: "ChilenaItalic-Bold";
  margin: auto;
  text-transform: uppercase;
}
.franja__container .form form input[type=submit]:hover {
  background-color: #FFFFFF;
  color: #2E2E2E;
}
@media screen and (max-width: 1200px) {
  .franja__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
  }
  .franja__container .data {
    width: 100%;
  }
  .franja__container .data h3 {
    text-align: center;
  }
  .franja__container .form {
    width: 100%;
  }
  .franja__container .form form .group {
    width: 70%;
  }
}

@media screen and (min-width: 968px) {
  .home__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2rem 0;
  }
  .home__container .data {
    width: 45%;
  }
  .home__container .data .skew {
    position: absolute;
    top: -1rem;
    left: 0;
    right: auto;
  }
  .home__container .data .title {
    font-size: 3rem;
    line-height: 3.5rem;
    text-align: left;
    margin-bottom: var(--mb-1);
  }
  .home__container .data .title br {
    display: inline-block;
  }
  .home__container .data .box {
    display: none;
  }
  .home__container .data .description {
    font-size: 1rem;
  }
  .home__container .image {
    width: 55%;
  }
  .home__container .image .box {
    width: 50%;
    display: block;
    margin: 0 auto;
    position: relative;
    -webkit-box-shadow: 15px 15px 0 var(--first-color);
            box-shadow: 15px 15px 0 var(--first-color);
  }
  .home__container .image .box::after {
    content: "";
    width: 75%;
    height: 75%;
    background-color: var(--first-color);
    display: inline-block;
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    z-index: 50;
  }
  .home__container .image .box video {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 9;
  }
  .moments__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .moments__container .data {
    width: 35%;
  }
  .moments__container .data h2 {
    font-size: 3.5rem;
  }
  .moments__container .data p {
    width: 90%;
  }
  .moments__container .image {
    width: 65%;
  }
  .moments__container .image .moments-thumbs .swiper-slide {
    width: 0 auto !important;
  }
  .moments__container .image .moments-thumbs .swiper-slide img {
    width: 100%;
  }
  .gallery__container {
    margin: 0 calc(var(--mb-2) * 5);
  }
  .gallery__container .data {
    width: 100%;
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
  }
  .gallery__container .image {
    width: 60%;
  }
  .second__container .content__principal {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    height: calc(100vh - 5rem);
  }
  .second__container .content__escritorio {
    display: inline-block;
  }
  .second__container .atras {
    position: absolute;
    top: 2rem;
    left: 2rem;
  }
  .second__container .data {
    width: 40%;
    left: 13rem;
  }
  .second__container .data .title {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  .second__container .data .title br {
    display: inline-block;
  }
  .second__container .data .subtitle {
    font-size: 1rem;
  }
  .second__container .data .description {
    font-size: 1rem;
  }
  .second__container .data .description br {
    display: inline-block;
  }
  .second__container .data .frase {
    font-size: 1.15rem;
  }
  .second__container .data .frase br {
    display: inline-block;
  }
  .second__container .image {
    width: 60%;
  }
  .second__container .image .box {
    width: 90%;
  }
  .second__container .content__responsive {
    display: none;
  }
  .texto__container .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .texto__container .content .data {
    width: 100%;
    margin-left: 10rem;
    margin-right: 10rem;
  }
  .texto__container .content .data p {
    font-size: 1rem;
  }
  .texto__container .video .iframe {
    width: 100% !important;
    height: 40rem;
  }
  .texto__container .video video {
    width: 75%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .texto__container .video .image {
    width: 25rem;
    margin: auto;
  }
  .texto__container .video .image img {
    width: 100%;
    height: auto;
  }
  .texto__container .gallery {
    width: 65%;
  }
}
/** Jahir Velasquez G. - julvervelasquez@gmail.com */
footer {
  padding-top: 2.5rem;
  position: relative;
}

@media only screen and (max-width: 768px) {
  footer {
    background-size: 300% auto;
  }
}
footer .wrap {
  position: relative;
  padding: 0 7.5rem;
}
@media only screen and (max-width: 991px) {
  footer .wrap {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 768px) {
  footer .wrap {
    padding: 0 1rem;
  }
}

footer .logo {
  text-align: center;
  margin-bottom: -2.8rem;
}
footer .logo a {
  display: inline-block;
  background: #fff;
}
@media only screen and (max-width: 640px) {
  footer .logo {
    margin-bottom: -2rem;
  }
}

footer .logo img {
  border-left: 30px solid #fff;
  border-right: 30px solid #fff;
  width: calc(13rem + 60px);
}
@media only screen and (max-width: 640px) {
  footer .logo img {
    width: 14rem;
  }
}

footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #B8B8BA;
  padding-top: 4.5rem;
  vertical-align: top;
}
@media only screen and (max-width: 991px) {
  footer nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
footer nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  footer nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
footer nav ul li {
  padding: 0 0.75rem;
}
@media only screen and (max-width: 768px) {
  footer nav ul li {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 550px) {
  footer nav ul li {
    width: 50%;
  }
}
footer nav ul li a {
  font-size: 0.6rem;
  text-transform: uppercase;
  line-height: 1;
  color: #707070;
  font-weight: bold;
  display: block;
}
footer nav ul li a:hover {
  color: #333;
}
@media only screen and (max-width: 991px) {
  footer nav .item {
    width: 33.33%;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  footer nav .item {
    width: 50%;
  }
}
@media only screen and (max-width: 550px) {
  footer nav .item {
    width: 100%;
  }
}
footer nav .item ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer nav .item ul li {
  margin-bottom: 1rem;
}
footer nav .item ul li a {
  font-size: 0.75rem;
  font-weight: bold;
  color: #707070;
}
footer nav .item ul li a:hover {
  color: var(--first-color);
}
footer nav .item ul li .submenu {
  padding-left: 0.8rem;
  padding-top: 0.3rem;
}
footer nav .item ul li .submenu li {
  margin-bottom: 0.2rem;
}
footer nav .item ul li .submenu li a {
  font-weight: normal;
}
footer nav .item img {
  width: 10.4rem;
  max-width: 100%;
}

.bg-footer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6rem 0 1rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 768px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 550px) {
  .footer-bottom {
    padding-top: 4rem;
  }
}
.footer-bottom .redes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 4rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .footer-bottom .redes {
    margin-left: 0;
    margin-bottom: 0rem;
  }
}
.footer-bottom .redes a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 1rem;
}
.footer-bottom .redes a:hover {
  background: #fff;
  color: var(--first-color);
}
.footer-bottom .copy {
  color: #fff;
  font-size: 0.5rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .footer-bottom .copy {
    position: relative;
    margin: 1rem auto;
  }
}
.footer-bottom .contacto-footer {
  padding-right: 10px;
}
.footer-bottom .contacto-footer p {
  color: #fff;
  font-size: 0.5rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .footer-bottom .contacto-footer {
    padding-right: 0;
    text-align: center;
  }
  .footer-bottom .contacto-footer p {
    margin-bottom: 0;
    text-align: center;
  }
}

footer .f2 {
  position: relative;
  background: #f91024;
}
footer .logo-imagen {
  text-align: center;
  padding: 2rem 0 0;
}
footer .logo-imagen img {
  margin: 0 auto;
  width: 12rem;
  max-width: 100%;
}/*# sourceMappingURL=styles.css.map */