/* Extracted from new_template.html - Animations */

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.anim-stagger-1 {
    animation: fadeSlideUp 0.8s var(--ease-out-expo) forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.anim-stagger-2 {
    animation: fadeSlideUp 0.8s var(--ease-out-expo) forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.anim-stagger-3 {
    animation: fadeSlideUp 0.8s var(--ease-out-expo) forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.anim-stagger-4 {
    animation: fadeSlideUp 0.8s var(--ease-out-expo) forwards;
    opacity: 0;
    animation-delay: 0.4s;
}