.post_wrapper.man-team .man-team-item{
    position: relative;
}

.post_wrapper.man-team .man-team-item .team-image{
    position: relative;
    overflow: hidden;
    border-radius: 11px;
}

.post_wrapper.man-team .man-team-item .team-image img{
    border-radius: 11px;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.post_wrapper.man-team .man-team-item:hover .team-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.post_wrapper.man-team .man-team-item .man-team-content {
    position: absolute;
    z-index: 2;
    width: 230px;
    height: 230px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.post_wrapper.man-team .man-team-item:hover .man-team-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.post_wrapper.man-team .man-team-item .man-team-content::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(var(--dark-purple)), to(var(--dark-blue)));
    background: linear-gradient(90deg, var(--dark-purple) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    opacity: 0.6;
    z-index: -1;
}

.post_wrapper.man-team .man-team-item .man-team-content .team-header{
    margin-bottom: 15px;
    text-align: center;
}

.post_wrapper.man-team .man-team-item .man-team-content .team-header .title{
    margin-bottom: 0;
    color: #ffffff;
}

.post_wrapper.man-team .man-team-item .man-team-content .team-header .occupation {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.post_wrapper.man-team .man-team-item .man-team-content .team-share {
    background: #ffffff;
    display: inline-block;
    border-radius: 25px;
    padding: 12px 25px;
}

.post_wrapper.man-team .man-team-item .man-team-content .team-share ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
}

.post_wrapper.man-team .man-team-item .man-team-content .team-share ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    z-index: 1;
}

.post_wrapper.man-team .man-team-item .man-team-content .team-share ul li:not(:last-child)::before {
    position: absolute;
    content: "";
    top: 0;
    right: -9px;
    height: 100%;
    width: 1px;
    opacity: 0.2;
    background: #3a3a3a;
}

.post_wrapper.man-team .man-team-item .man-team-content .team-share ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    background: -webkit-gradient(linear, left top, right top, from(var(--dark-purple)), to(var(--dark-blue)));
    background: linear-gradient(90deg, var(--dark-purple) 0%, var(--dark-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: #3a3a3a;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    min-width: 20px;
    min-height: 20px;
}

.post_wrapper.man-team .man-team-item .man-team-content .team-share ul li a:hover {
    color: var(--dark-blue);
}