.animate {
    animation-duration: 0.75s;
    animation-name: animate-fade;
    animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
    animation-fill-mode: backwards;
}

.animate.slide {
    animation-name: animate-slide;
    opacity: 1;
}


.animate-on-entrance {
    opacity: 0;
}

@keyframes animate-slide {
    0% {
        opacity: 0;
        transform: translate(0, 20px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.delay-1 {
    animation-delay: 0.3s;
}

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

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

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

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

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

.delay-7 {
    animation-delay: 1.2s;
}

.delay-8 {
    animation-delay: 1.3s;
}

.delay-9 {
    animation-delay: 1.4s;
}

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

.delay-11 {
    animation-delay: 1.6s;
}

.delay-12 {
    animation-delay: 1.7s;
}

.delay-13 {
    animation-delay: 1.8s;
}

.delay-14 {
    animation-delay: 1.9s;
}

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


.animate.glow {
    animation-name: animate-glow;
    animation-timing-function: ease;
    opacity: 1;
}

@keyframes animate-glow {
    0% {
        opacity: 0;
        filter: brightness(3) saturate(3);
        transform: scale(0.8, 0.8);
    }

    100% {
        opacity: 1;
        filter: brightness(1) saturate(1);
        transform: scale(1, 1);
    }
}

