.fade-up {
    animation: fadeUp .7s ease both
}

.delay-1 {
    animation-delay: .12s
}

.delay-2 {
    animation-delay: .24s
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

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