@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,900;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

:root {
  --minion-color: #ecc65d;
  --font-family: 'Rubik', sans-serif;
  --p-font-family: 'Roboto', sans-serif;
}

.rubik-h1 {
  font-family: 'Rubik', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.roboto-regular {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  cursor: none;
  position: relative;
  width: 100%;
}

.cursor {
  pointer-events: none;
  position: fixed;
  padding: 1rem;
  background-color: #f14fd9;
  box-shadow: #1e252d 2px 2px -2px;
  opacity: 0.7;
  border-radius: 50%;
  z-index: 99;
}

.logo-menu {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 97;
  padding-top: 20px;
  width: 100%;
  margin: 0;
}

.div-logo {
  width: 100%;
  display: flex;
  justify-content: center;
}

.menu {
  height: auto;
  overflow: hidden;
  top: 2rem;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 94;
}

.lista-menu ul {
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5%;
}

.lista-menu li {
  margin-bottom: 1rem;
  padding: 16px;
  list-style-type: none;
  color: var(--minion-color);
  font-size: 32px;
  font-family: var(--font-family);
  background-color: #2e5ab1;
  border-radius: 25px;
  text-align: center;
  opacity: 0.7;
}

.lista-menu ul li:nth-child(1) {
  transform: translateY(12px);
}
.lista-menu ul li:nth-child(3) {
  transform: translateY(8px);
}
.lista-menu ul li:nth-child(6) {
  transform: translateY(14px);
}

.menu ul li:hover {
  scale: 1.1;
  text-shadow: #af5604 1px 2px 1px;
  animation: shake-icon 800ms cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  opacity: 1;
}

.menu__icon {
  position: absolute;
  right: 3rem;
  top: 1.8rem;
  width: 50px;
  height: 50px;
}

.hidden-image {
  position: absolute;
  display: none;
  height: 50px;
  right: 0;
}

.bar-1,
.bar-2,
.bar-3 {
  width: 60px;
  height: 6px;
  background: var(--minion-color);
  box-shadow: #aa7122 1px 2px 1px;
  border-radius: 3px;
  margin: 4px 0;
}

.logo {
  height: 60px;
}

.logo:hover {
  animation: scale-logo 1s linear;
}

@keyframes scale-logo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.menu__icon:hover {
  animation: shake-icon 800ms linear infinite;
}

@keyframes shake-icon {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(5%) translateY(-2%);
  }
  20% {
    transform: translateX(8%) translateY(0%);
  }
  30% {
    transform: translateX(12%) translateY(2%);
  }
  40% {
    transform: translateX(15%) translateY(0%);
  }
  50% {
    transform: translateX(17%) translateY(-2%);
  }
  60% {
    transform: translateX(15%) translateY(0%);
  }
  70% {
    transform: translateX(12%) translateY(2%);
  }
  80% {
    transform: translateX(8%) translateY(0%);
  }
  90% {
    transform: translateX(5%) translateY(-2%);
  }
  100% {
    transform: translateX(0) translateY(0%);
  }
}

h1 span {
  color: var(--minion-color);
  text-shadow: #ab7950 4px 8px 2px;
  z-index: 1;
  transform: translateY(-80%);
}

.div-hero-image {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 10;
  top: 150px;
  padding-left: 30px;
  padding-right: 30px;
}

.hero-image {
  width: 900px;
  margin: 0 auto;
}

.rubik-h1 {
  color: var(--minion-color);
  font-size: 200px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  opacity: 1;
  position: absolute;
  z-index: 0;
}

/* HERO IMAGE */

.atropos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  width: 100%;
  background-color: white !important;
  box-shadow: none !important;
  box-shadow: none;
  height: 100vh;
}

.atropos > h1.rubik-h1 {
  width: 100%;
}

.atropos-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MAIN CONTENT */

.wrapper {
  margin: 0;
  padding: 5rem;
  width: 100%;
}

.main {
  height: auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  box-shadow: #333 2px 4px 20px;
  overflow-x: visible;
  background-color: white;
}

.video {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  z-index: 12;
}

.texto-video {
  z-index: 93;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-top: 150px;
}

.texto-video p {
  z-index: 93;
  width: 690px;
  font-family: sans-serif;
  color: #333;
  text-align: justify;
  font-size: 16px;
  line-height: 1.2rem;
}

section {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  overflow-y: visible;
}

section#kevin {
  margin-top: -300px;
  padding-top: 150px;
  z-index: 1;
}

section.section-rigth {
  margin-bottom: 0;
}

.minions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-left::before {
  background-image: radial-gradient(
    100% 100% at 20% 50%,
    #ffe388 0%,
    #eca516 100%
  );
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
  z-index: 2;
}

.animada.section-left::before {
  animation: animateBackground 3s ease-in-out;
}

.fondoAnimado.section-left::before {
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}

@keyframes animateBackground {
  from {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
  }
  to {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
  }
}

.minion {
  width: 80%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  margin-top: 150px;
  z-index: 94;
  align-items: flex-end;
  padding-bottom: 100px;
}

.minion.left {
  flex-direction: row;
}

.minion-image {
  height: 500px;
  z-index: 94;
  opacity: 0;
  animation: moverMinion auto linear, bounce auto linear 9 alternate;
  animation-timeline: scroll(root);
}

@keyframes bounce {
  100% {
    transform: translateY(15vh);
  }
}

@keyframes moverMinion {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}

.minion-image.kevin {
  height: 650px;
}

.minion-image.kevin:hover {
  animation: scale 1.5s both;
}

@keyframes scale {
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1) translateY(5vh);
  }
}

.minion-image.bob {
  height: 450px;
  margin-right: 0;
}

.minion-image.bob:hover {
  animation: rotate 1.5s 1 linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotateZ(180deg) scale(0.7);
    transform-style: preserve-3d;
  }
  100% {
    transform: rotateZ(360deg) scale(0.7);
    transform-style: preserve-3d;
  }
}

.minion-image.dave:hover {
  animation: bouncing 0.4s 4 ease-in alternate;
}

@keyframes bouncing {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5vh);
  }
  100% {
    transform: translateY(0);
  }
}

.minion-image.stuart {
  height: 700px;
}

.minion-image.stuart:hover {
  animation: catching-banana 1s 1 ease-out;
}

@keyframes catching-banana {
  0% {
    transform: translateY(-20%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(0.5);
  }
  100% {
    transform: translateY(0%) scale(1);
  }
}

.minion-image.phil:hover {
  animation: dance 1.5s 1 ease-in-out;
}

@keyframes dance {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-10deg) scale(1.1);
  }
  50% {
    transform: rotate(20deg) scale(0.9);
  }
  75% {
    transform: rotate(-10deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

.minion-image.carl:hover {
  animation: scaleCarl 1.5s 1 linear;
}

@keyframes scaleCarl {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(0.4);
  }
  100% {
    transform: scale(0.9);
  }
}

.meet {
  z-index: 94;
  width: 25%;
}

.meet-right {
  transform: translateX(100%);
  opacity: 0;
}

.meet-left {
  transform: translateX(-100%);
  opacity: 0;
}

.meet p {
  margin-bottom: 0;
}

.meet p span {
  font-family: var(--font-family);
  font-size: 32px;
  color: var(--minion-color);
  text-shadow: #673302 1px 2px 2px;
}

.meet h2 {
  font-family: var(--font-family);
  font-size: 70px;
  color: #333;
  text-shadow: #673302 1px 2px 2px;
  margin-top: 0;
  margin-bottom: 0;
}

.left h2 {
  color: white;
}

.left p > span {
  color: #e79511;
}

.descripcion {
  margin-top: 40px;
  z-index: 2;
}

.descripcion-p {
  font-family: sans-serif;
  color: #333;
  text-align: justify;
  font-size: 16px;
  line-height: 1.5rem;
}

.meet-interview {
  height: 125px;
  width: 125px;
  border-radius: 50%;
  background-color: #f7cf4d;
  border: 20px solid white;
  z-index: 95;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.meet-interview:hover {
  animation: scaleButton 1s 1 linear;
}

@keyframes scaleButton {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}

.right .meet > .meet-interview {
  margin-top: 20px;
  height: 100px;
  width: 100px;
  border: 10px solid #f7cf4d;
  background-color: white;
}

.play-interview {
  height: 110px;
}

.minions.scenes {
  height: 160vh;
  margin-top: 150px;
  margin-bottom: 100px;
}

.div-scenes {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: auto;
}

.screenshot {
  position: absolute;
}

.screenshot > img {
  width: 600px;
  height: auto;
  border: 10px solid white;
}

.scene-1 {
  z-index: 1;
  transform: translateX(-50px);
}

.scene-1 > img {
  width: 500px;
}

.screenshot.scene-1:hover {
  animation: animation1 1.5s 1 linear;
}

@keyframes animation1 {
  0% {
    z-index: 1;
    scale: 1;
    transform: translateX(0);
  }
  5% {
    z-index: 3;
  }
  50% {
    z-index: 3;
    scale: 1.2;
    transform: translateX(-100px);
  }
  100% {
    z-index: 1;
    scale: 1;
    transform: translateX(0);
  }
}

.scene-2 {
  z-index: 2;
  top: 260px;
  transform: translateX(120px);
}

.screenshot.scene-2:hover {
  animation: animation2 1s 1 linear;
}

@keyframes animation2 {
  0% {
    z-index: 2;
    scale: 1;
    transform: rotate(0) translateX(120px);
  }
  1% {
    z-index: 4;
  }
  50% {
    z-index: 4;
    scale: 1.2;
    transform: rotate(10deg);
  }

  85% {
    z-index: 4;
  }
  100% {
    z-index: 2;
    scale: 1;
    transform: rotate(0) translateX(120px);
  }
}

.scene-3 {
  z-index: 3;
  top: 470px;
  transform: translateX(-100px);
}

.screenshot.scene-3:hover {
  animation: animation3 1.5s 1 linear;
}

@keyframes animation3 {
  0% {
    scale: 1;
    transform: translateY(-40px) translateX(-100px);
  }
  50% {
    scale: 1.3;
    transform: translateY(80px) translateX(30px);
  }
  100% {
    scale: 1;
    transform: translateY(0) translateX(-100px);
  }
}

.scene-4 {
  z-index: 1;
  top: 700px;
  transform: translateX(120px);
}

.scene-4 > img {
  width: 500px;
}

.screenshot.scene-4:hover {
  animation: animation4 1.5s 1 ease-in-out;
}

@keyframes animation4 {
  0% {
    scale: 1;
    z-index: 1;
    transform: rotate(0) translateX(170px);
  }
  5% {
    z-index: 4;
  }
  50% {
    scale: 1.1;
    z-index: 4;
    transform: rotate(-20deg) translateX(0);
  }
  95% {
    z-index: 4;
  }
  100% {
    scale: 1;
    z-index: 1;
    transform: rotate(0) translateX(170px);
  }
}

.scene-5 {
  z-index: 2;
  top: 980px;
  transform: translateX(-150px);
}

.screenshot.scene-5:hover {
  animation: animation5 0.6s 1 linear;
}

@keyframes animation5 {
  0% {
    transform: rotate(0);
    z-index: 2;
    transform: translateX(-150px);
  }
  1% {
    z-index: 4;
  }
  25% {
    z-index: 4;
    transform: rotate(-8deg) scale(1.1);
  }
  50% {
    transform: rotate(8deg) scale(1);
  }
  75% {
    transform: rotate(-8deg);
  }

  98% {
    z-index: 2;
    transform: translateX(-150px);
  }
}

.screenshot-1,
.screenshot-5 {
  animation: slide-left auto 4 alternate;
  animation-timeline: scroll(root);
}

@keyframes slide-left {
  100% {
    transform: translateX(-30%);
  }
}

.screenshot-3 {
  animation: slide-left-2 auto 4 alternate-reverse;
  animation-timeline: scroll(root);
}

@keyframes slide-left-2 {
  100% {
    transform: translateX(-40%);
  }
}

.screenshot-2 {
  animation: slide-right auto 2 alternate;
  animation-timeline: scroll(root);
}

@keyframes slide-right {
  100% {
    transform: translateX(30%);
  }
}

.screenshot-4 {
  animation: slide-right-2 auto 6 alternate;
  animation-timeline: scroll(root);
}

@keyframes slide-right-2 {
  100% {
    transform: translateX(20%);
  }
}

.section-memory-game {
  width: 100%;
  margin-top: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}

.memory-game {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 16px;
}

.carta {
  height: 100px;
  width: 100px;
  border-radius: 16px;
  background-color: #4583ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-carta {
  display: none;
  height: 95px;
  width: 95px;
}

.juego-completado {
  display: none;
  font-family: var(--p-font-family);
  font-weight: 500;
  color: #4583ff;
  text-transform: uppercase;
}

.contador {
  display: none;
  font-family: var(--p-font-family);
  font-weight: 500;
  color: #4583ff;
}

button.start {
  font-size: 22px;
  color: white;
  font-weight: 600;
  background-color: #4583ff;
  padding: 16px;
  border-radius: 12px;
  border: none;
}

button.start:hover {
  background-color: #4784ff;
  box-shadow: 2px 2px 2px #070a0e;
  text-shadow: 1px 1px #070a0e;
  animation: scaleText 0.5s 2 linear alternate;
  cursor: none;
}

@keyframes scaleText {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.text-final {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.texto-enjoy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.july {
  font-family: var(--font-family);
  font-size: 70px;
  color: #333;
  text-shadow: #673302 1px 2px 2px;
  margin-bottom: 0;
}

.enjoy span {
  font-family: var(--font-family);
  font-size: 150px;
  color: var(--minion-color);
  text-shadow: #673302 1px 2px 2px;
}

.back-to-top {
  margin-top: 150px;
  margin-bottom: 150px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 1rem;
}

.back-to-top-image {
  height: 200px;
}

.banner {
  display: flex;
  justify-content: center;
}

.illumination-logo {
  width: 300px;
}

.banners {
  background-image: radial-gradient(
    100% 100% at 20% 50%,
    #ffe388 0%,
    #eca516 100%
  );
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
  padding-top: 100px;
}

.contenido-footer {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.footer-politica {
  padding: 2rem 1rem 2rem 1rem;
  background-color: black;
  color: white;
  font-family: var(--p-font-family);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-politica a {
  text-decoration: none;
  color: white;
  margin-right: 1rem;
}

.banner-enlaces > a {
  text-decoration: none;
  font-family: var(--font-family);
  color: black;
  padding: 12px;
}

.banner-enlaces > a:hover {
  color: red;
  cursor: none;
}

div.social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.social-media-image {
  height: 40px;
}

div.square {
  border-radius: 10px;
  height: 39px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
}

div.square:hover {
  background-color: red;
}
/* MEDIA QUERIES */

@media screen and (max-width: 1400px) {
  .wrapper {
    margin: 0;
    padding: 0;
  }
  .main {
    box-shadow: none;
    margin: 0;
  }

  .menu {
    padding: 0;
    top: 3rem;
  }
}

@media screen and (max-width: 1220px) {
  .main {
    display: flex;
  }

  .hero-image {
    width: 800px;
  }

  h1.rubik-h1 > span {
    height: 100px;
  }
  h1.rubik-h1 {
    top: 2rem;
  }

  .hidden {
    height: 40px;
  }

  .lista-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .lista-menu ul li {
    font-size: 24px;
  }

  .video-frame {
    width: 600px;
    height: 400px;
  }

  .texto-video p {
    width: 600px;
  }

  section {
    height: auto;
    width: 100%;
  }

  .minion {
    width: 90%;
  }
  .minion-image {
    height: 450px;
  }

  .minion-image.bob {
    height: 400px;
  }
  .minion-image.kevin {
    height: 500px;
  }
  .minion-image.stuart {
    height: 650px;
  }
  .meet {
    width: 40%;
  }

  .descripcion {
    margin-top: 20px;
  }
  .meet-interview {
    margin-top: 20px;
    height: 100px;
    width: 100px;
  }
  .screenshot > img {
    width: 500px;
    height: auto;
    border: 10px solid white;
  }

  .screenshot.scene-1:hover {
    animation: animationGru 1.5s 1 linear;
  }

  @keyframes animationGru {
    0% {
      z-index: 1;
      scale: 1;
      transform: translateX(0);
    }
    5% {
      z-index: 3;
    }
    50% {
      z-index: 3;
      scale: 1.2;
      transform: translateX(30px);
    }
    100% {
      z-index: 1;
      scale: 1;
      transform: translateX(0);
    }
  }
  .minions.scenes {
    margin-top: 0;
  }

  .scene-1,
  .scene-3,
  .scene-4,
  .scene-5 {
    transform: translateX(0);
  }

  .scene-2 {
    transform: translateX(-20px);
  }
}

@media screen and (max-width: 800px) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .logo-menu {
    position: fixed;
  }

  .lista-menu ul li {
    font-size: 20px;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-image {
    width: 700px;
  }

  .rubik-h1 {
    font-size: 140px;
  }

  h1.rubik-h1 {
    top: 8rem;
  }

  section.minions {
    padding-top: 10vh;
    height: auto;
    width: 100%;
    margin: 0;
  }

  section.minions#carl {
    padding-bottom: 100px;
  }

  .minion,
  .minion.left {
    margin: 0;
    width: 100%;
    position: relative;
    height: auto;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }

  .minion-image {
    padding-bottom: 50px;
  }

  .meet {
    width: 70%;
  }

  .minions.scenes {
    height: 140vh;
    margin-top: 100px;
    margin-bottom: 50px;
  }

  .screenshot > img {
    width: 450px;
    height: auto;
    border: 10px solid white;
  }

  .scene-2 {
    top: 200px;
  }
  .scene-3 {
    top: 380px;
  }
  .scene-4 {
    top: 550px;
  }
  .scene-5 {
    top: 820px;
  }

  .screenshot-1,
  .screenshot-5 {
    animation: slide-left auto 4 alternate;
    animation-timeline: scroll(root);
  }

  @keyframes slide-left {
    100% {
      transform: translateX(-10%);
    }
  }

  .screenshot-4 {
    animation: slide-right-2 auto 6 alternate;
    animation-timeline: scroll(root);
  }

  @keyframes slide-right-2 {
    100% {
      transform: translateX(10%);
    }
  }

  .screenshot.scene-2:hover {
    animation: animation2 1s 1 linear;
  }

  @keyframes animation2 {
    0% {
      z-index: 2;
      scale: 1;
      transform: rotate(0) translateX(10px);
    }
    1% {
      z-index: 4;
    }
    50% {
      z-index: 4;
      scale: 1.1;
      transform: rotate(10deg);
    }

    85% {
      z-index: 4;
    }
    100% {
      z-index: 2;
      scale: 1;
      transform: rotate(0) translateX(10px);
    }
  }

  .screenshot-3 {
    animation: slide-left-2 auto 4 alternate-reverse;
    animation-timeline: scroll(root);
  }

  @keyframes slide-left-2 {
    100% {
      transform: translateX(-20%);
    }
  }

  .screenshot.scene-3 {
    transform: translateX(20px);
  }

  .screenshot.scene-3:hover {
    animation: animation3 1.5s 1 linear;
  }

  @keyframes animation3 {
    0% {
      scale: 1;
      transform: translateY(-20px) translateX(20px);
    }
    50% {
      scale: 1.1;
      transform: translateY(40px) translateX(60px);
    }
    100% {
      scale: 1;
      transform: translateY(0) translateX(20px);
    }
  }

  .screenshot.scene-4:hover {
    animation: animation4 1.5s 1 ease-in-out;
  }

  @keyframes animation4 {
    0% {
      scale: 1;
      z-index: 1;
      transform: rotate(0) translateX(0px);
    }
    5% {
      z-index: 4;
    }
    50% {
      scale: 0.9;
      z-index: 4;
      transform: rotate(-20deg) translateX(0);
    }
    95% {
      z-index: 4;
    }
    100% {
      scale: 1;
      z-index: 1;
      transform: rotate(0) translateX(0px);
    }
  }

  .screenshot.scene-5:hover {
    animation: animation5 0.6s 1 linear;
  }

  @keyframes animation5 {
    0% {
      transform: rotate(0);
      z-index: 2;
      transform: translateX(0px);
    }
    1% {
      z-index: 4;
    }
    25% {
      z-index: 4;
      transform: rotate(-8deg) scale(1.1);
    }
    50% {
      transform: rotate(8deg) scale(1);
    }
    75% {
      transform: rotate(-8deg);
    }

    98% {
      z-index: 2;
      transform: translateX(0px);
    }
  }

  .july {
    font-size: 60px;
  }

  .enjoy span {
    font-size: 140px;
  }
}

@media screen and (max-width: 700px) {
  .hero-image {
    width: 600px;
  }
}

@media screen and (max-width: 600px) {
  .main {
    overflow: hidden;
  }
  .logo {
    height: 40px;
  }

  .bar-1,
  .bar-2,
  .bar-3 {
    width: 40px;
    height: 4px;
  }

  .menu__icon {
    right: 1rem;
    top: 1.4rem;
  }

  .hidden-image {
    height: 35px;
  }

  ul.lista {
    padding: 0;
    padding-top: 3rem;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .lista-menu > ul > li {
    font-size: 18px;
    padding: 12px;
    border-radius: 18px;
  }

  .lista-menu ul li:nth-child(1) {
    transform: translateY(0);
  }
  .lista-menu ul li:nth-child(3) {
    transform: translateY(0);
  }
  .lista-menu ul li:nth-child(6) {
    transform: translateY(0);
  }

  .atropos {
    height: 100vh;
    top: 30vh;
    width: 100%;
  }

  .hero-image {
    width: 100%;
  }

  h1.rubik-h1 span {
    font-size: 80px;
    margin-top: 6rem;
  }

  section.video {
    width: 100%;
    overflow-x: hidden;
  }

  .video-frame {
    width: 400px;
    height: 220px;
  }

  .texto-video {
    margin-top: -40px;
  }

  .texto-video p {
    width: 400px;
  }

  section#kevin {
    margin-top: -200px;
    padding-top: 250px;
  }

  .meet h2 {
    font-size: 65px;
  }

  .minion-image.bob {
    height: 360px;
  }

  .minions.scenes {
    height: 120vh;
    margin-top: 100px;
    margin-bottom: 0;
  }

  .div-scenes {
    object-fit: contain;
  }

  .screenshot > img {
    width: 300px;
    height: auto;
    border: 6px solid white;
  }

  .scene-2 {
    top: 150px;
  }
  .scene-3 {
    top: 280px;
  }
  .scene-4 {
    top: 400px;
  }
  .scene-5 {
    top: 600px;
  }

  .memory-game {
    gap: 6px;
    max-width: 99vw;
  }

  .carta {
    width: 80px;
    height: 80px;
  }

  .img-carta {
    width: 70px;
    height: 70px;
  }

  .text-final {
    margin-bottom: -50px;
  }

  .july {
    font-size: 35px;
  }

  .enjoy span {
    font-size: 90px;
  }

  .back-to-top-image {
    height: 100px;
  }

  .banner-enlaces {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-politica {
    padding-left: 0;
    padding-right: 0;
    align-items: flex-start;
  }

  .politica {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
    row-gap: 12px;
    width: 50%;
    height: 100%;
  }
  .derechos {
    width: 40%;
  }
}
