.staffMain{
    width: 70%;
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    font-weight: 500;
}
.staffH3{
    margin: 20px 0;
}
.staffWrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    margin: 10px auto;
    flex-wrap: wrap;
    font-weight: 500;
}
.staffDesc{
    width: 33%;
    padding: 0 20px 0 0;
    display: flex;
    flex-direction: column;
}
.staffDesc:first-child{
    width: 100%;
}
.staffTitle{
    font-size: 1.6rem;
    color: #000;
    margin: 30px 0 10px 0;
}
.staffName{
    font-size: 1rem;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    text-overflow: ellipsis;
    margin: 4px 0;
}
/* Extra large devices (large laptops and desktops, 1780px) */
@media only screen and (max-width: 1780px) {
    .staffDesc{
        width: 50%;
    }
}
/* Large devices (laptops/desktops, 992px) */
@media only screen and (max-width: 992px) {
    .staffMain{
        width: 90%;
    }
}
/* Medium devices (landscape tablets, 768pxp) */
@media only screen and (max-width: 768px) {
    .staffDesc{
        width: 100%;
    }
}