
.team-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.team-box {
    border: 2px solid #fff;
    border-radius: 14px;
    -webkit-box-shadow: 0px 0px 20px 0px rgb(181,181,181,0.10);
    -moz-box-shadow: 0px 0px 20px 0px rgb(181,181,181,0.10);
    box-shadow: 0px 0px 20px 0px rgb(181,181,181,0.10);
    transition: all 0.4s;
}
.team-box:hover {
    transform: translate(0px, -4px);
    background: #f5fffd;
    box-shadow: 0 15px 30px rgb(0,0,0,0.15);
}
/* .team-avatar {
    height: 370px;
}
.team-avatar {
    height: 400px;
} */
/* .team-avatar {
    height: 400px;
    position: relative;
    overflow: hidden;
} 
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/
.team-box img {
    width: 100%;
    height: 420px;
    overflow: hidden;
    object-fit: cover;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.team-box:hover img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
/* img {
    vertical-align: middle;
}
img {
    border: 0;
} */

/* .team-info {
    height: 110px;
}
.team-info {
    height: 105px;
} */
.team-info {
    padding: 10px 15px;
    background: rgba(58, 177, 139, 0.75);
    position: absolute;
    left: 0;
    bottom: -35px;
    right: 0;
    text-align: center;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.team-box:hover .team-info {
    bottom: 0;
    background: rgba(58, 177, 139, 1);
}
.team-info h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
}
.team-info p {
    color: #fff;
    margin-bottom: 10px;
}
.more-info {
    height: 23px;
}
.more-info a {
    color: #fff;
}
.more-info a:hover {
    color: #054a3b;
}
.tooltip.show {
    word-break: break-all;
}