.sponsor-slider {
    overflow: hidden;
    width: 100%;
    background: #fff;
    padding: 20px 0;
}

.sponsor-track {
    display: flex;
    width: max-content;
    animation: sponsorScroll 20s linear infinite;
}

.sponsor-slider:hover .sponsor-track {
    animation-play-state: paused;
}

.sponsor-item {
    width: 180px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 20px;
    flex-shrink: 0;

    background: #fff;
    padding: 10px;

    overflow: hidden;
}

.sponsor-item img {
    max-width: 100%;
    max-height: 100%;

    width: auto !important;
    height: auto !important;

    object-fit: contain;
    display: block;

    transition: transform .3s ease;
}

.sponsor-item:hover img {
    transform: scale(1.05);
}

@keyframes sponsorScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}