﻿@font-face {
    font-family: "Goldplay";
    src: url("../media/fonts/goldplay-regular.woff");
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Goldplay", Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.1667;
    color: #333;
    display: flex;
    min-height: 100vh;
    overflow: auto;
    flex-direction: column;
    margin: 0;
}

a {
    text-decoration: none;
    background-color: transparent;
}

.banner {
    display: flex;
    flex-direction: column;
}

.site-bar {
    height: 1.125rem;
    width: 100%;
    background: #1f5ba8;
}

.navbar-brand-link {
    background-image: url("../media/images/logo-header-west-academic.svg");
    background-size: 23.4375em 5em;
    width: 23.4375em;
    height: 5em;
}

.footer {
    margin-top: 0;
    bottom: 0;
}

.container, .footer-logo-col, .footer-nav-col {
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 0.0625rem;
    flex-direction: column;
}

.container {
    display: flex;
    margin-right: auto;
    margin-left: auto;
}

.main-content {
    flex: 1;
    flex-grow: 1;
    margin-top: 10vh;
}

.logo-row {
    padding-top: .25rem;
}

.logo-row, row {
    display: flex;
    flex-direction: row;
}

.footer-logo-col {
    width: 41.66666667%;
    align-self: center;
}

.footer-logo {
    display: flex;
    justify-content: end;
    margin-bottom: .1875rem;
}

.footer-logo-link {
    background-image: url("../media/images/logo-header-west-academic-footer.svg");
    background-size: 15.813em 3.75em;
    background-position: 0 0;
    width: 15.813em;
    height: 3.75em;
    object-fit: contain;
    text-indent: -624em;
}

.footer-nav-col {
    width: 58.33333333%;
    display: flex;
}

.footer-nav {
    padding-top: 1%;
    list-style: none;
    text-align: center;
}

.footer-nav-item {
    float: left;
    font-size: 0.875rem;
}

.footer-nav-item:first-child {
    margin-left: 0;
}

.footer-nav-item-link {
    font-size: 0.75rem;
    line-height: 1.6;
    font-weight: bold;
    color: #000;
    padding-left: 0.375rem;
}

.middle-footer-nav-item-link {
    padding-right: 0.375rem;
    border-width: 0.0625rem;
    border-right-style: solid;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    display: inline-block;
    width: 100%;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 0;
    font-weight: normal;
    font-size: 0.75rem;
}

@media (max-width: 767px) {
    .main-content {
        margin-top: 0;
        text-align: center;
    }

    .logo-row {
        flex-direction: column;
        align-self: center;
    }

    .footer-copyright {
        align-self: center;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
    }

    .middle-footer-nav-item-link {
        border: none;
    }

    .footer-logo-col, .footer-nav-col {
        width: fit-content;
    }

    .navbar-brand-link {
        width: 20em;
        background-size: 20em 5em;
        align-self: center;
    }
}