/* panels fade-up */
@keyframes anim-fade-up {
    0% {
        opacity: 0;
        transform: translateY(32px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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