.footer {
    background: #000000;
    padding: 60px 0;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
}

.footer__adress {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__logo {
    max-width: 150px;
    width: 100%;
}

.footer__logo-mob {
    display: none;
    max-width: 150px;
    width: 100%;
    margin-bottom: 32px;
}

.footer__adress-description-text {
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.footer__adress-description-text:last-child {
    margin-bottom: 0;
}

.footer__adress-description-text .different {
    color: #848484;
}

.footer__map {
    display: flex;
}

.footer__map-item {
    max-width: 384px;
    width: 100%;
}

@media (max-width: 900px) {
    .footer__map-item {
        max-width: 352px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 50px 0 32px;
    }

    .footer__wrapper {
        max-width: 540px;
        margin: 0 auto;
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer__logo {
        display: none;
    }

    .footer__logo-mob {
        display: block;
    }

    .footer__adress-description-text {
        text-align: center;
    }

    .footer__map {
        margin-bottom: 24px;
    }

    .footer__map-item {
        max-width: 100%;
        width: 100%;
    }
}