/* Beginwaarden voor animaties – GSAP neemt het over */
.animatie-fade-in {
    opacity: 0;
}

.animatie-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
}
.animatie-slide-in-right
{
    opacity: 0;
    
}

.animatie-zoom-in {
    opacity: 0;
    transform: scale(0.8);
}

