@font-face {
    font-family: 'prox-regular';
    src: url("../fonts/Mark Simonson - Proxima Nova Regular.ttf");
}

@font-face {
    font-family: 'prox-light';
    src: url("../fonts/Mark Simonson - Proxima Nova Light.ttf");
}

body {
    margin: 0;
}

#csu-branding {
    top: 0;
    width: 100%;
    z-index: 10000;
    background: #1E4D2B;
    background-image: linear-gradient(#00540c,#0c472f 50%,#0c4733);
    opacity: .96;
    padding: 15px;
    padding-left:20px;
}

#csu-outer-container {
    display: inline-flex;
    align-items: center;
}


#csu-logo img {
    height: 50px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: .125em solid white;
}

#site-title {
    max-width: 250px;
    font-family: 'prox-light', sans-serif;
    font-size: .8em;
    color: white;
    font-weight: bold;
    letter-spacing: .07em;
    line-height: 1.1em;
    text-transform: uppercase;
}


footer {
    font-family: 'prox-regular';
    color: white;
    width: 100%;
    position: absolute;
    background: #1E4D2B;
    left: 0;
    font-size:.9em;
}

footer a {
    color: white;
    text-decoration:none;
}
footer a:hover {
    color: #dddddd;
    text-decoration: none;
}

footer .csu-container {
    display: inline-flex;
    padding: 25px;
}

footer .csu-container p {
    padding-right: 50px;
}

#footer-logo {
    width: 400px;
    max-height: 100px;
    float: right;
}

@media (max-width: 991px) {
    footer{
        height:auto;
    }
    footer .csu-container {
        display: block;
        text-align: center;
    }

        footer .csu-container p {
        }

    #footer-logo {
        float: none;
        max-width: 300px;
    }

    footer .csu-container p {
        padding-right: 0;
    }
}


.csu-visible-sm {
    display: block;
}

.csu-visible-md {
    display: none;
}

.csu-visible-lg {
    display: none;
}


@media (min-width: 576px) {
    .csu-visible-sm {
        display: block;
    }

    .csu-visible-md {
        display: none;
    }

    .csu-visible-lg {
        display: none;
    }
}

@media (min-width: 768px) {
    .csu-visible-sm {
        display: none;
    }

    .csu-visible-md {
        display: block;
    }

    .csu-visible-lg {
        display: none;
    }
}

@media (min-width: 992px) {
    .csu-visible-sm {
        display: none;
    }

    .csu-visible-md {
        display: none;
    }

    .csu-visible-lg {
        display: block;
    }
}


.csu-container a:hover{
    text-decoration:none;
}