/* The three homepage visuals are stored inside the theme package. */
.hero {
  background: #071935;
  overflow: hidden;
  position: relative;
}

.hero .shell {
  position: relative;
  z-index: 1;
}

.hero-slides,
.hero-slide {
  inset: 0;
  position: absolute;
}

.hero-slide {
  animation: kashinbu-hero-slide 15s infinite;
  background: center / cover no-repeat;
  opacity: 0;
}

.hero-slide::after {
  background: linear-gradient(100deg, rgba(7, 25, 53, .96) 0%, rgba(7, 25, 53, .84) 37%, rgba(7, 25, 53, .43) 68%, rgba(7, 25, 53, .27) 100%);
  content: '';
  inset: 0;
  position: absolute;
}

.slide-one { animation-delay: 0s; }
.slide-two { animation-delay: 5s; }
.slide-three { animation-delay: 10s; }

@keyframes kashinbu-hero-slide {
  0%, 30% { opacity: 1; }
  33.34%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide:not(.slide-one) { display: none; }
}
