

.teacher-socials ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}


.teacher-socials li {
    margin-right: 10px;
}

.teacher-socials li a {
    color: rgb(142, 142, 142);;
    font-size: 18px;
    display: inline-block;
    border: 2px solid darkslategrey;
    padding: 10px;
    border-radius: 10px;
    transition: .3s;
}

.teacher-socials li a:hover {
    color: rgb(185, 0, 0);;
    border: 2px solid rgb(185, 0, 0);
    transform: scale(1.1);
}

.bg-left-gradient-black {
 background: #000000;
background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 100%);
}