/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

a {
    text-decoration: none;
}

a.outline {
    border: 1px solid #fff;
    padding: 10px 35px;
    color: #fff;
    margin-top: 25px;
    display: inline-block;
}

/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/
.entry-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: inherit;
    padding-bottom: 5%;
    padding-top: 5%;
    text-align: center;
}

.entry-header p {
    font-weight: 300;
}



/*--------------------------------------------------------------
# Content Styles
--------------------------------------------------------------*/
#section-1 {
    background: linear-gradient(to top, #00a2df 15%, white 15%);
    text-align: center;
}

#section-1 .section-content > .awards {
    display: grid;
    grid-gap: 5em 1em;
    gap: 1em;
    grid-template-columns: repeat(3,auto);
    justify-content: space-evenly;
    padding-left: 1em;
    padding-right: 1em;
    place-items: center;
}

#section-1 hr {
    max-width: 5em;
}


/* Section 2 */
#section-2 {
    background-color: #00a2df;
    color: #fff;
    padding-top: 2em;
    padding-bottom: 2em;
}

#section-2 h2 {
    font-weight: 300;
}

#section-2 p + h2 {
    margin-top: 10%;
}

#section-2 .col-profiles,
#section-2 .profile {
    position: relative;
}

#section-2 .profile {
    display: inline-block;
    margin: 8px 0px;
    overflow: hidden;
    vertical-align: top;
}

#section-2 .profile > img {
    margin-bottom: -7px;
    transition: opacity .5s ease-in-out 0s;
}

#section-2 .staff-info {
    background-color: rgba(0,0,0,.75);
    left: 0;
    padding: 15px;
    position: absolute;
    text-align: center;
    transition: bottom .5s ease-in-out 0s;
    width: 100%;
}

#section-2 .profile:hover .staff-info {
    bottom: -2px;
}

#section-2 .profile:hover img {
    opacity: .5;
}

#section-2 .profile span {
    display: block;
}

#section-2 .profile span.name {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#section-2 .profile span.position {
    font-size: 12px;
    font-style: italic;
}



/* Section 3 */
#section-3 {
    padding-top: 5%;
    padding-bottom: 5%;
    text-align: center;
}

#section-3 img {
    display: inline-block;
    margin: auto;
    padding: 2.5%;
}

/* Section 4 */
#section-4 h2,
#section-4 p {
    font-weight: 300;
}

#section-4 .row {
    text-align: center;
}

#section-4 .row > .col {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: luminosity;
    background-color: #ccc;
    transition: background-color 250ms ease-in-out;
}

#section-4 .row > .col:hover {
    background-color: transparent;
}

#section-4 .row > .col > .content-wrap {
    background-color: rgba(255,255,255,.75);
    margin: 5%;
    padding: 5%;
}

#section-4 p:last-child > a {
    background-color: #00a2df;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-weight: 400;
    padding: 10px 50px;
}

#section-4 p:last-child > a:hover {
    background-color: #fff;    
    color: #00a2df;
}

/* Section 5 */
#section-5 {
    padding-bottom: 5%;
    padding-top: 5%;
    text-align: center;
}

#section-5 h2 {
    line-height: 1.25;
}

#section-5 .container > h2 {
    margin-bottom: 2.5%;
}

#section-5 .post > .entry-title {
    font-size: 1.5em;
}

#section-5 .col {
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 10px -5px rgba(0,0,0,.25);
            box-shadow: 2px 2px 10px -5px rgba(0,0,0,.25);
    outline: 0 solid #ccc;
    padding: 25px;
    transition: outline .25s ease-in-out 0s;
}

#section-5 .col:hover {
    outline-width: 5px;
}

#section-5 .post > .entry-title,
#section-5 .col p {
    padding-left: 5%;
    padding-right: 5%;
}

#section-5 .col img {
    width: 100%;
}


/*--------------------------------------------------------------
# @Media Styles
--------------------------------------------------------------*/
@media screen and ( min-width: 768px ) {
    h2 {
        line-height: 1;
        margin-bottom: 0;
    }

    .entry-header {
        height: 700px;
        padding-top: 100px;
    }

    #section-1 .section-content {
        background-color: #fff;
        -webkit-box-shadow: 0 -5px 5px -2px rgba(0,0,0,.25);
                box-shadow: 0 -5px 5px -2px rgba(0,0,0,.25);
        -webkit-transform: translateY(-150px);
            -ms-transform: translateY(-150px);
                transform: translateY(-150px);
    }

    #section-1 h2 {
        line-height: 1;
        margin-bottom: 15px;
        margin-top: 0;
    }

    #section-1 .section-content {
        padding: 50px;
    }

    #section-1 .section-content > .awards {
        row-gap: 3em;
        margin-bottom: -400px;
        transform: translateY(-170px);
    }

    #section-1 .section-content.container .awards > img:nth-child(2) {
        transform: translateY(120px);
    }

    #section-2 {
        padding-bottom: 10em;
        padding-top: 10em;
    }
    
    #section-2 .row > .col-profiles {
        -webkit-columns: 3;
                columns: 3;
    }

    #section-2 .row > .col {
        max-width: calc(100%/2 - 35px);
        vertical-align: top;
    }

    #section-2 .staff-info {
        bottom: -90px;
    }


    #section-3 hr + p {
        font-size: 1.5em;
        font-weight: 300;
    }
    
    /* Section 4 */
    #section-4 h2 {
        font-size: 3em;
    }

   #section-4 p {
        font-size: 1.5em;
    }

    #section-4 .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row nowrap;
                flex-flow: row nowrap;
    }

    #section-4 .row > .col {
        margin: 0;
        padding: 0;
        outline: none;
        -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
    }

    #section-4 .row > .col > .content-wrap {
        margin: 5% 15%;
    }

    #section-5 .col {
        max-width: calc(100%/2 - 32px);
        vertical-align: top;
    }
}

@media screen and ( max-width: 767px ) {
    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .entry-header {
        padding-left: 25px;
        padding-right: 25px;
    }

    .col-profiles {
        -webkit-columns: 2;
                columns: 2;
    }

    #section-2 .staff-info {
        bottom: -130px;
    }

}
