@charset "UTF-8";

.section-parthners {
    padding: clamp(35px, 3.646vw, 70px)  0 clamp( 50px, 5.208vw, 100px );
    background-color: var( --white );
    color: var( --white );
}

.page:not(.home) .section-parthners {
    padding: clamp( 20px, 1.563vw, 30px)  0 clamp( 50px, 5.208vw, 100px );
}

.section-parthners .heading h2 {
    font-size: clamp( 26px, 2.083vw, 40px );
    line-height: clamp( 32px, 2.5vw, 48px );
    text-transform: unset;
}

.section-parthners .container {
    position: relative;
    background-color: transparent;
    z-index: 4;
    display: flex;
    /* width: 100%; */
    justify-content: center;
    flex-direction: column;
}

.parthners-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: no-wrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    gap: 16px;
    justify-content: center;
}

.parthners-list li {
    text-align: center;
    margin: 0;
    flex: 1 0 0;
    margin-bottom: 0;
}

.parthners-list li img {
    height: clamp( 60px, 4.667vw, 80px );
    width: auto;
}


@media ( max-width: 1024px ) {
    .section-parthners .container {
        width: 90%;
    }

    .parthners-list {
        flex-wrap: wrap;
        flex: unset;
    }

    .parthners-list li {
        width: 50%;
    }

    .parthners-list li img {
        height: 80px;
        width: auto;
        aspect-ratio: 26/8;
    }
}

@media ( max-width: 768px ) {
    .section-parthners {
        padding: 40px 0;
    }

    .parthners-list li {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media ( max-width: 567px ) {
    .section-parthners .container {
        margin-top: 0;
    }

    .section-parthners .heading h2 {
        width: 70%;
        margin: 0 auto;
    }
    
    .parthners-list li {
        width: 100%;
        flex: unset;
    }
}