.recrutement{
  position: relative;
  display: flex;
  padding: 56px 32px;
  align-self: stretch;

  &::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;

    background-image: url("../../images/bar_shape_white.svg");
    background-repeat: no-repeat;

    background-size: cover;
  }

  .recrutement__text{
    z-index: 2;
    h2{
      position: relative;
      &::before{
        content: "";
        position: relative;
        width: 48px;
        height: 43px;
        background-image: url("../../images/shape_double_chevron.svg");
        display: block;
        background-repeat: no-repeat;
        background-size: contain;
      }

      font-size: 32px;
      font-style: normal;
      font-weight: 700;
      line-height: 140%;
      text-transform: uppercase;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: start;
      gap: 10px;
    }
    p{
      font-size: 18px;
      margin: 0;
    }
  }
  .recrutement__cta{
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 2;
    align-self: self-end;
    a{
      text-wrap: nowrap;
    }
  }
}

.recrutement__wrapper {
  position: relative;
  display: flex;
  padding: 16px 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  width: 100%;
}

/*
MARK: 850 PX
*/
@media all and (min-width: 850px) {
  .recrutement{
    padding: 56px calc(2 * var(--px160-percent));

    .recrutement__text{
      p{
        font-size: 22px;
      }
    }
    .recrutement__cta{
      align-self: center;
    }
  }


  .recrutement__wrapper {
    padding : 32px 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/*
MARK: 1060 PX
*/
@media all and (min-width: 1060px) {
  .recrutement{
    .recrutement__text{
      h2{
        font-size: 64px;
      }
    }
  }
}

/*
MARK: 1600 PX
*/
@media all and (min-width: 1600px) {
  .recrutement{
    .recrutement__cta{
      flex-direction: row;
    }
  }
}