.team-slider {
    overflow: hidden;
}

.team-slider--container {
    position: relative;
}

@media screen and (min-width: 768px) {
    .team-slider--container::after {
        content: "";
        height: 146px;
        width: 146px;
        background: var(--corail);
        -webkit-mask: url("../images/illus-slider.svg") no-repeat center;
        mask: url("../images/illus-slider.svg") no-repeat center;
        -webkit-mask-size: contain;
        mask-size: contain;
        position: absolute;
        right: -72px;
        bottom: 160px;
        z-index: 2;
    }
}

@media screen and (min-width: 992px) {
    .team-slider--container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.team-slider--title {
    text-align: center;
}

@media screen and (min-width: 992px) {
    .team-slider--title {
        text-align: left;
        max-width: 80%;
        order: 1;
    }
}

.team-slider--title h2 {
    margin-bottom: 24px;
}

@media screen and (min-width: 992px) {
    .team-slider--title h2 {
        margin-bottom: 30px;
        max-width: 592px;
    }
}

@media screen and (min-width: 992px) {
    .team-slider--title p {
        max-width: 800px;
        text-wrap: balance;
    }
}

.team-slider--slider {
    width: 100%;
    margin: 24px 0 16px;
}

@media screen and (min-width: 992px) {
    .team-slider--slider {
        order: 3;
        margin: 48px 0 0;
    }
}

@media screen and (min-width: 1024px) {
    .team-slider--slider.fix {
        pointer-events: none;
    }
}

.team-slider--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(10px);
}

@media screen and (min-width: 992px) {
    .team-slider--item {
        align-items: flex-start;
    }
}

.team-slider--item img {
    height: 380px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 16px;
}

.team-slider--item p {
    font-size: 1.5rem;
    font-family: var(--play);
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.team-slider--item span {
    color: var(--terne-blue);
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    display: block;
}

@media screen and (min-width: 992px) {
    .team-slider--item span {
        font-size: 1rem;
    }
}

.team-slider--nav {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
}

@media screen and (min-width: 992px) {
    .team-slider--nav {
        justify-content: flex-end;
        order: 2;
    }
}

.team-slider--nav.disabled {
    display: none;
}

.team-slider--nav button {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    border: 1px solid var(--dark-blue);
    cursor: pointer;
    border-radius: 50%;
}

.team-slider--nav button.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.team-slider--nav button:hover {
    background: var(--dark-blue);
}

.team-slider--nav button:hover::before {
    background: white;
}

@media screen and (min-width: 992px) {
    .team-slider--nav button {
        width: 48px;
        height: 48px;
    }
}

.team-slider--nav button::before {
    content: "";
    width: 28px;
    height: 28px;
    background: var(--dark-blue);
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
    .team-slider--nav button::before {
        height: 16px;
        width: 16px;
    }
}

.team-slider--nav button.owl-prev::before {
    -webkit-mask: url("../images/chevron-left.svg") no-repeat center;
    mask: url("../images/chevron-left.svg") no-repeat center;
}

.team-slider--nav button.owl-next::before {
    -webkit-mask: url("../images/chevron-right.svg") no-repeat center;
    mask: url("../images/chevron-right.svg") no-repeat center;
}

/*# sourceMappingURL=style.css.map */