.slider-chantier {
  background-color: var(--creme);
  padding: 32px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .slider-chantier {
    padding: 80px 0;
  }
}
.slider-chantier::before {
  content: "";
  position: absolute;
  -webkit-mask: url(../images/brush.svg) no-repeat center;
  mask: url(../images/brush.svg) no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--creme);
  height: 300px;
  width: 100%;
  left: 0;
  top: -60px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .slider-chantier::before {
    top: -120px;
  }
}
.slider-chantier--container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .slider-chantier--container {
    gap: 48px;
  }
}
.slider-chantier--content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.slider-chantier h2 {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  color: var(--accent-1);
  text-align: center;
  max-width: 800px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .slider-chantier h2 {
    font-size: 3.625rem;
  }
}
.slider-chantier .legende {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
.slider-chantier .date {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  margin-top: -10px;
}
.slider-chantier--slider-list .slider-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slider-chantier--slider-list .slider-item img {
  height: 186px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .slider-chantier--slider-list .slider-item img {
    height: 408px;
  }
}
.slider-chantier .owl-item:not(.active) {
  opacity: 0.6;
}
.slider-chantier .slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.slider-chantier .slider-nav button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--accent-1) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .slider-chantier .slider-nav button {
    width: 72px;
    height: 72px;
  }
}
.slider-chantier .slider-nav button::after {
  content: "";
  display: block;
  -webkit-mask: var(--mask-nav);
  mask: var(--mask-nav);
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--white);
  height: 32px;
  width: 32px;
}
.slider-chantier .slider-nav button.owl-next {
  --mask-nav: url(../images/icons/Arrow-right.svg) no-repeat center;
}
.slider-chantier .slider-nav button.owl-prev {
  --mask-nav: url(../images/icons/Arrow-left.svg) no-repeat center;
}
.slider-chantier .slider-nav button.disabled {
  opacity: 0.5;
}
