.footer {
    width: 100%;
    background: var(--color-dark);
    padding: 4rem 1rem 6rem 2rem;

    color: var(--font-color-light);
    margin-top: 5rem;
    text-align: center;
    /* border-top: 1px solid #eee; */
    min-height: 30rem;
    max-height: 600px;

    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}

.footer-content {

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: var(--site-max-width);

    margin: 0;
    /* padding: 0 2rem; */
    box-sizing: border-box;
    gap: 5rem;
}


.footer-nav {
    flex: 1 1 0;
    text-align: left;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: var(--font-color-light);
    font-size: var(--font-size-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--font-color-accent-1);
}



.footer-monogram {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    pointer-events: none;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 1.5rem;
}

.footer-monogram svg {
    opacity: 1.0;
    color: white;
    width: 28px;
    height: auto;
    display: block;
}

.footer-address,
.footer-address address {
    flex: 1 1 0;
    text-align: left;
    font-style: normal;
    line-height: 1.6;

}


@media (min-width: 900px) {
    .footer {
        padding: 2rem 1rem 6rem 1rem;
        justify-content: center;
        align-items: center;
    }

    .footer-content {
        flex-direction: row;

    }

    .footer-address,
    .footer-address address {
        flex: 1 1 0;
        text-align: right;

        line-height: 1.6;

    }

}