.fs-team-slide {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-caption {
    margin-top: 50px;
}
/*.team-caption * {
    color: #fff;
    text-align: center;
}*/
.team-caption h3 {
    margin-bottom: 10px;
}
.fs-team-slide .image-caption {
    position: relative;
    z-index: 9;
    background-image: url(/wp-content/uploads/2025/03/team-pattern.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 210px;
    width: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fs-team-slide .image-caption img {
    width: 180px;
    height: 180px;
    border-radius: 100%;
}
.fs-team-slide .inner-bx {
    position: relative;
    height: 265px;
    width: 296px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.fs-team-slide .inner-bx:after {
    content: "";
    background-image: url(/wp-content/uploads/2025/06/team_pattern.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    height: 280px;
    width: 296px;
    transform: rotate(0deg);
    transition: transform 0.7s linear;
    animation: rotate 7s infinite linear;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}