/* Team Section */

.team-section {
    position: relative;
    padding: 150px 0 90px;
}

.team-blcok .inner-box {
    position: relative;
    margin-bottom: 60px;
    display: inline-block;
    vertical-align: middle;
}

.team-blcok .image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.team-blcok .image img {
    transition: .5s;
    border-radius: 20px;
}

.team-blcok .inner-box:hover img {
    transform: scale(1.1);
}

.team-blcok .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: .5s;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    background-color: rgb(33 197 142 / 0.6);
}

.team-blcok .inner-box:hover .overlay {
    opacity: 1;
}

.team-blcok .social-icon {
	margin: 0 -3px;
}

.team-blcok .social-icon li {
    display: inline-block;
    margin: 0 3px;
}

.team-blcok .social-icon li a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 43px;
    text-align: center;
    border-radius: 50%;
    transition: .5s;
    color: #959595;
    border: 1px solid #e7ecec;
}

.team-blcok .social-icon li a:hover {
    color: #fff;
}

.team-blcok .lower-content {
    position: relative;
    padding: 30px 0 0;
    text-align: center;
}

.team-blcok h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 3px;
}

.team-blcok .designation {
    font-size: 16px;
    color: #808080;
    margin-bottom: 12px;
    font-weight: 500;
}