.team{
    padding-bottom: 40px;
}
.team__header{
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    text-wrap: nowrap;
    padding-top: 45px;
    padding-bottom: 60px;
}

.team__body{
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team__slider-wrapper{
    display: flex;
    flex-direction: column;
    gap: 16px;

    h2{
        font-size: 32px;
        font-weight: 700;
        line-height: 120%;
        text-transform: uppercase;
    }
}

.team__slider {
    position: relative;
}

.team__slide{
    width: 325px !important;
    height: 460px;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.team__slide-img{
    width: 100%;
    height: 375px;
    overflow: hidden;
    border-radius: 12px;
    padding: 8px;
}

.team__slide-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.team__slide-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4px;
    padding: 0px 16px 16px 16px;
}

.team__slide-content p{
    font-size: 24px;
    font-weight: 600;
    color: #29231F;
}
.team__swiper-container{
    overflow: hidden;
}

.team__nav{
    display: flex;
    justify-content: space-between;
    width: 102%;
    left: -15px;
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.team__prev,
.team__next{
    box-shadow: 0px 0px 16px 0px rgba(21, 7, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    border-radius: 6px;
    pointer-events: auto;
}

.team__prev svg,
.team__next svg{
    flex-shrink: 0;
}

.team__slide-content span{
    font-size: 12px;
    font-weight: 400;
    color: rgba(41, 35, 31, 0.6);
}

div.team-cta__wrapper.container{
    padding: 20px 0 !important;
}

.team-cta__wrapper img{
    margin-right: 80px;
}

@media (width <= 768px) {
    .team__slide{
        width: 267px !important;
        height: 400px;
        background-color: #FFFFFF;
        border-radius: 20px;
    }

    .team__slide-img{
        height: 324px;
    }

    .team__inner{
    }
}