.clients-section {
    background: #fff;
    overflow: hidden;
}

.clients-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.clients-section__title-wrapper {
    flex: 0 0 150px; /* Adjust width as needed */
}

.clients-section__title {
    font-size: 16px;
    font-weight: bold;
    color: var(--gray-900);
    margin:0;
}

.clients-section__logos-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.clients-section__logos-scroller {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.client-item__logo {
    max-height: 60px; /* Adjust as needed */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-item__logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


@media (max-width: 900px) {
    .clients-section .container {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }

    .clients-section__title-wrapper {
        flex-basis: auto;
        text-align: center;
    }

    .clients-section__title {
        margin-bottom:20px;
    }
}