.image-caption {
    position: relative;
    z-index: 2;
}
.image-caption:before {
    position: absolute;
    content: '';
    border: 10px solid #ffffff4d;
    z-index: 1;
    width: 220px;
    height: 220px;
    border-radius: 100%;
    left: 0;
    margin: 0 auto;
    right: 0;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.fs-team-slide .inner-bx:hover .image-caption:before {
    border-color: #ffffff80;
}
.image-caption img {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 100%;
    margin: 0 auto;
}
.team-caption {
    background-color: #fff;
    border-radius: 20px;
    padding: 180px 40px 40px;
    position: relative;
    overflow: hidden;
    margin-top: -180px;
}
.team-caption-inner {
    padding: 30px 0 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-caption p {
    margin-bottom: 12px;
}
.team-one-social-media ul {
    list-style: none;
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.team-one-social-media ul li a {
    color: #09243c99;
    height: 26px;
    width: 26px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.team-one-social-media ul li a:hover {
    color: var(--e-global-color-primary);
}
.team-btn {
    background-color: var(--e-global-color-primary);
    padding: 14px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team-btn a {
    color: var(--e-global-color-secondary);
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.team-btn i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--e-global-color-secondary);
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    margin-right: 10px;
}
.team-btn:hover {
    background-color: var(--e-global-color-secondary);
}
.team-btn:hover a {
    color: #fff;
}
.team-btn:hover i {
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-secondary);
}

