.footer {
    background-color: var(--color-black-800);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    padding: 80px 80px 160px 80px;
}

.footer__logo {
    width: 320px;
    margin-bottom: 32px;
}

.footer__logo__text {
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 37px;
    margin-top: 8px;
}

.footer__logo svg {
    fill: var(--color-white);
    width: 86px;
    height: auto;
}

.footer__logo svg path {
    fill: var(--color-white);
}

.footer__quicklinks {
    width: 320px;
    margin-bottom: 32px;
}

.footer__quicklinks ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer__quicklinks ul li {
    padding: 0 10px 20px 0;
}

.footer__quicklinks ul li a {
    text-transform: uppercase;
    text-decoration: none;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-white);
}

.footer__quicklinks ul li a:hover {
    text-decoration: underline;
}

.footer__contact {
    width: 400px;
}

.footer__contact__title {
    font-family: Lora;
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 20px;
}

.footer__contact__email {
    display: flex;
}

.footer__contact__email a svg {
    fill: var(--color-white);
    margin-right: 4px;
}

.footer__contact__email a {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    text-decoration: none;
    color: var(--color-white);
}

.footer__contact__social {
    margin-top: 20px;
}

.footer__contact__social a {
    margin-right: 16px;
}

@media screen and (max-width: 1100px) {
    .footer {
        padding: 24px;
    }
    .footer__quicklinks {
        margin-top: 100px;
        order: 3;
    }
    .footer__contact__title {
        font-family: Lora;
        font-size: 24px;
        font-weight: 600;
        line-height: 34px;
        margin-bottom: 20px;
    }
    .footer__logo,
    .footer__contact,
    .footer__quicklinks {
        width: 100%;
    }
}