/*variations for TEAM pages with different layout (no right contact column)*/

/* #imageBanner h1 text horizontal placement set in CMS with inline style on EM */

#teamLeft img {
    width: 250px;
}

#teamContent {
    margin-left: 285px;
}

/*TABLET*/
@media screen and (max-width: 64em) { 
    #imageBanner img {
        left: -30%;
    }
    #contentContainer { /*overall content container*/
        padding-right: 4%; 
    }
}

/*MOBILE*/
@media screen and (max-width: 40em) {
    #imageBanner img {
        left: -31%;
        width: 150%;
    }

    #teamContent {
        margin-left: 0px;
    }
}
