.team-member-wrap {
    width:130px;
    width: calc(100% + 20px);
    position:relative;
    padding: 10px;
    margin: 0 -10px -60px -10px;
    background-color:transparent;
    transition: all .2s ease-in-out;
}

.team-member-wrap.removed {
    transform:scale(.5,.5);
    width:0;
    height:0;
    opacity:0;
    visibility:hidden;
    position:absolute;
}

.team-member-wrap .thumbnail-image {
    position:relative;
    z-index:1;
    -webkit-border-radius:50%;
    border-radius:50%;
    overflow:hidden;
    width:100px;
    height:100px;
    background-color:#f2f4f8;
    transition:transform 650ms 0 cubic-bezier(.165,.84,.19,.95),-webkit-transform 650ms 0 cubic-bezier(.165,.84,.19,.95);
    will-change:transform;
    margin: auto;
}

.team-member-wrap .thumbnail-image img {
    width:100%;
    min-height:100%;
    height:auto;
    -webkit-filter:grayscale(100%);
    filter:grayscale(100%);
    transition: filter 0.5s;
}

.team-member-wrap .info {
    opacity:0;
    height:auto;
    z-index:-1000;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    transition: all .8s ease-in-out;
}

.team-member-wrap .info p {
    font-size: 15px;
    color: #fff;
    padding: .5em 0;
    line-height: 1;
}
.team-member-wrap .info p.pos {
    font-size: 12px;
    color: #444;
    padding: .5em 0;
    line-height: 1;
}
.team-member-wrap .info a {
    padding: .5em;
    display: inline-block;
}
.team-member-wrap .info a svg{
    display: block;
}
.team-member-wrap:hover {
    z-index:999;
}

.team-member-wrap:hover{
    background-color:#89959E;
}
.team-member-wrap:hover .info {
    opacity:1;
}

.team-member-wrap:hover .thumbnail-image img {

    -webkit-filter:grayscale(50%);
    filter:grayscale(50%);
}

