.carousel {
    position: relative;
    z-index: 40;
}

.carousel .slider {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.carousel .slider::-webkit-scrollbar {
    display:none;
}


.carousel .item {
    position: relative;
    display: inline-block;
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.carousel .itemInner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0rem 15% 2rem 15%;
}

.carousel .item .image {
    margin: 0 auto 0 auto;
    width: 17.1rem;
    height: 22rem;
    background-size: cover;
    box-shadow: 0px 7px 16px 0px #0000001A,
        0px 30px 30px 0px #00000017,
        0px 67px 40px 0px #0000000D,
        0px 118px 47px 0px #00000003,
        0px 185px 52px 0px #00000000;
}

.carousel .item .title {
    margin-top: 3rem;
    color: var(--clr-white);
    font-family: 'Akzidenz-Grotesk Pro', sans-serif;
    font-size: 2rem;
    line-height: 2.5rem;
    text-transform: uppercase;
}


.carousel .arrow {
    position: absolute;
    top: 35%;
    transform: translateY(50%);
    width: 2rem;
    height: 2rem;
}

.carousel .arrow.left {
    left: 5%;
    background-image: url('/public/images/soutez/carousel/arrow-left.svg?v=1');
}

.carousel .arrow.right {
    right: 5%;
    background-image: url('/public/images/soutez/carousel/arrow-right.svg?v=1');
}


.carousel .navigator {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.0rem;
}

.carousel .navigator .navItem {
    width: 1.0rem;
    height: 1.0rem;
    background-image: url('/public/images/soutez/carousel/navitem.svg?v=1');
    transition: background-image 0.5s;
}

.carousel .navigator .navItem.active {
    background-image: url('/public/images/soutez/carousel/navitem-active.svg?v=1');
    transition: background-image 0.5s;
}