.clients-template-1 {
    background: var(--primary_1);
    border-radius: var(--border-radius_1);
    margin-top: 3rem;
}

.clients-template-1 .infiniteslide_wrap {
    border-radius: var(--border-radius_1);
}

.clients-template-1 .infiniteslide {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.clients-template-1 .client-title {
    display: flex;
    align-items: center;
    background-color: var(--primary_1);
    color: var(--primary_2);
    font-weight: bold;
    justify-content: center;
    text-align: center;
    font-size: var(--h2);
    line-height: 5rem;
    border-radius: var(--border-radius_1);
    height: 220px;
    background-image: url('/image/design/logo/matin-sign.png');
    background-size: 230px;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: soft-light;
}

.clients-template-1 .scroll_slide {
    display: flex;
    gap: var(--margin);
    direction: ltr;
}

.clients-template-1 .scroll_slide li {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: var(--text-size-7);
    background: #fff;
    padding: 0 var(--margin);
    width: 190px;
    border-radius: var(--border-radius_1);
}

.scroll_slide li img {
    width: 120px;
    height: 120px;
    padding: var(--margin);
    border-radius: var(--border-radius_1);
    filter: grayscale(1);
}

@media (max-width: 992px) {
    .clients-template-1 {
        border-radius: 0;
        padding-bottom: 3rem;
        margin-top: 0;
    }
    .clients-template-1 .client-title {
        height: 100px;
    }
    .clients-template-1 .scroll_slide li {
        font-size: var(--text-size-9);
        width: 150px;
    }    
    .clients-template-1 > .row {
        flex-direction: column-reverse;
    }    
}