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

.animate__fadeIn,
.fadeIn {
    animation-name: fadeIn;
}

.animate__fadeInUp,
.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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