.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    transition: all 0.3s;
    margin: 0 2px
}

.swiper-pagination {
    position: relative;
}

.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(--grey3);
}

.swiper-pagination-bullet-active {
    background-color: var(--brand2);
    width: 30px;
    border-radius: 16px
}

.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
    }
}