.ds_revendeur_02 {
    background-color: #FFF5E6;
    padding: 50px 100px;
}

.ds_revendeur_02 h2 {
    text-align: center;
    color: #000;
}

.ds_revendeur_02 span {
    color: #FF8800;
}

.ds_revendeur_02_carte {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 20px;
    padding: 20px 0;
    margin-left: 0;
    margin-right: 0;
}

.ds_revendeur_02_carte::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}


.ds_revendeur_02_carte::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

.ds_revendeur_02_carte::-webkit-scrollbar-track {
    max-height: 50%;
    height: 50%;
}

.ds_revendeur_02_carte.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.ds_revendeur_02_flex {
    background-color: #F7EAD6;
    padding: 20px 25px;
    border-radius: 10px;
    width: 24%;
    margin: 10px;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.ds_revendeur_02_flex img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.ds_revendeur_02_flex div {
    margin: 5px;
}

.ds_revendeur_02_flex div:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: start;
}

.ds_revendeur_02_flex div:nth-child(1) p {
    font-family: 'roc-grotesk', sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
}

.ds_revendeur_02_flex div:nth-child(2) p:nth-child(1) {
    font-family: 'roc-grotesk', sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
}


/*bandeau defilant*/
.bloc_01_defilement_global {
    position: relative;
    padding: 50px 0;
}

.bloc_01_defilement_global img {
    width: 100%;
}

.bloc_01_defilement_bandeau {
    width: 100%;
    background-color: #00C5F1;
    overflow: hidden;
    transform: rotate(-1deg);
    z-index: 2;
}

.defilement {
    display: flex;
    width: max-content;
    animation: defilement 28s linear infinite;
}

.liste_defilante {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
}

.liste_defilante p {
    flex-shrink: 0;
    margin: 0;
    padding: 18px 40px;
    font-family: 'BaseNeue-WideBoldOblique', sans-serif;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

@keyframes defilement {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



@media (max-width: 580px) {
    .bloc_01_defilement_bandeau {
        top: -50px;
    }

    .ds_revendeur_02_flex div:nth-child(1) {
        display: block;
    }

    .ds_revendeur_02_flex div:nth-child(1) p {
        margin-top: 10px;
    }

    .liste_defilante p {
        font-size: 26px;
        line-height: 26px;
    }

    .ds_revendeur_02 h2 {
        padding: 20px;
    }

    .ds_revendeur_02 {
        padding: 0px;
    }

    .ds_revendeur_02_flex {
        width: 100%;
        min-width: 200px;
    }

    .ds_revendeur_02_carte {
        justify-content: start;
        flex-wrap: nowrap;
        gap: 15px;
        margin: 0;
        scrollbar-width: thin;
        scrollbar-color: #E6CEAD transparent;
        scrollbar-gutter: auto;
        overflow-x: auto;
        overflow-y: auto;
        cursor: grab;
        user-select: none;
        scroll-behavior: smooth;
        width: 100%;
    }

}