.page-main-content{
    margin-bottom: 120px;
}

.background-staff-title{
    position: absolute;
    content:"";
    width: 190px;
    height: 190px;
    border-radius: 100px;
    background-color: var(--main-color-2);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.staff-title{
    position: relative;
    height: 100%;
    min-height: 190px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.staff-title-margin{
    height: calc(100% - 60px);
}

.staff-box{
    background-color: var(--main-color-4);
    margin-bottom: 60px;
}

.staff-content{
    padding: 30px;
}

.staff-content img{
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
}

.staff-content .bio-staff-title{
    margin-bottom: 20px;
}

.work-group{
    margin-bottom: 60px;
}

/* _________ MEDIA QUERIES _________ */

@media (max-width: 768px){
    .staff-title-margin{
        height: 100%;
        margin-bottom: 60px;
    }
    
    .page-main-content{
        margin-bottom: 60px;
    }
}