/* Slide 10 — Closing slide */

.slide[data-slide="10"] {
  overflow: hidden;
}

.slide[data-slide="10"] .s10-bg {
  z-index: 0;
}

.slide[data-slide="10"] .s10-design {
  z-index: 4;
  opacity: 0;
}

.slide[data-slide="10"] .s10-content-wrap {
  position: absolute;
  z-index: 6;
  pointer-events: none;
}

.slide[data-slide="10"] .s10-content-reveal {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

.slide[data-slide="10"] .s10-content-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes s10DesignFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes s10RevealDown {
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

.slide[data-slide="10"].s10-play .s10-design {
  animation: s10DesignFade 1.55s cubic-bezier(0.33, 1, 0.42, 1) forwards;
  animation-delay: 0.45s;
}

.slide[data-slide="10"].s10-play .s10-content-reveal {
  animation: s10RevealDown 1.55s cubic-bezier(0.33, 1, 0.42, 1) forwards;
  animation-delay: 0.45s;
}

@media (prefers-reduced-motion: reduce) {
  .slide[data-slide="10"] .s10-content-reveal {
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }

  .slide[data-slide="10"].s10-play .s10-design,
  .slide[data-slide="10"].s10-play .s10-content-reveal {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
