.footer {
    background-color: #F9FBFF;
    padding: 80px 0;
}

.footer .footer__top {
    display: flex;
    gap: 105px;
}

.footer .footer__links {
    display: flex;
    gap: 33px;
    flex-shrink: 0;
}

.footer .footer__link-category {
    font-weight: 800;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #2A2A37;
    margin-bottom: 16px;
}

.footer .footer__link {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #2A2A37CC;
    padding: 8px 0;
    display: block;
    text-decoration: none;
}

.footer .footer__logo {
    display: flex;
}

.footer .footer__logo img {
    height: 17.84px;
    width: auto;
}

.footer .footer__about-heading {
    font-weight: 800;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    margin-top: 16px;
    margin-bottom: 8px;
}

.footer .footer__about-text {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #2A2A37CC;
}

.footer .footer__sub {
    font-weight: 500;
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #2A2A37;
}

.footer .footer__socials {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.footer .footer__social-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #232323;
    background-color: #fff;
    padding: 9px 16px;
    border-radius: 12px;
    text-decoration: none;
}

.footer .footer__bottom {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid #2A2A371A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer__bottom-text {
    display: flex;
    gap: 24px;
}

.footer .footer__legal {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #2A2A37;
}

.footer a.footer__legal {
    text-decoration: underline;
}

.footer .footer__bottom-links {
    display: flex;
    gap: 15px;
}

@media screen and (max-width: 1100px) {
    .footer .footer__top {
        flex-direction: column;
        gap: 40px;
    }

    .footer {
        padding: 60px 0;
    }
}

@media screen and (max-width: 900px) {
    .footer .footer__bottom-text {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 16px 24px;
    }

    .footer div.footer__legal {
        grid-column: 1/3;
    }

    .footer .footer__bottom {
        margin-top: 40px;
    }
}

@media screen and (max-width: 640px) {
    .footer {
        padding: 40px 0;
    }

    .footer .footer__bottom-text {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer .footer__bottom {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        padding-top: 16px;
        margin-top: 24px;
    }

    .footer .footer__top {
        flex-direction: column-reverse;
    }

    .footer .footer__links {
        flex-direction: column;
        gap: 16px;
    }

    .footer .footer__socials {
        flex-direction: column;
    }

    .footer .footer__social-link {
        justify-content: center;
    }
}

