.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0 0;
    gap: 12px;
    padding: 32px 16px;
    background-color: var(--dark-navy);
}

.footer__logo {
    width: 56px;
    height: 56px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer__wrapper-title {
    display: flex;
    align-items: flex-start;
}

.footer__text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 160%;
}

.footer__text-link {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.footer__text-icon {
    width: 20px;
    height: 20px;
}

@media (min-width: 700px) {
    .footer {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 56px 72px;
        gap: 24px;
    }

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        flex: 1;
    }

    .footer__logo {
        width: 72px;
        height: 72px;
    }

    .footer__text {
        font-size: 16px;
    }

    .footer__text-icon {
        width: 24px;
        height: 24px;
    }

    .footer__wrapper-title {
        order: -1;
    }
}