.jobs {
  position: relative;

  [class~='image'] {
    @media screen and (max-width: 767px) {
      position: absolute;

      right: 10px;
      top: 0;
      width: 200px;
    }

    [dir='rtl'] & {
      right: unset;
      left: 10px;

      img {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
      }
    }
  }
}
