.filterable-slider {
    background-color: #1B1B1B;
    color: #fff;
    padding-top: 32px;
    padding-bottom: 32px;
}

@media screen and (min-width: 992px) {
    .filterable-slider {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

.filterable-slider--header {
    max-width: 1216px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0px 16px;
}

@media screen and (min-width: 992px) {
    .filterable-slider--header {
        padding: 0;
    }
}

.filterable-slider--filters {
    max-width: 1216px;
    margin-inline: auto;
    margin-top: 32px;
    display: flex;
    gap: 16px;
    row-gap: 8px;
    flex-wrap: wrap;
    padding: 0px 16px;
}

@media screen and (min-width: 992px) {
    .filterable-slider--filters {
        padding: 0;
    }
}

.filterable-slider--filters label {
    display: block;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border: 1px solid #fff;
    border-radius: 100px;
    padding: 8px 16px;
    background-color: #1B1B1B;
    cursor: pointer;
    transition: all .4s ease;
}

.filterable-slider--filters label:hover {
    background: #fff !important;
    color: #1B1B1B;
}

.filterable-slider--filters input:checked+label {
    background: #fff;
    color: #1B1B1B;
}

.filterable-slider--filters input {
    display: none;
}

.filterable-slider--slider {
    margin-top: 32px;
}

@media screen and (min-width: 992px) {
    .filterable-slider--slider {
        margin-top: 64px;
    }
}

.filterable-slider--item {
    position: relative;
}

.filterable-slider--item .img-container {
    position: relative;
}

.filterable-slider--item .img-container::before {
    content: '';
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .4s ease;
}

.filterable-slider--item .img-container:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.filterable-slider--item .img-container a {
    position: absolute;
    left: calc(50% - 36px);
    top: calc(50% - 36px);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 72px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: rgba(250, 250, 250, 0.3);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.filterable-slider--item .img-container a::before {
    content: '';
    width: 18px;
    height: 18px;
    -webkit-mask: url(../images/play.svg) no-repeat center;
    mask: url(../images/play.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #fff;
}

.filterable-slider--item img {
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 992px) {
    .filterable-slider--item img {
        height: 360px;
    }
}

.filterable-slider--item h4 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin: 16px 0 8px;
}

@media screen and (min-width: 992px) {
    .filterable-slider--item h4 {
        font-size: 1.25rem;
    }
}

.filterable-slider--item p {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.filterable-slider--nav {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.filterable-slider--nav button {
    cursor: pointer;
    height: 58px;
    width: 58px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.filterable-slider--nav button::before {
    content: '';
    width: 24px;
    height: 24px;
    -webkit-mask: url("../images/chevron-left.svg") no-repeat center;
    mask: url("../images/chevron-left.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #fff;
    transition: all .4s ease;
}

.filterable-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;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.filterable-slider--nav button:hover {
    background: #fff;
}

.filterable-slider--nav button:hover::before {
    background: #1B1B1B;
}

.filterable-slider.noir {
    background-color: #1b1b1b;
}
.filterable-slider.vert {
    background-color: #1a2c17;
}
.filterable-slider.vert label{
    background-color: #1a2c17;
}
.filterable-slider.ocreclair {
    background-color: #fffbf3;
    color: #1b1b1b;
}
.filterable-slider.ocreclair label{
    background-color: #fffbf3;
    border-color: #d8b465;
}
.filterable-slider.ocreclair .filterable-slider--container span,
.filterable-slider.ocreclair .filterable-slider--container h1,
.filterable-slider.ocreclair .filterable-slider--container p{
    color: #1b1b1b;
}
.filterable-slider.ocrefonce {
    background-color: #d8b465;
    color: #1b1b1b;
}
.filterable-slider.ocrefonce label{
    background-color: #d8b465;
    border-color: #1b1b1b;
}
.filterable-slider.ocrefonce button{
    border-color: #1b1b1b;
}
.filterable-slider.ocrefonce button::before{
    background: #1b1b1b;
}