.swiperTeam {
    padding-right: 24px;
    width: 440px !important;
}


.swiperBtns {
    display: flex;
    gap: 24px
}

.swiperBtn {
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btnNext {
    background: url('../../img/arrowLeft.svg') no-repeat center center;
}

.btnPrev {
    background: url('../../img/arrowRight.svg') no-repeat center center;
}

.team-slide {
    width: 415px;
}

.swiperNav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.swiper-pagination-bullet {

    background-color: var(--tealDark);
}

.swiper-pagination-bullet-active {
    background-color: var(--teal);
}

.teamWrapper>div {
    width: 100%;
}

.team-card {
    position: relative;
    overflow: hidden;
}

.team-image {
    height: 420px;
    display: flex;
    width: 100%;
    padding: 20px 30px 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card {
    padding-bottom: 102px
}

.team-card .boxedHeading {
    padding: 16px 24px;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 400px;
    transform: translateY(298px);
}

.team-card:hover .boxedHeading {
    transform: translateY(0px);
}

.team-teaser {
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0
}

.team-card:hover .team-teaser {
    opacity: 1;
    max-height: 264px;
}

.teamTitle:after {
    content: '';
    position: absolute;
    right: 0;
    top: calc(50% - 16px);
    width: 32px;
    height: 32px;
    background: url(../../img/arrowDown.svg) no-repeat center center;
    background-size: 32px;
    transition: all 0.3s;
}

.team-card:hover .teamTitle:after {
    transform: scale(-1)
}

@media screen and (max-width:460px) {
    .swiperTeam {
        width: 320px !important;
    }

    .team-slide {
        width: 320px;
    }

    .team-image {
        height: 344px;
    }

    .mBot {
        margin-bottom: 40px;
    }

    .team-teaser {
        font-size: 13px;
        line-height: 18px
    }
}


.swipernav>div {
    width: 40px;
    height: 40px;
    background: #fff url(../../img/next.webp) no-repeat center center;
    background-size: 60%;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: transform 0.2s ease;
    right: 0;
    position: absolute;
    bottom: 0;
    cursor: pointer;
}

.swipernav .swiperBtnPrev {
    background-image: url(../../img/prev.webp);
    right: 60px;
    left: auto;
}

.swipernav>div:active {
    transform: translateY(2px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 4px 0px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-prev:after {
    display: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    display: none;
}

.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}