.fromBottomIn {
    transition: transform 0.5s ease, opacity 1.0s ease;
    transform: translate(0,0);
    opacity: 1.0;
}

.fromBottomOut {
    transition: transform 0.5s ease, opacity 1.0s ease;
    transform: translate(0,50px);
    opacity: 0;
}

/*DELAYS*/

.animation-delay-1{
    transition-delay: 0.2s;
}
.animation-delay-2{
    transition-delay: 0.4s;
}
.animation-delay-3{
    transition-delay: 0.6s;
}
.animation-delay-4{
    transition-delay: 0.8s;
}
.animation-delay-5{
    transition-delay: 1s;
}
.animation-delay-6{
    transition-delay: 1.2s;
}