.slider-client {
    width: 100%;
    padding: 20px 0;
}

.slider {
    /* background: linear-gradient(to right, #f0f0f0, #ffffff); */
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 95%;
    /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15); */
    border-radius: 10px;
}

.slider .slide-track {
    display: flex;
    align-items: center;
    width: calc(250px * 14 * 2);
    animation: scroll 50s linear infinite;
}

.slider .slide {
    height: 150px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider .slide:hover {
    transform: scale(1.1);
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
}

.slider img {
    max-height: 150px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    /* border-radius: 50%; */
    /* border: 2px solid #ccc; */
    transition: border-color 0.3s ease;
}

.slider img:hover {
    border-color: #ff5722;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 14)); }
}



@media screen and (min-width: 768px) {

    #divEquipe {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex: auto;
        width: 50%;
    }

    #bloc_equipe img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 767px) {

    #divEquipe {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex: auto;
        width: 100%;
    }

    #bloc_equipe img {
        width: 25%;
        height: 25%;
    }

}