@keyframes fadeInUp {
    from {
        transform: translate3d(0,70px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,70px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.delay-1s {
    animation-delay: 0.5s; /* Retrasa la animación en 1 segundo */
}

.delay-2s {
    animation-delay: 1s; /* Retrasa la animación en 1 segundo */
}

.delay-3s {
    animation-delay: 1.5s;
}

.delay-4s {
    animation-delay: 2s;
}

.delay-5s {
    animation-delay: 2.5s;
}

.delay-6s {
    animation-delay: 3s;
}