.footer {
    background: #BDA10F url(/images/footer.svg) no-repeat 0 -290px;
}

.footer__inner {
    padding: 40px 20px;
}

.footer__row {
    display: grid;
    grid-auto-flow: row;
    row-gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__flower {
    margin-bottom: 20px;
}

.footer__contacts {
    color: #fff;
    font-size: 13px;
    line-height: 1.23;
    padding-bottom: 40px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__tel {
    color: #fff;
}

.footer__menu-heading {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.07;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer__menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-auto-flow: rows;
    row-gap: 8px;
}

.footer__menu-link {
    font-weight: 500;
    font-size: 11px;
    line-height: 1.45;
    text-transform: uppercase;
    color: #fff;
}

.footer__bottom {
    padding-top: 40px;
}

.footer__logo {
    display: block;
    margin-bottom: 20px;
    max-width: 95px;
}

.footer__logo-img {
    max-width: 100%;
    height: auto;
}

.footer__copyright {
    font-weight: 500;
    font-size: 11px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 8px;
}

.footer__para-link {
    margin-bottom: 8px;
}

.footer__bottom-link {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.45;
}

@media screen and (min-width: 720px) {

    .footer__inner {
        padding-left: 40px;
        padding-right: 40px;
    }

    .footer__row {
        grid-auto-flow: column;
        column-gap: 40px;
        grid-template-columns: 32fr 24fr 24fr 24fr;
        padding-bottom: 20px;
    }

     .footer__contacts {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

}

@media screen and (min-width: 1280px) {

    .footer__inner {
        padding: 60px 80px 32px;
    }

    .footer__flower {
        margin-bottom: 135px;
    }

    .footer__bottom {
        padding-top: 20px;
        display: grid;
        grid-template-columns: 1fr auto auto auto auto;
        justify-content: end;
        align-items: center;
        column-gap: 30px;
    }

    .footer__logo {
        margin-bottom: 0;
    }

    .footer__copyright {
        margin-bottom: 0;
    }

    .footer__para-link {
        margin-bottom: 0;
    }
}