div.instructor {
    margin-bottom: 1.2rem;
    margin-top: 1.8rem;
}
div.instructor h3 {
    color: #000501;
}
div.instructor-info {
    position: relative;
    width: 75%;
    padding: 24px 20px;
    background: #ffffff;
    color: #717171;
    border-radius: 4px;
}
div.instructor.full div.instructor-info {
    width: 100%;
}
div.instructor-info figure {
    position: absolute;
    top: -65px;
    right: -65px;
}
div.instructor-info figure img {
    width: 128px;
    border-radius: 100px;
    border: solid 5px #f6f8fa;
    filter: grayscale(30%);
}
div.instructor-info h4 {
    color: #004c87;
}
div.instructor-info p {

}
div.instructor-contacts {
    text-align: center;
}
div.instructor-contacts a {
    display: inline-block;
    background: rgb(90 196 222);
    color: #fff;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    margin-right: 8px;
    width: 30px;
    border-radius: 2px;
    transition: all 100ms linear;
}
div.instructor-contacts a:hover, div.instructor-contacts a:focus {
    background: #f9f9f9;
    color: #f47912;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
}
@media (max-width: 980px){
    div.instructor-info figure {
        width: 140px;
        margin-right: -70px;
        top: -115px;
        right: 50%;
    }
    div.instructor-info {
        width: 100%;
        margin-top: 130px;
        padding-top: 28px;
    }
    div.instructor h3 {
        text-align: center;
    }
}