/* 1. Colors ------------------------------------*/
:root {
    --black: #000000;
    --bone: #e3d8c9;
    --chamoisee: #91744b;
    --CoE-blackgreen: #182828;
    --CoE-darkgreen: #0e423f;
    --eerie-black: #1a1a1a;
    --dim-grey: #626262;
    --gunmetal: #182828;
    --lion: #ab8c5f;
    --platinum: #d9d9d9;
    --timberwolf: #d2d2d2;
    --uni-blue: #3c7295;
    --uni-red: #ae0000;
    --uni-teal: #57c4c0;
    --yellow-green: #abd037;
    --white: #ffffff;
    --white-smoke: #f7f5f3;
}

/* footer general styles */
footer {
    background-color: var(--uni-red);
    color: var(--white);
    font-size: 24px;
    margin: 0 auto;
    /*padding: 1.5rem 1.5rem 0 1.5rem;*/
    width: var(--viewport-width);
    display: flex;
    flex-direction: column;
}

img.footer-logo { /* max-width: 250px; */
}

/* footer link styles */
footer a {
    color: currentColor;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* footer University links */
.university-links {
    margin: 10px auto;
}

.university-links.page-navigation {
    width: auto;
}

.university-links.page-navigation li {
    border: none;
    display: inline;
    font-size: 1rem;
}

.university-links.page-navigation li:not(:last-child)::after {
    content: " | ";
    color: var(--white);
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1;
}

/* footersocial media */
.social-media {
    align-items: center;
    display: flex;
    flex: 50%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 1rem auto 1rem auto;
    max-width: 62.5rem;
    text-align: center;
    letter-spacing: 5px;
    min-height: 35px;
    position: relative;
}

    .social-media a {
        margin: 0 2%;
    }

.social-media a:hover,
.social-media a:focus,
.social-media a:active {
    color: #000;
    transition: color 250ms ease-out;
}

/* footer page navigation */

.page-navigation li {
    list-style: none;
    margin-bottom: 0.25em;
}

/* Footer content */
.footer-content {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 1rem;
}

.footer-content .identifier {
    border-right: 2px solid var(--white);
    display: flex;
    flex: 50%;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
}

/* address */
.address > li {
    display: inline;
}

.identifier .address {
    width: 100%;
    padding: 0 3%;
    min-height: 1px;
    margin-top: 10px;
    margin-bottom: 0px;
    list-style: none;
    font-size: 1rem;
    font-style: normal;
}

.address > div:not(:last-child)::after {
    content: " | ";
    color: var(--white);
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1;
}


.address > div {
    display: inline;
}

.name, .address .phone, .address .street {
    display: inline-block; /* white-space: nowrap; */
    font-size: 1rem;
}

img.footer-logo {
    border: none;
    left: 5.5vw;
    padding: 0;
    position: relative;
    text-align: center;
    width: 400px;
}

.page-link-box {
    flex: 50%;
    font-size: initial;
    margin: 1.5rem auto;
    padding: 0;
    text-align: center;
}

@media only screen and (max-width: 375px) {
    footer.page-footer {
    }

    .footer-content {
        flex-flow: column;
        margin: 0 auto;
        width: 100%;
    }

    .social-media {
        flex: 100%;
        max-width: unset;
        margin-bottom: 0.75em;
        margin-top: 0;
        min-height: unset;
    }

    .footer-content .identifier {
        border-left: unset;
        flex: 100%;
        margin: 0 auto 1em auto;
    }

    .page-footer .page-link-box {
        margin: 0 auto;
    }

    .page-link-box .tier-1 {
        border-right: none;
        padding: 0;
        margin: 0;
    }

    .university-links.page-navigation li {
        display: block;
        margin-top: 1.25em;
    }

    .address > li:not(:last-child)::after, .university-links.page-navigation li:not(:last-child)::after {
        content: unset;
    }
}


@media only screen and (max-width: 428px) {
    .footer-content .identifier {
        padding-right: 0;
    }

    img.footer-logo {
        left: 0;
        width: 95%;
    }
}

@media only screen and (max-width: 600px) {
    footer.page-footer {
    padding: 1rem;
    }

    .footer-content {
        flex-flow: column;
        margin: 0 auto;
        width: 100%;
    }

    .footer-content .identifier {
        border-right: none;
        flex: 50%;
        margin: 0 auto;
        text-align: center;
    }

    .page-link-box .tier-1 {
        border-right: none;
        padding: 0;
        margin: 0;
    }

    .university-links.page-navigation li {
        border-right: none;
        display: block;
        font-size: 1.05rem;
        margin-top: 1.25em;
    }

    .address > li:not(:last-child)::after, .university-links.page-navigation li:not(:last-child)::after {
        content: "";
    }
}

@media only screen and (max-width: 667px) {
    .footer-content .identifier {
        padding: unset;
    }

    .address > div:not(:last-child)::after {
        content: none;
    }

    .social-media a {
        margin: auto;
    }
}