.clients-title {
    margin-bottom: 1.5rem;
}

.clients-title h2 {
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
}

.clients-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 70px;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    height: 70px;
    animation: clients-marquee 30s linear infinite;
}

.clients-track img {
    width: auto;
    height: 42px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
    filter: none;
    opacity: 1;
}

@keyframes clients-marquee {
    from {
        transform: translateX(0);
    }

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