.fadeIn {
    opacity: 0;
    transition: opacity 2s ease-out;
}

.fadeIn.visible {
    opacity: 1;
}

.y-animation {
    opacity: 0;
    transform: translateY(20%);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.y-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

.fadeInLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadeInLeft.visible {
    opacity: 1;
    transform: translateX(0);
}


.bounceInRight {
    opacity: 0;
    transform: translateX(100%);
    transition:
        opacity 2.5s ease-out,
        transform 1s cubic-bezier(0.25, 0.25, 0.5, 1.25);
}

.bounceInRight.visible {
    opacity: 1;
    transform: translateX(0);
}