/**
 * Hero Slideshow Styles
 * Crossfade transition with zoom-out effect for hero background images
 */

/* Slideshow container */
.hero__bg--slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 2s ease-in-out, transform 8s ease-out;
    z-index: 0;
}

/* Active slide */
.hero__bg--slide.hero__bg--active {
    opacity: 1;
    z-index: 1;
}