/* .benefits-section {} */
/* Bloc englobant toute la section */
.benefits2-section__wrapper {
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
}
/* Bloc avec grande image */
.bs__image-wrapper2 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  line-height: 0;
  overflow: hidden;
  text-align: right;
}
.bs__image-wrapper2::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  max-height: 12rem;
  background-color: var(--primary);
}
.bs__image-wrapper2 img {
  position: relative;
  width: 100%;
  height: auto;
  /* Découpe du bas de l'image au format mobile */
  margin-bottom: -1rem;
  max-width: 60rem;
}
.benefits2-tile__wrapper {
  max-width: 94.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1148px) {
  .bs__image-wrapper2 {
    max-width: none;
  }
  .bs__image-wrapper2::before {
        max-height: 32rem;
        height: 100%;
  }
  .bs__image-wrapper2 img {
    max-width: 94.4rem;
  }
  .benefits2-tile__wrapper {
    position: relative;
    background-color: var(--white);
    margin-top: -17rem;
    margin-left: 0;
  }
}