@media screen and (max-width: 900px) {
    .footer-link-wrapper {
        display: none !important;
    }

    .footer-right {
        display: none !important;
    }

    .footer-logo-column {
        flex-direction: row !important;
        justify-content: space-between !important;
        width: 100%;
        height: unset !important;
    }
}

@media screen and (max-width: 470px) {
    .footer-logo-column {
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .footer {
        margin-top: unset !important;
        padding-top: 1rem !important;
    }
}

.footer {
    background: var(--w);
    margin-bottom: 2rem;
    border: none !important;
}

.footer-container {
    max-width: var(--footer-width);
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
    height: 10.4375rem;
    position: relative;
}

.footer-link-header {
    color: var(--text-black);
    font-size: 0.8125rem;
    font-weight: 500;
    padding-bottom: 0.75rem;
    display: block;
}

.footer-link-header:hover {
    color: var(--accent-blue);
}

.footer-link {
    color: var(--g-1) !important;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 0.25rem;
    white-space: nowrap;
}

.footer-link:hover {
    color: var(--accent-blue) !important;
}

.footer-link-container {
    display: flex;
    flex-direction: column;
}

.footer-left {
    display: flex;
    margin-right: 1rem;
    gap: 4rem;
    flex: 33%;
}

.footer-right {
    display: flex;
    flex: 67%;
    justify-content: space-between;
}