.supergraphic1 {
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
}

.supergraphic1--top-right {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;

    background-image: url('/images/Supergraphic_2.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.supergraphic1--bottom-left {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;

    background-image: url('/images/Supergraphic_2.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    transform: rotate(90deg);
}

.step-section {
    display: none;
    animation: step-fade-in .25s ease;
}

.step-section.active {
    display: block;
}

@keyframes step-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.entry-fade-out {
    opacity: 0;
    transform: translateY(-6px);
    transition: all .2s ease;
}

@media (max-width: 640px) {
    .supergraphic1--top-right {
        top: -130px;
        right: -130px;
    }
    
    .supergraphic1--bottom-left {
        width: 200px;
        height: 200px;
        bottom: -135px;
        left: -135px;
        
        transform: rotate(115deg);
    }
}
