/* animations.css */

/* Animasi fadeInUp */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.animate-fadeInUp {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fadeInUp.delay-1 {
    transition-delay: 0.2s;
}

.animate-fadeInUp.delay-2 {
    transition-delay: 0.4s;
}

.animate-fadeInUp.delay-3 {
    transition-delay: 0.6s;
}

.animate-fadeInUp.delay-4 {
    transition-delay: 0.8s;
}
.animate-fadeInUp.fadeInUp-active {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}
