@import url("https://use.typekit.net/fcc2qxb.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
  margin-block-start: 0;
  margin-block-end: 0;
}

/*MEDIA QUERYS*/
/*PREFIXES*/
/*IMAGENES*/
/*IMAGENES CLIENTE*/
/*CONTENEDORES*/
.contenedor100 {
  width: 100%;
  height: 100%;
}

.contenedor_w100 {
  width: 100%;
}

.contenedor70 {
  width: 70%;
  height: 75%;
}

.contenedor50 {
  width: 100%;
  height: 50vh;
}

/* BOX SIZING */
.border_box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*ALTURAS*/
.alt15 {
  width: 100vw;
  height: 15vh;
}

.alt20 {
  width: 100vw;
  height: 20vh;
}

.alt27 {
  width: 100vw;
  height: 27vh;
}

.alt30 {
  width: 100vw;
  height: 30vh;
}

.alt40 {
  width: 100vw;
  height: 40vh;
}

.alt50 {
  width: 100vw;
  height: 50vh;
}

.alt60 {
  width: 100vw;
  height: 60vh;
}

.alt75 {
  width: 100vw;
  height: 75vh;
}

.alt80 {
  width: 100vw;
  height: 80vh;
}

.alt85 {
  width: 100vw;
  height: 85vh;
}

.alt100 {
  width: 100vw;
  height: 100vh;
}

.alt125 {
  width: 100vw;
  height: 125vh;
}

.alt140 {
  width: 100vw;
  height: 140vh;
}

.alt160 {
  width: 100vw;
  height: 160vh;
}

.alt200 {
  width: 100vw;
  height: 200vh;
}

/* POSITION */
.rel {
  position: relative;
}

.abs {
  position: absolute;
}

/*ALINEACIONES*/
.centrado_xy {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.centrado_x {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.centrado_y {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.alitem_dcha {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

.aliself_dcha {
  -ms-flex-item-align: flex-end;
  -ms-grid-row-align: flex-end;
  align-self: flex-end;
}

.aliself_izq {
  -ms-flex-item-align: flex-start;
  -ms-grid-row-align: flex-start;
  align-self: flex-start;
}

.texto_centrado {
  text-align: center;
}

/*FLEX*/
.dflex {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.dflexcol {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Z-INDEX */
.z10 {
  z-index: 10;
}

/* skew */
.skew5 {
  transform: skewY(5deg);
}

/*TEXT*/
h1, h2, .btn, .contador {
  font-family: goodlife-brush, sans-serif;
  font-weight: 400;
  font-style: normal;
}

h3, h4, p {
  font-family: goodlife-sans-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-size: 1.6em;
  line-height: 1.3em;
}
@media (min-width: 600px) {
  p {
    font-size: 2em;
    line-height: 1.4em;
    margin-block-end: 0em;
  }
}
@media (min-width: 1200px) {
  p {
    font-size: 1.6em;
    line-height: 1.6em;
  }
}

h4 {
  font-size: 1.8em;
}

h1, h2, h3, h4, h5, p, a {
  margin-block-start: 0;
}

/*BOTONES*/
.btn {
  min-height: 5vh;
  display: inline-block;
  font-weight: normal;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  padding: 1.2vh 5vw 1.2vh 1vw;
  font-size: 1.8em;
  text-decoration: none;
  transition: background-image 0.2s ease-in-out;
  box-sizing: border-box;
  width: 60vw;
  height: 7vh;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 600px) {
  .btn {
    font-size: 2.5em;
    width: 40vw;
  }
}
@media (min-width: 900px) {
  .btn {
    font-size: 2em;
    padding: 1.1vh 3vw 1.2vh 1vw;
    width: 30vw;
    height: 6vh;
  }
}
@media (min-width: 1200px) {
  .btn {
    height: auto;
    padding: 1.4vh 3vw 1.2vh 1vw;
  }
}

.btn:focus, .btn_primario:focus-visible {
  outline: none;
}

.btn_primario, .btn_primario:visited {
  background: url(../images/boton-ng.svg) center no-repeat;
  color: white;
}

.btn_primario:hover, .btn_primario:focus-visible, .btn_primario:focus {
  background: url(../images/boton-ng.svg) center no-repeat;
  color: white;
}
@media (min-width: 1200px) {
  .btn_primario:hover, .btn_primario:focus-visible, .btn_primario:focus {
    background: url(../images/boton-rs.svg) center no-repeat;
    color: #000000;
  }
}

.swiper-wrapper .swiper-slide-active h1 {
  -webkit-animation: rotateInUpLeft 0.5s 1 both;
  -moz-animation: rotateInUpLeft 0.5s 1 both;
  -o-animation: rotateInUpLeft 0.5s 1 both;
  animation: rotateInUpLeft 0.5s 1 both;
}
.swiper-wrapper .swiper-slide-active h2 {
  -webkit-animation: rotateInUpRight 0.5s 1 both;
  -moz-animation: rotateInUpRight 0.5s 1 both;
  -o-animation: rotateInUpRight 0.5s 1 both;
  animation: rotateInUpRight 0.5s 1 both;
}
.swiper-wrapper .swiper-slide-active h3, .swiper-wrapper .swiper-slide-active p {
  -webkit-animation: flipInX 0.8s 1 both;
  -moz-animation: flipInX 0.8s 1 both;
  -o-animation: flipInX 0.8s 1 both;
  animation: flipInX 0.8s 1 both;
}
.swiper-wrapper .swiper-slide-active .btn {
  -webkit-animation: flipInY 1s 1 both;
  -moz-animation: flipInY 1s 1 both;
  -o-animation: flipInY 1s 1 both;
  animation: flipInY 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .manchas1 {
  -webkit-animation: manchas1 4s alternate infinite;
  -moz-animation: manchas1 4s alternate infinite;
  -o-animation: manchas1 4s alternate infinite;
  animation: manchas1 4s alternate infinite;
}
@media (min-width: 900px) {
  .swiper-wrapper .swiper-slide-active .manchas1 {
    -webkit-animation: manchas1_dkt 4s alternate infinite;
    -moz-animation: manchas1_dkt 4s alternate infinite;
    -o-animation: manchas1_dkt 4s alternate infinite;
    animation: manchas1_dkt 4s alternate infinite;
  }
}
.swiper-wrapper .swiper-slide-active .manchas2 {
  -webkit-animation: manchas2 5s alternate infinite;
  -moz-animation: manchas2 5s alternate infinite;
  -o-animation: manchas2 5s alternate infinite;
  animation: manchas2 5s alternate infinite;
}
@media (min-width: 900px) {
  .swiper-wrapper .swiper-slide-active .manchas2 {
    -webkit-animation: manchas2_dkt 4s alternate infinite;
    -moz-animation: manchas2_dkt 4s alternate infinite;
    -o-animation: manchas2_dkt 4s alternate infinite;
    animation: manchas2_dkt 4s alternate infinite;
  }
}
.swiper-wrapper .swiper-slide-active .intro_bg {
  -webkit-animation: fadeIn 1s 1 both;
  -moz-animation: fadeIn 1s 1 both;
  -o-animation: fadeIn 1s 1 both;
  animation: fadeIn 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .icon-full, .swiper-wrapper .swiper-slide-active .icon-play, .swiper-wrapper .swiper-slide-active .icon-musicon, .swiper-wrapper .swiper-slide-active .icon-musicoff {
  -webkit-animation: flipInX 1s 1 both;
  -moz-animation: flipInX 1s 1 both;
  -o-animation: flipInX 1s 1 both;
  animation: flipInX 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .icon-full {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.swiper-wrapper .swiper-slide-active .icon-musicon, .swiper-wrapper .swiper-slide-active .icon-musicoff {
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.swiper-wrapper .swiper-slide-active .icon-play {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.swiper-wrapper .swiper-slide-active .boton_swipe {
  -webkit-animation: fadeInUpShort 1s 1 both;
  -moz-animation: fadeInUpShort 1s 1 both;
  -o-animation: fadeInUpShort 1s 1 both;
  animation: fadeInUpShort 1s 1 both;
  -webkit-animation-delay: 1.7s;
  -moz-animation-delay: 1.7s;
  -o-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.swiper-wrapper .swiper-slide-active .icono_swipe {
  -webkit-animation: fadeIn 2s infinite both;
  -moz-animation: fadeIn 2s infinite both;
  -o-animation: fadeIn 2s infinite both;
  animation: fadeIn 2s infinite both;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .portada_imagen {
  -webkit-animation: pan4 8s 1 both;
  -moz-animation: pan4 8s 1 both;
  -o-animation: pan4 8s 1 both;
  animation: pan4 8s 1 both;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .portada_mask {
  -webkit-animation: pan3 1s 1 both;
  -moz-animation: pan3 1s 1 both;
  -o-animation: pan3 1s 1 both;
  animation: pan3 1s 1 both;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .portada_mask::before {
  -webkit-animation: pan2 1s 1 both;
  -moz-animation: pan2 1s 1 both;
  -o-animation: pan2 1s 1 both;
  animation: pan2 1s 1 both;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .portada.manchas1 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .portada.manchas2 {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  -o-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.swiper-wrapper .swiper-slide-active .portada_texto h1 {
  -webkit-animation-delay: 2.6s;
  -moz-animation-delay: 2.6s;
  -o-animation-delay: 2.6s;
  animation-delay: 2.6s;
}
.swiper-wrapper .swiper-slide-active .icon-avanzar {
  -webkit-animation: fadeInLeft 2s infinite both;
  -moz-animation: fadeInLeft 2s infinite both;
  -o-animation: fadeInLeft 2s infinite both;
  animation: fadeInLeft 2s infinite both;
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  -o-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.swiper-wrapper .swiper-slide-active .historia_texto .historia_titulo h2 {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.swiper-wrapper .swiper-slide-active .historia_texto p {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.swiper-wrapper .swiper-slide-active .fecha_imagen {
  -webkit-animation: fadeIn 1s 1 both;
  -moz-animation: fadeIn 1s 1 both;
  -o-animation: fadeIn 1s 1 both;
  animation: fadeIn 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .fecha_mask {
  -webkit-animation: pan3 1s 1 both;
  -moz-animation: pan3 1s 1 both;
  -o-animation: pan3 1s 1 both;
  animation: pan3 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .fecha_mask::before {
  -webkit-animation: pan2 1s 1 both;
  -moz-animation: pan2 1s 1 both;
  -o-animation: pan2 1s 1 both;
  animation: pan2 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .fecha_texto h1 {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.swiper-wrapper .swiper-slide-active .fecha_texto h2 {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.swiper-wrapper .swiper-slide-active .fecha_boton span.addtocalendar {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #days, .swiper-wrapper .swiper-slide-active .contador_numeros #min {
  -webkit-animation: rotateInUpLeft 0.5s 1 both;
  -moz-animation: rotateInUpLeft 0.5s 1 both;
  -o-animation: rotateInUpLeft 0.5s 1 both;
  animation: rotateInUpLeft 0.5s 1 both;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #hours, .swiper-wrapper .swiper-slide-active .contador_numeros #seg {
  -webkit-animation: rotateInUpRight 0.5s 1 both;
  -moz-animation: rotateInUpRight 0.5s 1 both;
  -o-animation: rotateInUpRight 0.5s 1 both;
  animation: rotateInUpRight 0.5s 1 both;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #days {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #hours {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #min {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #seg {
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.swiper-wrapper .swiper-slide-active .contador_texto {
  -webkit-animation: pan1_mancha 1s 1 both;
  -moz-animation: pan1_mancha 1s 1 both;
  -o-animation: pan1_mancha 1s 1 both;
  animation: pan1_mancha 1s 1 both;
}
@media (min-width: 900px) {
  .swiper-wrapper .swiper-slide-active .contador_texto {
    -webkit-animation: pan1_mancha_dkt 1s 1 both;
    -moz-animation: pan1_mancha_dkt 1s 1 both;
    -o-animation: pan1_mancha_dkt 1s 1 both;
    animation: pan1_mancha_dkt 1s 1 both;
  }
}
.swiper-wrapper .swiper-slide-active .contador_texto h1 {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.swiper-wrapper .swiper-slide-active .contador_texto h3 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .fiesta_imagen {
  -webkit-animation: fadeIn 1s 1 both;
  -moz-animation: fadeIn 1s 1 both;
  -o-animation: fadeIn 1s 1 both;
  animation: fadeIn 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .fiesta_mask {
  -webkit-animation: pan3 1s 1 both;
  -moz-animation: pan3 1s 1 both;
  -o-animation: pan3 1s 1 both;
  animation: pan3 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .fiesta_mask::before {
  -webkit-animation: pan2 1s 1 both;
  -moz-animation: pan2 1s 1 both;
  -o-animation: pan2 1s 1 both;
  animation: pan2 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .fiesta_texto h1 {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.swiper-wrapper .swiper-slide-active .fiesta_texto p {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.swiper-wrapper .swiper-slide-active .fiesta_boton .btn {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.swiper-wrapper .swiper-slide-active .hashtag_imagen {
  -webkit-animation: fadeIn 1s 1 both;
  -moz-animation: fadeIn 1s 1 both;
  -o-animation: fadeIn 1s 1 both;
  animation: fadeIn 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .hashtag_mask {
  -webkit-animation: pan3 1s 1 both;
  -moz-animation: pan3 1s 1 both;
  -o-animation: pan3 1s 1 both;
  animation: pan3 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .hashtag_mask::before {
  -webkit-animation: pan2 1s 1 both;
  -moz-animation: pan2 1s 1 both;
  -o-animation: pan2 1s 1 both;
  animation: pan2 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .hashtag_texto h1 {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.swiper-wrapper .swiper-slide-active .hashtag_texto p {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.swiper-wrapper .swiper-slide-active .hashtag_boton .btn {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.swiper-wrapper .swiper-slide-active .playlist_imagen {
  -webkit-animation: fadeIn 1s 1 both;
  -moz-animation: fadeIn 1s 1 both;
  -o-animation: fadeIn 1s 1 both;
  animation: fadeIn 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .playlist_mask {
  -webkit-animation: pan3 1s 1 both;
  -moz-animation: pan3 1s 1 both;
  -o-animation: pan3 1s 1 both;
  animation: pan3 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .playlist_mask::before {
  -webkit-animation: pan2 1s 1 both;
  -moz-animation: pan2 1s 1 both;
  -o-animation: pan2 1s 1 both;
  animation: pan2 1s 1 both;
}
.swiper-wrapper .swiper-slide-active div#playlist .manchas1 {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.swiper-wrapper .swiper-slide-active div#playlist .manchas2 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .playlist_texto h1 {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.swiper-wrapper .swiper-slide-active .playlist_texto p {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.swiper-wrapper .swiper-slide-active .playlist_boton .btn {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.swiper-wrapper .swiper-slide-active .regalo_texto {
  -webkit-animation: pan1_mancha 1s 1 both;
  -moz-animation: pan1_mancha 1s 1 both;
  -o-animation: pan1_mancha 1s 1 both;
  animation: pan1_mancha 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .regalo_texto h1 {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.swiper-wrapper .swiper-slide-active .regalo_texto p {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.swiper-wrapper .swiper-slide-active .regalo_texto a.btn_primario {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  -o-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.swiper-wrapper .swiper-slide-active .confirmacion_imagen {
  -webkit-animation: fadeIn 1s 1 both;
  -moz-animation: fadeIn 1s 1 both;
  -o-animation: fadeIn 1s 1 both;
  animation: fadeIn 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .confirmacion_mask {
  -webkit-animation: pan3 1s 1 both;
  -moz-animation: pan3 1s 1 both;
  -o-animation: pan3 1s 1 both;
  animation: pan3 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .confirmacion_mask::before {
  -webkit-animation: pan2 1s 1 both;
  -moz-animation: pan2 1s 1 both;
  -o-animation: pan2 1s 1 both;
  animation: pan2 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .confirmacion_texto h1 {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.swiper-wrapper .swiper-slide-active .confirmacion_texto p {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  -o-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.swiper-wrapper .swiper-slide-active .confirmacion_boton .btn {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.swiper-wrapper .swiper-slide-active .logo {
  -webkit-animation: flipInX 1s 1 both;
  -moz-animation: flipInX 1s 1 both;
  -o-animation: flipInX 1s 1 both;
  animation: flipInX 1s 1 both;
}
.swiper-wrapper .swiper-slide-active .contenedor_logo p {
  -webkit-animation: fadeInUpShort 1s 1 both;
  -moz-animation: fadeInUpShort 1s 1 both;
  -o-animation: fadeInUpShort 1s 1 both;
  animation: fadeInUpShort 1s 1 both;
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.swiper-wrapper .swiper-slide-active .pdf_boton {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.swiper-wrapper .swiper-slide-active .icon-volver {
  -webkit-animation: flipInY 1s 1 both;
  -moz-animation: flipInY 1s 1 both;
  -o-animation: flipInY 1s 1 both;
  animation: flipInY 1s 1 both;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes pan1 {
  0% {
    background-position: 10% 50%;
    background-size: 120%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 105%;
  }
}
@-moz-keyframes pan1 {
  0% {
    background-position: 10% 50%;
    background-size: 120%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 105%;
  }
}
@keyframes pan1 {
  0% {
    background-position: 10% 50%;
    background-size: 120%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 105%;
  }
}
@-webkit-keyframes pan1_mancha {
  0% {
    background-position: 10% 50%;
    background-size: 110%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: center;
    background-size: 95%;
  }
}
@-moz-keyframes pan1_mancha {
  0% {
    background-position: 10% 50%;
    background-size: 110%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: center;
    background-size: 95%;
  }
}
@keyframes pan1_mancha {
  0% {
    background-position: 10% 50%;
    background-size: 110%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: center;
    background-size: 95%;
  }
}
@-webkit-keyframes pan1_mancha_dkt {
  0% {
    background-position: 10% 50%;
    background-size: 85%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 70%;
  }
}
@-moz-keyframes pan1_mancha_dkt {
  0% {
    background-position: 10% 50%;
    background-size: 85%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 70%;
  }
}
@keyframes pan1_mancha_dkt {
  0% {
    background-position: 10% 50%;
    background-size: 85%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 70%;
  }
}
@-webkit-keyframes pan2 {
  0% {
    background-position: left -20px;
    background-size: 120%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: center top;
    background-size: 105%;
  }
}
@-moz-keyframes pan2 {
  0% {
    background-position: left -20px;
    background-size: 120%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: center top;
    background-size: 105%;
  }
}
@keyframes pan2 {
  0% {
    background-position: left -20px;
    background-size: 120%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: center top;
    background-size: 105%;
  }
}
@-webkit-keyframes pan3 {
  0% {
    background-position: 10% 10%;
    background-size: 105%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 120%;
  }
}
@-moz-keyframes pan3 {
  0% {
    background-position: 10% 10%;
    background-size: 105%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 120%;
  }
}
@keyframes pan3 {
  0% {
    background-position: 10% 10%;
    background-size: 105%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 120%;
  }
}
@-webkit-keyframes pan4 {
  0% {
    background-size: 100%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  10% {
    opacity: 1;
    background-size: 100%;
  }
  13% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 110%;
  }
}
@-moz-keyframes pan4 {
  0% {
    background-size: 100%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  10% {
    opacity: 1;
    background-size: 100%;
  }
  13% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 110%;
  }
}
@keyframes pan4 {
  0% {
    background-size: 100%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  10% {
    opacity: 1;
    background-size: 100%;
  }
  13% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 110%;
  }
}
@-webkit-keyframes pan3dkt {
  0% {
    background-position: 10% 10%;
    background-size: 105%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 115%;
  }
}
@-moz-keyframes pan3dkt {
  0% {
    background-position: 10% 10%;
    background-size: 105%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 115%;
  }
}
@keyframes pan3dkt {
  0% {
    background-position: 10% 10%;
    background-size: 105%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 115%;
  }
}
@-webkit-keyframes manchas1 {
  0% {
    background-size: 95%;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: rotateZ(2deg);
    background-position: -10vw;
    background-size: 100%;
  }
}
@-moz-keyframes manchas1 {
  0% {
    background-size: 95%;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: rotateZ(2deg);
    background-position: -10vw;
    background-size: 100%;
  }
}
@keyframes manchas1 {
  0% {
    background-size: 95%;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: rotateZ(2deg);
    background-position: -10vw;
    background-size: 100%;
  }
}
@-webkit-keyframes manchas2 {
  0% {
    background-size: 100%;
    animation-timing-function: ease-in-out;
    background-position: 20vw;
  }
  100% {
    transform: rotateZ(-5deg);
    background-position: 10vw;
    background-size: 95%;
  }
}
@-moz-keyframes manchas2 {
  0% {
    background-size: 100%;
    animation-timing-function: ease-in-out;
    background-position: 20vw;
  }
  100% {
    transform: rotateZ(-5deg);
    background-position: 10vw;
    background-size: 95%;
  }
}
@keyframes manchas2 {
  0% {
    background-size: 100%;
    animation-timing-function: ease-in-out;
    background-position: 20vw;
  }
  100% {
    transform: rotateZ(-5deg);
    background-position: 10vw;
    background-size: 95%;
  }
}
@-webkit-keyframes manchas1_dkt {
  0% {
    background-size: 95%;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: rotateZ(2deg);
    background-position: -6vw;
    background-size: 100%;
  }
}
@-moz-keyframes manchas1_dkt {
  0% {
    background-size: 95%;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: rotateZ(2deg);
    background-position: -6vw;
    background-size: 100%;
  }
}
@keyframes manchas1_dkt {
  0% {
    background-size: 95%;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: rotateZ(2deg);
    background-position: -6vw;
    background-size: 100%;
  }
}
@-webkit-keyframes manchas2_dkt {
  0% {
    background-size: 100%;
    animation-timing-function: ease-in-out;
    background-position: 5vw;
  }
  100% {
    transform: rotateZ(-10deg);
    background-position: 3vw;
    background-size: 95%;
  }
}
@-moz-keyframes manchas2_dkt {
  0% {
    background-size: 100%;
    animation-timing-function: ease-in-out;
    background-position: 5vw;
  }
  100% {
    transform: rotateZ(-10deg);
    background-position: 3vw;
    background-size: 95%;
  }
}
@keyframes manchas2_dkt {
  0% {
    background-size: 100%;
    animation-timing-function: ease-in-out;
    background-position: 5vw;
  }
  100% {
    transform: rotateZ(-10deg);
    background-position: 3vw;
    background-size: 95%;
  }
}
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 12px;
  height: 12px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: #fed6de;
  font-size: 8px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  position: absolute;
  top: 32vh;
  left: 50vw;
}
@media (min-width: 600px) {
  .loader {
    top: 40vh;
    height: 1.3vh;
  }
}
@media (min-width: 1200px) {
  .loader {
    color: white;
    left: 17.5vw;
  }
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.icon-full {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22white%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 12 0 C 5.4 0 0 5.4 0 12 s 5.4 12 12 12 s 12 -5.4 12 -12 S 18.6 0 12 0 Z M 5.1 4.9 l 5.2 0.1 c 0.1 0 0.1 0.1 0 0.2 L 8.3 7.2 L 10 9 C 9.6 9.2 9.2 9.6 9 10 L 7.2 8.3 l -2 2 c -0.1 0.1 -0.2 0.1 -0.2 0 L 4.9 5.1 C 4.9 5 5 4.8 5.1 4.9 Z M 10.4 19.1 l -5.2 0.1 c -0.1 0 -0.2 -0.1 -0.2 -0.2 L 5 13.7 c 0 -0.1 0.1 -0.1 0.2 0 l 2 2 L 9 14 c 0.3 0.4 0.7 0.8 1.1 1.1 l -1.7 1.7 l 2 2 C 10.5 18.9 10.5 19.1 10.4 19.1 Z M 18.9 19.1 l -5.2 -0.1 c -0.1 0 -0.1 -0.1 0 -0.2 l 2.1 -2.1 L 13.9 15 c 0.4 -0.3 0.8 -0.7 1.1 -1.1 l 1.8 1.8 l 2 -2 c 0.1 -0.1 0.2 -0.1 0.2 0 l 0.1 5.2 C 19.1 19 19 19.1 18.9 19.1 Z M 19 10.3 c 0 0.1 -0.1 0.1 -0.2 0 l -2 -2 L 15 10.1 c -0.3 -0.4 -0.6 -0.8 -1.1 -1.1 l 1.8 -1.8 l -2.1 -2.1 c -0.1 -0.1 -0.1 -0.2 0 -0.2 l 5.2 -0.1 c 0.1 0 0.2 0.1 0.2 0.2 L 19 10.3 Z%22%20%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22black%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 5.1 4.9 L 10.3 5 c 0.1 0 0.1 0.1 0 0.2 l -2 2 L 10 9 c -0.4 0.2 -0.8 0.6 -1 1 L 7.2 8.3 l -2 2 c -0.1 0.1 -0.2 0.1 -0.2 0 L 4.9 5.1 C 4.9 5 5 4.8 5.1 4.9 Z M 10.4 19.1 l -5.2 0.1 C 5.1 19.2 5 19.1 5 19 v -5.3 c 0 -0.1 0.1 -0.1 0.2 0 l 2 2 L 9 14 c 0.3 0.4 0.7 0.8 1.1 1.1 l -1.7 1.7 l 2 2 C 10.5 18.9 10.5 19.1 10.4 19.1 Z M 18.9 19.1 L 13.7 19 c -0.1 0 -0.1 -0.1 0 -0.2 l 2.1 -2.1 L 13.9 15 c 0.4 -0.3 0.8 -0.7 1.1 -1.1 l 1.8 1.8 l 2 -2 c 0.1 -0.1 0.2 -0.1 0.2 0 l 0.1 5.2 C 19.1 19 19 19.1 18.9 19.1 Z M 19 10.3 c 0 0.1 -0.1 0.1 -0.2 0 l -2 -2 L 15 10.1 c -0.3 -0.4 -0.6 -0.8 -1.1 -1.1 l 1.8 -1.8 l -2.1 -2.1 c -0.1 -0.1 -0.1 -0.2 0 -0.2 l 5.2 -0.1 C 18.9 4.8 19 4.9 19 5 V 10.3 Z%22%20%2F%3E%3C%2Fsvg%3E");
}

.icon-musicon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22white%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 12 0 C 5.4 0 0 5.4 0 12 s 5.4 12 12 12 s 12 -5.4 12 -12 S 18.6 0 12 0 Z M 17.3 6.9 v 1 v 6.2 c 0 0 0 0 0 0 c 0 1.2 -1.1 2.2 -2.5 2.2 c -1.4 0 -2.5 -1 -2.5 -2.2 s 1.1 -2.2 2.5 -2.2 c 0.8 0 1.5 0.4 2 0.9 V 8.2 L 9.6 9.2 v 7.2 c 0 0 0 0 0 0.1 c 0 0.1 0 0.1 0 0.2 c 0 1.2 -1.1 2.2 -2.5 2.2 s -2.5 -1 -2.5 -2.2 c 0 -1.2 1.1 -2.2 2.5 -2.2 c 0.8 0 1.5 0.4 2 0.9 V 8.9 v -1 V 6.4 c 0 -0.1 0.1 -0.2 0.2 -0.2 l 7.7 -1 c 0.1 0 0.1 0 0.2 0.1 c 0.1 0 0.1 0.1 0.1 0.2 V 6.9 Z%22%20%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22black%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 17.3 6.9 v 1 v 6.2 l 0 0 c 0 1.2 -1.1 2.2 -2.5 2.2 s -2.5 -1 -2.5 -2.2 s 1.1 -2.2 2.5 -2.2 c 0.8 0 1.5 0.4 2 0.9 V 8.2 l -7.2 1 v 7.2 c 0 0 0 0 0 0.1 s 0 0.1 0 0.2 c 0 1.2 -1.1 2.2 -2.5 2.2 s -2.5 -1 -2.5 -2.2 c 0 -1.2 1.1 -2.2 2.5 -2.2 c 0.8 0 1.5 0.4 2 0.9 V 8.9 v -1 V 6.4 c 0 -0.1 0.1 -0.2 0.2 -0.2 l 7.7 -1 c 0.1 0 0.1 0 0.2 0.1 c 0.1 0 0.1 0.1 0.1 0.2 C 17.3 5.5 17.3 6.9 17.3 6.9 Z%22%20%2F%3E%3C%2Fsvg%3E");
}

.icon-musicoff {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22white%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 12 0 C 5.4 0 0 5.4 0 12 s 5.4 12 12 12 s 12 -5.4 12 -12 S 18.6 0 12 0 Z M 11.1 16.9 c 0 0.1 -0.1 0.2 -0.2 0.2 H 8.3 c -0.1 0 -0.2 -0.1 -0.2 -0.2 V 7.1 C 8.1 7 8.2 7 8.3 7 H 11 c 0.1 0 0.2 0.1 0.2 0.2 V 16.9 Z M 15.9 16.9 c 0 0.1 -0.1 0.2 -0.2 0.2 H 13 c -0.1 0 -0.2 -0.1 -0.2 -0.2 V 7.1 C 12.9 7 12.9 7 13 7 h 2.7 c 0.1 0 0.2 0.1 0.2 0.2 V 16.9 Z%22%20%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22black%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 11.1 16.9 c 0 0.1 -0.1 0.2 -0.2 0.2 H 8.3 c -0.1 0 -0.2 -0.1 -0.2 -0.2 V 7.1 C 8.1 7 8.2 7 8.3 7 H 11 c 0.1 0 0.2 0.1 0.2 0.2 L 11.1 16.9 L 11.1 16.9 Z M 15.9 16.9 c 0 0.1 -0.1 0.2 -0.2 0.2 H 13 c -0.1 0 -0.2 -0.1 -0.2 -0.2 V 7.1 C 12.9 7 12.9 7 13 7 h 2.7 c 0.1 0 0.2 0.1 0.2 0.2 V 16.9 Z%22%20%2F%3E%3C%2Fsvg%3E");
}

.icon-play {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22white%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 12 0 C 5.4 0 0 5.4 0 12 s 5.4 12 12 12 s 12 -5.4 12 -12 S 18.6 0 12 0 Z M 17.5 12.3 L 9.3 17 c -0.2 0.1 -0.4 0 -0.4 -0.2 V 7.4 c 0 -0.2 0.2 -0.3 0.4 -0.2 l 8.1 4.7 C 17.6 11.9 17.6 12.2 17.5 12.3 Z%22%20%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22black%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 17.5 12.3 L 9.3 17 c -0.2 0.1 -0.4 0 -0.4 -0.2 V 7.4 c 0 -0.2 0.2 -0.3 0.4 -0.2 l 8.1 4.7 C 17.6 11.9 17.6 12.2 17.5 12.3 Z%22%20%2F%3E%3C%2Fsvg%3E");
}

.icon-avanzar {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22black%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 12 0 C 5.4 0 0 5.4 0 12 s 5.4 12 12 12 s 12 -5.4 12 -12 S 18.6 0 12 0 Z M 17.7 13.1 l -7.2 6.6 c -0.7 0.6 -1.7 0.6 -2.3 0 c -0.3 -0.3 -0.5 -0.7 -0.5 -1.1 s 0.2 -0.8 0.5 -1.1 l 5.9 -5.4 l -6 -5.4 C 7.8 6.3 7.6 5.9 7.6 5.4 c 0 -0.4 0.2 -0.8 0.5 -1.1 c 0.7 -0.6 1.7 -0.6 2.3 0 l 7.2 6.6 c 0.3 0.3 0.5 0.7 0.5 1.1 C 18.2 12.4 18 12.8 17.7 13.1 Z%22%20%2F%3E%3C%2Fsvg%3E"), url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22white%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 17.7 13.1 l -7.2 6.6 c -0.7 0.6 -1.7 0.6 -2.3 0 c -0.3 -0.3 -0.5 -0.7 -0.5 -1.1 s 0.2 -0.8 0.5 -1.1 l 5.9 -5.4 l -6 -5.4 C 7.8 6.3 7.6 5.9 7.6 5.4 c 0 -0.4 0.2 -0.8 0.5 -1.1 c 0.7 -0.6 1.7 -0.6 2.3 0 l 7.2 6.6 c 0.3 0.3 0.5 0.7 0.5 1.1 C 18.2 12.4 18 12.8 17.7 13.1 Z%22%20%2F%3E%3C%2Fsvg%3E");
}

.icon-volver {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20fill%3D%22black%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20style%3D%22%22%20d%3D%22M 12 24 c 6.6 0 12 -5.4 12 -12 S 18.6 0 12 0 S 0 5.4 0 12 S 5.4 24 12 24 Z M 6.3 10.9 l 7.2 -6.6 c 0.7 -0.6 1.7 -0.6 2.3 0 c 0.3 0.3 0.5 0.7 0.5 1.1 s -0.2 0.8 -0.5 1.1 l -5.9 5.4 l 6 5.4 c 0.3 0.4 0.5 0.8 0.5 1.3 c 0 0.4 -0.2 0.8 -0.5 1.1 c -0.7 0.6 -1.7 0.6 -2.3 0 l -7.2 -6.6 c -0.3 -0.3 -0.5 -0.7 -0.5 -1.1 C 5.8 11.6 6 11.2 6.3 10.9 Z%22%20%2F%3E%3C%2Fsvg%3E");
}

/* INTRO */
@media (min-width: 1200px) {
  div#intro {
    background-color: #fed6de;
  }
}
div#intro .intro_contenedor {
  width: 100vw;
  height: 100vh;
  background: url(../images/bg1.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 600px) {
  div#intro .intro_contenedor {
    background: url(../images/bg1_tblp.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#intro .intro_contenedor {
    width: 35vw;
    height: 100vh;
  }
}
div#intro .intro_botonera {
  margin-top: 10vh;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
div#intro .intro_botonera .boton_intro {
  width: 87vw;
  height: 10vh;
  line-height: 1.1em;
  box-sizing: border-box;
  color: #000000;
  background-color: #fed6de;
  border-radius: 0;
  margin: 15px;
  position: relative;
  padding: 15px;
  padding-left: 70px;
  padding-right: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  cursor: pointer;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#intro .intro_botonera .boton_intro {
    padding-left: 75px;
  }
}
@media (min-width: 600px) {
  div#intro .intro_botonera .boton_intro {
    width: 60vw;
    padding-left: 110px;
  }
}
@media (min-width: 1200px) {
  div#intro .intro_botonera .boton_intro {
    width: 25vw;
    padding-right: 5vw;
  }
}
div#intro .intro_botonera .boton_intro::before, div#intro .intro_botonera .boton_intro::after {
  content: "";
  position: absolute;
  height: 10vh;
  width: 10vw;
  background: url(../images/borde_intro.svg) no-repeat;
}
div#intro .intro_botonera .boton_intro::before {
  left: -3vw;
}
@media (min-width: 1200px) {
  div#intro .intro_botonera .boton_intro::before {
    width: 5vw;
    left: -0.7vw;
  }
}
div#intro .intro_botonera .boton_intro::after {
  right: -6vw;
}
@media (min-width: 600px) {
  div#intro .intro_botonera .boton_intro::after {
    right: -7vw;
  }
}
@media (min-width: 1200px) {
  div#intro .intro_botonera .boton_intro::after {
    right: -9vw;
  }
}
div#intro .intro_botonera .boton_intro:hover {
  background-color: #ffbbc8;
}
div#intro .intro_botonera .boton_intro:focus, div#intro .intro_botonera .boton_intro:visited {
  background-color: black;
}
div#intro .intro_botonera .boton_intro:focus {
  outline: none;
}
div#intro .intro_botonera .boton_swipe {
  height: 10vh;
  color: #000000;
  text-align: center;
  padding: 15px;
  border-radius: 0;
  margin: 15px;
  position: relative;
  padding-left: 15px;
}
@media (min-width: 600px) {
  div#intro .intro_botonera .boton_swipe {
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  div#intro .intro_botonera .boton_swipe {
    min-width: 15vw;
  }
}
div#intro .intro_botonera .icon-full, div#intro .intro_botonera .icon-musicon, div#intro .intro_botonera .icon-musicoff, div#intro .intro_botonera .icon-play {
  background-size: 55px, 55px, contain;
  background-position: 1vh center, 1vh center, center;
  background-repeat: no-repeat;
}
@media (min-width: 600px) {
  div#intro .intro_botonera .icon-full, div#intro .intro_botonera .icon-musicon, div#intro .intro_botonera .icon-musicoff, div#intro .intro_botonera .icon-play {
    background-size: 75px, 75px, contain;
  }
}
div#intro .intro_botonera .icono_swipe {
  height: 18vh;
  width: 35vw;
  margin-top: 2vh;
  background-image: url(../images/swipe-ng.gif);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 600px) {
  div#intro .intro_botonera .icono_swipe {
    height: 15vh;
    width: 40vw;
  }
}
@media (min-width: 1200px) {
  div#intro .intro_botonera .icono_swipe {
    display: none;
  }
}

/* PORTADA */
@media (min-width: 1200px) {
  div#portada {
    background-color: #fed6de;
  }
}
div#portada .portada_contenedor {
  width: 100vw;
  height: 100vh;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor {
    width: 35vw;
    height: 100vh;
  }
}
div#portada .portada_contenedor .portada_imagen {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/acuarela_cliente1.jpg) no-repeat;
  background-size: cover;
  z-index: 100;
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_imagen {
    width: 35vw;
    height: 100vh;
  }
}
div#portada .portada_contenedor .portada_mask {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg2a.png) center top no-repeat;
  background-size: cover;
  z-index: 101;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#portada .portada_contenedor .portada_mask {
    background: url(../images/bg2a_lc.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_mask {
    background: url(../images/bg2a_tblp.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_mask {
    width: 35vw;
    height: 100vh;
  }
}
div#portada .portada_contenedor .portada_mask::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg2.png) center top no-repeat;
  background-size: cover;
  z-index: 102;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#portada .portada_contenedor .portada_mask::before {
    background: url(../images/bg2_lc.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_mask::before {
    background: url(../images/bg2_tblp.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_mask::before {
    width: 35vw;
    height: 100vh;
  }
}
div#portada .portada_contenedor .portada_manchas1 {
  position: absolute;
  width: 20vh;
  height: 20vh;
  top: 0;
  left: 0vh;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: -15vw;
  background-size: contain;
  z-index: 103;
}
div#portada .portada_contenedor .portada_manchas2 {
  position: absolute;
  width: 20vh;
  height: 20vh;
  bottom: 0;
  right: 0vh;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: 15vw;
  background-size: contain;
  z-index: 103;
}
div#portada .portada_contenedor .portada_texto {
  margin-bottom: 8vh;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
  z-index: 103;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#portada .portada_contenedor .portada_texto {
    margin-bottom: 14vh;
  }
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_texto {
    left: 6vw;
    margin-bottom: 4vh;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_texto {
    left: 5vw;
  }
}
div#portada .portada_contenedor .portada_texto h1 {
  font-size: 5.4em;
  line-height: 0.9em;
  color: #000000;
  padding: 2vh;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#portada .portada_contenedor .portada_texto h1 {
    font-size: 6em;
  }
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_texto h1 {
    font-size: 8em;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_texto h1 {
    padding-top: 4vh;
  }
}
div#portada .portada_contenedor .icon-avanzar {
  position: absolute;
  right: 5vw;
  top: 45vh;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 101;
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .icon-avanzar {
    right: 2vw;
  }
}
div#portada .portada_contenedor::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: url(../images/bg1.jpg) no-repeat;
  background-size: cover;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (min-width: 600px) {
  div#portada .portada_contenedor::before {
    background: url(../images/bg1_tblp.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor::before {
    width: 35vw;
    height: 100vh;
    background: none;
  }
}

/* HISTORIA */
@media (min-width: 1200px) {
  div#historia {
    background-color: #fed6de;
  }
}
div#historia .historia_contenedor {
  width: 100vw;
  height: 100vh;
  background: url(../images/bg3.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 600px) {
  div#historia .historia_contenedor {
    background: url(../images/bg3_tblp.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor {
    width: 35vw;
  }
}
div#historia .historia_contenedor .manchas1 {
  position: absolute;
  width: 20vh;
  height: 20vh;
  bottom: 0vh;
  left: 0vh;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: -5vw;
  background-size: contain;
  z-index: 103;
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor .manchas1 {
    background-position: -3vw;
  }
}
div#historia .historia_contenedor .manchas2 {
  position: absolute;
  width: 20vh;
  height: 20vh;
  bottom: 85vh;
  right: 0vh;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: 10vw;
  background-size: contain;
  z-index: 103;
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor .manchas2 {
    bottom: 75vh;
    background-position: 3vw;
  }
}
div#historia .historia_contenedor .historia_texto {
  position: absolute;
  width: 68vw;
  height: 60vh;
  text-align: center;
  box-sizing: border-box;
  padding-left: 5vw;
}
@media (min-width: 600px) {
  div#historia .historia_contenedor .historia_texto {
    width: 40vh;
  }
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor .historia_texto {
    width: 20vw;
    padding-left: 0;
  }
}
div#historia .historia_contenedor .historia_texto .historia_titulo {
  margin-top: 4vh;
  margin-bottom: 4vh;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
div#historia .historia_contenedor .historia_texto .historia_titulo h2 {
  font-size: 4em;
  line-height: 0.8em;
}
@media (min-width: 600px) {
  div#historia .historia_contenedor .historia_texto .historia_titulo h2 {
    font-size: 6em;
  }
}
div#historia .historia_contenedor .historia_texto p {
  color: #000000;
  margin-bottom: 2vh;
  font-size: 1.6em;
}
@media (min-width: 600px) {
  div#historia .historia_contenedor .historia_texto p {
    font-size: 2em;
  }
}

/* FECHA */
@media (min-width: 1200px) {
  div#fecha {
    background-color: #fed6de;
  }
}
div#fecha .fecha_contenedor {
  width: 100vw;
  height: 100vh;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor {
    width: 35vw;
    height: 100vh;
  }
}
div#fecha .fecha_contenedor .fecha_imagen {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/acuarela_cliente2.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 100;
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_imagen {
    background-position: center -4vh;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_imagen {
    width: 35vw;
    height: 100vh;
  }
}
div#fecha .fecha_contenedor .fecha_mask {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg4a.png) center top no-repeat;
  background-size: cover;
  z-index: 101;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fecha .fecha_contenedor .fecha_mask {
    background: url(../images/bg4a_lc.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_mask {
    background: url(../images/bg4a_tblp.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_mask {
    width: 35vw;
    height: 100vh;
  }
}
div#fecha .fecha_contenedor .fecha_mask::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg4.png) no-repeat;
  background-size: cover;
  z-index: 102;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fecha .fecha_contenedor .fecha_mask::before {
    background: url(../images/bg4_lc.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_mask::before {
    background: url(../images/bg4_tblp.png) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_mask::before {
    width: 35vw;
    height: 100vh;
  }
}
div#fecha .fecha_contenedor .manchas1 {
  position: absolute;
  width: 20vh;
  height: 10vh;
  bottom: 40vh;
  left: 0;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: -8vw;
  background-size: contain;
  z-index: 103;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .manchas1 {
    bottom: 30vh;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .manchas1 {
    bottom: 30vh;
    height: 15vh;
    background-position: -4vw;
  }
}
div#fecha .fecha_contenedor .manchas2 {
  position: absolute;
  width: 20vh;
  height: 15vh;
  bottom: 5vh;
  right: 0vh;
  background: url(../images/manchas2.svg) no-repeat;
  background-position: 15vw;
  background-size: contain;
  z-index: 103;
}
div#fecha .fecha_contenedor .fecha_texto {
  position: absolute;
  width: 100vw;
  bottom: 8vh;
  z-index: 104;
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_texto {
    width: 35vw;
  }
}
div#fecha .fecha_contenedor .fecha_texto h1 {
  font-size: 6.5em;
  color: #000000;
  margin-left: 17vw;
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_texto h1 {
    font-size: 10em;
    margin-left: 22vw;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_texto h1 {
    margin-left: 6vw;
  }
}
div#fecha .fecha_contenedor .fecha_texto h2 {
  font-size: 3.5em;
  color: #000000;
  margin-left: 40vw;
  margin-top: -8vw;
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_texto h2 {
    font-size: 6em;
    margin-top: -6vw;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_texto h2 {
    margin-top: -3vw;
    margin-left: 13vw;
  }
}
div#fecha .fecha_contenedor .fecha_boton {
  display: flex;
  justify-content: center;
  margin-top: 5vh;
  z-index: 106;
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_boton {
    margin-top: 3vh;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_boton {
    width: 35vw;
  }
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_boton .addtocalendar a {
    margin-block-end: 0;
  }
}

/* CONTADOR */
@media (min-width: 1200px) {
  div#contador {
    background-color: #fed6de;
  }
}
div#contador .contador_contenedor {
  width: 100vw;
  height: 100vh;
  background: url(../images/bg5.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 600px) {
  div#contador .contador_contenedor {
    background: url(../images/bg5_tblp.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#contador .contador_contenedor {
    width: 35vw;
  }
}
div#contador .contador_contenedor .manchas1 {
  position: absolute;
  width: 20vh;
  height: 20vh;
  top: -8vh;
  left: -5vw;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: -10vw;
  background-size: contain;
  z-index: 103;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
@media (min-width: 600px) {
  div#contador .contador_contenedor .manchas1 {
    top: -5vh;
    left: -2vw;
  }
}
@media (min-width: 1200px) {
  div#contador .contador_contenedor .manchas1 {
    background-position: -2vw;
    left: 0;
  }
}
div#contador .contador_contenedor .manchas2 {
  position: absolute;
  width: 20vh;
  height: 20vh;
  bottom: 2vh;
  right: 0vh;
  background: url(../images/manchas2.svg) no-repeat;
  background-position: 10vw;
  background-size: contain;
  z-index: 103;
}
div#contador .contador_contenedor .contador_texto {
  width: 100%;
  height: 100%;
  background: url(../images/contador.svg) no-repeat center;
}
div#contador .contador_contenedor .contador_texto .contador_titulo h1 {
  font-size: 4.5em;
  text-align: center;
  margin-top: 5vh;
  color: #000000;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
@media (min-width: 600px) {
  div#contador .contador_contenedor .contador_texto .contador_titulo h1 {
    font-size: 6.5em;
  }
}
@media (min-width: 1200px) {
  div#contador .contador_contenedor .contador_texto .contador_titulo h1 {
    font-size: 5em;
  }
}
div#contador .contador_contenedor .contador_numeros {
  height: 68vh;
  padding-bottom: 5vh;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#contador .contador_contenedor .contador_numeros {
    height: 60vh;
  }
}
div#contador .contador_contenedor .contador {
  margin: 1vh 0;
  font-size: 3.5em;
  color: #000000;
  text-align: center;
  line-height: 0.9em;
}
@media (min-width: 600px) {
  div#contador .contador_contenedor .contador {
    font-size: 5em;
  }
}
@media (min-width: 1200px) {
  div#contador .contador_contenedor .contador {
    font-size: 4em;
  }
}
div#contador .contador_contenedor .contador span {
  font-family: goodlife-sans-condensed, sans-serif;
  font-weight: 400;
  font-size: 0.6em;
  color: #000000;
  margin-top: -1vh;
}

/* fiesta */
@media (min-width: 1200px) {
  div#fiesta {
    background-color: #fed6de;
  }
}
div#fiesta .fiesta_contenedor {
  width: 100vw;
  height: 100vh;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor {
    width: 35vw;
    height: 100vh;
  }
}
div#fiesta .fiesta_contenedor .fiesta_imagen {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/acuarela_cliente3.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 100;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fiesta .fiesta_contenedor .fiesta_imagen {
    background-position: center 5vh;
  }
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_imagen {
    background-position: center top;
  }
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_imagen {
    width: 35vw;
    height: 100vh;
    background-position: top;
  }
}
div#fiesta .fiesta_contenedor .fiesta_mask {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg6a.png) center top no-repeat;
  background-size: cover;
  z-index: 101;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fiesta .fiesta_contenedor .fiesta_mask {
    background: url(../images/bg6_lc.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_mask {
    background: url(../images/bg6a_tblp.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_mask {
    width: 35vw;
    height: 100vh;
  }
}
div#fiesta .fiesta_contenedor .fiesta_mask::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg6.png) no-repeat;
  background-size: cover;
  z-index: 102;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fiesta .fiesta_contenedor .fiesta_mask::before {
    background: url(../images/bg6_lc.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_mask::before {
    background: url(../images/bg6_tblp.png) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_mask::before {
    width: 35vw;
    height: 100vh;
  }
}
div#fiesta .fiesta_contenedor .manchas1 {
  position: absolute;
  width: 20vh;
  height: 10vh;
  bottom: 5vh;
  left: -2vh;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: -8vw;
  background-size: contain;
  z-index: 103;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .manchas1 {
    left: 0;
    background-position: -3vw;
  }
}
div#fiesta .fiesta_contenedor .manchas2 {
  position: absolute;
  width: 20vh;
  height: 15vh;
  top: -8vh;
  right: 0vh;
  background: url(../images/manchas2.svg) no-repeat;
  background-position: 15vw;
  background-size: contain;
  z-index: 103;
}
div#fiesta .fiesta_contenedor .fiesta_texto {
  position: absolute;
  width: 100vw;
  padding: 0 5vw;
  bottom: 8vh;
  z-index: 104;
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_texto {
    width: 35vw;
    bottom: 8vh;
    padding: 0 3vw;
  }
}
div#fiesta .fiesta_contenedor .fiesta_texto h1 {
  font-size: 3em;
  color: #000000;
  text-align: center;
  margin-bottom: 2vh;
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_texto h1 {
    font-size: 5em;
  }
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_texto h1 {
    font-size: 4.5em;
    padding: 0;
  }
}
div#fiesta .fiesta_contenedor .fiesta_texto p {
  text-align: center;
}
div#fiesta .fiesta_contenedor .fiesta_boton {
  display: flex;
  justify-content: center;
  margin-top: 3vh;
  z-index: 106;
}

/* hashtag */
@media (min-width: 1200px) {
  div#hashtag {
    background-color: #fed6de;
  }
}
div#hashtag .hashtag_contenedor {
  width: 100vw;
  height: 100vh;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor {
    width: 35vw;
    height: 100vh;
  }
}
div#hashtag .hashtag_contenedor .hashtag_imagen {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/acuarela_cliente4.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 100;
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_imagen {
    background-position: center -2vh;
  }
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_imagen {
    width: 35vw;
    height: 100vh;
    background-position: top;
  }
}
div#hashtag .hashtag_contenedor .hashtag_mask {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg7a.png) center top no-repeat;
  background-size: cover 100%;
  z-index: 101;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#hashtag .hashtag_contenedor .hashtag_mask {
    background: url(../images/bg7a_lc.png) no-repeat;
    background-size: cover 100%;
  }
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_mask {
    background: url(../images/bg7a_tblp.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_mask {
    width: 35vw;
    height: 100vh;
  }
}
div#hashtag .hashtag_contenedor .hashtag_mask::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg7.png) no-repeat;
  background-size: cover 100%;
  z-index: 102;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#hashtag .hashtag_contenedor .hashtag_mask::before {
    background: url(../images/bg7_lc.png) no-repeat;
    background-size: cover 100%;
  }
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_mask::before {
    background: url(../images/bg7_tblp.png) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_mask::before {
    width: 35vw;
    height: 100vh;
  }
}
div#hashtag .hashtag_contenedor .manchas1 {
  position: absolute;
  width: 20vh;
  height: 10vh;
  top: -3vh;
  left: 0;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: -8vw;
  background-size: contain;
  z-index: 103;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .manchas1 {
    top: -1vh;
    background-position: -3vw;
  }
}
div#hashtag .hashtag_contenedor .manchas2 {
  position: absolute;
  width: 20vh;
  height: 12vh;
  bottom: -1vh;
  right: 0vh;
  background: url(../images/manchas2.svg) no-repeat;
  background-position: 20vw;
  background-size: contain;
  z-index: 103;
}
div#hashtag .hashtag_contenedor .hashtag_titulo {
  position: absolute;
  width: 100vw;
  text-align: center;
  top: 6vh;
  z-index: 104;
  text-align: center;
  -webkit-transform: skewY(-6deg);
  -ms-transform: skewY(-6deg);
  transform: skewY(-6deg);
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_titulo {
    width: 35vw;
    top: 5vh;
  }
}
div#hashtag .hashtag_contenedor .hashtag_titulo h1 {
  font-size: 3em;
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_titulo h1 {
    font-size: 5em;
  }
}
div#hashtag .hashtag_contenedor .hashtag_texto {
  position: absolute;
  width: 100vw;
  bottom: 8vh;
  z-index: 104;
  padding: 0 5vw;
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_texto {
    padding: 0 25vw;
    bottom: 5vh;
  }
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_texto {
    width: 35vw;
    padding: 0 5vw;
    bottom: 3vh;
  }
}
div#hashtag .hashtag_contenedor .hashtag_texto p {
  text-align: center;
}
div#hashtag .hashtag_contenedor .hashtag_boton {
  display: flex;
  justify-content: center;
  margin-top: 2vh;
  z-index: 106;
  margin-bottom: 3vh;
}

/* regalo */
@media (min-width: 1200px) {
  div#regalo {
    background-color: #fed6de;
  }
}
div#regalo .regalo_contenedor {
  width: 100vw;
  height: 100vh;
  background: url(../images/bg9.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 600px) {
  div#regalo .regalo_contenedor {
    background: url(../images/bg5_tblp.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor {
    width: 35vw;
  }
}
div#regalo .regalo_contenedor .manchas1 {
  position: absolute;
  width: 20vh;
  height: 15vh;
  top: 3vh;
  left: 0;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: -15vw;
  background-size: contain;
  z-index: 103;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
div#regalo .regalo_contenedor .manchas2 {
  position: absolute;
  width: 20vh;
  height: 15vh;
  bottom: 2vh;
  right: 0vh;
  background: url(../images/manchas2.svg) no-repeat;
  background-position: 20vw;
  background-size: contain;
  z-index: 103;
}
div#regalo .regalo_contenedor .regalo_texto {
  width: 100%;
  height: 100%;
  padding: 10vh 12vw;
  background: url(../images/contador.svg) no-repeat center;
}
@media (min-width: 600px) {
  div#regalo .regalo_contenedor .regalo_texto {
    padding: 10vh 18vw;
  }
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor .regalo_texto {
    width: 90%;
    height: 100%;
    padding: 10vh 3vw 0 3vw;
  }
}
div#regalo .regalo_contenedor .regalo_texto .regalo_titulo {
  width: 100%;
  margin-bottom: 5vh;
}
div#regalo .regalo_contenedor .regalo_texto .regalo_titulo h1 {
  font-size: 3em;
  line-height: 0.85em;
  text-align: center;
  color: #000000;
}
@media (min-width: 600px) {
  div#regalo .regalo_contenedor .regalo_texto .regalo_titulo h1 {
    font-size: 5em;
  }
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor .regalo_texto .regalo_titulo h1 {
    font-size: 4.5em;
    padding: 0 2vw;
  }
}
div#regalo .regalo_contenedor .regalo_texto p {
  text-align: center;
  padding: 0 3vw 5vh 3vw;
}
div#regalo .regalo_contenedor div#datosregalo {
  height: 0vh;
  overflow: hidden;
  transition: height 1s;
  box-sizing: border-box;
}

/* confirmacion */
@media (min-width: 1200px) {
  div#confirmacion {
    background-color: #fed6de;
  }
}
div#confirmacion .confirmacion_contenedor {
  width: 100vw;
  height: 100vh;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor {
    width: 35vw;
    height: 100vh;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_imagen {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/acuarela_cliente6.jpg) no-repeat;
  background-size: cover;
  z-index: 100;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_imagen {
    background-position: center 2vh;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_imagen {
    width: 35vw;
    height: 100vh;
    background-position: top;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_mask {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg10a.png) center top;
  background-size: cover;
  z-index: 101;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_mask {
    background: url(../images/bg10a_lc.png) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_mask {
    background: url(../images/bg10a_tblp.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_mask {
    width: 35vw;
    height: 100vh;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_mask::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg10.png) no-repeat;
  background-size: cover;
  z-index: 102;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_mask::before {
    background: url(../images/bg10_lc.png) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_mask::before {
    background: url(../images/bg10_tblp.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_mask::before {
    width: 35vw;
    height: 100vh;
  }
}
div#confirmacion .confirmacion_contenedor .manchas1 {
  position: absolute;
  width: 20vh;
  height: 13vh;
  bottom: -2vh;
  left: 0vh;
  background: url(../images/manchas1.svg) no-repeat;
  background-position: -8vw;
  background-size: contain;
  z-index: 103;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}
div#confirmacion .confirmacion_contenedor .manchas2 {
  position: absolute;
  width: 20vh;
  height: 15vh;
  top: 0;
  right: 0vh;
  background: url(../images/manchas2.svg) no-repeat;
  background-position: 15vw;
  background-size: contain;
  z-index: 103;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#confirmacion .confirmacion_contenedor .manchas2 {
    top: -10vh;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_texto {
  position: absolute;
  width: 100vw;
  padding: 0 10vw 0 16vw;
  bottom: 8vh;
  text-align: right;
  z-index: 104;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_texto {
    bottom: 10vh;
  }
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_texto {
    padding: 0 12vw 0 30vw;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_texto {
    width: 35vw;
    padding: 0 3vw 0 12vw;
    bottom: 3vh;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_texto h1 {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 0.5vh;
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_texto h1 {
    font-size: 6em;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_texto h1 {
    font-size: 5em;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_boton {
  margin-top: 1.5vh;
  z-index: 106;
}
div#confirmacion .confirmacion_contenedor .confirmacion_boton .btn {
  width: 75vw;
  height: 7vh;
  font-size: 1.6em;
  padding: 1vh 2vw;
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_boton .btn {
    width: 65vw;
    font-size: 2.5em;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_boton .btn {
    width: 22vw;
    font-size: 2em;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_boton .btn_primario, div#confirmacion .confirmacion_contenedor .confirmacion_boton .btn_primario:visited {
  background: url(../images/boton-confirmacion-ng.svg) no-repeat;
}
div#confirmacion .confirmacion_contenedor .confirmacion_boton .btn_primario:hover {
  background: url(../images/boton-confirmacion-rs.svg) no-repeat;
}

/* LOGO */
@media (min-width: 1200px) {
  div#logo {
    background-color: #fed6de;
  }
}
div#logo .logo_contenedor {
  width: 100vw;
  height: 100vh;
  background: url(../images/bg11.jpg) no-repeat;
  background-size: cover;
  text-align: center;
}
@media (min-width: 600px) {
  div#logo .logo_contenedor {
    background: url(../images/bg11_tblp.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#logo .logo_contenedor {
    width: 35vw;
    height: 100vh;
  }
}
div#logo .logo_contenedor .logo {
  width: 55vw;
  height: 10vh;
  background: url(../images/logo_az_andoinvitando.svg) center bottom no-repeat;
  background-size: contain;
  margin-bottom: 1vh;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#logo .logo_contenedor .logo {
    width: 60vw;
  }
}
@media (min-width: 600px) {
  div#logo .logo_contenedor .logo {
    width: 45vw;
  }
}
@media (min-width: 1200px) {
  div#logo .logo_contenedor .logo {
    width: 15vw;
  }
}
div#logo .logo_contenedor .icon-volver {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 20vh;
}
@media (min-width: 600px) {
  div#logo .logo_contenedor .icon-volver {
    width: 50px;
    height: 50px;
  }
}
div#logo .logo_contenedor p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
}
@media (min-width: 600px) {
  div#logo .logo_contenedor p {
    font-size: 1.2em;
  }
}
@media (min-width: 1200px) {
  div#logo .logo_contenedor p {
    font-size: 1em;
  }
}
div#logo .logo_contenedor p > a, div#logo .logo_contenedor p > a:hover {
  color: white;
  text-decoration: none;
  font-size: 0.95em;
}
div#logo .logo_contenedor .pdf_boton {
  margin-top: 30px;
}
div#logo .logo_contenedor .pdf_boton .btn {
  font-size: 1.6em;
  width: 60vw;
}
@media (min-width: 600px) {
  div#logo .logo_contenedor .pdf_boton .btn {
    font-size: 2em;
    width: 35vw;
    padding: 1.8vh 5vw 1.2vh 1vw;
  }
}
@media (min-width: 1200px) {
  div#logo .logo_contenedor .pdf_boton .btn {
    font-size: 1.8em;
    width: 15vw;
    padding: 1.8vh 3vw 1.2vh 1vw;
  }
}

/* playlist */
@media (min-width: 1200px) {
  div#playlist {
    background-color: #fed6de;
  }
}
div#playlist .playlist_contenedor {
  width: 100vw;
  height: 100vh;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor {
    width: 35vw;
    height: 100vh;
  }
}
div#playlist .playlist_contenedor .playlist_imagen {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/acuarela_cliente5.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 100;
}
@media (min-width: 600px) {
  div#playlist .playlist_contenedor .playlist_imagen {
    background-position: center -2vh;
  }
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .playlist_imagen {
    width: 35vw;
    height: 100vh;
    background-position: top;
  }
}
div#playlist .playlist_contenedor .playlist_mask {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg8a.png) center top no-repeat;
  background-size: cover;
  z-index: 101;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#playlist .playlist_contenedor .playlist_mask {
    background: url(../images/bg8a_lc.png) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#playlist .playlist_contenedor .playlist_mask {
    background: url(../images/bg8a_tblp.png) center top no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .playlist_mask {
    width: 35vw;
    height: 100vh;
  }
}
div#playlist .playlist_contenedor .playlist_mask::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg8.png) no-repeat;
  background-size: cover;
  z-index: 102;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#playlist .playlist_contenedor .playlist_mask::before {
    background: url(../images/bg8_lc.png) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 600px) {
  div#playlist .playlist_contenedor .playlist_mask::before {
    background: url(../images/bg8_tblp.png) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .playlist_mask::before {
    width: 35vw;
    height: 100vh;
  }
}
div#playlist .playlist_contenedor .manchas2 {
  position: absolute;
  width: 20vh;
  height: 15vh;
  bottom: 2vh;
  right: 0vh;
  background: url(../images/manchas2.svg) no-repeat;
  background-position: 15vw;
  background-size: contain;
  z-index: 103;
}
div#playlist .playlist_contenedor .playlist_texto {
  position: absolute;
  width: 100vw;
  padding: 0 10vw 0 10vw;
  text-align: left;
  bottom: 8vh;
  z-index: 104;
}
@media (min-width: 600px) {
  div#playlist .playlist_contenedor .playlist_texto {
    padding: 0 20vw 0 10vw;
  }
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .playlist_texto {
    width: 35vw;
    padding: 0 10vw 0 4vw;
  }
}
div#playlist .playlist_contenedor .playlist_texto h1 {
  font-size: 3em;
  line-height: 0.9em;
  color: #000000;
}
@media (min-width: 600px) {
  div#playlist .playlist_contenedor .playlist_texto h1 {
    font-size: 5em;
  }
}
div#playlist .playlist_contenedor .playlist_texto p {
  text-align: left;
}
div#playlist .playlist_contenedor .playlist_boton {
  margin-top: 1.5vh;
  z-index: 106;
}
div#playlist .playlist_contenedor .playlist_boton .btn {
  background-position: left;
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .playlist_boton .btn {
    width: 15vw;
  }
}

body#form {
  background-color: #fed6de;
}

.cognito {
  padding: 0 10px;
}

.cognito .c-forms-form h2 {
  line-height: 1.6em !important;
}

.contenedor_tituloform {
  margin-top: 7vh;
}
.contenedor_tituloform h1 {
  font-size: 3.5em;
}
.contenedor_tituloform h3 {
  font-size: 1.8em !important;
}

html .cog-form__container {
  padding: 0 3vw !important;
  margin-bottom: 3vh !important;
}

html .cog-wrapper, :root:root:root:root:root .cog-wrapper, html .cog-label, :root:root:root:root:root .cog-label {
  color: #000000 !important;
}

html .cog-cognito--styled .cog-button--primary, :root:root:root:root:root .cog-cognito--styled .cog-button--primary {
  background-color: #000000 !important;
  border-color: #000000 !important;
  border-radius: 0 !important;
}

html .cog-cognito--styled .cog-button--secondary, :root:root:root:root:root .cog-cognito--styled .cog-button--secondary {
  min-width: 55px;
  background: white !important;
  border: solid 1px #000000 !important;
  border-radius: 0 !important;
  color: #000000 !important;
  font-family: "Open Sans", Helvetica, sans-serif !important;
}

:root:root:root:root .cog-cognito--styled em {
  font-style: italic !important;
  font-size: 1.1em !important;
  font-weight: 600 !important;
}

:root:root:root:root:root .cog-cognito--styled h2, :root:root:root:root:root .cog-cognito--styled h4 {
  color: #000000 !important;
}

:root:root:root:root:root .cog-cognito--styled h4 {
  font-size: 1em !important;
}

.c-forms-form .c-helptext {
  margin-bottom: 10px;
  padding-top: 0;
}

html .cog-cognito--styled .cog-heading, :root:root:root:root:root .cog-cognito--styled .cog-heading {
  display: none !important;
}

html .cog-label, :root:root:root:root:root .cog-label {
  font-weight: 600;
}

html .cog-input.is-read-only, :root:root:root:root:root .cog-input.is-read-only {
  font-weight: 600;
  font-size: 1.2em;
}

/**
 * AddToCalendar Base CSS
 * http://addtocalendar.com
 */
/* Base */
.addtocalendar var {
  display: none;
}

.addtocalendar {
  position: relative;
  display: inline-block;
}

.atcb-link {
  display: block;
  outline: none !important;
  cursor: pointer;
  font-size: 1em;
  color: white;
}

.atcb-link:hover, .atcb-link:active, .atcb-link:focus {
  color: white;
}

.atcb-link:focus ~ ul,
.atcb-link:active ~ ul,
.atcb-list:hover {
  visibility: visible;
}

.atcb-list {
  width: 60vw;
  font-family: goodlife-sans-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: white;
  visibility: hidden;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 900;
}
@media (min-width: 600px) {
  .atcb-list {
    width: 40vw;
  }
}
@media (min-width: 900px) {
  .atcb-list {
    width: 30vw;
  }
}

.atcb-list,
.atcb-item {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  box-sizing: border-box;
  font-size: 0.8em;
}
@media (min-width: 600px) {
  .atcb-list,
.atcb-item {
    font-size: 0.9em;
  }
}

.atcb-item {
  float: none;
  text-align: left;
  padding-left: 10px;
}

.atcb-item-link {
  text-decoration: none;
  outline: none;
  display: block;
  font-size: 1.3em;
  color: #000000;
}

.atcb-item.hover,
.atcb-item:hover {
  position: relative;
  z-index: 900;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  background-color: #fed6de;
}

/* GIRAR DISPOSITIVO */
@media (max-height: 400px) {
  .swiper-container {
    display: none !important;
  }
}
@media (min-width: 900px) {
  .swiper-container {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .swiper-container {
    display: flex !important;
  }
}

.girardispositivo {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: #fed6de;
  padding: 50px;
  box-sizing: border-box;
  text-align: center;
}
@media (max-height: 400px) {
  .girardispositivo {
    display: flex;
  }
}
@media (min-width: 900px) {
  .girardispositivo {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .girardispositivo {
    display: none;
  }
}

/*Carrusel*/
.swiper-container {
  width: 100vw;
  height: 100vh;
}

.swiper-slide {
  background-size: cover;
}

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