:root { --animation-panel-id: 'bounce-in'; }

/* panels bounce-in */
@keyframes anim-bounce-in {
    0% {
        opacity: 0;
        transform: scale(.7)
    }

    60% {
        opacity: 1;
        transform: scale(1.08)
    }

    80% {
        transform: scale(.96)
    }

    to {
        transform: scale(1)
    }
}

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