.section-teams.s-padding {
    padding-top: clamp(32px, 4vw, 56px);
    padding-bottom: 0;
}
.team-item {
    position: relative;
    transition: 0.4s;
}
.team-body {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: clamp(14px, 2vw, 20px);
    padding-inline: 30px;
    border-radius: 24px;
    background: linear-gradient(0deg, var(--gray4), white);
    position: relative;
}
.team-content .name {
    text-align: center;
    margin-top: clamp(16px, 2vw, 20px);
    font-size: 1rem;
    font-family: var(--Bold);
    transition: 0.4s;
}
.team-item:hover .name {
    color: var(--color1)
}
.team-content .post {
    font-size: 14px;
    text-align: center;
    color: var(--gray3);
    margin-top: 2px;
}
.teams-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: absolute;
    bottom: -16px;
    z-index: 0;
}
.teams-social a {
    width: 26px;
    height: 26px;
    color: var(--black);
    font-size: 16px;
    transition: 0.4s;
}
.teams-social a:hover {
    color: var(--color2);
}
.teams-social:before {
    content: '\e934';
    font-family: 'icomoon';
    position: absolute;
    color: white;
    z-index: -1;
    bottom: 15px;
    right: 50%;
    font-size: 17px;
    transform: translateX(50%);
    line-height: 1;
}
.section-teams .swiper-button-next {
    right: calc(100% - 1.5rem);
}
.section-teams .swiper-button-prev {
    left: calc(100% - 1.5rem);
}
.section-teams.s-padding:before {
    right: 8px;
    width: calc(100% - 16px);
}
@media only screen and (max-width: 768px) {
    .section-teams .swiper-container {
        padding-inline: 16px;
    }
    .section-teams .swiper-button-next {
        right: calc(100% - 2rem);
    }
    .section-teams .swiper-button-prev {
        left: calc(100% - 2rem);
    }
}