/* Animation */

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.slideIn {
    animation: slideIn 1s ease-in-out forwards;
}

@keyframes scaleUp {
    from {
        transform: scale(0.5);
    }
    to {
        transform: scale(1);
    }
}

.scaleUp {
    animation: scaleUp 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-item {
    animation: fadeIn 0.5s ease-in-out forwards;
}

.carousel-item.active {
    animation: fadeIn 0.5s ease-in-out forwards;
}

.carousel-item.active .scaleUp {
    animation: scaleUp 0.5s ease-in-out forwards;
}
