.footer {
    padding: 360px 0 150px;
    width: 100%;
    position: absolute;
    bottom: 0;
    background: #000000;
}

.footer__container {
    max-width: 1170px;
}

.footer__wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.footer__logo {
    max-width: 196px;
    width: 100%;
}

.footer-address {
    max-width: 269px;
    width: 100%;
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    text-align: center;
    text-transform: uppercase;

    color: #FFFFFF;

    margin: 0 auto;

}

.footer__socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 20px;
}

.footer__email {
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;

    color: #FFFFFF;
    margin-right: 10px;
}

.footer__socials-icons {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer__bottom {
    padding: 55px 0 0;
}

.footer__links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 15px;
}

.footer__link {
    font-size: 15px;
    line-height: 22px;
    color: #FFFFFF;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .footer {
        padding: 310px 0 100px;
    }
}

@media (max-width: 1000px) {
    .footer__wrapper {
        grid-template-columns: repeat(2, auto);
        grid-column-gap: 40px;
        grid-row-gap: 40px;
    }

    .footer__logo {
        grid-column: span 2;
        margin: 0 auto;
    }

    .footer-address {
        max-width: 100%;
        text-align: left;
        text-transform: none;
        align-self: center;
    }
}

@media (max-width: 750px) {
    .footer {
        padding: 210px 0 100px;
    }

    .footer__wrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 20px;
        align-items: center;
    }

    .footer__logo {
        grid-column: unset;
    }

    .footer-address {
        text-align: center;
    }

    .footer__socials {
        justify-content: center;
    }
}