/* [project]/app/splash/splash.css [app-client] (css) */
.carousel-bg {
  z-index: -1;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.carousel-bg img {
  object-fit: cover;
  filter: blur(8px) brightness(.7);
  opacity: 0;
  z-index: 0;
  will-change: opacity;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  transition: opacity 2s ease-in-out, z-index 0s 2s;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(0);
}

.carousel-bg img:first-child {
  opacity: 1;
  z-index: 1;
}

.carousel-bg img.active {
  opacity: 1;
  z-index: 1;
  transition: opacity 2s ease-in-out, z-index;
}

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