﻿* {
    box-sizing: border-box;
}

html {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    background: #ffffff;
    margin: 0;
}

    body.has-active-menu {
        overflow: hidden;
    }

.logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    z-index: 1;
}

/*Hyperlink text*/
.main a:link, .main a:visited {
    font-size: inherit;
    color: #646652;
    text-decoration: underline;
    text-decoration-color: #DA291C;
}

    .main a:hover {
        color: #000000;
        text-decoration: none;
    }

.main h2 > a:link, .main h2 > a:visited {
    font-size: inherit;
    color: #9f5f41;
    text-decoration: none !important;
}

.main h2 > a:hover {
    color: #646652;
    text-decoration: none;
}

.animate {
    color: #231F20;
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 5rem;
    font-weight: 800;
    margin-top: 0;
    text-transform: uppercase;
    line-height: 0.8;
    animation: slidein-5 1.2s 1;
}

.text-fade {
    float: left;
}

    .text-fade span {
        display: block;
        font-family: Roboto, sans-serif;
        font-size: 5rem;
        font-weight: 800;
        -webkit-text-stroke: 1px #231F20;
        text-stroke: 1px #231F20;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        line-height: 0.8;
    }

        .text-fade span:nth-child(1) {
            opacity: 0.15;
            animation: slidein-1 1.2s 1;
        }

        .text-fade span:nth-child(2) {
            opacity: 0.25;
            animation: slidein-2 1.2s 1;
        }

        .text-fade span:nth-child(3) {
            opacity: 0.35;
            animation: slidein-3 1.2s 1;
        }

        .text-fade span:nth-child(4) {
            opacity: 0.45;
            animation: slidein-4 1.2s 1;
        }

/* Animations */
@keyframes slidein-1 {
    from {
        transform: translate3d(0,-100%,0);
    }

    to {
        transform: translate3d(0,0%,0);
    }
}

@keyframes slidein-2 {
    from {
        transform: translate3d(0,-200%,0);
    }

    to {
        transform: translate3d(0,0%,0);
    }
}

@keyframes slidein-3 {
    from {
        transform: translate3d(0,-300%,0);
    }

    to {
        transform: translate3d(0,0%,0);
    }
}

@keyframes slidein-4 {
    from {
        transform: translate3d(0,-400%,0);
    }

    to {
        transform: translate3d(0,0%,0);
    }
}

@keyframes slidein-5 {
    from {
        transform: translate3d(0,-500%,0);
    }

    to {
        transform: translate3d(0,0%,0);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.spinning {
    animation: rotation 30s infinite linear;
}

.word-spin {
    position: absolute;
    left: 15em;
    top: 10em;
}

.rounded {
    border-radius: 25px;
}

.responsiveImgHead {
    float: left;
    max-width: 100%;
    height: auto;
}

.responsiveImg {
    max-width: 100%;
    height: auto;
}

.clear {
    clear: both;
}


/*Page Header*/
header {
    position: relative;
    padding: 5em 0 0 0;
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
}

.col-center {
    flex: 1;
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.col-left {
    order: 1;
    width: 20%;
}

.col-right {
    order: 3;
    width: 21%;
}

.canvasContainer {
    z-index: -1;
}


/*Main Content Area*/
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    display: flex;
    flex: 1;
}

.columns {
    display: flex;
    flex: 1;
}

ul.no-bullets {
    list-style-type: none;
    margin: 20px 50px 20px 50px;
    padding: 0;
}

.main {
    color: #000000;
    flex: 1;
    order: 2;
    padding: 2rem;
}

    .main.black {
        padding: 0;
    }

    .main h2 {
        font-size: 2em;
        font-weight: bold;
        color: #9f5f41;
        text-transform: uppercase;
        letter-spacing: .15em;
    }

    .main p {
        font-size: 1.125em;
        padding: 0 20px 0 20px;
    }

    .main ul li {
        font-size: 1.125em;
        padding-bottom: 20px;
        margin-left: 20px;
    }

    .main strong {
        color: #646652;
        font-weight: bold;
    }

    .main.black, .sidebar-left.black, .sidebar-right.black {
        color: #ffffff;
        background-color: #231F20;
    }

        .main.black strong {
            color: #FFF8F0;
            font-weight: bold;
        }

        .main.black h2 {
            color: #C9947C;
        }

.sidebar-left {
    order: 1;
    max-width: 20%;
}

.sidebar-right {
    order: 3;
    max-width: 21%;
}

.sidebar-container {
    margin-bottom: 400px;
    position: relative;
    width: 100%;
}

    .sidebar-container video, .sidebar-container img {
        position: absolute;
        top: 0;
    }



/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.two-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2.25em;
    -moz-column-gap: 2.25em;
    column-gap: 2.25em;
    column-fill: auto;
}

    .two-columns > p:first-child {
        margin-top: 0;
    }

.small-bg-video {
    position: relative;
    background-size: cover;
    left: 3em;
    top: 12em;
    width: 65%;
    height: auto;
    z-index: 1;
}

.small-bg-video-header {
    width: 15%;
    right: 8em;
    top: 18em;
    position: absolute;
}

.shadow-1 {
    box-shadow: -35px 25px #646652;
}

.shadow-2 {
    box-shadow: 25px 45px #646652;
}

.shadow-3 {
    box-shadow: 30px 25px #DA291C;
}

.roundcorner-01 {
    top: 12em;
    position: absolute;
    right: 1em;
    z-index: -1;
}

.left-content-area {
    position: relative;
}

.main-content-area {
}

.right-content-area {
    position: relative;
}

.sidebar-right > img {
    position: relative;
    top: 2%;
    right: 5%;
    width: auto;
    height: auto;
}

/*.sidebar-right > img:last-of-type {
        position: relative;
        top: -30%;
        right: 5%;
    }*/

.sidebar-right > .image-2 {
    position: relative;
    top: -10%;
    right: -20%;
}

.logo-md {
    width: 100%;
    max-width: 300px;
    max-height: 300px;
    margin: 0 2em 0 2em;
}


.canvasContainer {
    background-color: transparent;
    opacity: 0.2;
}

#myCanvas1, #myCanvas2, #myCanvas3 {
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    /*width: 90%;
    height: 300px;*/
}

.image-sml {
    width: 100%;
    max-width: 200px;
    max-height: 200px;
    margin: 2em;
}

.md-bg-video {
    position: relative;
    background-size: cover;
    top: 5em;
    width: 75%;
    height: auto;
    z-index: 1;
}

/* FOOTER */
/*-----------------------------------------------------------------------------------*/
footer.page-footer {
    background-image: url(../images/footer-01.png);
    background-size: cover;
    color: #ffffff;
    margin: 0 auto;
    padding: 0 0 3em 0;
    width: 100%;
}

.footer-content {
    align-items: center;
    display: flex;
    padding-top: 0;
}

    .footer-content .identifier {
        flex: 50%;
        margin-top: 12em;
    }

.identifier {
    text-align: center;
}

    .identifier .footer-logo {
        border: none;
        padding: 0 0 1em 0;
        text-align: center;
        width: auto;
    }

    .identifier .address {
        display: block;
        font-size: 0.85em;
        list-style: none;
        margin-bottom: 0px;
        margin-top: 10px;
        min-height: 1px;
        padding: 0 3%;
        width: 100%;
    }

.address > li {
    display: inline;
}

    .address > li:not(:last-child)::after, .university-links.page-navigation li:not(:last-child)::after {
        content: " |";
    }

.social-media {
    flex: 50%;
    letter-spacing: 5px;
    margin-left: auto;
    margin-right: auto;
    max-width: 62.5rem;
    margin-top: 12em;
    position: relative;
    text-align: center;
}

    .social-media > p > span > a, .social-media > p > span > a:visited {
        text-decoration: none;
    }

        .social-media > p > span > a:hover {
            text-decoration: underline;
        }


footer.page-footer a:link, footer.page-footer a:visited {
    color: #ffffff;
}

.social-media a {
    margin: 0 2%;
    cursor: pointer;
}

.social-media .fa:hover, .social-media .fa:focus, .social-media .fa:active {
    color: #e1261c;
    -webkit-transition: color 250ms ease-out;
    -moz-transition: color 250ms ease-out;
    -o-transition: color 250ms ease-out;
    transition: color 250ms ease-out;
}

.social-media a span.fa-stack {
    height: 1.5em;
    text-align: center;
    width: 1.5em;
}

    .social-media a span.fa-stack > .fa {
        margin: 0;
    }

.fa {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0px;
    width: 100%;
    text-align: center;
}

.fa-stack {
    position: relative;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-lg {
    font-size: 1.33em;
    line-height: 0.75em;
}

.fa, .fa-stack {
    display: inline-block;
}

.fa-twitter::before {
    content: "\f099";
}

.fa-facebook-f::before, .fa-facebook::before {
    content: "\f09a";
}

.fa-linkedin::before {
    content: "\f0e1";
}

.fa-youtube::before {
    content: "\f167";
}

.fa-chain::before, .fa-link::before {
    content: "\f0c1";
}

span.fa.fa-twitter.fa-stack-x:hover {
    color: #1DA1F2;
}

span.fa.fa-facebook.fa-stack-1x:hover {
    color: #3b5998;
}

span.fa.fa-linkedin.fa-stack-1x:hover {
    color: #0e76a8;
}

span.fa.fa-youtube.fa-stack-1x:hover {
    color: #FF0000;
}

span.fa.fa-instagram.fa-stack-1x:hover {
    color: #8a3ab9;
}

span.fa.fa-chain.fa-stack-1x:hover {
    color: #e1261c;
}

.column {
    float: left;
    width: 33.33%;
    padding: 10px;
    height: auto;
    margin-right: 2.5%;
}

.fa-fw {
    width: 1.28em;
    text-align: center;
}

.hide-text {
    height: 1px;
    left: -900em;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.footer-navigation.page-navigation, .university-links.page-navigation {
    width: auto;
}

.page-search-box .tier-1 {
    border-right: none;
}

.university-links {
    margin: 10px auto;
}

    .university-links.page-navigation li {
        border: none;
        display: inline;
    }

.page-navigation li {
    list-style: none;
    margin-bottom: 0.25em;
}

.university-links.page-navigation li a {
    font-size: 0.87em;
}

footer.page-footer a:link, footer.page-footer a:visited {
    color: #ffffff;
}

.page-navigation li a, .page-navigation li span.currentsection {
    background-color: transparent;
    border-bottom: none;
    color: #ffffff;
    text-decoration: none;
}

.university-links.page-navigation li a:hover {
    background-color: transparent;
    color: #e1261c;
}
/* End Footer */

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}


/*GALLERY PAGE*/
.galleryImagesContainer {
    padding: 75px 0;
    margin: 0 auto;
    width: 70%;
}

    .galleryImagesContainer .gallery-wrap {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 426px;
    }

        .galleryImagesContainer .gallery-wrap .item {
            flex: 1;
            height: 100%;
            background-position: center;
            background-size: cover;
            background-repeat: none;
            transition: all 0.8s ease;
        }

            .galleryImagesContainer .gallery-wrap .item:hover {
                flex: 7;
            }

.wrap-effect-1 .item:first-of-type {
    background-image: url(https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery1-1.jpg);
}

.wrap-effect-1 .item:nth-of-type(2) {
    background-image: url("https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery1-2.jpg");
}

.wrap-effect-1 .item:nth-of-type(3) {
    background-image: url("https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery1-3.jpg");
}

.wrap-effect-1 .item:nth-of-type(4) {
    background-image: url("https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery1-4.jpg");
}

.wrap-effect-1 .item:last-of-type {
    background-image: url("https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery1-5.jpg");
}

.wrap-effect-2 .item:first-of-type {
    background-image: url(https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery2-1.jpg);
}

.wrap-effect-2 .item:nth-of-type(2) {
    background-image: url("https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery2-2.jpg");
}

.wrap-effect-2 .item:nth-of-type(3) {
    background-image: url("https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery2-3.jpg");
}

.wrap-effect-2 .item:nth-of-type(4) {
    background-image: url("https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery2-4.jpg");
}

.wrap-effect-2 .item:last-of-type {
    background-image: url("https://www.uhvannualreport.com/20-21-Annual-Report/images/Gallery2-5.jpg");
}

.galleryContainer .text-fade span {
    -webkit-text-stroke: 1px #FFF8F0;
    text-stroke: 1px #FFF8F0;
    margin: 0 auto;
}

.galleryContainer {
    width: 100%;
    background-color: #231F20;
    display: flex;
    flex: 2;
    align-items: center;
}

.galleryTextContainer {
    padding: 2rem;
}
