.clients-section {
    background-color: var(--color-gray);
    padding: 64px 0 104px;
    position: relative;
    overflow: hidden;
}

.clients-section .background-right-bottom {
    --bg-size: 335px;
}

.clients-section__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-left: 44px;
}

.clients-section__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    position: relative;
}

.clients-section__title::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 6px;
    width: 24px;
    height: 24px;
    background-image: linear-gradient(225deg, var(--color-blue) 50%, transparent 0%, transparent 100%);
}

.clients-section__clients {
    width: 100%;
    max-width: 872px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: center;
    justify-items: center;
    gap: 56px;
}

.clients-section__clients img {
    width: 100%;
    height: auto;
    max-width: 170px;
    max-height: 110px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .clients-section__container {
        flex-direction: column;
    }
}