/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 08 2026 | 18:25:38 */
.logos-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:20px 0;
}

.logos-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scroll 50s linear infinite;
}

.logos-track img{
    width:170px;
    height:90px;
    object-fit:contain;
    margin:0 35px;
    flex-shrink:0;

    transition:.35s;
    opacity:.75;
    filter:grayscale(100%);
}

.logos-track img:hover{
    transform:scale(1.08);
    opacity:1;
    filter:grayscale(0%);
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
@media (max-width:767px){

    .logos-track img{
        width:120px;
        height:70px;
        margin:0 20px;
    }

    .logos-track{
        animation-duration:25s;
    }

}

@media (max-width:767px){

    .logos-track{
        animation-duration:80s;
    }

}