@media screen and (prefers-reduced-motion: reduce) {
    .animate {
        animation: none !important;
    }
}

.animate {
    animation-duration: 0.5s;
    animation-name: animate-fade;
    animation-delay: 0.5s;
    animation-fill-mode: backwards;
    animation-iteration-count: 1;
}

@keyframes animate-fade {
    0% {opacity: 0;}
    100% {opacity: 100;}
}


.animate-cards {
    animation-duration: 0.75s;
    animation-name: animate-fade-cards;
    animation-delay: 0.25s;
    animation-fill-mode: backwards;
    animation-iteration-count: 1;
}

@keyframes animate-fade-cards {
    0% {opacity: 0;}
    100% {opacity: 100;}
}




.animate.pop {
    animation-duration: 0.5s;
    animation-delay: 0.75s;
    animation-name: animate-pop;
    animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
    animation-iteration-count: 1;
}

@keyframes animate-pop {
    0% {
        opacity: 0;
        transform: scale(0.5, 0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.7s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 0.9s;
}

.delay-6 {
    animation-delay: 1s;
}

.delay-7 {
    animation-delay: 1.1s;
}

.delay-8 {
    animation-delay: 1.2s;
}


