.brand-footer {
    background-color: #00672D;
    padding: 50px 50px;
    color: #ffffff;
    font-family: sans-serif;
    background-image: url('../img/background-brand-footer.png');
    background-position: right center;
    background-repeat: no-repeat;
}
.brand-footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.brand-footer__left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
}
.brand-footer__logo .logo-sub {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.logo-title {
    color: #FFF;
    font-family: Montserrat;
    font-size: 7px;
    font-style: normal;
    font-weight: 900;
    line-height: 10px; /* 142.857% */
    letter-spacing: 1px;
    text-transform: uppercase;
}
.logo-img {
    height: 50px;
    display: block;
    margin: 0 0 6px;
}
.brand-footer__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.btn-download {
    font-family: Montserrat;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #373A43;
    text-decoration: none;
    padding: 17px 60px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
.btn-download:hover {
    background: #f0f0f0;
}
.brand-footer__contacts {
    text-align: right;
}
.contacts-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}
@media(max-width: 768px) {
    .brand-footer .brand-footer__container {
        flex-direction: column;
        align-items: flex-start;
    }
    .brand-footer {
        padding: 20px;
    }
    .brand-footer {
        background-image: none;
    }
    .brand-footer__contacts {
        text-align: left;
    }
}