/* masthead container */
.masthead-container{
    display: flex;
    flex-direction: row;
}
.masthead-content-container{
    padding: 50px;
}
.masthead-left{
    display: flex;
    flex-direction: column;
    width: 66%;
    
    background-color: #101010;
    
    
}
.masthead-right{
    display: flex;
    flex-direction: column;
    width: 32%;
    
    background-color: #101010;
    height: 100%;
}
.mast-container{
    
    padding: 50px;
}
.spec-items{
    line-height: 170%;
}


/* the about page wall */
.about-wall-container{
    display: flex;
    justify-content: center;
    width: 100%;
}
.about-wall{
    width: 90%;
}

.office-container{
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

/* three row images */
.profile-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.profile-image{
    width: 32%;
    border-radius: 5px;
}

/* quote container */
.quote-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 60px;
}
.quote-item{
    text-align: center;
    margin: .4%;
}



@media only screen and (max-width: 1000px){
    .masthead-left{
        width: 58%;
    }
    
    .masthead-right{
        width: 40%;
    }
    
    .about-wall{
        width: 100%;
}

    
}
@media only screen and (max-width: 800px){
    .masthead-container{
        flex-direction: column;
    }
    .masthead-left{
        width: 100%;
        padding-right: 0;
    }
    .masthead-right{
        width: 100%
    }
    .cog-masthead{
        margin: 3%;
    }

}
@media only screen and (max-width: 700px){
    .profile-container{
        flex-direction: column;
    }
    
    .profile-image{
        width: 70%;
    }
}
