/* ================================================== */
/* SECTION REVEAL */
/* ================================================== */

.section {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    will-change: opacity, transform;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution #mainMockup .content { transform: translateY(0) rotate(0); }
.solution #mainMockup.visible .content { transform: translateY(-10px) rotate(-5deg); }

@media (prefers-reduced-motion: reduce) {
    .section,
    .section.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
