

/* ======================================= Section Hero */
.animate_H1 {
    overflow: hidden;

    h1 {
        transform: translateY(100%); 
        animation: slideUp 1s forwards ease-in-out;
    }
}
.animate_H2 {
    overflow: hidden;
    
    h1 {
        transform: translateY(100%); 
        animation: slideUp 1s forwards ease-in-out;
        animation-delay: 300ms;
    }
}
.animate_H3 {
    overflow: hidden;

    h1 {
        transform: translateY(100%); 
        animation: slideUp 1s forwards ease-in-out;
        animation-delay: 600ms;
    }
}


/* ======================================= Section Mission Solution */
/* .animate_MS1 {
    overflow: hidden;

    h3, p {
        transform: translateY(100%); 
        animation: slideUp 1s forwards ease-in-out;
    }
}
.animate_MS2 {
    overflow: hidden;
    
    h4, p {
        transform: translateY(100%); 
        animation: slideUp 1s forwards ease-in-out;
        animation-delay: 400ms;
    }
}
.animate_MS3 {
    overflow: hidden;

    h4, p {
        transform: translateY(100%); 
        animation: slideUp 1s forwards ease-in-out;
        animation-delay: 600ms;
    }
} */

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}