
.clients-list{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
}

.clients-list li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 432px;
    height: 140px;
    min-width: 432px;
    text-align: center;
    border: none;
}

.clients-list li:last-child{
    margin-right: 10px;
}

.clients-list li img{
    filter: none;
    transition: all 500ms ease;
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Mobile responsive - show 2 images at a time */
@media only screen and (max-width: 767px) {
    .clients-list li{
        width: 216px;
        height: 100px;
        min-width: 216px;
    }
    
    .clients-list{
        gap: 15px;
    }
}

@media only screen and (max-width: 480px) {
    .clients-list li{
        width: 180px;
        height: 80px;
        min-width: 180px;
    }
    
    .clients-list{
        gap: 10px;
    }
}
