.carousselWrapper {
    width: 100vw;
    height: var(--caroussel-height);
    display: flex;
    align-items: center;
    gap: 2vh;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-inline: 50vw;
}

.carousselItem {
    flex: 0 0 auto;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    scroll-snap-align: center;
}