.slider-photo {
    padding: 32px 0;
    background-color: var(--bg);
}

@media screen and (min-width: 768px) {
    .slider-photo {
        padding: 64px 0;
    }
}

.th-dark .slider-photo {
    --dot: var(--neutre-60);
    --dot-active: var(--neutre-100);
    --bg: var(--white);
}

.th-dore .slider-photo {
    --dot: var(--ocre-40);
    --dot-active: var(--ocre-100);
    --bg: var(--white);
}

.th-light .slider-photo {
    --dot: var(--neutre-60);
    --dot-active: var(--neutre-100);
    --bg: var(--ocre-20);
}

.slider-photo--container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    .slider-photo--container {
        align-items: flex-start;
        gap: 64px;
    }
}

.slider-photo h2 {
    font-size: 40px;
    line-height: 48px;
    padding: 0 20px;
    text-align: center;
    max-width: 534px;
    margin: auto;
}

@media screen and (min-width: 768px) {
    .slider-photo h2 {
        font-size: 48px;
        line-height: 56px;
        margin-left: 0;
        text-align: left;
    }
}

.slider-photo--list .list-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-photo--list .list-item img {
    height: 210px;
    -o-object-fit: cover;
       object-fit: cover;
    /* -o-object-position: bottom;
       object-position: bottom; */
    width: 100%;
    background-color: white;
}

@media screen and (min-width: 768px) {
    .slider-photo--list .list-item img {
        height: 280px;
    }
}

.slider-photo--list .list-item--infos .name {
    font-family: var(--robotoSlab);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

@media screen and (min-width: 768px) {
    .slider-photo--list .list-item--infos .name {
        font-size: 24px;
    }
}

.slider-photo--list .list-item--infos .job {
    font-family: var(--roboto);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

@media screen and (min-width: 768px) {
    .slider-photo--list .list-item--infos .job {
        font-size: 18px;
    }
}

.slider-photo--btn {
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.slider-photo .owl-stage {
    left: -50px;
}

@media screen and (min-width: 500px) {
    .slider-photo .owl-stage {
        left: 0;
    }
}

.slider-photo .owl-dots {
    display: flex;
    justify-content: center;
    width: calc(100% - 40px);
    margin: 32px auto 0 auto;
}

@media screen and (min-width: 768px) {
    .slider-photo .owl-dots {
        margin: 64px auto 0 auto;
    }
}

.slider-photo .owl-dots .owl-dot {
    height: 1px;
    width: 100%;
    background-color: var(--dot);
    transition: background-color 0.3s ease;
}

.slider-photo .owl-dots .owl-dot.active {
    background-color: var(--dot-active);
}