/* START TEAM */
.team-member {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    padding: 20px;
}

.team-box {
    background-color: rgb(255, 255, 255);
    position: relative;
    cursor: pointer;
}

.team-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    text-align: justify;
    opacity: 0;
}

.team-img img {
    transition: transform .3s ease-in-out;
}

.team-box:hover .team-img img {
    transform: scale(0.8);
}

.team-box:hover .team-info {
    opacity: 1;
}

.icon-team {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 25px;
    color: rgba(0, 0, 0, 0.426);
}

/* END TEAM */
