.content-row{
    display:flex;
    flex-direction:row;
    width:100%;
    box-sizing:border-box;
    justify-content:space-evenly;
    align-items: center;
}

.content-row-container{
    width:100%;
    display:flex;
    max-width:1280px;
}

.content-row.aqua{
    color:white;
    background: #59B7B3;
}

.content-row.black{
    color:white;
    background: #000;
}

.flex-box h3{
    font-size: 24px;
    line-height: 32px;
    color: #7db5b4;
    font-weight: 700;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.flex-box{
    display:flex;
    flex-direction:row;
    box-sizing:border-box;
    flex-grow:1;
    align-items:center;
    justify-content:center;
    padding:25px;
    position:relative;
    font-family: 'franklin_gothic_bookregular';
}

.flex-box p{
    font-size: 20px;
    line-height: 28px;
    font-family: 'franklin_gothic_bookregular';
}

.flex-box .checkmarks li{
    position: relative;
    padding-left: 45px;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    padding-bottom: 15px;
    min-height: 46px;
}

.flex-box .checkmarks li:before{
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 55px;
    top: 5px;
    left: 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/wp-content/themes/inmodemd/images/what_Is_ul.png);
}

.flex-box-padding{
    padding:25px;
}

.flex-box-banner-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.flex-box-banner-image .flex-box-background-image{
    position:absolute;
    z-index:1;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.flex-box-banner-content{
    z-index:2;
    display:flex;
    width:100%;
    height:100%;
    padding:25px;
    justify-content: center;
    align-content: center;
    text-align:center;
}

.flex-box-banner-content h1{
    color:white;
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.75);
    font-size:10vmin;
    text-transform:uppercase;
    align-self:flex-end;
    font-weight:bolder;
    line-height:normal;
}

.header-image .flex-box-banner-image{
    height:25vh;
    min-height:300px;
}


.flex-direction-column{
    flex-direction:column;
}

.space-evenly{
    justify-content:space-evenly;
}

.align-items-start{
    align-items:   flex-start;
}

.flex-box.staff-bio{
    flex-direction:column;
    text-align:center;
}

.flex-box.staff-bio.staff-bio-long{
    flex-direction:row;
    justify-content: flex-start;
    text-align:left;
}

.flex-box.staff-bio.staff-bio-long img{
    padding-right:25px;
}

.flex-box.staff-bio.staff-bio-long .staff-bio-image{
    align-self:start;
}
.staff-bios .content-row-container{
    flex-direction: row;
    flex-wrap: wrap;
}

.staff-bios .staff-bio{
    width:25%;
    flex-basis:1;
}

.staff-bio-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.staff-bio-image{
    width:200px;
    height:200px;
    float:left;
}
.staff-bio-text{
    width: calc(100% - 250px);
}
.staff-bios .staff-bio-text{
    width: 100%;
}
.bio-name{
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}


.about_our_company_new_learn_buttonbox {
    -webkit-transition: all .25s;
    transition: all .25s;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    vertical-align: top;
    background-position: 50%;
    font-family: 'franklin_gothic_bookregular';
    padding: 1.4rem 1.6rem;
    border-radius: 0;
    position: relative;
    text-decoration: none;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: .135em;
    background-color: #59b7b3;
    text-align: center;
    border: 1px solid transparent;
    -webkit-clip-path: polygon(47% 0,0 0,0 47%,0 100%,47% 99%,50% 90%,53% 100%,100% 100%,100% 49%,100% 0,53% 0,50% 10%);
    clip-path: polygon(47% 0,0 0,0 47%,0 100%,47% 99%,50% 90%,53% 100%,100% 100%,100% 49%,100% 0,53% 0,50% 10%);
    margin-right: 25px;
}

.about_our_company_new_learn_buttonbox a{
    color:white;
    text-decoration:none;
}

@media screen and (max-width: 1000px){
    .content-row{
        flex-direction:column;
    }

    .content-row-container{
        flex-direction:column;
    }

    .content-row .flex-box{
        width:100%;
    }

    .flex-box.staff-bio.staff-bio-long{
        flex-direction:column;
        text-align:center;
    }
    .flex-box.staff-bio.staff-bio-long .staff-bio-image{
        align-self: center;
    }

    .staff-bios .content-row-container{
        flex-direction:row;
        flex-wrap:wrap;
    }

    .staff-bios .staff-bio{
        width:50%;
        flex-basis:1;
    }
    .staff-bio-text{
        width: 100%;
    }

    .flex-box-banner-content h1{
        align-self:center;
        justify-self: center;
    }
}