/* ------------- */
.overflow-hidden {
    overflow: hidden;
    position: relative;
    /* height: 480px; */
}

.team-item img {
    transition: .5s;
    display: flex;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: .5s;
}

.team-item .team-social .btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    /* margin-top: 120px; */
}


.team-item .team-social .btn:hover {
    top: 100px;
    background: hsla(0, 0%, 33%, 0.1);
}

.team-item:hover .team-social {
    left: 0;
}



/* --------------------------- */
