.member-hero-img{
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    background-color: rgba(61, 61, 61, 0.7);
    padding: 50px 0px;
    position: relative;
}
.member-hero-img .overlay{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-content: center;
}
.member-hero-img h2,
.member-hero-img h1{
    flex-basis: 100%;
    color: #fff;
    padding: 0px 20px;
}
.member-hero-img h1{
    margin-bottom: 20px;
    font-size: 5rem;
}
.member-hero-img #job-title{
    font-size: 4rem !important;
    font-weight: 800;
    margin-top: 0px;
}

.member-description-area{
    padding: 50px 20px;
}
.member-description-area p{
    text-align: center;
    color: var(--titanBlue);
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 5px;
}
.member-description-area p.member-excerpt{
    color: var(--titanDarkGrey);
    max-width: 1200px;
    margin: auto;
    margin-bottom: 30px;
    font-weight: 400;
    margin-top: 30px;
}
.member-description-area .blue-button{
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--titanYellow);
    max-width: 170px;
    padding: 5px;
    color: var(--titanBlue);
    font-weight: 600;
    text-decoration: none;
    font-size: 20px;
}
.member-description-area .blue-button:hover{
    background: var(--titanBlue);
    color: var(--titanYellow);
}

.member-stats{
    background-color: #E0E0E0;    
    padding: 50px 0px;
}
.member-stats .container{
    display: flex;
    flex-wrap: wrap;
}
.member-stats h3{
    color: var(--titanBlue);
    font-weight: 700;
}
.member-stats .member-stat{
    text-align: center;
    flex-basis: 50%;
}
.member-stats .member-stat p{
    margin: 0px;
    margin-bottom: 30px;
    padding: 0px 20px;
}
.team-member-outer  a{
    position: relative;
}
.team-member-outer .overlay{
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: rgb(0,0,0,0.4);
    transition: 0.3s;
}
.team-member-outer:hover .overlay{
    background: rgb(0,0,0,0);
    transition: 0.3s;
}
@media screen and (max-width: 1200px){
    .member-hero-img #job-title{
        font-size: 3rem !important;
    }
}
@media screen and (max-width: 600px){
    .member-stats .member-stat{
        flex-basis: 100%;
    }
}