.wrapper-bande-logos {
    overflow: hidden;
    padding: 20px 0;
    background: white;
    position: relative;
    z-index: 2;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    max-width: 1920px;
    margin: 0 auto;
}

.logos-track {
    display: flex;
    width: max-content;
    animation: pix-scroll-logos 35s linear infinite !important;
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
}

.wrapper-bande-logos img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.wrapper-bande-logos:hover .logos-track {
    animation-play-state: paused;
}

@keyframes pix-scroll-logos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.3333%);
    }
}

@media (max-width: 1200px) {
    .logos-track {
        animation-duration: 30s;
    }

    .wrapper-bande-logos img {
        height: 50px;
    }
}

@media (max-width: 800px) {
    .logos-track {
        animation-duration: 25s;
    }

    .wrapper-bande-logos img {
        height: 40px;
    }
}

@media (max-width: 550px) {
    .wrapper-bande-logos img {
        height: 35px;
    }
}