.story-parallax {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.story-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .75), rgba(15, 23, 42, .55));
}

.story-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.story-card {
    background: rgba(255, 255, 255, .92);
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .2);
}

.story-step {
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease;
}

.story-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.story-scene-1 {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80');
}

.story-scene-2 {
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80');
}

.story-scene-3 {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80');
}

@media (max-width: 991.98px) {
    .story-parallax {
        background-attachment: scroll;
        min-height: auto;
        padding: 6rem 0;
    }
}