
.banner-cooperation {
    position: relative;
    border-radius: 20px;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;


    &:before {
        content: "";
        position: absolute;
        width: 13%;
        clip-path: polygon(73px 0px, 85.94% -1px, 85.63% 100%, 4px 100%);
        height: 100%;
        background-color: var(--white);
        right: 42%;

        @media (max-width: 902px) {
            display: none;
            width: 100%;
        }
    }
}


.cooperation__content {
    position: relative;
    z-index: 1;
    margin-left: 52%;
    padding: 92px 20px 20px;
    background-color: var(--white);
    overflow: hidden;
    border-radius: 0 16px 16px 0;

    @media (max-width: 902px) {
        margin-left: 0;
    }
    @media (max-width: 576px) {
        padding: 92px 16px 20px 16px;
        border-radius: 16px;
    }

    &::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        top: 0;
        left: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(173, 184, 194, .6) 0 3px, transparent 4px),
        linear-gradient(125deg, transparent 0 42%, rgba(173, 184, 194, .3) 42.2% 42.4%, transparent 42.6%),
        linear-gradient(35deg, transparent 0 47%, rgba(173, 184, 194, .26) 47.2% 47.4%, transparent 47.6%);
        background-size: 190px 170px, 420px 300px, 460px 360px;
        opacity: .35;
        clip-path: polygon(0px 0px, 100% 0px, 100.03% 100.57%, -117px 101.32%);
    }

    & ::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 65% 50%, transparent 0 30%, rgba(255, 255, 255, .12) 31%, transparent 32%);
        opacity: .45;
        background-size: cover;
        height: 100%;
    }
}


.cooperation__content-logo {
    position: absolute;
    top: 0;
    max-width: 132px;
    height: 80px;
    right: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, #3b3c3f, #1f2023);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .25);
    color: var(--white);


    @media (max-width: 576px) {
        margin: 0 auto;
        right: 0;
        left: 0;
        max-width: 100px;
        height: 60px;
    }

    svg {
        width: 100%;
        height: 100%;
        fill: var(--white);
    }
}


.banner-cooperation__title {
    position: relative;
    margin: 0;
    max-width: 520px;
    font-size: var(--fz-42);
    font-weight: 800;
    letter-spacing: -1.4px;

    @media (max-width: 902px) {
        max-width: 100% ;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    @media (max-width: 576px) {
        font-size: 24px;
        line-height: 1;
    }

    span {
        color: #E21B3C;
    }
}


.line {
    width: 38px;
    height: 3px;
    margin: 22px 0 24px;
    background: #e31837;
}

.banner-cooperation__text {
    position: relative;
    max-width: 520px;
    margin: 0 0 34px;
    color: var(--blue-350);
    font-size: var(--fz-16);
    line-height: 1.55;

    @media (max-width: 902px) {
        max-width: 100% ;
    }

    @media (max-width: 576px) {
        font-size: 12px;
    }
}

.banner-cooperation__features {
    position: relative;
    display: flex;
    align-items: stretch;

    gap: 16px;
    margin-bottom: 36px;

    @media (max-width: 576px) {
        flex-wrap: wrap;
    }
}

.banner-cooperation__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e6e9ef;
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 5px 14px rgba(20, 30, 45, .04);
    font-size: var(--fz-14);
    font-weight: 700;
    line-height: 1.22;
    flex: 0 0 calc(100% / 3 - (16px / 3 * 2));

    @media (max-width: 576px) {
        font-size: var(--fz-12);
        gap: 10px;
        flex: 1 1 calc(100% / 2 - (16px / 2 * 1));
    }
}

.banner-cooperation__feature svg {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    fill: var(--red-700);
    stroke: var(--red-700);
}

.banner-cooperation__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-width: 198px;
    padding: 19px 28px;
    float: right;
    border: 0;
    border-radius: 10px;
    margin: 0 0 30px auto;
    background: linear-gradient(180deg, #FF2C4F, #E21B3C);
    color: var(--white);
    font-size: var(--fz-18);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(227, 24, 55, .34);
    transition: transform .2s ease, box-shadow .2s ease;
    z-index: 2;

    @media (max-width: 578px) {
        float: none;
        height: 50px;
        font-size: var(--fz-12);
    }

    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 24px rgba(227, 24, 55, .38);
    }

    svg {
        width: 14px;
        height: 14px;
        fill: var(--white);
        stroke: var(--white);

        @media (max-width: 578px) {
            width: 10px;
            height: 10px;
        }
    }
}



