@import url("https://use.typekit.net/fvt8scn.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 {
  font-family: six-hands-chalk, sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2, h3 {
  font-family: flood-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

h4 {
  font-family: basic-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.2em;
  text-transform: uppercase;
}

p, a {
  font-family: basic-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.1em;
  line-height: 1.2em;
}
@media (max-width: 600px) and (min-height: 700px) {
  p, a {
    font-size: 1.2em;
  }
}
@media (min-width: 1200px) {
  p, a {
    font-size: 1.1em;
    line-height: 1.4em;
  }
}

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;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 1vh 2vw;
  font-size: 0.95em;
  line-height: 1.5em;
  text-decoration: none;
  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;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 600px) and (min-height: 700px) {
  .btn {
    padding-top: 1.5vh;
    font-size: 1em;
  }
}
@media (min-width: 600px) {
  .btn {
    height: auto;
    min-height: 2vh;
    width: 25vw;
    padding: 1vh 1.2vh;
    font-size: 1em;
  }
}
@media (min-width: 900px) {
  .btn {
    width: 30vw;
  }
}
@media (min-width: 1200px) {
  .btn {
    height: auto;
    width: 20vw;
  }
}

.btn:focus {
  outline: none;
}

.btn_primario, .btn_primario:visited {
  background-color: #1a1a1a;
  color: white;
}

.btn_primario:hover {
  background-color: white;
  color: #1a1a1a;
}

.btn_secundario, .btn_secundario:visited {
  background-color: #e5e1e3;
  color: #1a1a1a;
}

.btn_secundario:hover {
  background-color: white;
  color: #1a1a1a;
}

@-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 pan1dkt {
  0% {
    background-position: 10% 10%;
    background-size: 120%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 105%;
  }
}
@-moz-keyframes pan1dkt {
  0% {
    background-position: 10% 10%;
    background-size: 120%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 105%;
  }
}
@keyframes pan1dkt {
  0% {
    background-position: 10% 10%;
    background-size: 120%;
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  15% {
    opacity: 1;
  }
  100% {
    background-position: top;
    background-size: 105%;
  }
}
@-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 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 growW {
  from {
    width: 0;
  }
  to {
    width: 105%;
  }
}
@-moz-keyframes growW {
  from {
    width: 0;
  }
  to {
    width: 105%;
  }
}
@keyframes growW {
  from {
    width: 0;
  }
  to {
    width: 105%;
  }
}
@-webkit-keyframes growH {
  0% {
    height: 0;
  }
  100% {
    height: 100vh;
  }
}
@-moz-keyframes growH {
  0% {
    height: 0;
  }
  100% {
    height: 100vh;
  }
}
@keyframes growH {
  0% {
    height: 0;
  }
  100% {
    height: 100vh;
  }
}
@-webkit-keyframes growH55 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 55vh;
    background-position: center 0;
  }
}
@-moz-keyframes growH55 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 55vh;
    background-position: center 0;
  }
}
@keyframes growH55 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 55vh;
    background-position: center 0;
  }
}
@-webkit-keyframes growH60 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 60vh;
    background-position: center 0;
  }
}
@-moz-keyframes growH60 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 60vh;
    background-position: center 0;
  }
}
@keyframes growH60 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 60vh;
    background-position: center 0;
  }
}
@-webkit-keyframes growH70 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 70vh;
    background-position: center 0;
  }
}
@-moz-keyframes growH70 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 70vh;
    background-position: center 0;
  }
}
@keyframes growH70 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 70vh;
    background-position: center 0;
  }
}
@-webkit-keyframes growH75 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 75vh;
    background-position: center 0;
  }
}
@-moz-keyframes growH75 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 75vh;
    background-position: center 0;
  }
}
@keyframes growH75 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 75vh;
    background-position: center 0;
  }
}
@-webkit-keyframes growH80 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 80vh;
    background-position: center 0;
  }
}
@-moz-keyframes growH80 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 80vh;
    background-position: center 0;
  }
}
@keyframes growH80 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
    background-position: center -10vh;
  }
  100% {
    height: 80vh;
    background-position: center 0;
  }
}
@-webkit-keyframes growH92 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
  }
  100% {
    height: 92vh;
  }
}
@-moz-keyframes growH92 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
  }
  100% {
    height: 92vh;
  }
}
@keyframes growH92 {
  0% {
    height: 0;
    animation-timing-function: ease-in-out;
  }
  100% {
    height: 92vh;
  }
}
@-webkit-keyframes growH86W87 {
  0% {
    width: 0;
    height: 0;
    animation-timing-function: ease-in-out;
  }
  50% {
    width: 0;
    height: 86vh;
  }
  100% {
    width: 87vw;
    height: 86vh;
  }
}
@-moz-keyframes growH86W87 {
  0% {
    width: 0;
    height: 0;
    animation-timing-function: ease-in-out;
  }
  50% {
    width: 0;
    height: 86vh;
  }
  100% {
    width: 87vw;
    height: 86vh;
  }
}
@keyframes growH86W87 {
  0% {
    width: 0;
    height: 0;
    animation-timing-function: ease-in-out;
  }
  50% {
    width: 0;
    height: 86vh;
  }
  100% {
    width: 87vw;
    height: 86vh;
  }
}
@-webkit-keyframes growH30W87 {
  0% {
    width: 0;
    height: 0;
    animation-timing-function: ease-in-out;
  }
  50% {
    width: 0;
    height: 86vh;
  }
  100% {
    width: 30vw;
    height: 86vh;
  }
}
@-moz-keyframes growH30W87 {
  0% {
    width: 0;
    height: 0;
    animation-timing-function: ease-in-out;
  }
  50% {
    width: 0;
    height: 86vh;
  }
  100% {
    width: 30vw;
    height: 86vh;
  }
}
@keyframes growH30W87 {
  0% {
    width: 0;
    height: 0;
    animation-timing-function: ease-in-out;
  }
  50% {
    width: 0;
    height: 86vh;
  }
  100% {
    width: 30vw;
    height: 86vh;
  }
}
@-webkit-keyframes growW80 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    width: 80vw;
    background-position: 0 center;
  }
}
@-moz-keyframes growW80 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    width: 80vw;
    background-position: 0 center;
  }
}
@keyframes growW80 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    width: 80vw;
    background-position: 0 center;
  }
}
@-webkit-keyframes growW26 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: 20vw top;
  }
  100% {
    width: 26vw;
    background-position: 0 top;
  }
}
@-moz-keyframes growW26 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: 20vw top;
  }
  100% {
    width: 26vw;
    background-position: 0 top;
  }
}
@keyframes growW26 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: 20vw top;
  }
  100% {
    width: 26vw;
    background-position: 0 top;
  }
}
@-webkit-keyframes growW27 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: -10vw top;
  }
  100% {
    width: 27vw;
    background-position: 0 top;
  }
}
@-moz-keyframes growW27 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: -10vw top;
  }
  100% {
    width: 27vw;
    background-position: 0 top;
  }
}
@keyframes growW27 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: -10vw top;
  }
  100% {
    width: 27vw;
    background-position: 0 top;
  }
}
@-webkit-keyframes growW61 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    width: 61vw;
    background-position: 0 center;
  }
}
@-moz-keyframes growW61 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    width: 61vw;
    background-position: 0 center;
  }
}
@keyframes growW61 {
  0% {
    width: 0;
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    width: 61vw;
    background-position: 0 center;
  }
}
@-webkit-keyframes marco {
  0% {
    width: 0;
    height: 0;
    animation-timing-function: ease-in-out;
  }
  50% {
    width: 100%;
    height: 0;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@-moz-keyframes marco {
  0% {
    width: 0;
    height: 0;
    animation-timing-function: ease-in-out;
  }
  50% {
    width: 100%;
    height: 0;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes marco {
  0% {
    width: 0;
    height: 0;
    animation-timing-function: ease-in-out;
  }
  50% {
    width: 100%;
    height: 0;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@-webkit-keyframes translateLeft {
  0% {
    transform: translateX(80vw);
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    transform: translateX(0);
    background-position: 0 center;
  }
}
@-moz-keyframes translateLeft {
  0% {
    transform: translateX(80vw);
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    transform: translateX(0);
    background-position: 0 center;
  }
}
@keyframes translateLeft {
  0% {
    transform: translateX(80vw);
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    transform: translateX(0);
    background-position: 0 center;
  }
}
@-webkit-keyframes translateRight {
  0% {
    transform: translateX(-80vw);
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    transform: translateX(0vw);
    background-position: 0 center;
  }
}
@-moz-keyframes translateRight {
  0% {
    transform: translateX(-80vw);
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    transform: translateX(0vw);
    background-position: 0 center;
  }
}
@keyframes translateRight {
  0% {
    transform: translateX(-80vw);
    animation-timing-function: ease-in-out;
    background-position: 10vw center;
  }
  100% {
    transform: translateX(0vw);
    background-position: 0 center;
  }
}
@-webkit-keyframes zoomOff {
  0% {
    background-size: 120%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: 110%;
  }
}
@-moz-keyframes zoomOff {
  0% {
    background-size: 120%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: 110%;
  }
}
@keyframes zoomOff {
  0% {
    background-size: 120%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: 110%;
  }
}
@-webkit-keyframes zoomOff_h {
  0% {
    background-size: auto 125%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: auto 117%;
  }
}
@-moz-keyframes zoomOff_h {
  0% {
    background-size: auto 125%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: auto 117%;
  }
}
@keyframes zoomOff_h {
  0% {
    background-size: auto 125%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: auto 117%;
  }
}
@-webkit-keyframes zoomOffhash {
  0% {
    background-size: auto 170%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: auto 158%;
  }
}
@-moz-keyframes zoomOffhash {
  0% {
    background-size: auto 170%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: auto 158%;
  }
}
@keyframes zoomOffhash {
  0% {
    background-size: auto 170%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: auto 158%;
  }
}
@-webkit-keyframes zoomOffhash_dkt {
  0% {
    background-size: auto 158%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: auto 148%;
  }
}
@-moz-keyframes zoomOffhash_dkt {
  0% {
    background-size: auto 158%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: auto 148%;
  }
}
@keyframes zoomOffhash_dkt {
  0% {
    background-size: auto 158%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: auto 148%;
  }
}
@-webkit-keyframes zoomOff-XL {
  0% {
    background-size: 140%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: 115%;
  }
}
@-moz-keyframes zoomOff-XL {
  0% {
    background-size: 140%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: 115%;
  }
}
@keyframes zoomOff-XL {
  0% {
    background-size: 140%;
    animation-timing-function: ease-in-out;
  }
  100% {
    background-size: 115%;
  }
}
@-webkit-keyframes fadeoff {
  0% {
    background-position: left -20px;
    background-size: 150%;
    opacity: 1;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
    background-position: center top;
    background-size: 105%;
  }
}
@-moz-keyframes fadeoff {
  0% {
    background-position: left -20px;
    background-size: 150%;
    opacity: 1;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
    background-position: center top;
    background-size: 105%;
  }
}
@keyframes fadeoff {
  0% {
    background-position: left -20px;
    background-size: 150%;
    opacity: 1;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
    background-position: center top;
    background-size: 105%;
  }
}
@-webkit-keyframes fadeoff1 {
  0% {
    background-position: right -20px;
    background-size: 150%;
    opacity: 1;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
    background-position: center top;
    background-size: 105%;
  }
}
@-moz-keyframes fadeoff1 {
  0% {
    background-position: right -20px;
    background-size: 150%;
    opacity: 1;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
    background-position: center top;
    background-size: 105%;
  }
}
@keyframes fadeoff1 {
  0% {
    background-position: right -20px;
    background-size: 150%;
    opacity: 1;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
    background-position: center top;
    background-size: 105%;
  }
}
@-webkit-keyframes latido {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.3, 1.3, 1.05);
    transform: scale3d(1.3, 1.3, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes latido {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.3, 1.3, 1.05);
    transform: scale3d(1.3, 1.3, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes latido {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.3, 1.3, 1.05);
    transform: scale3d(1.3, 1.3, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.swiper-wrapper .swiper-slide-active h1, .swiper-wrapper .swiper-slide-active h2 {
  -webkit-animation: growW 1s 1 normal both;
  -moz-animation: growW 1s 1 normal both;
  -o-animation: growW 1s 1 normal both;
  animation: growW 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active h3, .swiper-wrapper .swiper-slide-active p {
  -webkit-animation: fadeInUpShort 0.8s 1 normal both;
  -moz-animation: fadeInUpShort 0.8s 1 normal both;
  -o-animation: fadeInUpShort 0.8s 1 normal both;
  animation: fadeInUpShort 0.8s 1 normal both;
}
.swiper-wrapper .swiper-slide-active h4 {
  -webkit-animation: fadeInDownShort 0.8s 1 normal both;
  -moz-animation: fadeInDownShort 0.8s 1 normal both;
  -o-animation: fadeInDownShort 0.8s 1 normal both;
  animation: fadeInDownShort 0.8s 1 normal both;
}
.swiper-wrapper .swiper-slide-active a.btn_primario, .swiper-wrapper .swiper-slide-active a.btn_secundario {
  -webkit-animation: flipInX 1s 1 normal both;
  -moz-animation: flipInX 1s 1 normal both;
  -o-animation: flipInX 1s 1 normal both;
  animation: flipInX 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .intro_bg {
  -webkit-animation: fadeIn 1s 1 normal both;
  -moz-animation: fadeIn 1s 1 normal both;
  -o-animation: fadeIn 1s 1 normal both;
  animation: fadeIn 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .intro_bg::before {
  -webkit-animation: fadeIn 1s 1 normal both;
  -moz-animation: fadeIn 1s 1 normal both;
  -o-animation: fadeIn 1s 1 normal both;
  animation: fadeIn 1s 1 normal 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 .intro_bg::after {
  -webkit-animation: fadeIn 1s 1 normal both;
  -moz-animation: fadeIn 1s 1 normal both;
  -o-animation: fadeIn 1s 1 normal both;
  animation: fadeIn 1s 1 normal 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 .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: fadeInDownShort 1s 1 normal both;
  -moz-animation: fadeInDownShort 1s 1 normal both;
  -o-animation: fadeInDownShort 1s 1 normal both;
  animation: fadeInDownShort 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .icon-full {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.swiper-wrapper .swiper-slide-active .icon-musicon, .swiper-wrapper .swiper-slide-active .icon-musicoff {
  -webkit-animation-delay: 1.9s;
  -moz-animation-delay: 1.9s;
  -o-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.swiper-wrapper .swiper-slide-active .icon-play {
  -webkit-animation-delay: 2.3s;
  -moz-animation-delay: 2.3s;
  -o-animation-delay: 2.3s;
  animation-delay: 2.3s;
}
.swiper-wrapper .swiper-slide-active .boton_swipe {
  -webkit-animation: fadeInDownShort 1s 1 normal both;
  -moz-animation: fadeInDownShort 1s 1 normal both;
  -o-animation: fadeInDownShort 1s 1 normal both;
  animation: fadeInDownShort 1s 1 normal both;
  -webkit-animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
  -o-animation-delay: 2.4s;
  animation-delay: 2.4s;
}
.swiper-wrapper .swiper-slide-active .icono_swipe {
  -webkit-animation: fadeInRightShort 2s infinite normal both;
  -moz-animation: fadeInRightShort 2s infinite normal both;
  -o-animation: fadeInRightShort 2s infinite normal both;
  animation: fadeInRightShort 2s infinite normal both;
  -webkit-animation-delay: 2.9s;
  -moz-animation-delay: 2.9s;
  -o-animation-delay: 2.9s;
  animation-delay: 2.9s;
}
.swiper-wrapper .swiper-slide-active .portada_contenedor::before {
  -webkit-animation: growH 1s 1 normal both;
  -moz-animation: growH 1s 1 normal both;
  -o-animation: growH 1s 1 normal both;
  animation: growH 1s 1 normal both;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .portada_panel {
  -webkit-animation: growH80 1s 1 normal both;
  -moz-animation: growH80 1s 1 normal both;
  -o-animation: growH80 1s 1 normal both;
  animation: growH80 1s 1 normal both;
  -webkit-animation-delay: 2.2s;
  -moz-animation-delay: 2.2s;
  -o-animation-delay: 2.2s;
  animation-delay: 2.2s;
}
.swiper-wrapper .swiper-slide-active .portada_imagen {
  -webkit-animation: growH80 1s 1 normal both;
  -moz-animation: growH80 1s 1 normal both;
  -o-animation: growH80 1s 1 normal both;
  animation: growH80 1s 1 normal both;
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  -o-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
@media (max-width: 600px) and (min-height: 700px) {
  .swiper-wrapper .swiper-slide-active .portada_imagen {
    -webkit-animation: growH75 1s 1 normal both;
    -moz-animation: growH75 1s 1 normal both;
    -o-animation: growH75 1s 1 normal both;
    animation: growH75 1s 1 normal both;
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -o-animation-delay: 2.5s;
    animation-delay: 2.5s;
  }
}
.swiper-wrapper .swiper-slide-active .portada_imagen::before {
  -webkit-animation-name: growH80, zoomOff;
  -moz-animation-name: growH80, zoomOff;
  -o-animation-name: growH80, zoomOff;
  animation-name: growH80, zoomOff;
  -webkit-animation-duration: 0.8s, 6s;
  -moz-animation-duration: 0.8s, 6s;
  -o-animation-duration: 0.8s, 6s;
  animation-duration: 0.8s, 6s;
  -webkit-animation-delay: 3s, 3.8s;
  -moz-animation-delay: 3s, 3.8s;
  -o-animation-delay: 3s, 3.8s;
  animation-delay: 3s, 3.8s;
  -webkit-animation-fill-mode: both, both;
  -moz-animation-fill-mode: both, both;
  -o-animation-fill-mode: both, both;
  animation-fill-mode: both, both;
}
@media (max-width: 600px) and (min-height: 700px) {
  .swiper-wrapper .swiper-slide-active .portada_imagen::before {
    -webkit-animation-name: growH75, zoomOff-XL;
    -moz-animation-name: growH75, zoomOff-XL;
    -o-animation-name: growH75, zoomOff-XL;
    animation-name: growH75, zoomOff-XL;
  }
}
.swiper-wrapper .swiper-slide-active .portada_texto h1 {
  -webkit-animation: growW 1s 1 normal both;
  -moz-animation: growW 1s 1 normal both;
  -o-animation: growW 1s 1 normal both;
  animation: growW 1s 1 normal 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 .portada_texto h2 {
  -webkit-animation: growW 1s 1 normal both;
  -moz-animation: growW 1s 1 normal both;
  -o-animation: growW 1s 1 normal both;
  animation: growW 1s 1 normal 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 .portada_xx {
  -webkit-animation: zoomIn 0.5s 1 normal both;
  -moz-animation: zoomIn 0.5s 1 normal both;
  -o-animation: zoomIn 0.5s 1 normal both;
  animation: zoomIn 0.5s 1 normal both;
  -webkit-animation-delay: 4.2s;
  -moz-animation-delay: 4.2s;
  -o-animation-delay: 4.2s;
  animation-delay: 4.2s;
}
.swiper-wrapper .swiper-slide-active .icon-avanzar {
  -webkit-animation-name: fadeIn, latido;
  -moz-animation-name: fadeIn, latido;
  -o-animation-name: fadeIn, latido;
  animation-name: fadeIn, latido;
  -webkit-animation-duration: 3s, 3.5s;
  -moz-animation-duration: 3s, 3.5s;
  -o-animation-duration: 3s, 3.5s;
  animation-duration: 3s, 3.5s;
  -webkit-animation-delay: 5.5s, 5.5s;
  -moz-animation-delay: 5.5s, 5.5s;
  -o-animation-delay: 5.5s, 5.5s;
  animation-delay: 5.5s, 5.5s;
  -webkit-animation-iteration-count: 1, infinite;
  -moz-animation-iteration-count: 1, infinite;
  -o-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: both, both;
  -moz-animation-fill-mode: both, both;
  -o-animation-fill-mode: both, both;
  animation-fill-mode: both, both;
}
.swiper-wrapper .swiper-slide-active .historia_panel {
  -webkit-animation: fadeInDownShort 0.8s 1 normal both;
  -moz-animation: fadeInDownShort 0.8s 1 normal both;
  -o-animation: fadeInDownShort 0.8s 1 normal both;
  animation: fadeInDownShort 0.8s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .historia_marco {
  -webkit-animation: growH86W87 1s 1 normal both;
  -moz-animation: growH86W87 1s 1 normal both;
  -o-animation: growH86W87 1s 1 normal both;
  animation: growH86W87 1s 1 normal both;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@media (min-width: 1200px) {
  .swiper-wrapper .swiper-slide-active .historia_marco {
    -webkit-animation: growH30W87 1s 1 normal both;
    -moz-animation: growH30W87 1s 1 normal both;
    -o-animation: growH30W87 1s 1 normal both;
    animation: growH30W87 1s 1 normal both;
  }
}
.swiper-wrapper .swiper-slide-active .historia_marco::before {
  -webkit-animation: fadeInUpShort 0.7s 1 normal both;
  -moz-animation: fadeInUpShort 0.7s 1 normal both;
  -o-animation: fadeInUpShort 0.7s 1 normal both;
  animation: fadeInUpShort 0.7s 1 normal both;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.swiper-wrapper .swiper-slide-active .historia_texto .historia_titulo 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 .historia_texto p {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .fecha_imagen {
  -webkit-animation: growH70 1s 1 normal both;
  -moz-animation: growH70 1s 1 normal both;
  -o-animation: growH70 1s 1 normal both;
  animation: growH70 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .fecha_imagen::before {
  -webkit-animation-name: growH70, zoomOff-XL;
  -moz-animation-name: growH70, zoomOff-XL;
  -o-animation-name: growH70, zoomOff-XL;
  animation-name: growH70, zoomOff-XL;
  -webkit-animation-duration: 0.8s, 6s;
  -moz-animation-duration: 0.8s, 6s;
  -o-animation-duration: 0.8s, 6s;
  animation-duration: 0.8s, 6s;
  -webkit-animation-delay: 0.5s, 1.5s;
  -moz-animation-delay: 0.5s, 1.5s;
  -o-animation-delay: 0.5s, 1.5s;
  animation-delay: 0.5s, 1.5s;
  -webkit-animation-fill-mode: both, both;
  -moz-animation-fill-mode: both, both;
  -o-animation-fill-mode: both, both;
  animation-fill-mode: both, both;
}
.swiper-wrapper .swiper-slide-active .fecha_imagen::after {
  -webkit-animation: zoomIn 0.5s 1 normal both;
  -moz-animation: zoomIn 0.5s 1 normal both;
  -o-animation: zoomIn 0.5s 1 normal both;
  animation: zoomIn 0.5s 1 normal both;
  -webkit-animation-delay: 2.1s;
  -moz-animation-delay: 2.1s;
  -o-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
.swiper-wrapper .swiper-slide-active .fecha_texto h1 {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.swiper-wrapper .swiper-slide-active .fecha_boton h3 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .fecha_boton span.addtocalendar {
  -webkit-animation: flipInX 1.5s 1 normal both;
  -moz-animation: flipInX 1.5s 1 normal both;
  -o-animation: flipInX 1.5s 1 normal both;
  animation: flipInX 1.5s 1 normal both;
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.swiper-wrapper .swiper-slide-active .contador_marco {
  -webkit-animation: marco 1s 1 normal both;
  -moz-animation: marco 1s 1 normal both;
  -o-animation: marco 1s 1 normal both;
  animation: marco 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #days, .swiper-wrapper .swiper-slide-active .contador_numeros #min {
  -webkit-animation: fadeInLeftShort 1s 1 normal both;
  -moz-animation: fadeInLeftShort 1s 1 normal both;
  -o-animation: fadeInLeftShort 1s 1 normal both;
  animation: fadeInLeftShort 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #hours, .swiper-wrapper .swiper-slide-active .contador_numeros #seg {
  -webkit-animation: fadeInRightShort 1s 1 normal both;
  -moz-animation: fadeInRightShort 1s 1 normal both;
  -o-animation: fadeInRightShort 1s 1 normal both;
  animation: fadeInRightShort 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #days {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #hours {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #min {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .contador_numeros #seg {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .contador_texto h1 {
  -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_texto h3 {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.swiper-wrapper .swiper-slide-active .ceremonia_imagen {
  -webkit-animation: growW80 1s 1 normal both;
  -moz-animation: growW80 1s 1 normal both;
  -o-animation: growW80 1s 1 normal both;
  animation: growW80 1s 1 normal both;
}
@media (min-width: 1200px) {
  .swiper-wrapper .swiper-slide-active .ceremonia_imagen {
    -webkit-animation: growW27 1s 1 normal both;
    -moz-animation: growW27 1s 1 normal both;
    -o-animation: growW27 1s 1 normal both;
    animation: growW27 1s 1 normal both;
  }
}
.swiper-wrapper .swiper-slide-active .ceremonia_imagen::before {
  -webkit-animation-name: translateLeft, zoomOff;
  -moz-animation-name: translateLeft, zoomOff;
  -o-animation-name: translateLeft, zoomOff;
  animation-name: translateLeft, zoomOff;
  -webkit-animation-duration: 0.8s, 6s;
  -moz-animation-duration: 0.8s, 6s;
  -o-animation-duration: 0.8s, 6s;
  animation-duration: 0.8s, 6s;
  -webkit-animation-delay: 0.5s, 1.5s;
  -moz-animation-delay: 0.5s, 1.5s;
  -o-animation-delay: 0.5s, 1.5s;
  animation-delay: 0.5s, 1.5s;
  -webkit-animation-fill-mode: both, both;
  -moz-animation-fill-mode: both, both;
  -o-animation-fill-mode: both, both;
  animation-fill-mode: both, both;
}
@media (max-width: 600px) and (min-height: 700px) {
  .swiper-wrapper .swiper-slide-active .ceremonia_imagen::before {
    -webkit-animation-name: translateLeft, zoomOff-XL;
    -moz-animation-name: translateLeft, zoomOff-XL;
    -o-animation-name: translateLeft, zoomOff-XL;
    animation-name: translateLeft, zoomOff-XL;
  }
}
@media (min-width: 1200px) {
  .swiper-wrapper .swiper-slide-active .ceremonia_imagen::before {
    -webkit-animation-name: growW27, zoomOff_h;
    -moz-animation-name: growW27, zoomOff_h;
    -o-animation-name: growW27, zoomOff_h;
    animation-name: growW27, zoomOff_h;
    -webkit-animation-duration: 0.8s, 6s;
    -moz-animation-duration: 0.8s, 6s;
    -o-animation-duration: 0.8s, 6s;
    animation-duration: 0.8s, 6s;
    -webkit-animation-delay: 0.3s, 1.3s;
    -moz-animation-delay: 0.3s, 1.3s;
    -o-animation-delay: 0.3s, 1.3s;
    animation-delay: 0.3s, 1.3s;
    -webkit-animation-fill-mode: both, initial;
    -moz-animation-fill-mode: both, initial;
    -o-animation-fill-mode: both, initial;
    animation-fill-mode: both, initial;
  }
}
.swiper-wrapper .swiper-slide-active .ceremonia_imagen::before .ceremonia_boton a.btn {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  -o-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.swiper-wrapper .swiper-slide-active .ceremonia_imagen::after {
  -webkit-animation: zoomIn 0.5s 1 normal both;
  -moz-animation: zoomIn 0.5s 1 normal both;
  -o-animation: zoomIn 0.5s 1 normal both;
  animation: zoomIn 0.5s 1 normal both;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .ceremonia_titulo h2 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .ceremonia_texto h3 {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  -o-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.swiper-wrapper .swiper-slide-active .ceremonia_texto h4 {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  -o-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.swiper-wrapper .swiper-slide-active .ceremonia_texto p {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  -o-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.swiper-wrapper .swiper-slide-active .fiesta_imagen {
  -webkit-animation: growW80 1s 1 normal both;
  -moz-animation: growW80 1s 1 normal both;
  -o-animation: growW80 1s 1 normal both;
  animation: growW80 1s 1 normal both;
}
@media (min-width: 1200px) {
  .swiper-wrapper .swiper-slide-active .fiesta_imagen {
    -webkit-animation: growW27 1s 1 normal both;
    -moz-animation: growW27 1s 1 normal both;
    -o-animation: growW27 1s 1 normal both;
    animation: growW27 1s 1 normal both;
  }
}
.swiper-wrapper .swiper-slide-active .fiesta_imagen::before {
  -webkit-animation-name: translateRight, zoomOff;
  -moz-animation-name: translateRight, zoomOff;
  -o-animation-name: translateRight, zoomOff;
  animation-name: translateRight, zoomOff;
  -webkit-animation-duration: 0.8s, 6s;
  -moz-animation-duration: 0.8s, 6s;
  -o-animation-duration: 0.8s, 6s;
  animation-duration: 0.8s, 6s;
  -webkit-animation-delay: 0.5s, 1.5s;
  -moz-animation-delay: 0.5s, 1.5s;
  -o-animation-delay: 0.5s, 1.5s;
  animation-delay: 0.5s, 1.5s;
  -webkit-animation-fill-mode: both, both;
  -moz-animation-fill-mode: both, both;
  -o-animation-fill-mode: both, both;
  animation-fill-mode: both, both;
}
@media (max-width: 600px) and (min-height: 700px) {
  .swiper-wrapper .swiper-slide-active .fiesta_imagen::before {
    -webkit-animation-name: translateRight, zoomOff-XL;
    -moz-animation-name: translateRight, zoomOff-XL;
    -o-animation-name: translateRight, zoomOff-XL;
    animation-name: translateRight, zoomOff-XL;
  }
}
@media (min-width: 1200px) {
  .swiper-wrapper .swiper-slide-active .fiesta_imagen::before {
    -webkit-animation-name: growW27, zoomOff_h;
    -moz-animation-name: growW27, zoomOff_h;
    -o-animation-name: growW27, zoomOff_h;
    animation-name: growW27, zoomOff_h;
    -webkit-animation-duration: 0.8s, 6s;
    -moz-animation-duration: 0.8s, 6s;
    -o-animation-duration: 0.8s, 6s;
    animation-duration: 0.8s, 6s;
    -webkit-animation-delay: 0.3s, 1.3s;
    -moz-animation-delay: 0.3s, 1.3s;
    -o-animation-delay: 0.3s, 1.3s;
    animation-delay: 0.3s, 1.3s;
    -webkit-animation-fill-mode: both, initial;
    -moz-animation-fill-mode: both, initial;
    -o-animation-fill-mode: both, initial;
    animation-fill-mode: both, initial;
  }
}
.swiper-wrapper .swiper-slide-active .fiesta_marco {
  -webkit-animation: growH86W87 1s 1 normal both;
  -moz-animation: growH86W87 1s 1 normal both;
  -o-animation: growH86W87 1s 1 normal both;
  animation: growH86W87 1s 1 normal both;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@media (min-width: 1200px) {
  .swiper-wrapper .swiper-slide-active .fiesta_marco {
    -webkit-animation: growH30W87 1s 1 normal both;
    -moz-animation: growH30W87 1s 1 normal both;
    -o-animation: growH30W87 1s 1 normal both;
    animation: growH30W87 1s 1 normal both;
  }
}
.swiper-wrapper .swiper-slide-active .fiesta_marco::before {
  -webkit-animation: zoomIn 0.5s 1 normal both;
  -moz-animation: zoomIn 0.5s 1 normal both;
  -o-animation: zoomIn 0.5s 1 normal both;
  animation: zoomIn 0.5s 1 normal both;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .fiesta_texto h1 {
  -webkit-animation: fadeInDownShort 1.6s 1 normal both;
  -moz-animation: fadeInDownShort 1.6s 1 normal both;
  -o-animation: fadeInDownShort 1.6s 1 normal both;
  animation: fadeInDownShort 1.6s 1 normal both;
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  -o-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.swiper-wrapper .swiper-slide-active .fiesta_texto h3 {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  -o-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.swiper-wrapper .swiper-slide-active .fiesta_texto h4 {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  -o-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.swiper-wrapper .swiper-slide-active .fiesta_texto p {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  -o-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.swiper-wrapper .swiper-slide-active .fiesta_boton a.btn {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  -o-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.swiper-wrapper .swiper-slide-active .hashtag_marco {
  -webkit-animation: marco 1s 1 normal both;
  -moz-animation: marco 1s 1 normal both;
  -o-animation: marco 1s 1 normal both;
  animation: marco 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .hashtag_imagen {
  -webkit-animation-name: pan3, zoomOffhash;
  -moz-animation-name: pan3, zoomOffhash;
  -o-animation-name: pan3, zoomOffhash;
  animation-name: pan3, zoomOffhash;
  -webkit-animation-duration: 3s, 6s;
  -moz-animation-duration: 3s, 6s;
  -o-animation-duration: 3s, 6s;
  animation-duration: 3s, 6s;
  -webkit-animation-delay: 0s, 1.5s;
  -moz-animation-delay: 0s, 1.5s;
  -o-animation-delay: 0s, 1.5s;
  animation-delay: 0s, 1.5s;
  -webkit-animation-fill-mode: both, both;
  -moz-animation-fill-mode: both, both;
  -o-animation-fill-mode: both, both;
  animation-fill-mode: both, both;
}
@media (min-width: 1200px) {
  .swiper-wrapper .swiper-slide-active .hashtag_imagen {
    -webkit-animation-name: pan3, zoomOffhash_dkt;
    -moz-animation-name: pan3, zoomOffhash_dkt;
    -o-animation-name: pan3, zoomOffhash_dkt;
    animation-name: pan3, zoomOffhash_dkt;
  }
}
.swiper-wrapper .swiper-slide-active .hashtag_titulo 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: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .hashtag_boton a.btn {
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
  -o-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.swiper-wrapper .swiper-slide-active .playlist_imagen {
  -webkit-animation: growH55 1s 1 normal both;
  -moz-animation: growH55 1s 1 normal both;
  -o-animation: growH55 1s 1 normal both;
  animation: growH55 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .playlist_imagen::before {
  -webkit-animation-name: growH55, zoomOff;
  -moz-animation-name: growH55, zoomOff;
  -o-animation-name: growH55, zoomOff;
  animation-name: growH55, zoomOff;
  -webkit-animation-duration: 0.8s, 6s;
  -moz-animation-duration: 0.8s, 6s;
  -o-animation-duration: 0.8s, 6s;
  animation-duration: 0.8s, 6s;
  -webkit-animation-delay: 0.5s, 1.5s;
  -moz-animation-delay: 0.5s, 1.5s;
  -o-animation-delay: 0.5s, 1.5s;
  animation-delay: 0.5s, 1.5s;
  -webkit-animation-fill-mode: both, both;
  -moz-animation-fill-mode: both, both;
  -o-animation-fill-mode: both, both;
  animation-fill-mode: both, both;
}
@media (max-width: 600px) and (min-height: 700px) {
  .swiper-wrapper .swiper-slide-active .playlist_imagen::before {
    -webkit-animation-name: growH55, zoomOff-XL;
    -moz-animation-name: growH55, zoomOff-XL;
    -o-animation-name: growH55, zoomOff-XL;
    animation-name: growH55, zoomOff-XL;
  }
}
.swiper-wrapper .swiper-slide-active .playlist_imagen::after {
  -webkit-animation: fadeInUpShort 1s 1 normal both;
  -moz-animation: fadeInUpShort 1s 1 normal both;
  -o-animation: fadeInUpShort 1s 1 normal both;
  animation: fadeInUpShort 1s 1 normal both;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .playlist_titulo h1 {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.swiper-wrapper .swiper-slide-active .playlist_texto h2 {
  -webkit-animation: fadeInDownShort 0.8s 1 normal both;
  -moz-animation: fadeInDownShort 0.8s 1 normal both;
  -o-animation: fadeInDownShort 0.8s 1 normal both;
  animation: fadeInDownShort 0.8s 1 normal both;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active a.btn {
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  -o-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.swiper-wrapper .swiper-slide-active .regalo_panel {
  -webkit-animation: fadeInDownShort 0.8s 1 normal both;
  -moz-animation: fadeInDownShort 0.8s 1 normal both;
  -o-animation: fadeInDownShort 0.8s 1 normal both;
  animation: fadeInDownShort 0.8s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .regalo_marco {
  -webkit-animation: growH86W87 1s 1 normal both;
  -moz-animation: growH86W87 1s 1 normal both;
  -o-animation: growH86W87 1s 1 normal both;
  animation: growH86W87 1s 1 normal both;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@media (min-width: 1200px) {
  .swiper-wrapper .swiper-slide-active .regalo_marco {
    -webkit-animation: growH30W87 1s 1 normal both;
    -moz-animation: growH30W87 1s 1 normal both;
    -o-animation: growH30W87 1s 1 normal both;
    animation: growH30W87 1s 1 normal both;
  }
}
.swiper-wrapper .swiper-slide-active .regalo_marco::before {
  -webkit-animation: fadeInDownShort 0.7s 1 normal both;
  -moz-animation: fadeInDownShort 0.7s 1 normal both;
  -o-animation: fadeInDownShort 0.7s 1 normal both;
  animation: fadeInDownShort 0.7s 1 normal both;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .regalo_texto h3 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .regalo_texto p {
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  -o-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.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_panel {
  -webkit-animation: growH92 1s 1 normal both;
  -moz-animation: growH92 1s 1 normal both;
  -o-animation: growH92 1s 1 normal both;
  animation: growH92 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .confirmacion_imagen {
  -webkit-animation: growH60 1s 1 normal both;
  -moz-animation: growH60 1s 1 normal both;
  -o-animation: growH60 1s 1 normal both;
  animation: growH60 1s 1 normal both;
  -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_imagen::before {
  -webkit-animation-name: growH60, zoomOff;
  -moz-animation-name: growH60, zoomOff;
  -o-animation-name: growH60, zoomOff;
  animation-name: growH60, zoomOff;
  -webkit-animation-duration: 0.8s, 6s;
  -moz-animation-duration: 0.8s, 6s;
  -o-animation-duration: 0.8s, 6s;
  animation-duration: 0.8s, 6s;
  -webkit-animation-delay: 1s, 1.5s;
  -moz-animation-delay: 1s, 1.5s;
  -o-animation-delay: 1s, 1.5s;
  animation-delay: 1s, 1.5s;
  -webkit-animation-fill-mode: both, both;
  -moz-animation-fill-mode: both, both;
  -o-animation-fill-mode: both, both;
  animation-fill-mode: both, both;
}
@media (max-width: 600px) and (min-height: 700px) {
  .swiper-wrapper .swiper-slide-active .confirmacion_imagen::before {
    -webkit-animation-name: growH60, zoomOff-XL;
    -moz-animation-name: growH60, zoomOff-XL;
    -o-animation-name: growH60, zoomOff-XL;
    animation-name: growH60, zoomOff-XL;
  }
}
.swiper-wrapper .swiper-slide-active .confirmacion_panel::before {
  -webkit-animation: zoomIn 0.5s 1 normal both;
  -moz-animation: zoomIn 0.5s 1 normal both;
  -o-animation: zoomIn 0.5s 1 normal both;
  animation: zoomIn 0.5s 1 normal both;
  -webkit-animation-delay: 1.9s;
  -moz-animation-delay: 1.9s;
  -o-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.swiper-wrapper .swiper-slide-active .confirmacion_titulo 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: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .confirmacion_boton 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 .logo {
  -webkit-animation: flipInX 1s 1 normal both;
  -moz-animation: flipInX 1s 1 normal both;
  -o-animation: flipInX 1s 1 normal both;
  animation: flipInX 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .contenedor_logo p {
  -webkit-animation: fadeInUpShort 1s 1 normal both;
  -moz-animation: fadeInUpShort 1s 1 normal both;
  -o-animation: fadeInUpShort 1s 1 normal both;
  animation: fadeInUpShort 1s 1 normal 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 normal both;
  -moz-animation: flipInY 1s 1 normal both;
  -o-animation: flipInY 1s 1 normal both;
  animation: flipInY 1s 1 normal both;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

.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: #1a1a1a;
  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: 12px;
  }
}

.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%22rgb(238, 222, 222)%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");
}

.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%22rgb(229, 225, 227)%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 */
div#intro div#intro_contenedor {
  width: 100vw;
  height: 100vh;
  background: url(../images/grafito_cliente0.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 600px) {
  div#intro div#intro_contenedor {
    background: url(../images/grafito_cliente0_tblp.jpg) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1200px) {
  div#intro div#intro_contenedor {
    width: 35vw;
  }
}
div#intro .intro_bg {
  width: 100%;
  height: 100%;
  background-color: #1a1a1a98;
}
div#intro .intro_bg::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100vh;
}
div#intro .intro_bg::after {
  content: "";
  position: absolute;
  width: 25vw;
  height: 15vh;
  bottom: 0;
  left: 5vw;
  background-image: url(../images/asteriscos-bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 600px) {
  div#intro .intro_bg::after {
    width: 16vw;
  }
}
@media (min-width: 900px) {
  div#intro .intro_bg::after {
    width: 10vw;
  }
}
@media (min-width: 1200px) {
  div#intro .intro_bg::after {
    width: 6vw;
  }
}
div#intro .intro_botonera {
  width: 100vw;
  margin-top: 10vh;
}
@media (min-width: 1200px) {
  div#intro .intro_botonera {
    width: 22vw;
  }
}
div#intro .intro_botonera .boton_intro {
  width: 88vw;
  height: 15vh;
  color: #1a1a1a;
  background-color: #e9d6d6;
  padding: 15px;
  border-radius: 0;
  margin: 10px;
  position: relative;
  padding-left: 75px;
  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;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#intro .intro_botonera .boton_intro {
    padding-left: 85px;
  }
}
@media (min-width: 600px) {
  div#intro .intro_botonera .boton_intro {
    width: 60vw;
    padding-left: 90px;
  }
}
@media (min-width: 1200px) {
  div#intro .intro_botonera .boton_intro {
    width: 22vw;
  }
}
div#intro .intro_botonera .boton_intro:hover {
  background-color: #fde3d6;
}
div#intro .intro_botonera .boton_intro:focus, div#intro .intro_botonera .boton_intro:visited {
  background-color: black;
}
div#intro .intro_botonera .boton_swipe {
  height: 10vh;
  width: 88vw;
  color: white;
  text-align: center;
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 0;
  margin: 10px;
  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 {
    width: 22vw;
  }
}
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: 2vh center, 2vh center, center;
  background-repeat: no-repeat;
}
div#intro .intro_botonera .icono_swipe {
  height: 12vh;
  width: 100%;
  margin-top: 5vh;
  margin-right: 15vw;
  background-image: url(../images/swipe-bl.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 600px) {
  div#intro .intro_botonera .icono_swipe {
    height: 10vh;
  }
}
@media (min-width: 1200px) {
  div#intro .intro_botonera .icono_swipe {
    display: none;
  }
}

/* PORTADA */
div#portada .portada_contenedor {
  width: 100vw;
  height: 100vh;
  background: #e5e1e3;
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor {
    width: 35vw;
  }
}
div#portada .portada_contenedor .portada_imagen {
  position: absolute;
  z-index: 100;
  top: 20vh;
  right: 0;
  width: 80vw;
  height: 80vh;
  background-color: white;
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_imagen {
    width: 30vw;
    right: auto;
    margin-left: 5vw;
  }
}
@media (max-width: 600px) and (min-height: 700px) {
  div#portada .portada_contenedor .portada_imagen {
    top: 17vh;
  }
}
div#portada .portada_contenedor .portada_imagen::before {
  position: absolute;
  content: "";
  z-index: 101;
  top: 0;
  right: 0;
  width: 80vw;
  height: 80vh;
  background: url(../images/grafito_cliente1.jpg) no-repeat;
  background-position: center;
  background-size: 120%;
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_imagen::before {
    background: url(../images/grafito_cliente1_tblp.jpg) no-repeat;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_imagen::before {
    width: 30vw;
    right: auto;
  }
}
div#portada .portada_contenedor .portada_panel {
  position: absolute;
  top: -5vh;
  z-index: 100;
  width: 80vw;
  height: 85vh;
  background: #e9d6d6;
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_panel {
    width: 30vw;
  }
}
div#portada .portada_contenedor .portada_panel::after {
  position: absolute;
  content: "";
  background: url(../images/borde_panelrosa.svg) no-repeat left bottom;
  background-size: contain;
  width: 80vw;
  height: 10vh;
  bottom: -2vh;
  left: 0;
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_panel::after {
    height: 4vh;
    background-repeat: repeat-x;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_panel::after {
    width: 30vw;
  }
}
div#portada .portada_contenedor .portada_xx {
  position: absolute;
  z-index: 102;
  bottom: 8vh;
  left: 4vw;
  width: 22vw;
  height: 10vh;
  background: url(../images/xx-bl.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_xx {
    width: 18vw;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_xx {
    width: 5vw;
    bottom: 6vh;
    left: auto;
    margin-left: 2vw;
  }
}
div#portada .portada_contenedor .portada_texto {
  position: absolute;
  z-index: 103;
  top: 8vh;
  left: 10vw;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#portada .portada_contenedor .portada_texto {
    top: 6.4vh;
  }
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_texto {
    left: 6vw;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_texto {
    left: auto;
    margin-left: 2vw;
    top: 6vh;
  }
}
div#portada .portada_contenedor .portada_texto h1 {
  font-size: 4.6em;
  line-height: 0.9em;
  color: white;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
  white-space: nowrap;
  overflow: hidden;
  padding-top: 2vh;
  margin-bottom: 0.5vh;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#portada .portada_contenedor .portada_texto h1 {
    font-size: 4.8em;
  }
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_texto h1 {
    font-size: 7em;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_texto h1 {
    font-size: 6em;
    padding-top: 4vh;
  }
}
div#portada .portada_contenedor .portada_texto h2 {
  font-size: 3.6em;
  color: #1a1a1a;
  padding-left: 11vw;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
  margin-top: -3.2vh;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#portada .portada_contenedor .portada_texto h2 {
    padding-left: 7vw;
    font-size: 4.1em;
    margin-top: -3vh;
  }
}
@media (min-width: 600px) {
  div#portada .portada_contenedor .portada_texto h2 {
    font-size: 5em;
  }
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor .portada_texto h2 {
    font-size: 4em;
    padding-left: 6vh;
    margin-top: -3.5vh;
  }
}
div#portada .portada_contenedor .icon-avanzar {
  position: absolute;
  right: 5vw;
  top: 55vh;
  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: auto;
    margin-left: 31vw;
  }
}
div#portada .portada_contenedor::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: #1a1a1a;
  bottom: 0;
}
@media (min-width: 1200px) {
  div#portada .portada_contenedor::before {
    width: 35vw;
  }
}

/* HISTORIA */
div#historia {
  width: 100vw;
  height: 100vh;
}
div#historia .historia_contenedor {
  width: 100vw;
  height: 100vh;
  background: url(../images/grafito_cliente2.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor {
    position: relative;
    width: 35vw;
  }
}
div#historia .historia_contenedor .historia_panel {
  width: 80vw;
  height: 65vh;
  background: #e5e1e3 url(../images/asteriscos-ng.svg) no-repeat;
  background-position: 90% 95%;
  background-size: 50px;
}
@media (min-width: 600px) {
  div#historia .historia_contenedor .historia_panel {
    background-size: 80px;
    background-position: 90% 90%;
  }
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor .historia_panel {
    width: 28vw;
  }
}
div#historia .historia_contenedor .historia_panel::after {
  position: absolute;
  content: "";
  background: url(../images/borde_panel.svg) no-repeat center bottom;
  background-size: contain;
  width: 80vw;
  height: 10vh;
  bottom: -2vh;
}
@media (min-width: 600px) {
  div#historia .historia_contenedor .historia_panel::after {
    height: 3vh;
    background-repeat: repeat-x;
  }
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor .historia_panel::after {
    width: 28vw;
  }
}
div#historia .historia_contenedor .historia_marco {
  position: absolute;
  left: 13vw;
  width: 87vw;
  height: 86vh;
  border: 2.5px solid #1a1a1a;
  border-right: none;
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor .historia_marco {
    width: 27vw;
    left: 5vw;
  }
}
div#historia .historia_contenedor .historia_marco::before {
  position: absolute;
  content: "";
  top: -4vh;
  left: -8vw;
  width: 40vw;
  height: 20vh;
  background: url(../images/comas-bl.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 600px) {
  div#historia .historia_contenedor .historia_marco::before {
    height: 18vh;
  }
}
@media (min-width: 900px) {
  div#historia .historia_contenedor .historia_marco::before {
    left: -2vw;
  }
}
div#historia .historia_contenedor .historia_texto {
  position: absolute;
  width: 68vw;
  height: 60vh;
  text-align: left;
  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: 22vw;
    padding-left: 2vw;
  }
}
div#historia .historia_contenedor .historia_texto .historia_titulo {
  margin-bottom: 6vh;
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor .historia_texto .historia_titulo {
    margin-bottom: 8vh;
  }
}
div#historia .historia_contenedor .historia_texto .historia_titulo h2 {
  font-size: 3em;
  line-height: 0.8em;
  padding-top: 3vh;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
@media (min-width: 600px) {
  div#historia .historia_contenedor .historia_texto .historia_titulo h2 {
    font-size: 5em;
  }
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor .historia_texto .historia_titulo h2 {
    font-size: 4em;
  }
}
div#historia .historia_contenedor .historia_texto p {
  color: #1a1a1a;
  padding-left: 3vw;
  line-height: 1.4em;
}
@media (min-width: 1200px) {
  div#historia .historia_contenedor .historia_texto p {
    padding-left: 0;
  }
}

/* FECHA */
div#fecha .fecha_contenedor {
  width: 100vw;
  height: 100vh;
  background: #fde3d6;
  text-align: left;
  padding: 10vh 10vw;
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor {
    width: 35vw;
    padding: 10vh 3vw;
  }
}
div#fecha .fecha_contenedor .fecha_imagen {
  width: 80vw;
  height: 70vh;
  background-color: white;
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_imagen {
    width: 29vw;
  }
}
div#fecha .fecha_contenedor .fecha_imagen::before {
  content: "";
  position: absolute;
  width: 80vw;
  height: 70vh;
  background: url(../images/grafito_cliente3.jpg) no-repeat;
  background-size: 105% auto;
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_imagen::before {
    background: url(../images/grafito_cliente3_tblp.jpg) no-repeat;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_imagen::before {
    width: 29vw;
  }
}
div#fecha .fecha_contenedor .fecha_imagen::after {
  content: "";
  position: absolute;
  width: 30vw;
  height: 15vw;
  top: 6.5vh;
  background: url(../images/xx-bl.svg) no-repeat 1vw;
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_imagen::after {
    height: 8vh;
  }
}
div#fecha .fecha_contenedor .fecha_texto {
  position: absolute;
  right: 6vw;
  top: 50vh;
  text-align: left;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fecha .fecha_contenedor .fecha_texto {
    top: 60vh;
  }
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_texto {
    top: 55vh;
    right: 8vw;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_texto {
    top: 57vh;
    right: auto;
    padding-left: 13vw;
  }
}
div#fecha .fecha_contenedor .fecha_texto h1 {
  font-size: 8em;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_texto h1 {
    font-size: 14em;
  }
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_texto h1 {
    font-size: 10em;
  }
}
div#fecha .fecha_contenedor .fecha_boton {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin-top: 5vh;
  z-index: 101;
}
div#fecha .fecha_contenedor .fecha_boton .btn {
  width: 35vw;
  margin-top: 1vh;
}
@media (min-width: 1200px) {
  div#fecha .fecha_contenedor .fecha_boton .btn {
    width: 15vw !important;
  }
}
div#fecha .fecha_contenedor .fecha_boton h3 {
  font-size: 2.2em;
  color: #1a1a1a;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fecha .fecha_contenedor .fecha_boton h3 {
    font-size: 2.8em;
  }
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .fecha_boton h3 {
    font-size: 4em;
  }
}
@media (min-width: 900px) {
  div#fecha .fecha_contenedor .fecha_boton h3 {
    font-size: 3.5em;
  }
}
@media (min-width: 600px) {
  div#fecha .fecha_contenedor .addtocalendar a {
    margin-block-end: 0;
  }
}

/* CONTADOR */
div#contador .contador_contenedor {
  width: 100vw;
  height: 100vh;
  background: url(../images/grafito_cliente2.jpg) no-repeat;
  background-size: cover;
  padding: 30px;
}
@media (min-width: 1200px) {
  div#contador .contador_contenedor {
    width: 35vw;
  }
}
div#contador .contador_contenedor .contador_marco {
  width: 100%;
  height: 100%;
  border: solid 1px white;
}
div#contador .contador_contenedor .contador_texto {
  margin-top: 1.5vh;
}
div#contador .contador_contenedor .contador_texto .contador_titulo h1 {
  width: auto;
  font-size: 4em;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  -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: 5.5em;
  }
}
div#contador .contador_contenedor .contador_texto h3 {
  font-size: 1.5em;
  text-align: center;
  line-height: 1em;
  color: white;
  overflow: hidden;
  white-space: nowrap;
}
@media (min-width: 600px) {
  div#contador .contador_contenedor .contador_texto h3 {
    font-size: 2.8em;
    line-height: 1.2em;
  }
}
@media (min-width: 1200px) {
  div#contador .contador_contenedor .contador_texto h3 {
    font-size: 2em;
    line-height: 1.1em;
  }
}
div#contador .contador_contenedor .contador_texto h3 span {
  font-size: 1.4em;
}
@media (min-width: 600px) {
  div#contador .contador_contenedor .contador_texto h3 span {
    font-size: 1.2em;
  }
}
@media (min-width: 900px) {
  div#contador .contador_contenedor .contador_texto h3 span {
    font-size: 1.3em;
  }
}
div#contador .contador_contenedor .contador_numeros {
  width: 70vw;
  height: 55vh;
  margin-bottom: 3vh;
  margin-top: -5vh;
}
div#contador .contador_contenedor .contador {
  width: 55vw;
  height: 15vh;
  margin: 1vh 0;
  padding-top: 2vh;
  background: url(../images/banda-contador.svg) no-repeat center;
  background-size: contain;
  font-family: flood-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.9em;
  color: #1a1a1a;
  text-align: center;
  line-height: 0.9em;
}
@media (min-width: 600px) {
  div#contador .contador_contenedor .contador {
    font-size: 2.6em;
  }
}
@media (min-width: 900px) {
  div#contador .contador_contenedor .contador {
    font-size: 2.2em;
  }
}
div#contador .contador_contenedor .contador span {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 300;
  font-size: 0.7em;
  color: #1a1a1a;
}

/* CEREMONIA */
div#ceremonia .ceremonia_contenedor {
  width: 100vw;
  height: 100vh;
  background-color: #e9d6d6;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor {
    width: 35vw;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_imagen {
  width: 80vw;
  height: 60vh;
  margin-top: 10vh;
  background-color: white;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
@media (min-width: 600px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_imagen {
    height: 70vh;
  }
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_imagen {
    width: 27vw;
    height: 68vh;
    margin-top: 5vh;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_imagen::before {
  content: "";
  position: absolute;
  right: 0;
  width: 80vw;
  height: 60vh;
  background: url(../images/grafito_cliente4.jpg) no-repeat;
  background-size: 105% auto;
}
@media (min-width: 600px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_imagen::before {
    background: url(../images/grafito_cliente4_tblp.jpg) no-repeat;
    height: 70vh;
  }
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_imagen::before {
    background-size: auto 130%;
    width: 35vw;
    height: 68vh;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_imagen::after {
  content: "";
  position: absolute;
  top: -6vh;
  right: 5vw;
  width: 25vw;
  height: 15vw;
  background: url(../images/flechitas-ng.svg) no-repeat;
}
@media (min-width: 600px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_imagen::after {
    width: 20vw;
    height: 8vh;
  }
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_imagen::after {
    right: auto;
    top: -5vh;
    width: 6vw;
    margin-left: 20vw;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_titulo {
  position: absolute;
  width: 40vw;
  height: auto;
  left: 6vw;
  top: 5vh;
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_titulo {
    width: 32vw;
    top: 4vh;
    left: auto;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_titulo h2 {
  font-size: 3.6em;
  line-height: 0.9em;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
@media (min-width: 600px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_titulo h2 {
    font-size: 6em;
  }
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_titulo h2 {
    font-size: 5em;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_texto {
  position: absolute;
  width: 80vw;
  margin-top: 3vh;
  text-align: left;
  padding-right: 5vw;
  bottom: 6vh;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_texto {
    bottom: 8vh;
  }
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_texto {
    width: 35vw;
    padding-right: 5vw;
    padding-left: 8vw;
    bottom: 6vh;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_texto h3 {
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 0.5vh;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_texto h3 {
    font-size: 1.8em;
  }
}
@media (min-width: 600px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_texto h3 {
    font-size: 2em;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_texto h4 {
  margin-bottom: 1vh;
}
div#ceremonia .ceremonia_contenedor .ceremonia_titulo_recto {
  position: absolute;
  width: 80vw;
  bottom: 21vh;
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_titulo_recto {
    width: 27vw;
    bottom: 19vh;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_titulo_recto h2 {
  font-size: 1.7em;
  color: white;
  overflow: hidden;
  white-space: nowrap;
}
@media (min-width: 600px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_titulo_recto h2 {
    font-size: 3.2em;
  }
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_titulo_recto h2 {
    font-size: 2.8em;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_texto_recto {
  position: absolute;
  width: 80vw;
  margin-top: 3vh;
  text-align: left;
  padding-right: 5vw;
  bottom: 10vh;
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_texto_recto {
    width: 35vw;
    padding-right: 5vw;
    padding-left: 8vw;
    bottom: 8vh;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_texto_recto h3 {
  font-family: six-hands-chalk, sans-serif;
  font-weight: 400;
  font-size: 2em;
  line-height: 1.2em;
  margin-bottom: 0.5vh;
}
@media (min-width: 600px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_texto_recto h3 {
    font-size: 3em;
  }
}
div#ceremonia .ceremonia_contenedor .ceremonia_texto_recto h4 {
  margin-bottom: 1vh;
}
div#ceremonia .ceremonia_contenedor .ceremonia_boton a.btn {
  width: 35vw;
}
@media (min-width: 1200px) {
  div#ceremonia .ceremonia_contenedor .ceremonia_boton a.btn {
    width: 15vw;
  }
}

/* FIESTA */
div#fiesta .fiesta_contenedor {
  width: 100vw;
  height: 100vh;
  background-color: #e5e1e3;
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor {
    width: 35vw;
    position: relative;
  }
}
div#fiesta .fiesta_contenedor .fiesta_imagen {
  content: "";
  position: absolute;
  width: 80vw;
  height: 60vh;
  background-color: white;
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_imagen {
    height: 67vh;
  }
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_imagen {
    width: 27vw;
  }
}
div#fiesta .fiesta_contenedor .fiesta_imagen::before {
  content: "";
  position: absolute;
  left: 0;
  width: 80vw;
  height: 60vh;
  background: url(../images/grafito_cliente5.jpg) no-repeat;
  background-size: auto 115%;
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_imagen::before {
    background: url(../images/grafito_cliente5_tblp.jpg) no-repeat;
    height: 67vh;
  }
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_imagen::before {
    width: 27vw;
  }
}
div#fiesta .fiesta_contenedor .fiesta_titulo {
  position: absolute;
  top: 56vh;
  right: 11vw;
  z-index: 101;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fiesta .fiesta_contenedor .fiesta_titulo {
    top: 57vh;
  }
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_titulo {
    top: 62vh;
    right: 15vw;
  }
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_titulo {
    right: 2vw;
    top: 60vh;
  }
}
div#fiesta .fiesta_contenedor .fiesta_titulo h2 {
  font-size: 2.8em;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fiesta .fiesta_contenedor .fiesta_titulo h2 {
    font-size: 3.1em;
  }
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_titulo h2 {
    font-size: 4.5em;
  }
}
div#fiesta .fiesta_contenedor .fiesta_marco {
  position: absolute;
  width: 87vw;
  height: 86vh;
  border: 2.5px solid #1a1a1a;
  border-left: 0;
  margin: 7vh 0;
  right: 13vw;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_marco {
    width: 30vw;
    right: 5vw;
  }
}
div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_texto {
  width: 90vw;
  margin-bottom: 3vh;
  padding: 0 7vw 0 10vw;
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_texto {
    width: 35vw;
    padding: 0 10vw 0 5vw;
  }
}
div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_texto h1 {
  font-size: 2.5em;
  margin-bottom: -2vh;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_texto h1 {
    font-size: 2.8em;
  }
}
div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_texto h3 {
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 0.5vh;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_texto h3 {
    font-size: 1.8em;
  }
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_texto h3 {
    font-size: 2em;
  }
}
div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_texto h4 {
  margin-bottom: 1vh;
}
div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_boton {
  margin-left: 10vw;
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_boton {
    margin-left: 5vw;
  }
}
div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_boton .btn {
  width: 45vw;
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_boton .btn {
    width: 35vw;
  }
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_marco .fiesta_boton .btn {
    width: 15vw;
  }
}
div#fiesta .fiesta_contenedor .fiesta_marco::before {
  content: "";
  position: absolute;
  width: 25vw;
  height: 15vh;
  top: 3vh;
  right: -10vw;
  background: url(../images/comas-ng.svg) no-repeat;
}
@media (min-width: 600px) {
  div#fiesta .fiesta_contenedor .fiesta_marco::before {
    width: 20vw;
    right: -8vw;
  }
}
@media (min-width: 1200px) {
  div#fiesta .fiesta_contenedor .fiesta_marco::before {
    width: 10vw;
    right: -5vw;
  }
}

/* HASHTAG */
div#hashtag .hashtag_contenedor {
  width: 100vw;
  height: 100vh;
  background-color: #1a1a1a;
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor {
    width: 35vw;
  }
}
div#hashtag .hashtag_contenedor .hashtag_imagen {
  width: 100vw;
  height: 68vh;
  background-image: url(../images/grafito_cliente6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_imagen {
    height: 73vh;
    background: url(../images/grafito_cliente6_tblp.jpg) no-repeat;
  }
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_imagen {
    width: 35vw;
  }
}
div#hashtag .hashtag_contenedor .hashtag_base {
  width: 100vw;
  height: 35vh;
  background-color: #1a1a1a;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#hashtag .hashtag_contenedor .hashtag_base {
    height: 48vh;
  }
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_base {
    height: 27vh;
  }
}
@media (min-width: 900px) {
  div#hashtag .hashtag_contenedor .hashtag_base {
    height: 32vh;
  }
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_base {
    width: 35vw;
  }
}
div#hashtag .hashtag_contenedor .hashtag_base::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 10vh;
  margin-top: -5vh;
  background: url(../images/pincelada-ng.svg) no-repeat center top;
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_base::before {
    height: 5vh;
    margin-top: -3vh;
    background-repeat: repeat-x;
  }
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_base::before {
    width: 35vw;
  }
}
div#hashtag .hashtag_contenedor .hashtag_titulo {
  position: absolute;
  bottom: 22vh;
  padding-right: 5vw;
  margin-bottom: 1.5vh;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#hashtag .hashtag_contenedor .hashtag_titulo {
    bottom: 26vh;
  }
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_titulo {
    bottom: 18vh;
  }
}
div#hashtag .hashtag_contenedor .hashtag_titulo h1 {
  font-size: 3.6em;
  color: #e5e1e3;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_titulo h1 {
    font-size: 5em;
  }
}
div#hashtag .hashtag_contenedor .hashtag_contenedor_marco {
  position: absolute;
  z-index: 101;
  width: 100vw;
  height: 100vh;
  padding: 40px;
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_contenedor_marco {
    width: 35vw;
  }
}
div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco {
  width: 100%;
  height: 100%;
  border: 1px solid white;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco .hashtag_texto {
  width: 100%;
  text-align: center;
  padding: 3vh 10vw;
}
div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco .hashtag_texto p {
  color: white;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco .hashtag_texto {
    margin-bottom: 5vh;
  }
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco .hashtag_texto {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco .hashtag_texto {
    padding: 3.5vh 2vw;
  }
}
div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco .hashtag_boton {
  width: 100%;
}
div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco .hashtag_boton .btn {
  width: 60vw;
}
@media (min-width: 600px) {
  div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco .hashtag_boton .btn {
    width: 40vw;
  }
}
@media (min-width: 1200px) {
  div#hashtag .hashtag_contenedor .hashtag_contenedor_marco .hashtag_marco .hashtag_boton .btn {
    width: 25vw;
  }
}

/* regalo */
div#regalo .regalo_contenedor {
  width: 100vw;
  height: 100vh;
  background: url(../images/grafito_cliente2.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor {
    position: relative;
    width: 35vw;
  }
}
div#regalo .regalo_contenedor .regalo_panel {
  width: 80vw;
  height: 80vh;
  background-color: #e5e1e3;
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor .regalo_panel {
    width: 28vw;
  }
}
div#regalo .regalo_contenedor .regalo_panel::after {
  position: absolute;
  content: "";
  background: url(../images/borde_panel.svg) no-repeat center bottom;
  background-size: contain;
  width: 80vw;
  height: 10vh;
  bottom: -2vh;
}
@media (min-width: 600px) {
  div#regalo .regalo_contenedor .regalo_panel::after {
    height: 3vh;
    background-repeat: repeat-x;
  }
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor .regalo_panel::after {
    width: 28vw;
  }
}
div#regalo .regalo_contenedor .regalo_marco {
  position: absolute;
  left: 16vw;
  width: 84vw;
  height: 85vh;
  border: 2.5px solid #1a1a1a;
  border-right: none;
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor .regalo_marco {
    width: 27vw;
    left: 5vw;
  }
}
div#regalo .regalo_contenedor .regalo_marco::before {
  position: absolute;
  content: "";
  bottom: -3vh;
  right: 5vw;
  width: 35vw;
  height: 15vh;
  background: url(../images/flechitas-bl.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 600px) {
  div#regalo .regalo_contenedor .regalo_marco::before {
    width: 30vw;
  }
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor .regalo_marco::before {
    width: 10vw;
    right: 2vw;
  }
}
div#regalo .regalo_contenedor .regalo_texto {
  position: absolute;
  width: 75vw;
  height: 70vh;
  text-align: left;
  padding-left: 8vw;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#regalo .regalo_contenedor .regalo_texto {
    width: 77vw;
  }
}
@media (min-width: 600px) {
  div#regalo .regalo_contenedor .regalo_texto {
    width: 40vh;
  }
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor .regalo_texto {
    width: 22vw;
    padding-left: 2vw;
  }
}
div#regalo .regalo_contenedor .regalo_texto .regalo_titulo {
  margin-bottom: 2vh;
}
div#regalo .regalo_contenedor .regalo_texto .regalo_titulo h3 {
  font-size: 1.8em;
  line-height: 1.1em;
}
@media (min-width: 600px) {
  div#regalo .regalo_contenedor .regalo_texto .regalo_titulo h3 {
    font-size: 3em;
  }
}
div#regalo .regalo_contenedor .regalo_texto p {
  color: #1a1a1a;
}
div#regalo .regalo_contenedor div#datosregalo {
  height: 0vh;
  overflow: hidden;
  transition: height 1s;
}
div#regalo .regalo_contenedor .btn {
  width: 100%;
  margin-top: 2vh;
}
@media (min-width: 600px) {
  div#regalo .regalo_contenedor .btn {
    width: 40vw;
  }
}
@media (min-width: 900px) {
  div#regalo .regalo_contenedor .btn {
    width: 30vw;
  }
}
@media (min-width: 1200px) {
  div#regalo .regalo_contenedor .btn {
    width: 15vw;
  }
}

/* CONFIRMACION */
div#confirmacion .confirmacion_contenedor {
  width: 100vw;
  height: 100vh;
  background: #1a1a1a;
  background-size: cover;
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor {
    width: 35vw;
    position: relative;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_imagen {
  position: absolute;
  top: 12vh;
  right: 0;
  width: 85vw;
  height: 60vh;
  background-color: white;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  z-index: 101;
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_imagen {
    width: 30vw;
    right: 0;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_imagen .confirmacion_boton {
  z-index: 102;
}
div#confirmacion .confirmacion_contenedor .confirmacion_imagen .confirmacion_boton .btn {
  width: 75vw;
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_imagen .confirmacion_boton .btn {
    width: 40vw;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_imagen .confirmacion_boton .btn {
    width: 15vw;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_imagen::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 85vw;
  height: 60vh;
  background: url(../images/grafito_cliente8.jpg) no-repeat;
  background-size: cover;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  z-index: 101;
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_imagen::before {
    background: url(../images/grafito_cliente8_tblp.jpg) no-repeat;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_imagen::before {
    width: 30vw;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_panel {
  position: absolute;
  z-index: 100;
  width: 100vw;
  height: 92vh;
  background: #fde3d6;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_panel {
    width: 35vw;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_panel::before {
  position: absolute;
  content: "";
  bottom: -7vh;
  left: 4vw;
  width: 21vw;
  height: 10vh;
  background: url(../images/xx-bl.svg) no-repeat;
  z-index: 101;
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_panel::before {
    width: 16vw;
    bottom: -8vh;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_panel::before {
    height: 7vh;
    bottom: -5.5vh;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_panel::after {
  position: absolute;
  content: "";
  background: url(../images/borde_paneldurazno.svg) no-repeat center bottom;
  background-size: contain;
  width: 100vw;
  height: 10vh;
  bottom: -2vh;
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_panel::after {
    height: 3vh;
    background-repeat: repeat-x;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_panel::after {
    width: 35vw;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_titulo {
  position: absolute;
  z-index: 103;
  top: 8vh;
  left: 10vw;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_titulo {
    top: 6.5vh;
  }
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_titulo {
    left: 5vw;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_titulo {
    left: 2vw;
    top: 6vh;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_titulo h1 {
  font-size: 3.6em;
  line-height: 0.9em;
  color: #1a1a1a;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
  white-space: nowrap;
  overflow: hidden;
  padding-top: 2vh;
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_titulo h1 {
    font-size: 7em;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_titulo h1 {
    font-size: 5em;
    padding-top: 3vh;
  }
}
div#confirmacion .confirmacion_contenedor .confirmacion_texto {
  padding: 0 15vw;
  margin-bottom: 8vh;
}
@media (min-width: 600px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_texto {
    margin-bottom: 10vh;
    padding: 0 15vw;
  }
  div#confirmacion .confirmacion_contenedor .confirmacion_texto p {
    margin-top: 3vh;
  }
}
@media (min-width: 1200px) {
  div#confirmacion .confirmacion_contenedor .confirmacion_texto {
    padding: 0 6vw 0 5vw;
  }
}

/* LOGO */
div#logo {
  width: 100vw;
  height: 100vh;
  background-color: #1a1a1a;
}
div#logo .contenedor_logo {
  color: white;
  text-align: center;
}
div#logo .contenedor_logo .logo {
  width: 55vw;
  height: 10vh;
  background: url(../images/logo_bl_andoinvitando.svg) center bottom no-repeat;
  background-size: contain;
  margin-bottom: 1vh;
}
@media (min-width: 600px) {
  div#logo .contenedor_logo .logo {
    width: 36vw;
  }
}
@media (min-width: 900px) {
  div#logo .contenedor_logo .logo {
    width: 30vw;
  }
}
@media (min-width: 1200px) {
  div#logo .contenedor_logo .logo {
    width: 15vw;
  }
}
div#logo .contenedor_logo .icon-volver {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20vh;
}
div#logo .contenedor_logo p > a, div#logo .contenedor_logo p > a:hover {
  color: white;
  text-decoration: none;
  font-size: 0.95em;
}
div#logo .contenedor_logo .pdf_boton {
  margin-top: 10px;
}
div#logo .contenedor_logo .pdf_boton .btn {
  width: 40vw;
}
@media (min-width: 600px) {
  div#logo .contenedor_logo .pdf_boton .btn {
    width: 40vw;
  }
}
@media (min-width: 900px) {
  div#logo .contenedor_logo .pdf_boton .btn {
    width: 30vw;
  }
}
@media (min-width: 1200px) {
  div#logo .contenedor_logo .pdf_boton .btn {
    width: 25vw;
  }
}

/* REGALO */
div#playlist .playlist_contenedor {
  width: 100vw;
  height: 100vh;
  padding: 12vh 12vw 8vh 12vw;
  background-color: #e9d6d6;
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor {
    width: 35vw;
    padding: 3vh 5.5vw 3vh 5.5vw;
  }
}
div#playlist .playlist_contenedor .playlist_titulo {
  position: absolute;
  top: 1vh;
  z-index: 101;
}
@media (max-width: 600px) and (min-height: 700px) {
  div#playlist .playlist_contenedor .playlist_titulo {
    top: 4vh;
  }
}
div#playlist .playlist_contenedor .playlist_titulo h1 {
  font-size: 4em;
  color: white;
  padding-top: 5px;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
  overflow: hidden;
  white-space: nowrap;
}
@media (min-width: 600px) {
  div#playlist .playlist_contenedor .playlist_titulo h1 {
    top: 1vh;
    font-size: 6em;
  }
}
div#playlist .playlist_contenedor .playlist_imagen {
  width: 70vw;
  height: 70vh;
  background-color: white;
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .playlist_imagen {
    width: 25vw;
  }
}
div#playlist .playlist_contenedor .playlist_imagen::before {
  position: absolute;
  content: "";
  width: 70vw;
  height: 70vh;
  background: url(../images/grafito_cliente7.jpg) no-repeat;
  background-size: cover;
}
@media (min-width: 600px) {
  div#playlist .playlist_contenedor .playlist_imagen::before {
    background: url(../images/grafito_cliente7_tblp.jpg) no-repeat;
  }
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .playlist_imagen::before {
    width: 25vw;
  }
}
div#playlist .playlist_contenedor .playlist_imagen::after {
  content: "";
  position: absolute;
  width: 10vw;
  height: 45vh;
  margin-top: 10vh;
  margin-left: -3vw;
  background: url(../images/pincelada2-ng.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 600px) {
  div#playlist .playlist_contenedor .playlist_imagen::after {
    margin-left: -2vw;
  }
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .playlist_imagen::after {
    width: 3vw;
    margin-left: -0.5vw;
  }
}
div#playlist .playlist_contenedor .playlist_texto {
  text-align: center;
  margin-top: 3.5vh;
  margin-bottom: 1.5vh;
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .playlist_texto {
    margin: 4vh 3vw 2vh 3vw;
  }
}
div#playlist .playlist_contenedor .btn {
  width: 55vw;
  margin-top: 2vh;
}
@media (min-width: 600px) {
  div#playlist .playlist_contenedor .btn {
    width: 40vw;
  }
}
@media (min-width: 900px) {
  div#playlist .playlist_contenedor .btn {
    width: 30vw;
  }
}
@media (min-width: 1200px) {
  div#playlist .playlist_contenedor .btn {
    width: 15vw;
  }
}

/**
 * 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;
  text-transform: uppercase;
  font-size: 1em;
  color: white;
}

.atcb-link:hover, .atcb-link:active, .atcb-link:focus {
  color: #1a1a1a;
}

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

.atcb-list {
  width: 35vw;
  background-color: #1a1a1a8a;
  visibility: hidden;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 900;
}
@media (min-width: 600px) {
  .atcb-list {
    width: 25vw;
  }
}
@media (min-width: 1200px) {
  .atcb-list {
    width: 15vw;
  }
}

.atcb-list,
.atcb-item {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  box-sizing: border-box;
}

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

.atcb-item-link {
  text-decoration: none;
  outline: none;
  display: block;
  font-size: 1em;
  color: white;
}

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

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

.cognito {
  padding: 0 10px;
  margin: 4vh 0;
}

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

.contenedor_tituloform {
  margin-top: 7vh;
}
.contenedor_tituloform h1 {
  font-size: 3em;
}
.contenedor_tituloform h4 {
  font-size: 1.2em !important;
  margin-top: -2.5vh;
}

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: #1a1a1a !important;
}

html .cog-cognito--styled .cog-button--primary, :root:root:root:root:root .cog-cognito--styled .cog-button--primary {
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !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 #1a1a1a !important;
  border-radius: 0 !important;
  color: #1a1a1a !important;
  font-family: "Open Sans", Helvetica, sans-serif !important;
}

html .cog-cognito--styled h3, :root:root:root:root:root .cog-cognito--styled h3 {
  color: #1a1a1a !important;
}

html .cog-cognito--styled .cog-button--no-style, :root:root:root:root:root .cog-cognito--styled .cog-button--no-style {
  color: #1a1a1a !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: #1a1a1a !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-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;
}

.c-forms-form-title {
  display: none !important;
}

form::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 10vh;
  background-image: url(../images/logo_az_andoinvitando.svg);
  background-position-x: center;
  background-position-y: top;
  background-size: 46%;
  background-repeat: no-repeat;
  margin-top: 6vh;
}
@media (min-width: 600px) {
  form::after {
    background-size: 20%;
  }
}
@media (min-width: 1200px) {
  form::after {
    width: 30%;
    background-size: 30%;
    background-position-x: 3vw;
  }
}

/* COVID */
.swiper-wrapper .swiper-slide-active .covid_marco {
  -webkit-animation: marco 1s 1 normal both;
  -moz-animation: marco 1s 1 normal both;
  -o-animation: marco 1s 1 normal both;
  animation: marco 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .covid_titulo h1 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .covid_titulo h2 {
  -webkit-animation: fadeInUpShort 1s 1 normal both;
  -moz-animation: fadeInUpShort 1s 1 normal both;
  -o-animation: fadeInUpShort 1s 1 normal both;
  animation: fadeInUpShort 1s 1 normal both;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.swiper-wrapper .swiper-slide-active .covid_texto p#tapaboca, .swiper-wrapper .swiper-slide-active .covid_texto p#manos, .swiper-wrapper .swiper-slide-active .covid_texto p#distancia, .swiper-wrapper .swiper-slide-active .covid_texto p#vaso, .swiper-wrapper .swiper-slide-active .covid_texto p#sintomas p#vacuna {
  -webkit-animation: fadeInUpShort 1s 1 normal both;
  -moz-animation: fadeInUpShort 1s 1 normal both;
  -o-animation: fadeInUpShort 1s 1 normal both;
  animation: fadeInUpShort 1s 1 normal both;
}
.swiper-wrapper .swiper-slide-active .covid_texto p#vacuna {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  -o-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.swiper-wrapper .swiper-slide-active .covid_texto p#tapaboca {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  -o-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.swiper-wrapper .swiper-slide-active .covid_texto p#manos {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.swiper-wrapper .swiper-slide-active .covid_texto p#distancia {
  -webkit-animation-delay: 2.48s;
  -moz-animation-delay: 2.48s;
  -o-animation-delay: 2.48s;
  animation-delay: 2.48s;
}
.swiper-wrapper .swiper-slide-active .covid_texto p#vaso {
  -webkit-animation-delay: 2.8s;
  -moz-animation-delay: 2.8s;
  -o-animation-delay: 2.8s;
  animation-delay: 2.8s;
}
.swiper-wrapper .swiper-slide-active .covid_texto p#sintomas {
  -webkit-animation-delay: 3.2s;
  -moz-animation-delay: 3.2s;
  -o-animation-delay: 3.2s;
  animation-delay: 3.2s;
}

div#covid .covid_contenedor {
  width: 100vw;
  height: 100vh;
  background-color: #e9d6d6;
  padding: 30px;
}
@media (min-width: 1200px) {
  div#covid .covid_contenedor {
    width: 35vw;
  }
}
div#covid .covid_contenedor .covid_titulo {
  padding-right: 5vw;
}
@media (min-width: 600px) {
  div#covid .covid_contenedor .covid_titulo {
    bottom: 16vh;
  }
}
@media (min-width: 1200px) {
  div#covid .covid_contenedor .covid_titulo {
    padding-right: 2vw;
  }
}
div#covid .covid_contenedor .covid_titulo h1 {
  font-size: 2.5em;
  color: #1a1a1a;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transform: skewY(-10deg);
  -ms-transform: skewY(-10deg);
  transform: skewY(-10deg);
}
@media (min-width: 600px) {
  div#covid .covid_contenedor .covid_titulo h1 {
    font-size: 3em;
  }
}
@media (min-width: 1200px) {
  div#covid .covid_contenedor .covid_titulo h1 {
    font-size: 3.5em;
  }
}
@media (min-width: 1200px) {
  div#covid .covid_contenedor .covid_titulo h2 {
    font-size: 2.5em;
  }
}
div#covid .covid_contenedor .covid_marco {
  width: 100%;
  height: 100%;
  border: 1px solid white;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}
div#covid .covid_contenedor .covid_marco .covid_texto {
  width: 100%;
  text-align: center;
  padding: 0 7vw 3vh 10vw;
  margin-top: 2vh;
}
@media (min-width: 600px) {
  div#covid .covid_contenedor .covid_marco .covid_texto {
    width: 90%;
    padding: 0 7vw 3vh 7vw;
  }
}
@media (min-width: 1200px) {
  div#covid .covid_contenedor .covid_marco .covid_texto {
    margin-top: 1vh;
    padding: 0 2vw 2vh 2vw;
  }
}
div#covid .covid_contenedor .covid_marco .covid_texto p {
  width: 65vw;
  min-height: 10vh;
  padding-left: 23vw;
  background-size: 16vw;
  background-repeat: no-repeat;
  background-position: center left;
  color: #1a1a1a;
  text-align: left;
  margin-bottom: 1vh;
}
@media (min-width: 600px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p {
    width: 75vw;
    background-size: 12vw;
    min-height: 11vh;
  }
}
@media (min-width: 1200px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p {
    width: 24vw;
    background-size: 3.5vw;
    padding-left: 6vw;
    margin-bottom: 1vh;
  }
}
div#covid .covid_contenedor .covid_marco .covid_texto p#vacuna {
  background-image: url(../images/covid-vacuna.svg);
  background-size: 12vw;
  background-position-x: 1vh;
  min-height: 10vh;
}
@media (min-width: 600px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#vacuna {
    min-height: 10vh;
  }
}
@media (min-width: 900px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#vacuna {
    min-height: 9vh;
  }
}
div#covid .covid_contenedor .covid_marco .covid_texto p#tapaboca {
  background-image: url(../images/covid-tapaboca.svg);
  min-height: 7vh;
}
@media (min-width: 600px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#tapaboca {
    min-height: 7.5vh;
  }
}
@media (min-width: 900px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#tapaboca {
    min-height: 6vh;
  }
}
div#covid .covid_contenedor .covid_marco .covid_texto p#manos {
  background-image: url(../images/covid-manos.svg);
}
@media (min-width: 900px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#manos {
    background-size: 7vw;
  }
}
@media (min-width: 1200px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#manos {
    background-size: 4vw;
  }
}
div#covid .covid_contenedor .covid_marco .covid_texto p#distancia {
  background-image: url(../images/covid-distancia.svg);
  min-height: 9vh;
}
@media (min-width: 600px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#distancia {
    min-height: 9vh;
  }
}
div#covid .covid_contenedor .covid_marco .covid_texto p#vaso {
  background-image: url(../images/covid-vaso.svg);
  background-size: 12vw;
  min-height: 11vh;
}
@media (min-width: 600px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#vaso {
    background-size: 10vw;
    min-height: 11vh;
  }
}
@media (min-width: 900px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#vaso {
    background-size: 5vw;
    min-height: 10vh;
  }
}
@media (min-width: 1200px) {
  div#covid .covid_contenedor .covid_marco .covid_texto p#vaso {
    background-size: 3vw;
  }
}
div#covid .covid_contenedor .covid_marco .covid_texto p#sintomas {
  background-image: url(../images/covid-sintomas.svg);
}

body {
  background-color: #aaa6a8;
}

/* 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: #e5e1e3;
  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;
}
@media (min-width: 1200px) {
  .swiper-container {
    width: 35vw;
  }
}

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

.eapps-instagram-feed-title-container {
  display: none !important;
}

a.eapps-link {
  display: none !important;
}

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