.logos-section {
    padding: 70px 0;
    background: #ffffff;
    text-align: center;
}

.logos-section h2 {
    margin: 0 0 38px;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: logosMoveLeft 28s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 150px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
}

@keyframes logosMoveLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 575px) {
    .logo-track {
        gap: 35px;
        animation-duration: 20s;
    }

    .logo-item {
        width: 120px;
    }

    .logo-item img {
        max-width: 120px;
    }
}