.image-carousel-container {
    overflow: hidden;
    width: 100%;
    height: 60vh;
}
.image-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    min-width: 100%;
    max-height: 100%;

}
.image-carousel-slide {
   min-width: 100%;
   max-width: 100%;
}
.image-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}