.footer {
    width: 100%;
    height: 100%;
    background-image: url("../img/footer-fon.png");
    background-repeat: no-repeat;
    background-size: cover;
        flex: 0 0 auto;
}

.footer__wrapper {
    position: relative;
    display: flex;
    padding: 50px 0;
    column-gap: 17px;
    align-items: stretch;
}

.footer__left {
    display: flex;
    flex-basis: 602px;
    flex-direction: column;
   justify-content: space-between;
}

.footer__left__text {
    /*max-width: 350px;*/
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    text-align: left;
    color: var(--black);
}

.footer__right__list {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.footer__right {
    display: flex;
    align-items: flex-start;
    column-gap: 164px;
}

.footer__list__link {
    font-size: 14px;
    font-weight: 500;
    line-height: 17.07px;
    color: var(--pink);
    text-decoration: none;
}

.footer__list__link:hover {
    color: var(--pink);
    text-decoration: none;	
}

.footer__tag {
    position: absolute;
    width: 38px;
    right: 0;
    bottom: 20px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/product__stick.svg');
    font-size: 12px;
    font-weight: 700;
    line-height: 14.63px;
    color: white;
}

.footer__left__text-mob {
    display: none;
}

@media (max-width: 1026px) {
    .footer__left {
        flex-basis: 50%;
        max-width: 100%;
    }

    .footer__right {
        justify-content: space-around;
        flex-basis: 50%;
        column-gap: 20px;
    }
}
@media (max-width: 780px) {
    .footer__wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer__left {
        flex-basis: 100%;
        justify-content: center;
        align-items: center;
        margin-bottom: 24px;
    }

    .footer__right__list {
        width: 100%;
        margin-bottom: 16px;
    }
    .footer__right {
        align-items: center;
        justify-content: center;
        flex-basis: 100%;
        row-gap: 7px;
        flex-direction: column;
    }
    .footer__left__text {
        display: none;
    }
    .footer__left__text-mob {
        display: block;
        font-size: 10px;
        font-weight: 400;
        line-height: 12.19px;
        margin-bottom: 24px;
        text-align: center;
    }

    .footer__tag {
        right: 45%;
    }
}

