@charset "UTF-8";

.section-parthners {
    position: relative;
    padding: 0 0 calc( clamp( 50px, 5.208vw, 100px ) + min( 6.25vw, 120px ) );
    background-color: var( --white );
    color: var( --black );
}

.section-parthners .heading {
    width: 100vw;
    margin-left: calc( 50% - 50vw );
    margin-bottom: clamp( 80px, 5.208vw, 100px );
    padding: 16px 0;
    background-color: var( --secondary-color );
    text-align: center;
}

.section-parthners .heading h2 {
    margin: 0;
    font-family: var( --body-font );
    font-size: 16px;
    font-weight: var( --btn-font-weight );
    line-height: 1.5;
    letter-spacing: var( --btn-letter-spc );
    text-transform: uppercase;
    color: var( --black );
}

.section-parthners::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: min( 6.25vw, 120px );
    background: url( /wp-content/uploads/2026/06/wave_transition_teal_desktop.svg ) center bottom / 100% 100% no-repeat;
    pointer-events: none;
}

.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: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    gap: clamp( 20px, 1.667vw, 32px );
    justify-content: center;
}

.parthners-list li {
    width: clamp(160px, 13.542vw, 260px);
    text-align: center;
    margin: 0;
    margin-bottom: 0;
}

.parthners-list li img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80px;
}


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

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

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

@media ( max-width: 768px ) {
    .parthners-list li {
        width: 50%;
        margin-bottom: 20px;
    }
}

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

    .section-parthners {
        padding-bottom: calc( clamp( 50px, 5.208vw, 100px ) + 25.641vw );
    }

    .section-parthners::after {
        height: 25.641vw;
        background-image: url( /wp-content/uploads/2026/06/wave_transition_teal_mobile.svg );
    }

    .section-parthners .heading h2 {
        width: 70%;
        margin: 0 auto;
    }

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