#home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("/Multimedia/bg-home.webp");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}

#home .intro {
  min-height: 100vh;
  /*Mobile*/
  -webkit-animation: desapareceIntro 0.1s linear 5s forwards;
          animation: desapareceIntro 0.1s linear 5s forwards;
}

@media only screen and (max-width: 768px) {
  #home .intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@-webkit-keyframes desapareceIntro {
  100% {
    opacity: 0;
  }
}

@keyframes desapareceIntro {
  100% {
    opacity: 0;
  }
}

#home .intro .logo {
  width: 30%;
  position: absolute;
  top: 10%;
  left: 5%;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #home .intro .logo {
    top: 15%;
    width: 10rem;
  }
}

#home .intro .libro {
  position: absolute;
  width: 40%;
  left: 45%;
  top: 20%;
  /*Mobile*/
  opacity: 0;
  -webkit-animation: caidaLibro 3s ease 1s forwards;
          animation: caidaLibro 3s ease 1s forwards;
}

@media only screen and (max-width: 768px) {
  #home .intro .libro {
    position: relative;
    width: 280px;
    top: 10%;
    left: 0;
  }
}

@-webkit-keyframes caidaLibro {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  60% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes caidaLibro {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  60% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

#home .intro h1 {
  font-family: 'Julius Sans One';
  font-size: 2rem;
  text-align: center;
  color: #FFFFFF;
  -webkit-text-stroke: 1px #DDAA8F;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 60%;
  left: 7.5%;
  -webkit-animation: barridoTexto 4s ease-in-out forwards;
          animation: barridoTexto 4s ease-in-out forwards;
  /*Mobile*/
}

@-webkit-keyframes barridoTexto {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes barridoTexto {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media only screen and (max-width: 768px) {
  #home .intro h1 {
    font-size: 1.5rem;
    top: 82%;
  }
}

#home .intro h1 hr {
  width: 190px;
  height: 30px;
  border: solid 3px #FFFFFF;
  border-color: #DDAA8F transparent transparent transparent;
  border-radius: 80%/25px 25px 0 0;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  /*Mobile*/
  position: relative;
  bottom: 1rem;
  left: 8rem;
}

@media only screen and (max-width: 768px) {
  #home .intro h1 hr {
    width: 95px;
    height: 15px;
  }
}

#home .contenedor {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-perspective: 1200px;
          perspective: 1200px;
  position: absolute;
  -webkit-animation: apareceLibro 2s linear forwards;
          animation: apareceLibro 2s linear forwards;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  opacity: 0;
}

@-webkit-keyframes apareceLibro {
  100% {
    opacity: 1;
  }
}

@keyframes apareceLibro {
  100% {
    opacity: 1;
  }
}

#home .contenedor .book {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
  height: 500px;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  /*Mobile*/
  -webkit-animation: grow 2s ease forwards;
          animation: grow 2s ease forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #home .contenedor .book {
    position: absolute;
    top: 35%;
    left: 25%;
  }
}

@-webkit-keyframes grow {
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}

@keyframes grow {
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
}

@media only screen and (max-width: 768px) {
  @-webkit-keyframes grow {
    100% {
      -webkit-transform: scale(2);
              transform: scale(2);
    }
  }
  @keyframes grow {
    100% {
      -webkit-transform: scale(2);
              transform: scale(2);
    }
  }
}

#home .contenedor .book .front {
  width: 390px;
  height: 530px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border-bottom-right-radius: .5em;
  border-top-right-radius: .5em;
  -webkit-transform: translate(-35px, -20px);
          transform: translate(-35px, -20px);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out, -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  -webkit-animation: abrirFront 1s linear forwards;
          animation: abrirFront 1s linear forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  /*Mobile*/
}

@-webkit-keyframes abrirFront {
  100% {
    -webkit-transform: rotateY(-160deg) scale(1.3);
            transform: rotateY(-160deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes abrirFront {
  100% {
    -webkit-transform: rotateY(-160deg) scale(1.3);
            transform: rotateY(-160deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 768px) {
  #home .contenedor .book .front {
    width: 195px;
    height: 265px;
    -webkit-transform: translate(-17.75px, -10px);
            transform: translate(-17.75px, -10px);
  }
}

@keyframes abrirFront {
  100% {
    -webkit-transform: rotateY(-160deg) scale(1.95);
            transform: rotateY(-160deg) scale(1.95);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

#home .contenedor .book .page1 {
  width: 350px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #B4A99A;
  border-bottom-right-radius: .5em;
  border-top-right-radius: .5em;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out, -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  -webkit-animation: abrirPage1 1s linear forwards;
          animation: abrirPage1 1s linear forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  /*Mobile*/
}

@-webkit-keyframes abrirPage1 {
  100% {
    -webkit-transform: rotateY(-150deg) scale(1.3);
            transform: rotateY(-150deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes abrirPage1 {
  100% {
    -webkit-transform: rotateY(-150deg) scale(1.3);
            transform: rotateY(-150deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 768px) {
  #home .contenedor .book .page1 {
    width: 175px;
    height: 50%;
  }
}

@keyframes abrirPage1 {
  100% {
    -webkit-transform: rotateY(-150deg) scale(1.95);
            transform: rotateY(-150deg) scale(1.95);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

#home .contenedor .book .page2 {
  width: 350px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #B4A99A;
  border-bottom-right-radius: .5em;
  border-top-right-radius: .5em;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out, -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  -webkit-animation: abrirPage2 1s linear forwards;
          animation: abrirPage2 1s linear forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  /*Mobile*/
}

@-webkit-keyframes abrirPage2 {
  100% {
    -webkit-transform: rotateY(-30deg) scale(1.3);
            transform: rotateY(-30deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes abrirPage2 {
  100% {
    -webkit-transform: rotateY(-30deg) scale(1.3);
            transform: rotateY(-30deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 768px) {
  #home .contenedor .book .page2 {
    width: 175px;
    height: 50%;
  }
  @-webkit-keyframes abrirPage2 {
    100% {
      -webkit-transform: rotateY(-30deg) scale(1.95);
              transform: rotateY(-30deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
  @keyframes abrirPage2 {
    100% {
      -webkit-transform: rotateY(-30deg) scale(1.95);
              transform: rotateY(-30deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
}

#home .contenedor .book .page3 {
  width: 350px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #b1aba2;
  border-bottom-right-radius: .5em;
  border-top-right-radius: .5em;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out, -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  -webkit-animation: abrirPage3 1s linear forwards;
          animation: abrirPage3 1s linear forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  /*Mobile*/
}

@-webkit-keyframes abrirPage3 {
  100% {
    -webkit-transform: rotateY(-140deg) scale(1.3);
            transform: rotateY(-140deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes abrirPage3 {
  100% {
    -webkit-transform: rotateY(-140deg) scale(1.3);
            transform: rotateY(-140deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 768px) {
  #home .contenedor .book .page3 {
    width: 175px;
    height: 50%;
  }
  @-webkit-keyframes abrirPage3 {
    100% {
      -webkit-transform: rotateY(-140deg) scale(1.95);
              transform: rotateY(-140deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
  @keyframes abrirPage3 {
    100% {
      -webkit-transform: rotateY(-140deg) scale(1.95);
              transform: rotateY(-140deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
}

#home .contenedor .book .page4 {
  width: 350px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #b1aba2;
  border-bottom-right-radius: .5em;
  border-top-right-radius: .5em;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out, -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  -webkit-animation: abrirPage4 1s linear forwards;
          animation: abrirPage4 1s linear forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  /*Mobile*/
}

@-webkit-keyframes abrirPage4 {
  100% {
    -webkit-transform: rotateY(-40deg) scale(1.3);
            transform: rotateY(-40deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes abrirPage4 {
  100% {
    -webkit-transform: rotateY(-40deg) scale(1.3);
            transform: rotateY(-40deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 768px) {
  #home .contenedor .book .page4 {
    width: 175px;
    height: 50%;
  }
  @-webkit-keyframes abrirPage4 {
    100% {
      -webkit-transform: rotateY(-40deg) scale(1.95);
              transform: rotateY(-40deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
  @keyframes abrirPage4 {
    100% {
      -webkit-transform: rotateY(-40deg) scale(1.95);
              transform: rotateY(-40deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
}

#home .contenedor .book .page5 {
  width: 350px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #B4A99A;
  border-bottom-right-radius: .5em;
  border-top-right-radius: .5em;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out, -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  -webkit-animation: abrirPage5 1s linear forwards;
          animation: abrirPage5 1s linear forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  /*Mobile*/
}

@-webkit-keyframes abrirPage5 {
  100% {
    -webkit-transform: rotateY(-130deg) scale(1.3);
            transform: rotateY(-130deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes abrirPage5 {
  100% {
    -webkit-transform: rotateY(-130deg) scale(1.3);
            transform: rotateY(-130deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 768px) {
  #home .contenedor .book .page5 {
    width: 175px;
    height: 50%;
  }
  @-webkit-keyframes abrirPage5 {
    100% {
      -webkit-transform: rotateY(-130deg) scale(1.95);
              transform: rotateY(-130deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
  @keyframes abrirPage5 {
    100% {
      -webkit-transform: rotateY(-130deg) scale(1.95);
              transform: rotateY(-130deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
}

#home .contenedor .book .page6 {
  width: 350px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #B4A99A;
  border-bottom-right-radius: .5em;
  border-top-right-radius: .5em;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out, -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  -webkit-animation: abrirPage6 1s linear forwards;
          animation: abrirPage6 1s linear forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  /*Mobile*/
}

@-webkit-keyframes abrirPage6 {
  100% {
    -webkit-transform: rotateY(-50deg) scale(1.3);
            transform: rotateY(-50deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes abrirPage6 {
  100% {
    -webkit-transform: rotateY(-50deg) scale(1.3);
            transform: rotateY(-50deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 768px) {
  #home .contenedor .book .page6 {
    width: 175px;
    height: 50%;
  }
  @-webkit-keyframes abrirPage6 {
    100% {
      -webkit-transform: rotateY(-50deg) scale(1.95);
              transform: rotateY(-50deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
  @keyframes abrirPage6 {
    100% {
      -webkit-transform: rotateY(-50deg) scale(1.95);
              transform: rotateY(-50deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
}

#home .contenedor .book .back {
  width: 350px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border-bottom-right-radius: .5em;
  border-top-right-radius: .5em;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .35s ease-in-out, -webkit-transform .5s ease-in-out, -webkit-box-shadow .35s ease-in-out;
  -webkit-animation: abrirBack 1s linear forwards;
          animation: abrirBack 1s linear forwards;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  /*Mobile*/
}

@-webkit-keyframes abrirBack {
  100% {
    -webkit-transform: rotateY(-20deg) scale(1.3);
            transform: rotateY(-20deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes abrirBack {
  100% {
    -webkit-transform: rotateY(-20deg) scale(1.3);
            transform: rotateY(-20deg) scale(1.3);
    -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 768px) {
  #home .contenedor .book .back {
    width: 175px;
    height: 50%;
  }
  @-webkit-keyframes abrirBack {
    100% {
      -webkit-transform: rotateY(-20deg) scale(1.95);
              transform: rotateY(-20deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
  @keyframes abrirBack {
    100% {
      -webkit-transform: rotateY(-20deg) scale(1.95);
              transform: rotateY(-20deg) scale(1.95);
      -webkit-box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
              box-shadow: 0 1em 3em 0 rgba(0, 0, 0, 0.2);
    }
  }
}

#quienesSomos {
  background: #B4A99A;
  min-height: 100vh;
  min-width: 100vw;
}

#quienesSomos nav {
  z-index: 10;
  padding-top: 2rem;
}

#quienesSomos nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#quienesSomos nav .navbar-toggler {
  background-color: white !important;
}

#quienesSomos nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #quienesSomos nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#quienesSomos nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #quienesSomos nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#quienesSomos nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#quienesSomos .quienesSomos-desktop .story-telling {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 110px;
  text-align: center;
  color: #FAF4F4;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  position: absolute;
  top: 20%;
  -webkit-animation: fadeIn ease-in-out 6s forwards;
          animation: fadeIn ease-in-out 6s forwards;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .story-telling {
    font-size: 2.5em;
    line-height: 4rem;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (min-width: 769px) {
  #quienesSomos .quienesSomos-desktop .story-telling .espacio {
    display: none;
  }
}

#quienesSomos .quienesSomos-desktop .story-telling span {
  letter-spacing: -1rem;
  display: inline-block;
  text-shadow: 0 0 0 whitesmoke;
  -webkit-animation: smoky 2.5s 1.5s both;
          animation: smoky 2.5s 1.5s both;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .story-telling span {
    letter-spacing: -0.4rem;
  }
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-child(even) {
  -webkit-animation-name: smoky-mirror;
          animation-name: smoky-mirror;
}

@-webkit-keyframes smoky {
  60% {
    text-shadow: 0 0 40px whitesmoke;
  }
  to {
    -webkit-transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
            transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
    text-shadow: 0 0 20px whitesmoke;
    opacity: 0;
  }
}

@keyframes smoky {
  60% {
    text-shadow: 0 0 40px whitesmoke;
  }
  to {
    -webkit-transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
            transform: translate3d(15rem, -8rem, 0) rotate(-40deg) skewX(70deg) scale(1.5);
    text-shadow: 0 0 20px whitesmoke;
    opacity: 0;
  }
}

@-webkit-keyframes smoky-mirror {
  60% {
    text-shadow: 0 0 40px whitesmoke;
  }
  to {
    -webkit-transform: translate3d(18rem, -8rem, 0) rotate(-40deg) scale(2);
            transform: translate3d(18rem, -8rem, 0) rotate(-40deg) scale(2);
    text-shadow: 0 0 20px whitesmoke;
    opacity: 0;
  }
}

@keyframes smoky-mirror {
  60% {
    text-shadow: 0 0 40px whitesmoke;
  }
  to {
    -webkit-transform: translate3d(18rem, -8rem, 0) rotate(-40deg) scale(2);
            transform: translate3d(18rem, -8rem, 0) rotate(-40deg) scale(2);
    text-shadow: 0 0 20px whitesmoke;
    opacity: 0;
  }
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(1) {
  -webkit-animation-delay: 4.0125s;
          animation-delay: 4.0125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(2) {
  -webkit-animation-delay: 4.025s;
          animation-delay: 4.025s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(3) {
  -webkit-animation-delay: 4.0375s;
          animation-delay: 4.0375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(4) {
  -webkit-animation-delay: 4.05s;
          animation-delay: 4.05s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(5) {
  -webkit-animation-delay: 4.0625s;
          animation-delay: 4.0625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(6) {
  -webkit-animation-delay: 4.075s;
          animation-delay: 4.075s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(7) {
  -webkit-animation-delay: 4.0875s;
          animation-delay: 4.0875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(8) {
  -webkit-animation-delay: 4.1s;
          animation-delay: 4.1s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(9) {
  -webkit-animation-delay: 4.1125s;
          animation-delay: 4.1125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(10) {
  -webkit-animation-delay: 4.125s;
          animation-delay: 4.125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(11) {
  -webkit-animation-delay: 4.1375s;
          animation-delay: 4.1375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(12) {
  -webkit-animation-delay: 4.15s;
          animation-delay: 4.15s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(13) {
  -webkit-animation-delay: 4.1625s;
          animation-delay: 4.1625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(14) {
  -webkit-animation-delay: 4.175s;
          animation-delay: 4.175s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(15) {
  -webkit-animation-delay: 4.1875s;
          animation-delay: 4.1875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(16) {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(17) {
  -webkit-animation-delay: 4.2125s;
          animation-delay: 4.2125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(18) {
  -webkit-animation-delay: 4.225s;
          animation-delay: 4.225s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(19) {
  -webkit-animation-delay: 4.2375s;
          animation-delay: 4.2375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(20) {
  -webkit-animation-delay: 4.25s;
          animation-delay: 4.25s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(21) {
  -webkit-animation-delay: 4.2625s;
          animation-delay: 4.2625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(22) {
  -webkit-animation-delay: 4.275s;
          animation-delay: 4.275s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(23) {
  -webkit-animation-delay: 4.2875s;
          animation-delay: 4.2875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(24) {
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(25) {
  -webkit-animation-delay: 4.3125s;
          animation-delay: 4.3125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(26) {
  -webkit-animation-delay: 4.325s;
          animation-delay: 4.325s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(27) {
  -webkit-animation-delay: 4.3375s;
          animation-delay: 4.3375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(28) {
  -webkit-animation-delay: 4.35s;
          animation-delay: 4.35s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(29) {
  -webkit-animation-delay: 4.3625s;
          animation-delay: 4.3625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(30) {
  -webkit-animation-delay: 4.375s;
          animation-delay: 4.375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(31) {
  -webkit-animation-delay: 4.3875s;
          animation-delay: 4.3875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(32) {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(33) {
  -webkit-animation-delay: 4.4125s;
          animation-delay: 4.4125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(34) {
  -webkit-animation-delay: 4.425s;
          animation-delay: 4.425s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(35) {
  -webkit-animation-delay: 4.4375s;
          animation-delay: 4.4375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(36) {
  -webkit-animation-delay: 4.45s;
          animation-delay: 4.45s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(37) {
  -webkit-animation-delay: 4.4625s;
          animation-delay: 4.4625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(38) {
  -webkit-animation-delay: 4.475s;
          animation-delay: 4.475s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(39) {
  -webkit-animation-delay: 4.4875s;
          animation-delay: 4.4875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(40) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(41) {
  -webkit-animation-delay: 4.5125s;
          animation-delay: 4.5125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(42) {
  -webkit-animation-delay: 4.525s;
          animation-delay: 4.525s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(43) {
  -webkit-animation-delay: 4.5375s;
          animation-delay: 4.5375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(44) {
  -webkit-animation-delay: 4.55s;
          animation-delay: 4.55s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(45) {
  -webkit-animation-delay: 4.5625s;
          animation-delay: 4.5625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(46) {
  -webkit-animation-delay: 4.575s;
          animation-delay: 4.575s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(47) {
  -webkit-animation-delay: 4.5875s;
          animation-delay: 4.5875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(48) {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(49) {
  -webkit-animation-delay: 4.6125s;
          animation-delay: 4.6125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(50) {
  -webkit-animation-delay: 4.625s;
          animation-delay: 4.625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(51) {
  -webkit-animation-delay: 4.6375s;
          animation-delay: 4.6375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(52) {
  -webkit-animation-delay: 4.65s;
          animation-delay: 4.65s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(53) {
  -webkit-animation-delay: 4.6625s;
          animation-delay: 4.6625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(54) {
  -webkit-animation-delay: 4.675s;
          animation-delay: 4.675s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(55) {
  -webkit-animation-delay: 4.6875s;
          animation-delay: 4.6875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(56) {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(57) {
  -webkit-animation-delay: 4.7125s;
          animation-delay: 4.7125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(58) {
  -webkit-animation-delay: 4.725s;
          animation-delay: 4.725s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(59) {
  -webkit-animation-delay: 4.7375s;
          animation-delay: 4.7375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(60) {
  -webkit-animation-delay: 4.75s;
          animation-delay: 4.75s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(61) {
  -webkit-animation-delay: 4.7625s;
          animation-delay: 4.7625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(62) {
  -webkit-animation-delay: 4.775s;
          animation-delay: 4.775s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(63) {
  -webkit-animation-delay: 4.7875s;
          animation-delay: 4.7875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(64) {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(65) {
  -webkit-animation-delay: 4.8125s;
          animation-delay: 4.8125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(66) {
  -webkit-animation-delay: 4.825s;
          animation-delay: 4.825s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(67) {
  -webkit-animation-delay: 4.8375s;
          animation-delay: 4.8375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(68) {
  -webkit-animation-delay: 4.85s;
          animation-delay: 4.85s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(69) {
  -webkit-animation-delay: 4.8625s;
          animation-delay: 4.8625s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(70) {
  -webkit-animation-delay: 4.875s;
          animation-delay: 4.875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(71) {
  -webkit-animation-delay: 4.8875s;
          animation-delay: 4.8875s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(72) {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(73) {
  -webkit-animation-delay: 4.9125s;
          animation-delay: 4.9125s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(74) {
  -webkit-animation-delay: 4.925s;
          animation-delay: 4.925s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(75) {
  -webkit-animation-delay: 4.9375s;
          animation-delay: 4.9375s;
}

#quienesSomos .quienesSomos-desktop .story-telling span:nth-of-type(76) {
  -webkit-animation-delay: 4.95s;
          animation-delay: 4.95s;
}

#quienesSomos .quienesSomos-desktop .segundo {
  opacity: 0.0;
  -webkit-animation: fadeIn2 ease-in-out 8s;
          animation: fadeIn2 ease-in-out 8s;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

@-webkit-keyframes fadeIn2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
}

@keyframes fadeIn2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin-top: 1%;
  opacity: 0;
  -webkit-animation: fadeIn3 ease-in-out 4s forwards;
          animation: fadeIn3 ease-in-out 4s forwards;
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

@-webkit-keyframes fadeIn3 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn3 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos {
  width: 100%;
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos :nth-child(1) {
  width: 12.5%;
  position: absolute;
  top: 0px;
  left: 5%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos :nth-child(1) {
    width: 17.5%;
    left: 0%;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos :nth-child(2) {
  width: 5%;
  position: absolute;
  top: -4%;
  left: 30%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos :nth-child(2) {
    display: none;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos :nth-child(3) {
  width: 7.5%;
  position: absolute;
  top: -5%;
  left: 65%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos :nth-child(3) {
    width: 12.5%;
    top: 55%;
    left: -6%;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos :nth-child(4) {
  width: 12.5%;
  position: absolute;
  top: 1%;
  left: 85%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos :nth-child(4) {
    width: 17.5%;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 {
  width: 100%;
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(1) {
  width: 10%;
  position: absolute;
  top: 60%;
  left: 3.5%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(1) {
    display: none;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(2) {
  width: 8%;
  position: absolute;
  top: 35%;
  left: 12.5%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(2) {
    width: 12.5%;
    top: 20%;
    left: -6%;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(3) {
  width: 8%;
  position: absolute;
  top: 82%;
  left: 78%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(3) {
    display: none;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(4) {
  width: 8%;
  position: absolute;
  top: 40%;
  left: 79%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(4) {
    display: none;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(5) {
  width: 8%;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  position: absolute;
  top: 35%;
  left: 93%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos2 :nth-child(5) {
    width: 8%;
    top: 30%;
    left: 95.5%;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(1) {
  width: 20%;
  position: absolute;
  top: 75%;
  left: 3.5%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(1) {
    width: 20%;
    top: 90%;
    left: -9%;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(2) {
  width: 10%;
  position: absolute;
  top: 95%;
  left: 30%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(2) {
    display: none;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(3) {
  width: 7.5%;
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(3) {
    display: none;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(4) {
  width: 5%;
  position: absolute;
  top: 90%;
  left: 65%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(4) {
    display: none;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(5) {
  width: 20%;
  position: absolute;
  top: 78%;
  left: 82%;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-objetos3 :nth-child(5) {
    width: 20%;
    top: 83%;
    left: 90%;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-texto {
  width: 68%;
  margin: 1rem auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#7846A6), to(#7846A6));
  background: linear-gradient(180deg, #7846A6 0%, #7846A6 100%);
  -webkit-box-shadow: -5px 8px 10px rgba(0, 0, 0, 0.25);
          box-shadow: -5px 8px 10px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-texto {
    width: 100%;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-texto h3 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 1.75rem;
  text-align: center;
  color: #FFFFFF;
  margin: 1.5rem 0 1rem 0;
  -webkit-animation: glow 2500ms linear infinite 2000ms;
          animation: glow 2500ms linear infinite 2000ms;
}

@media only screen and (max-width: 768px) {
  #quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-texto h3 {
    font-size: 1rem;
  }
}

@-webkit-keyframes glow {
  40% {
    text-shadow: 0 0 8px #fff;
  }
}

@keyframes glow {
  40% {
    text-shadow: 0 0 8px #fff;
  }
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-texto p {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: center;
  color: #FFFFFF;
  padding: 0 1rem;
}

#quienesSomos .quienesSomos-desktop .contenedor-nosotros .contenedor-texto p span {
  font-weight: bolder;
}

#propuestas {
  background: radial-gradient(31.15% 53.79% at 50% 45.61%, #E3DDD3 22.4%, #B4A99A 99.9%);
  opacity: 0.8;
  min-height: 100vh;
}

#propuestas nav {
  z-index: 10;
  padding-top: 2rem;
}

#propuestas nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#propuestas nav .navbar-toggler {
  background-color: white !important;
}

#propuestas nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #propuestas nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#propuestas nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #propuestas nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#propuestas nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#propuestas section h3 {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 110px;
  text-align: center;
  color: #FAF4F4;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  margin: 2rem auto 0 auto;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #propuestas section h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

#propuestas section .contenedor-libros {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#propuestas section .contenedor-libros a {
  z-index: 1;
  height: 100%;
}

#propuestas section .contenedor-libros a img {
  -webkit-transform: rotate3d(1, 0, 0, -25deg);
          transform: rotate3d(1, 0, 0, -25deg);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  /*Mobile*/
}

#propuestas section .contenedor-libros a img:hover {
  -webkit-transform: rotate3d(1, 0, 0, 0deg);
          transform: rotate3d(1, 0, 0, 0deg);
}

@media only screen and (max-width: 768px) {
  #propuestas section .contenedor-libros a img {
    display: none;
  }
}

#propuestas section .contenedor-libros a .libro1 {
  height: 473px;
}

#propuestas section .contenedor-libros a .libro2 {
  height: 411px;
  margin-top: 3.3rem;
}

#propuestas section .contenedor-libros a .libro3 {
  height: 476px;
}

#propuestas section .contenedor-libros a .libro4 {
  height: 452px;
  margin-top: 1.3rem;
}

#propuestas section .contenedor-libros a .libro5 {
  height: 420px;
  margin-top: 3.3rem;
}

#propuestas section .contenedor-libros-mobile {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#propuestas section .contenedor-libros-mobile a {
  z-index: 1;
  height: 100%;
}

#propuestas section .contenedor-libros-mobile a img {
  -webkit-transform: rotate3d(1, 0, 0, -25deg);
          transform: rotate3d(1, 0, 0, -25deg);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  /*Desktop*/
}

#propuestas section .contenedor-libros-mobile a img:hover {
  -webkit-transform: rotate3d(1, 0, 0, 0deg);
          transform: rotate3d(1, 0, 0, 0deg);
}

@media only screen and (min-width: 769px) {
  #propuestas section .contenedor-libros-mobile a img {
    display: none;
  }
}

#propuestas section .contenedor-libros-mobile a .libro1 {
  height: 354.75px;
}

#propuestas section .contenedor-libros-mobile a .libro2 {
  height: 308.25px;
  margin-top: 2.475rem;
}

#propuestas section .contenedor-libros-mobile a .libro3 {
  height: 357px;
}

#propuestas section .contenedor-libros-mobile a .libro4 {
  height: 339px;
  margin-top: 0.975rem;
}

#propuestas section .contenedor-libros-mobile a .libro5 {
  height: 315px;
  margin-top: 2.475rem;
}

#propuestas section .contenedor-cta {
  width: 60%;
  padding: 0 0.5rem 0.5rem 0.5rem;
  text-align: center;
  margin: 0 auto;
  position: relative;
  bottom: 2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(217, 217, 217, 0.41)), to(#D9D9D9));
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.41) 0%, #D9D9D9 100%);
  -webkit-box-shadow: -5px 8px 10px rgba(0, 0, 0, 0.25);
          box-shadow: -5px 8px 10px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #propuestas section .contenedor-cta {
    width: 90%;
  }
}

#propuestas section .contenedor-cta p {
  font-family: 'Julius Sans One';
  font-weight: 400;
  font-size: 1.75rem;
  text-align: center;
  color: #000000;
  padding-top: 1.5rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #propuestas section .contenedor-cta p {
    font-size: 1rem;
    padding-top: 1rem;
    margin-bottom: 0;
  }
}

#universoAventura {
  background-image: url("/Multimedia/bg-aventura.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 822px;
}

#universoAventura nav {
  z-index: 10;
  padding-top: 2rem;
}

#universoAventura nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#universoAventura nav .navbar-toggler {
  background-color: white !important;
}

#universoAventura nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoAventura nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#universoAventura nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoAventura nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#universoAventura nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#universoAventura section .titulo-propuesta {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 110px;
  color: #FAF4F4;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: relative;
  top: 8rem;
  left: 4rem;
  z-index: 2;
}

#universoAventura section .contenedor-buho {
  position: absolute;
  width: 10%;
  top: 10%;
  left: 30%;
  z-index: 1;
  -webkit-animation: rotateAstro 5s linear infinite;
          animation: rotateAstro 5s linear infinite;
}

@-webkit-keyframes rotateAstro {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@keyframes rotateAstro {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

#universoAventura section .contenedor-buho .buho {
  width: 100%;
  -webkit-animation: moveAstro 5s linear infinite;
          animation: moveAstro 5s linear infinite;
}

@-webkit-keyframes moveAstro {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  25% {
    -webkit-transform: translate3d(50px, 50px, 0);
            transform: translate3d(50px, 50px, 0);
  }
  50% {
    -webkit-transform: translate3d(100px, 100px, 0);
            transform: translate3d(100px, 100px, 0);
  }
  75% {
    -webkit-transform: translate3d(50px, 50px, 0);
            transform: translate3d(50px, 50px, 0);
  }
}

@keyframes moveAstro {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  25% {
    -webkit-transform: translate3d(50px, 50px, 0);
            transform: translate3d(50px, 50px, 0);
  }
  50% {
    -webkit-transform: translate3d(100px, 100px, 0);
            transform: translate3d(100px, 100px, 0);
  }
  75% {
    -webkit-transform: translate3d(50px, 50px, 0);
            transform: translate3d(50px, 50px, 0);
  }
}

#universoAventura section .texto-propuesta {
  position: absolute;
  top: 20%;
  right: 3%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#universoAventura section .texto-propuesta p {
  width: 80%;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 27px;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  left: 250px;
  top: 170px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#universoAventura section .texto-propuesta p span {
  width: 50%;
  font-style: italic;
}

#universoAventura .volver {
  position: absolute;
  top: 92.5%;
  left: 80%;
  z-index: 3;
  border: 1px solid #F3EFEF;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

#universoAventura .volver .arrow {
  width: 20px;
  position: relative;
  bottom: 2px;
  right: 2px;
}

#universoAventura .volver a {
  text-decoration: none;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  color: #FFFFFF;
}

#universoEspacio {
  background-image: url("/Multimedia/bg-espacio.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 822px;
  background-position: -1px;
}

#universoEspacio nav {
  z-index: 10;
  padding-top: 2rem;
}

#universoEspacio nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#universoEspacio nav .navbar-toggler {
  background-color: white !important;
}

#universoEspacio nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoEspacio nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#universoEspacio nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoEspacio nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#universoEspacio nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#universoEspacio section .titulo-propuesta {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 110px;
  color: #FAF4F4;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: relative;
  top: 8rem;
  left: 4rem;
  z-index: 2;
}

#universoEspacio section .contenedor-astronauta {
  position: absolute;
  width: 15%;
  top: 40%;
  left: 30%;
  z-index: 1;
  -webkit-animation: rotateAstro 5s linear infinite;
          animation: rotateAstro 5s linear infinite;
}

@keyframes rotateAstro {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

#universoEspacio section .contenedor-astronauta .astronauta {
  width: 100%;
  -webkit-animation: moveAstro 5s linear infinite;
          animation: moveAstro 5s linear infinite;
}

@keyframes moveAstro {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  25% {
    -webkit-transform: translate3d(50px, 50px, 0);
            transform: translate3d(50px, 50px, 0);
  }
  50% {
    -webkit-transform: translate3d(100px, 100px, 0);
            transform: translate3d(100px, 100px, 0);
  }
  75% {
    -webkit-transform: translate3d(50px, 50px, 0);
            transform: translate3d(50px, 50px, 0);
  }
}

#universoEspacio section .texto-propuesta {
  position: absolute;
  top: 40%;
  right: 3%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#universoEspacio section .texto-propuesta p {
  width: 75%;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 27px;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  left: 250px;
  top: 170px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#universoEspacio section .texto-propuesta p span {
  width: 50%;
  font-style: italic;
}

#universoEspacio .volver {
  position: absolute;
  top: 92.5%;
  left: 80%;
  z-index: 3;
  border: 1px solid #F3EFEF;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: fit-content;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

#universoEspacio .volver .arrow {
  width: 20px;
  position: relative;
  bottom: 2px;
  right: 2px;
}

#universoEspacio .volver a {
  text-decoration: none;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  color: #FFFFFF;
}

#universoIslaPirata {
  background-image: url("/Multimedia/bg-piratas.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 822px;
  overflow-x: hidden;
}

#universoIslaPirata nav {
  z-index: 10;
  padding-top: 2rem;
}

#universoIslaPirata nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#universoIslaPirata nav .navbar-toggler {
  background-color: white !important;
}

#universoIslaPirata nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoIslaPirata nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#universoIslaPirata nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoIslaPirata nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#universoIslaPirata nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#universoIslaPirata section .titulo-propuesta {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 110px;
  color: #FAF4F4;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: absolute;
  top: 15%;
  left: 4rem;
  z-index: 2;
}

#universoIslaPirata section .contenedor-barco {
  position: absolute;
  width: 40.5rem;
  top: 25%;
  left: 100%;
  z-index: 1;
  -webkit-animation: moveBoat 4s linear forwards;
          animation: moveBoat 4s linear forwards;
}

@-webkit-keyframes moveBoat {
  0% {
    -webkit-transform: translate(0rem);
            transform: translate(0rem);
  }
  20% {
    -webkit-transform: translate(-30%);
            transform: translate(-30%);
  }
  40% {
    -webkit-transform: translate(-60%);
            transform: translate(-60%);
  }
  60% {
    -webkit-transform: translate(-90%);
            transform: translate(-90%);
  }
  80% {
    -webkit-transform: translate(-120%);
            transform: translate(-120%);
  }
  100% {
    -webkit-transform: translate(-150%);
            transform: translate(-150%);
  }
}

@keyframes moveBoat {
  0% {
    -webkit-transform: translate(0rem);
            transform: translate(0rem);
  }
  20% {
    -webkit-transform: translate(-30%);
            transform: translate(-30%);
  }
  40% {
    -webkit-transform: translate(-60%);
            transform: translate(-60%);
  }
  60% {
    -webkit-transform: translate(-90%);
            transform: translate(-90%);
  }
  80% {
    -webkit-transform: translate(-120%);
            transform: translate(-120%);
  }
  100% {
    -webkit-transform: translate(-150%);
            transform: translate(-150%);
  }
}

#universoIslaPirata section .contenedor-barco .barco {
  width: 100%;
  -webkit-animation: rotateBoat 4s linear infinite;
          animation: rotateBoat 4s linear infinite;
}

@-webkit-keyframes rotateBoat {
  20% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  40% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  60% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}

@keyframes rotateBoat {
  20% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  40% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  60% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}

#universoIslaPirata section .texto-propuesta {
  position: absolute;
  top: 20%;
  right: 1%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#universoIslaPirata section .texto-propuesta p {
  width: 70%;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 27px;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  left: 250px;
  top: 170px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#universoIslaPirata section .texto-propuesta p span {
  font-style: italic;
}

#universoIslaPirata section .piratas-ola {
  height: 25%;
  position: absolute;
  top: 75%;
  left: 0%;
  z-index: 3;
}

#universoIslaPirata .volver {
  position: absolute;
  top: 92.5%;
  left: 80%;
  z-index: 3;
  border: 1px solid #F3EFEF;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: fit-content;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

#universoIslaPirata .volver .arrow {
  width: 20px;
  position: relative;
  bottom: 2px;
  right: 2px;
}

#universoIslaPirata .volver a {
  text-decoration: none;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  color: #FFFFFF;
}

#universoLigaHeroica {
  background-image: url("/Multimedia/bg-liga.webp");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 822px;
  overflow-x: hidden;
}

#universoLigaHeroica nav {
  z-index: 10;
  padding-top: 2rem;
}

#universoLigaHeroica nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#universoLigaHeroica nav .navbar-toggler {
  background-color: white !important;
}

#universoLigaHeroica nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoLigaHeroica nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#universoLigaHeroica nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoLigaHeroica nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#universoLigaHeroica nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#universoLigaHeroica section .titulo-propuesta {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 110px;
  color: #FAF4F4;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: relative;
  top: 8rem;
  left: 4rem;
  z-index: 2;
}

#universoLigaHeroica section .contenedor-heroe {
  position: absolute;
  top: 450px;
  left: 30%;
  width: 30%;
  z-index: 1;
  -webkit-animation: volarHeroe 1s linear forwards;
          animation: volarHeroe 1s linear forwards;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  opacity: 0;
}

@-webkit-keyframes volarHeroe {
  0% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotate(-50deg);
            transform: translate3d(0px, 0px, 0px) rotate(-50deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate3d(-30%, -200px, 0) rotate(-25deg);
            transform: translate3d(-30%, -200px, 0) rotate(-25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(-50%, -400px, 0) rotate(0deg);
            transform: translate3d(-50%, -400px, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes volarHeroe {
  0% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotate(-50deg);
            transform: translate3d(0px, 0px, 0px) rotate(-50deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate3d(-30%, -200px, 0) rotate(-25deg);
            transform: translate3d(-30%, -200px, 0) rotate(-25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(-50%, -400px, 0) rotate(0deg);
            transform: translate3d(-50%, -400px, 0) rotate(0deg);
    opacity: 1;
  }
}

#universoLigaHeroica section .contenedor-heroe .heroe {
  width: 50%;
  -webkit-animation: rotarHeroe 2s linear infinite;
          animation: rotarHeroe 2s linear infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes rotarHeroe {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@keyframes rotarHeroe {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

#universoLigaHeroica section .contenedor-heroina {
  position: absolute;
  width: 18%;
  top: 63%;
  left: 20%;
  z-index: 1;
  -webkit-animation: barridoHeroina 1s linear forwards;
          animation: barridoHeroina 1s linear forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}

@-webkit-keyframes barridoHeroina {
  0% {
    -webkit-transform: translate3d(-2000px, 0px, 0px);
            transform: translate3d(-2000px, 0px, 0px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate3d(10px, 0px, 0px);
            transform: translate3d(10px, 0px, 0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(50px, 0px, 0px);
            transform: translate3d(50px, 0px, 0px);
    opacity: 1;
  }
}

@keyframes barridoHeroina {
  0% {
    -webkit-transform: translate3d(-2000px, 0px, 0px);
            transform: translate3d(-2000px, 0px, 0px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate3d(10px, 0px, 0px);
            transform: translate3d(10px, 0px, 0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(50px, 0px, 0px);
            transform: translate3d(50px, 0px, 0px);
    opacity: 1;
  }
}

#universoLigaHeroica section .contenedor-heroina .heroina {
  width: 100%;
  -webkit-animation: transporteHeroina 3s ease infinite;
          animation: transporteHeroina 3s ease infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes transporteHeroina {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-250px, 0, 0);
            transform: translate3d(-250px, 0, 0);
  }
}

@keyframes transporteHeroina {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-250px, 0, 0);
            transform: translate3d(-250px, 0, 0);
  }
}

#universoLigaHeroica section .texto-propuesta {
  position: absolute;
  top: 40%;
  right: 3%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#universoLigaHeroica section .texto-propuesta p {
  width: 75%;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 27px;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  left: 250px;
  top: 170px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#universoLigaHeroica section .texto-propuesta p span {
  font-style: italic;
}

#universoLigaHeroica .volver {
  position: absolute;
  top: 92.5%;
  left: 80%;
  z-index: 3;
  border: 1px solid #F3EFEF;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: fit-content;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

#universoLigaHeroica .volver .arrow {
  width: 20px;
  position: relative;
  bottom: 2px;
  right: 2px;
}

#universoLigaHeroica .volver a {
  text-decoration: none;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  color: #FFFFFF;
}

#universoMagia {
  background-image: url("/Multimedia/bg-magia.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 822px;
}

#universoMagia nav {
  z-index: 10;
  padding-top: 2rem;
}

#universoMagia nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#universoMagia nav .navbar-toggler {
  background-color: white !important;
}

#universoMagia nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoMagia nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#universoMagia nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #universoMagia nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#universoMagia nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#universoMagia section .titulo-propuesta {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 110px;
  color: #FAF4F4;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: relative;
  top: 8rem;
  left: 4rem;
  z-index: 2;
}

#universoMagia section .texto-propuesta {
  position: absolute;
  top: 20%;
  right: 3%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#universoMagia section .texto-propuesta p {
  width: 80%;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 27px;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  left: 250px;
  top: 170px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#universoMagia section .texto-propuesta p span {
  width: 50%;
  font-style: italic;
}

#universoMagia .volver {
  position: absolute;
  top: 92.5%;
  left: 80%;
  z-index: 3;
  border: 1px solid #F3EFEF;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: fit-content;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

#universoMagia .volver .arrow {
  width: 20px;
  position: relative;
  bottom: 2px;
  right: 2px;
}

#universoMagia .volver a {
  text-decoration: none;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  color: #FFFFFF;
}

#contacto {
  background-image: url("../Multimedia/bg-contacto.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: scroll;
  min-height: 100vh;
  /*Mobile*/
}

#contacto nav {
  z-index: 10;
  padding-top: 2rem;
}

#contacto nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#contacto nav .navbar-toggler {
  background-color: white !important;
}

#contacto nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#contacto nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#contacto nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  #contacto {
    background-image: url("../Multimedia/bg-mobile-contacto.png");
    background-attachment: fixed;
  }
}

#contacto .redes-sociales {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 93%;
  bottom: 10%;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto .redes-sociales {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 50%;
    position: relative;
    left: 25%;
    bottom: 10px;
    padding: 1rem 0 3rem 0;
  }
}

#contacto .redes-sociales img {
  width: 3rem;
  padding-top: 0.5rem;
  -webkit-filter: drop-shadow(-5px 8px 4px rgba(0, 0, 0, 0.37));
          filter: drop-shadow(-5px 8px 4px rgba(0, 0, 0, 0.37));
}

#contacto form {
  width: 80%;
  height: 100%;
  margin: 1% 0 10% 3%;
  background: rgba(253, 249, 249, 0.75);
  border: 1px solid rgba(44, 38, 108, 0.33);
  -webkit-box-shadow: -5px 10px 5px rgba(0, 0, 0, 0.25);
          box-shadow: -5px 10px 5px rgba(0, 0, 0, 0.25);
  border-radius: 0px 57px 57px 0px;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form {
    width: 90%;
    margin: 1rem 0 0 1rem;
    border-radius: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#contacto form h3 {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #7846A6;
  text-transform: uppercase;
  margin: 1rem 0 0 4rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form h3 {
    font-size: 1rem;
    margin: 2.25rem 0 0 1rem;
  }
}

#contacto form .form-fields-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form .form-fields-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#contacto form .form-fields-container .form-column-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  margin: 1rem 1.5rem 0 3rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form .form-fields-container .form-column-1 {
    width: 100%;
    margin: 1rem 1.5rem 0 1.5rem;
  }
}

#contacto form .form-fields-container .form-column-1 .field-nombre-apellido {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form .form-fields-container .form-column-1 .field-nombre-apellido {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#contacto form .form-fields-container .form-column-1 .field-nombre-apellido .nombre {
  width: 50%;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form .form-fields-container .form-column-1 .field-nombre-apellido .nombre {
    width: 100%;
  }
}

#contacto form .form-fields-container .form-column-1 .field-nombre-apellido .apellido {
  margin-left: 1rem;
  width: 50%;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form .form-fields-container .form-column-1 .field-nombre-apellido .apellido {
    margin-left: 0;
    width: 100%;
  }
}

#contacto form .form-fields-container .form-column-2 {
  width: 50%;
  margin: 1rem 0 0 1.5rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form .form-fields-container .form-column-2 {
    width: 100%;
    margin: 1rem 1.5rem 0 1.5rem;
  }
}

#contacto form .form-fields-container label {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 0;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form .form-fields-container label {
    font-size: 1rem;
  }
}

#contacto form .form-fields-container input {
  width: 100%;
  height: 2.25rem;
  background: rgba(247, 236, 236, 0.75);
  border-radius: 15px;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form .form-fields-container input {
    width: 90%;
  }
}

#contacto form .form-fields-container textarea {
  background: rgba(247, 236, 236, 0.75);
  border-radius: 15px;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form .form-fields-container textarea {
    width: 90%;
  }
}

#contacto form button {
  width: 8.75rem;
  height: 2.5rem;
  margin: 0rem 0rem 1.5rem 16rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background: #7846A6;
  -webkit-box-shadow: -5px 8px 10px rgba(0, 0, 0, 0.25);
          box-shadow: -5px 8px 10px rgba(0, 0, 0, 0.25);
  border-radius: 22px;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.25rem;
  text-align: center;
  color: #FFFFFF;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #contacto form button {
    margin: 0 0 2rem 0;
    font-size: 1rem;
  }
}

#confirmacion {
  background-image: url("../Multimedia/bg-contacto.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: scroll;
  min-height: 100vh;
  /*Desktop*/
}

#confirmacion nav {
  z-index: 10;
  padding-top: 2rem;
}

#confirmacion nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#confirmacion nav .navbar-toggler {
  background-color: white !important;
}

#confirmacion nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #confirmacion nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#confirmacion nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #confirmacion nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#confirmacion nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  #confirmacion {
    background-image: url("../Multimedia/bg-mobile-contacto.png");
  }
}

#confirmacion .mensajeFinal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2rem 2rem 1rem 2rem;
  position: absolute;
  top: 39.84%;
  background: rgba(253, 249, 249, 0.75);
  border: 1px solid rgba(44, 38, 108, 0.33);
  -webkit-box-shadow: -5px 10px 5px rgba(0, 0, 0, 0.25);
          box-shadow: -5px 10px 5px rgba(0, 0, 0, 0.25);
  border-radius: 57px;
  /*mobile*/
}

@media only screen and (max-width: 768px) {
  #confirmacion .mensajeFinal {
    padding: 0.5rem 1rem 0 1rem;
  }
}

#confirmacion .mensajeFinal p {
  width: 90%;
  font-family: 'Julius Sans One';
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 31px;
  text-align: center;
  color: #613689;
  /*mobile*/
}

@media only screen and (max-width: 768px) {
  #confirmacion .mensajeFinal p {
    font-size: 1rem;
  }
}

#confirmacion .redes-sociales {
  position: absolute;
  left: 93%;
  bottom: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*mobile*/
}

@media only screen and (max-width: 768px) {
  #confirmacion .redes-sociales {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 50%;
    left: 25%;
    top: 500px;
  }
}

#confirmacion .redes-sociales img {
  width: 3rem;
  padding-top: 0.5rem;
  -webkit-filter: drop-shadow(-5px 8px 4px rgba(0, 0, 0, 0.37));
          filter: drop-shadow(-5px 8px 4px rgba(0, 0, 0, 0.37));
}

#mobile-magia {
  background-image: url("../Multimedia/bg-mobile-magia.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  min-height: 100vh;
}

#mobile-magia nav {
  z-index: 10;
  padding-top: 2rem;
}

#mobile-magia nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#mobile-magia nav .navbar-toggler {
  background-color: white !important;
}

#mobile-magia nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-magia nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#mobile-magia nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-magia nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#mobile-magia nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#mobile-magia .contenedor .titulo-propuesta-mobile {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 2rem;
  color: #FAF4F4;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 12%;
  left: 9%;
}

#mobile-magia .contenedor .wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#mobile-magia .contenedor .wrapper .marco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  width: 80%;
  height: 10%;
  position: absolute;
  bottom: 0;
  background: rgba(94, 110, 70, 0.75);
  border-radius: 20px 20px 0px 0px;
  opacity: 0;
  -webkit-animation: aparicion 3s ease 1s forwards;
          animation: aparicion 3s ease 1s forwards;
}

@-webkit-keyframes aparicion {
  100% {
    height: 72%;
    opacity: 1;
  }
}

@keyframes aparicion {
  100% {
    height: 72%;
    opacity: 1;
  }
}

#mobile-magia .contenedor .wrapper .marco p {
  padding-top: 1rem;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 0;
}

#mobile-magia .contenedor .wrapper .marco .edad {
  font-family: 'Poppins';
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  margin: 1rem 0 1rem 0;
  padding-top: 0rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

#mobile-magia .contenedor .wrapper .marco .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 1rem;
}

#mobile-magia .contenedor .wrapper .marco .cta p {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 0.75rem;
  color: #FAF4F4;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  padding-top: 0;
}

#mobile-magia .contenedor .wrapper .marco .cta .arrow1 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 20px;
}

#mobile-magia .contenedor .wrapper .marco .cta .arrow2 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 20px;
}

#mobile-aventura {
  background-image: url("../Multimedia/bg-mobile-aventura.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  min-height: 100vh;
}

#mobile-aventura nav {
  z-index: 10;
  padding-top: 2rem;
}

#mobile-aventura nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#mobile-aventura nav .navbar-toggler {
  background-color: white !important;
}

#mobile-aventura nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-aventura nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#mobile-aventura nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-aventura nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#mobile-aventura nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#mobile-aventura .contenedor .titulo-propuesta-mobile {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 2rem;
  color: #FAF4F4;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 12%;
  left: 9%;
}

#mobile-aventura .contenedor .wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#mobile-aventura .contenedor .wrapper .marco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  width: 80%;
  height: 10%;
  position: absolute;
  bottom: 0;
  background: rgba(81, 60, 12, 0.86);
  border-radius: 20px 20px 0px 0px;
  opacity: 0;
  -webkit-animation: aparicion 3s ease 1s forwards;
          animation: aparicion 3s ease 1s forwards;
}

@keyframes aparicion {
  100% {
    height: 72%;
    opacity: 1;
  }
}

#mobile-aventura .contenedor .wrapper .marco p {
  padding-top: 1rem;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 0;
}

#mobile-aventura .contenedor .wrapper .marco .edad {
  font-family: 'Poppins';
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  margin: 1rem 0 1rem 0;
  padding-top: 0rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

#mobile-aventura .contenedor .wrapper .marco .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 1rem;
}

#mobile-aventura .contenedor .wrapper .marco .cta p {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 0.75rem;
  color: #FAF4F4;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  padding-top: 0;
}

#mobile-aventura .contenedor .wrapper .marco .cta .arrow1 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 20px;
}

#mobile-aventura .contenedor .wrapper .marco .cta .arrow2 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 20px;
}

#mobile-espacio {
  background-image: url("../Multimedia/bg-mobile-espacio.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  min-height: 100vh;
}

#mobile-espacio nav {
  z-index: 10;
  padding-top: 2rem;
}

#mobile-espacio nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#mobile-espacio nav .navbar-toggler {
  background-color: white !important;
}

#mobile-espacio nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-espacio nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#mobile-espacio nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-espacio nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#mobile-espacio nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#mobile-espacio .contenedor .titulo-propuesta-mobile {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 2rem;
  color: #FAF4F4;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 12%;
  left: 9%;
}

#mobile-espacio .contenedor .wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#mobile-espacio .contenedor .wrapper .marco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  width: 80%;
  height: 10%;
  position: absolute;
  bottom: 0;
  background: rgba(126, 71, 159, 0.75);
  border-radius: 20px 20px 0px 0px;
  opacity: 0;
  -webkit-animation: aparicion 3s ease 1s forwards;
          animation: aparicion 3s ease 1s forwards;
}

@keyframes aparicion {
  100% {
    height: 72%;
    opacity: 1;
  }
}

#mobile-espacio .contenedor .wrapper .marco p {
  padding-top: 1rem;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 0;
}

#mobile-espacio .contenedor .wrapper .marco .edad {
  font-family: 'Poppins';
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  margin: 1rem 0 1rem 0;
  padding-top: 0rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

#mobile-espacio .contenedor .wrapper .marco .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 1rem;
}

#mobile-espacio .contenedor .wrapper .marco .cta p {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 0.75rem;
  color: #FAF4F4;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  padding-top: 0;
}

#mobile-espacio .contenedor .wrapper .marco .cta .arrow1 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 20px;
}

#mobile-espacio .contenedor .wrapper .marco .cta .arrow2 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 20px;
}

#mobile-liga {
  background-image: url("../Multimedia/bg-mobile-liga.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  min-height: 100vh;
}

#mobile-liga nav {
  z-index: 10;
  padding-top: 2rem;
}

#mobile-liga nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#mobile-liga nav .navbar-toggler {
  background-color: white !important;
}

#mobile-liga nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-liga nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#mobile-liga nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-liga nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#mobile-liga nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#mobile-liga .contenedor .titulo-propuesta-mobile {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 2rem;
  color: #FAF4F4;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 12%;
  left: 9%;
}

#mobile-liga .contenedor .wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#mobile-liga .contenedor .wrapper .marco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  width: 80%;
  height: 10%;
  position: absolute;
  bottom: 0;
  background: rgba(117, 62, 151, 0.85);
  border-radius: 20px 20px 0px 0px;
  opacity: 0;
  -webkit-animation: aparicion 3s ease 1s forwards;
          animation: aparicion 3s ease 1s forwards;
}

@keyframes aparicion {
  100% {
    height: 72%;
    opacity: 1;
  }
}

#mobile-liga .contenedor .wrapper .marco p {
  padding-top: 1rem;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 0;
}

#mobile-liga .contenedor .wrapper .marco .edad {
  font-family: 'Poppins';
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  margin: 1rem 0 1rem 0;
  padding-top: 0rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

#mobile-liga .contenedor .wrapper .marco .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 1rem;
}

#mobile-liga .contenedor .wrapper .marco .cta p {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 0.75rem;
  color: #FAF4F4;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  padding-top: 0;
}

#mobile-liga .contenedor .wrapper .marco .cta .arrow1 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 20px;
}

#mobile-liga .contenedor .wrapper .marco .cta .arrow2 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 20px;
}

#mobile-islaPirata {
  background-image: url("../Multimedia/bg-mobile-piratas.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  min-height: 100vh;
}

#mobile-islaPirata nav {
  z-index: 10;
  padding-top: 2rem;
}

#mobile-islaPirata nav .logo-nav {
  width: 100px;
  margin-left: 2rem;
}

#mobile-islaPirata nav .navbar-toggler {
  background-color: white !important;
}

#mobile-islaPirata nav ul {
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-islaPirata nav ul {
    margin: 0.5rem -0.5rem 0 0 !important;
    float: right;
  }
}

#mobile-islaPirata nav ul li a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1.125rem;
  color: #F3EFEF;
  margin: 0 1rem;
  padding: 0.25rem 1rem;
  /*Mobile*/
}

@media only screen and (max-width: 768px) {
  #mobile-islaPirata nav ul li a {
    font-size: 0.75rem;
    padding: 0.25rem 0rem;
    text-align: center;
  }
}

#mobile-islaPirata nav ul li .active {
  border: 1px solid #F9F3F3;
  border-radius: 25px;
  font-weight: 600;
}

#mobile-islaPirata .contenedor .titulo-propuesta-mobile {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 2rem;
  color: #FAF4F4;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 12%;
  left: 9%;
}

#mobile-islaPirata .contenedor .wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#mobile-islaPirata .contenedor .wrapper .marco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  width: 80%;
  height: 10%;
  position: absolute;
  bottom: 0;
  background: rgba(0, 221, 255, 0.9);
  border-radius: 20px 20px 0px 0px;
  opacity: 0;
  -webkit-animation: aparicion 3s ease 1s forwards;
          animation: aparicion 3s ease 1s forwards;
}

@keyframes aparicion {
  100% {
    height: 72%;
    opacity: 1;
  }
}

#mobile-islaPirata .contenedor .wrapper .marco p {
  padding-top: 1rem;
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 0;
}

#mobile-islaPirata .contenedor .wrapper .marco .edad {
  font-family: 'Poppins';
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #FFFFFF;
  margin: 1rem 0 1rem 0;
  padding-top: 0rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

#mobile-islaPirata .contenedor .wrapper .marco .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 1rem;
}

#mobile-islaPirata .contenedor .wrapper .marco .cta p {
  font-family: 'Aladin';
  font-weight: 400;
  font-size: 0.75rem;
  color: #FAF4F4;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  padding-top: 0;
}

#mobile-islaPirata .contenedor .wrapper .marco .cta .arrow1 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 20px;
}

#mobile-islaPirata .contenedor .wrapper .marco .cta .arrow2 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 20px;
}

* {
  margin: 0;
  padding: 0;
}
/*# sourceMappingURL=style.css.map */