@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.carousel-item.active .image-wrapper {
    animation: zoomOut 4s forwards;
}