/*--Intro Block--*/
.wpb_wrapper > section.secIntro {
    padding-top: 0;
    padding-bottom: 0;
}
.secIntro {
    background: #eee;
}
.secIntro .overlay {
    margin-top: -140px;
    background: #fff;
    border-radius: 14px;
    position: relative;
    display: flex;
    align-items: center;
}
.secIntro .headshot {
    padding: 0;
    border-radius: 14px 0 0 14px;
    align-self: flex-end;
}
.secIntro .headshot .imgWrap {
    border-radius: 7px 0 0 7px;
    /* background-size: contain; */
    /* background-position: left bottom; */
}
.secIntro .headshot img {
    border-radius: 7px 0 0 7px;
}
.secIntro .overlay .content {
    margin: 1em auto;
}
@media (max-width: 767px)
{
    .secIntro .overlay {
        flex-wrap: wrap;
    }
    .secIntro .overlay > * {
        width: 100%;
    }
    .secIntro .headshot {
        order: 2;
        width: 100%;
    }
    .secIntro .headshot img {
        border-radius: 0 0 7px 7px;
    }
}
