.teamMember{
    width: 296px;
}
.teamMember__figure{
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.teamMember__figure img{
    max-width: 100%;
    height: auto;
}

.teamMember__caption{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background-color: #009bcf;
    background-color: rgba(0, 155, 207, 0.9);
    vertical-align: middle;
    text-align: center;
    transition: transform 400ms;
    transform: translateY(100%);

}

    .teamMember__caption--outer{
        display: table;
        width: 100%;
        height: 100%;
    }

    .teamMember__caption--inner{
        display:table-cell;
        vertical-align: middle;
    }

.teamMember__figure:hover .teamMember__caption{
    transform: translateY(0);
}

.icon-linkedin{
    background-color: #047094;
    background-color: rgba(12,12,12, 0.3);
    padding:14px;
    color:#fff;
    font-size: 32px;
}

.teamMember__info{
    padding:0;
    text-align: center;

}
.teamMember__info__item{
    list-style: none;
}