footer {
    background: linear-gradient(95deg, #BE205F 9.09%, #E95095 100.15%);
    padding: 12px 0;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-wrap ul {
    gap: 40px;
    align-items: center;
}

.footer-wrap ul a {
    color: #FFF;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    transition: color .5s ease;
    line-height: normal;
}

.footer-wrap ul a:hover {
    color: #E95095;
}

.coop {
    font-weight: 300;
    font-size: 14px;
    font-family: 'Inter';
    line-height: 19px;
    max-width: 252px;
    display: block;
    width: 100%;
    color: #fff;
    transition: color .5s ease;

}

.coop:hover {
    color: #E95095;

}

@media screen and (max-width: 1000px) {
    footer {
        padding: 25px 0;
    }

    .footer-wrap ul {
        flex-wrap: wrap;
    }

    .menu-right li,
    .menu-left li {
        width: 100%;
    }

    .menu-right li {
        justify-content: right;
    }

    .footer-wrap ul {
        gap: 15px;
    }

    footer .logo {
        width: 102px;
        min-width:102px;
    }

    .coop {
        margin: 30px auto 0;
        text-align: center;
    }
}