/* ================================================
   SECTION: PARTNERS
   ================================================ */
.section-partners {
    margin-top: 96px;
    position: relative;
    overflow-x: clip;
}

.section-partners__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-partners__label {
    position: relative;
}

.decoration-element {
    position: absolute;
    bottom: 0;
    left: calc(50% - 960px);
}


.decoration-element-2 {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(110%) translateY(-40%);
    z-index: 3;
}

.section-partners__label-text {
    color: #000;
    text-align: right;
    font-family: "Exo 2";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.section-partners__label-text-flex{
    padding-bottom: 10px;
}

.section-partners__slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.section-partners__slider-wrapper::before,
.section-partners__slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.section-partners__slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.section-partners__slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.section-partners__swiper {
    pointer-events: none;
}

.section-partners__swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.section-partners__swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-partners__logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s;
}

.section-partners__logo:hover {
    opacity: 1;
}


@media (max-width: 1100px) {
    .section-partners .decoration-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-partners {
        margin-top: 48px;
    }

    .section-partners__slider-wrapper{
        margin-left: 20px;
    }

    .section-partners__inner {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .section-partners__label {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-partners__label-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .section-partners .decoration-element {
        display: block;
        width: 100%;
        scale: -1;
        z-index: 3;
        left: 20px;
    }

    .section-partners .decoration-element-2 {
        display: none;
    }

    .section-partners__slider-wrapper::before,
    .section-partners__slider-wrapper::after {
        width: 60px;
    }
}

@media (max-width: 550px) {
    .section-partners__slider-wrapper {
        width: 98%;
    }
}

