/* mainstages zoom-out */
@keyframes anim-zoom-out {
    0% {
        opacity: 0;
        transform: scale(1.25)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

section:not(.cnt) [class*="mn_"] {
    animation: anim-zoom-out 0.5s ease-out both;
    animation-timeline: view();
    animation-range: entry 25% entry 60%;
}
