.home_partnership .marquee-content {
    display: flex;
    animation: scrolling 35s linear infinite;
}

.home_partnership .marquee-items {
    flex: 0 0 100px;
    margin: 0 10px;
}

.home_partnership .marquee-items:first-child{
    margin-left: 100px;
}

.home_partnership .marquee-items img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

@keyframes scrolling {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-350%);
    }
}

@media (min-width:640px) and (max-width:1024px) {
    @keyframes scrolling {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-380%);
        }
    }
}

@media (max-width:640px) {
    .home_partnership .marquee-content {
        display: flex;
        animation: scrolling 25s linear infinite;
    }

    .home_partnership .marquee-items {
        flex: 0 0 80px;
        margin: 0 8px;
    }

    .home_partnership .marquee-items:first-child{
        margin-left: 80px;
    }

    .home_partnership .marquee-items img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
    }

    @keyframes scrolling {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-585%);
        }
    }
}
