.helo__team svg {
    width: 1em;
    height: 1em;
}

.helo__team li {
    list-style: none;
}

.helo__team .thumb {
    display: block;
    line-height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 175px 175px;
}

.helo__team .thumb::after {
    position: absolute;
    content: "";
    background: #6E44DE;
    width: 100%;
    height: 180px;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.helo__team .thumb img {
    margin: 0;
}

.helo__team .designation {
    color: #1C1D20;
    font-size: 14px;
}

.helo__team .social-media {
    display: inline-flex;
    gap: 10px;
}

.helo__team .social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--icon-size, 20px);
    line-height: var(--icon-size, 20px);
    width: calc(var(--icon-size, 20px) + 2 * var(--icon-padding, 1px));
    height: calc(var(--icon-size, 20px) + 2 * var(--icon-padding, 1px));
    transition: all 0.3s;
}

.helo-team-sm-placement-bottom .social-media {
    bottom: -30px;
    left: 0;
    width: 100%;
}

.helo-team-sm-placement-bottom .helo__team:hover .social-media {
    bottom: 0;
}

.helo-team-sm-placement-left .social-media {
    left: -30px;
}

.helo-team-sm-placement-left .helo__team:hover .social-media {
    left: 0;
}

.helo-team-sm-placement-right .social-media {
    right: -30px;
}

.helo-team-sm-placement-right .helo__team:hover .social-media {
    right: 0;
}

.helo-team-sm-placement-center .social-media {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
}

.helo-team-sm-placement-center .helo__team:hover .social-media {
    top: 50%;
}

.helo-team-sm-placement-left .social-media,
.helo-team-sm-placement-right .social-media {
    height: 100%;
    flex-direction: column;
}

.helo__team .social-media {
    position: absolute;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.helo__team:hover .social-media {
    opacity: 1;
    visibility: visible;
}