#clients.uses-styles2{
    box-sizing: border-box;

    .slider{
        background-color: white;
        width: 100%;
        overflow: hidden;

        .slide-track{
            display: flex;
            justify-content: space-evenly;
            width: 200vw;
            animation: scroll 40s linear infinite;

            .slide2 {
                img {
                    height: 100px;
                    width: auto;
                }
            }
        }

    }

}

#partners.uses-styles2{
    .partners{
        display: flex;
        justify-content: space-evenly;

        img{
            height: 25vh;
        }
    }
}

@keyframes scroll {
    0% { transform: translateX(0); }
	100% { transform: translateX(calc(-100vw))}
}