.recutement{
  position: relative;
  display: flex;
  padding: 56px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 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;
  }

  .recutement__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;
      }

      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;
    }
  }
  .recutement__cta{
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 2;
    align-self: self-end;
    a{
      text-wrap: nowrap;
    }
  }
}

/* 
MARK: 850 PX
*/
@media all and (min-width: 850px) {
  .recutement{
    padding: 56px calc(2 * var(--px160-percent));
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    .recutement__text{
      p{
        font-size: 22px;
      }
    }
    .recutement__cta{
      align-self: center;
    }
  }
}

/* 
MARK: 1000 PX
*/
@media all and (min-width: 1000px) {
  .recutement{
    .recutement__text{
      h2{
        font-size: 64px;
      }
    }
    .recutement__cta{
      flex-direction: row;
    }
  }
}