.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0 3rem;
}

.footer-logo-container {
    position: relative;
    width: 10rem;
    height: 6.25rem;
    padding-left: 1.9375rem;
    padding-right: 1.9375rem;
}

.footer-logo-img {
    position: absolute;
    top: -1.5rem;
}

.footer-logo-img {
    position: absolute;
    top: -1.5rem;
}

.footer-info {
    padding: 0 0 4rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.footer-links.mobile-only {
    display: none;
}

.links {
    cursor: pointer;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--oa-green);
    text-decoration: none;
}

.links:hover {
    color: #24cbaa;;
    text-decoration: none;
}

.footer-address {
    text-align: right;
    padding-left: 1.9375rem;
    padding-right: 1.9375rem;
}

.footer-address p {
    font-size: 1rem;
    line-height: 1.5rem;
}

.footer-copyrights {
    height: 3.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.footer-copyrights p {
    font-size: 1rem;
}

/* Desktop */
@media only screen and (max-width: 1200px) {}
@media only screen and (max-width: 992px) {}


/* Mobile */
@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 576px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-info {
        display: flex;
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 2rem;
    }

    .footer-logo-container {
        height: 4.25rem;
    }

    .footer-links {
        display: none;
    }

    .footer-links.mobile-only {
        display: flex;
        margin-top: 1rem;
        text-align: center;
    }

    .footer-address {
        text-align: center;
    }

    .footer-copyrights {
        justify-content: center;
        text-align: center;
        margin: auto 1rem;
    }

    .links,
    .footer-address p,
    .footer-copyrights p {
        font-size: 0.875rem;
    }
}
