.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-from-left {
    transform: translateX(-20px);
}

.animate-from-right {
    transform: translateX(20px);
}

.animate-from-top {
    transform: translateY(-20px);
}

.animate-from-buttom {
    transform: translateY(20px);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.6s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.7s;
}

.animate-on-scroll.delay-5 {
    transition-delay: 0.8s;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}