.section-teams .team-img {
    display: table;
    margin: auto;
}

.section-teams .swiper-slide .team-img img {
    background-color: #fff;
    border: 1px solid #E2E2E2;
    padding: 13px 13px 0;
    transition: 0.3s;
}

.section-teams .swiper-slide:has(.teams-socials a:hover) .team-img img {
    background-color: #F5F5F5;
}

.section-teams .team-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 1rem 0;
    gap: 0.5rem;
}

.section-teams .teams-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-teams .swiper-slide .team-name {
    font-family: var(--main_bold);
    font-size: clamp(16.6px, 2vw, 18.6px);
    line-height: 1;
    color: var(--color3);
    transition: 0.3s;
}

.section-teams .swiper-slide:has(.teams-socials a:hover) .team-name {
    color: var(--color2);
}

.section-teams .team-post {
    color: #939896;
    font-size: clamp(15px, 2vw, 17.5px);
    line-height: 1;
}

.section-teams .teams-socials a {
    width: 28px;
    height: 28px;
    background-color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.section-teams .teams-socials a:hover {
    background-color: var(--color2);
}

@media screen and (max-width:767.99px) {
    .section-teams .sw-navigation.sw-between .swiper-nav-next {
        right: 0.5rem;
    }

    .section-teams .sw-navigation.sw-between .swiper-nav-prev {
        left: 0.5rem;
    }

    .section-teams .section-teams-bg {
        position: absolute;
        background-color: #EFE6C2;
        right: 0;
        top: 0;
        z-index: -1;
        width: 65%;
        height: 25%;
    }
}

@media screen and (min-width:768px) {
    .section-teams .swiper-slide .team-img img {
        padding: 25px 20px 0;
    }

    .section-teams .team-info {
        margin: 1.5rem 0;
        gap: 0.75rem;
    }

    .section-teams {
        padding: 48px 0 0;
    }

    .section-teams .section-teams-bg {
        position: absolute;
        background-color: #EFE6C2;
        right: 0;
        top: 0;
        z-index: -1;
        width: 65%;
        height: 50%;
    }
}