.team_wrapper {
    padding: 2.3125rem 1.5rem 2.6875rem;
    background-color: var(--light-blue-main);
    color: var(--white);
    background-image: url('/wp-content/themes/dv-consulting/assets/images/team_bg.png');
    background-position: center;
    background-size: cover;
    border-radius: 1.875rem;
    overflow: hidden;
}

.team .section_title {
    max-width: 39.375rem;
}

.team__kazban-text {
    font-weight: 400;
    font-size: 2.75rem;
    line-height: 2.125rem;
    color: var(--light-blue-middle);
}

.team .section_title p {
    max-width: 36.125rem;
    color: var(--white-additional);
}

.team_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team_nav_btn-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team_nav_btn_prev {
    transform: rotate(-180deg);
}

.team_card {
    max-width: 16.625rem;
    width: 100%;
    height: auto;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 1.5rem;
}

.team_card_img-wrapper {
    width: 100%;
    aspect-ratio: 250 / 262;
    border-radius: 1.4375rem;
    overflow: hidden;
}

.team_card_img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team_name {
    color: var(--black);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.team .team_wrapper .swiper-pagination-bullet {
    background-color: var(--white-additional);
    opacity: 1;
}

.team .team_wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--light-blue-main);
}

@media (max-width: 768px){
    .team__kazban-text {
        font-size: 2.25rem;
    }
}