@charset "UTF-8";
/* CSS Document */

section {
    max-width: 1200px;
}
.BioSection {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    /*border-bottom: 1px solid #c2c2c2;*/
}
.BioSection:nth-of-type(even) { flex-flow: row-reverse; }
    .BioPhoto {
        width: 30%;
        min-width: 300px;
    }
    .BioIntro {
        position: relative;
        width: 70%;
        min-width: 300px;
        padding: 0 3em;
        box-sizing: border-box;
    }
        .BioIntro h2 {
            line-height: 1.1;
            font-size: 2em;
            text-transform: uppercase;
        }
        .BioIntro h3 {
            line-height: 1.1;
            font-size: 1.5em;
            text-transform: uppercase;
            color: #517676;
        }
        .BioIntro p {
            margin: 2em 0;
        }
        .BioIntro a {
            color: #517676;
        }
        .LearnMore {
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            border: 1px solid;
            padding: 0.5em;
            cursor: pointer;
            display: inline-block;
            float: right;
        }
.BioFull {
    position: absolute;
    z-index: 10;
    background-color: #edf3f3;
    border: 1px solid;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: opacity 0.25s linear;
    padding: 2em;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 50%);
}
    .BioFull p {
        margin-bottom: 1em;
    }
    .CloseButton {
        position: absolute;
        right: 0;
        top: 0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 1px solid;
        transform: translate(50%, -50%);
        background-color: #ffffff;
        text-align: center;
        line-height: 24px;
        cursor: pointer;
    }
#StaffSection {
    text-align: center;
}
.ContactSection {
    width: 90%;
    padding: 1em 0;
}
    .ContactSection h1 {
        padding: 0;
        margin: 0 0 0.7rem 0;
        border-bottom: 1px solid #c2c2c2;
    }
    .Contact {
        display: flex;
        margin-bottom: 0.33em;
    }
    .Contact:nth-of-type(even) {
        background-color: #ededed;
    }
        .Contact div {
            text-align: left;
        }
        .ContactName {flex-basis: 35%;}
        .ContactPosition {flex-basis: 35%;}
        .ContactPhone {flex-basis: 22%;}
        .ContactLinks {flex-basis: 8%; text-align: center !important;}
/* *********************************************** MEDIUM */
@media only screen and (max-width: 850px) {
    h1 {
        text-align: center;
        margin-bottom: 2em;
    }
    .BioSection:nth-of-type(even) { flex-flow: column-reverse; }
    .BioSection:nth-of-type(odd) { flex-flow: column-reverse; }
    .BioPhoto {
        width: 80%;
    }
    .BioIntro {
        width: 90%;
        margin: 1em 0;
    }
    .BioFull {
        width: 80%;
    }
        .LearnMore {
            position: relative;
            right: auto;
            bottom: auto;
            margin: 1em 0;
            width: 130px;
            text-align: center;
        }
}
/* *********************************************** SMALL */
@media only screen and (max-width: 500px) {
    .BioSection {

    }
    .BioPhoto {
        width: 100%;
    }
    .BioIntro {
        width: 100%;
        padding: 0;
    }    
    .LearnMore {
        float: none;
        width: 95%;
    }
    #FooterContact {
        display: block;
        margin: 0 auto;
    }
    #FooterNav {
        display: none;
    }
}


