@charset "UTF-8";
/* CSS Document */
.CaseStudy {
    display: flex;
    align-items: center;
}
    .CaseStudyPhoto {
        margin: 0 0 0 1em;
        object-fit: contain;
        object-position: top;
    }
h2 {
    color: #517676;
}
h3 {
    color: #517676;
    text-transform: uppercase;
}
#MissionBar {
    text-align: center;
    padding: 0 20px 3em;
    border-bottom: 1px solid #c2c2c2;
    box-sizing: border-box;
}
    #MissionBar .logo {
        width: 40px;
        margin: 1em
    }
    #MissionBar .quote {
        font-size: 1.5em;
        color: #517676;
        line-height: 1.5em;
        margin-bottom: 1em;
        max-width: 900px;
        margin: 0 auto;
    }
    #MissionBar .title {
        color: #666666;
        font-size: 1.2em;
        line-height: 1.5em;
    }

/* *********************************************** MEDIUM */
@media only screen and (max-width: 850px) {
}
/* *********************************************** SMALL */
@media only screen and (max-width: 500px) {
    .CaseStudy {
        flex-direction: column-reverse;
    }
    .CaseStudyPhoto {
        margin: 0 0 1em 0;
    }
}				
