.team .member {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
}
#team img {
    width: 300px;
    height: 300px;
    border-radius: 10%;
    object-fit: cover;
}
.team .member .member-content {
    padding: 0 20px 30px;
}
.team .member h4 {
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 2px;
    font-size: 20px;
}
.team .member p,
.team .member span {
    font-size: 14px;
    font-style: italic;
    color: #6c757d;
}
.team .member span {
    display: block;
}
.team .member p {
    padding-top: 10px;
}
.team .member .social {
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.team .member .social a {
    color: #a2a2a2;
    transition: 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bbb;
}
.team .member .social a:hover {
    color: #fcbc4a;
    border-color: #fcbc4a;
}
.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}