ul.jobs {
  width: 100%;
  margin: 5rem auto;
  max-width: 370px;
  list-style: none !important;
  padding: 0 !important;
}

.jobs li {
  border-bottom: 2px solid;
  padding: 7px 0;
  position: relative;
  width: 100%;
}

.jobs li:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 17px;
  background-color: #F9805E;
  margin-top: -9px;
  margin-left: -9px;

}

.jobs li a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.jobs li a:before,
.jobs li a:after {
  content: '';
  display: inline-block;
  background-color: currentColor;
}

.jobs li a:before {
  width: 45px;
  height: 27px;
  clip-path: url(#jobs);
  margin-right: 10px;
}

.jobs li a:after {
  width: 18px;
  height: 15px;
  clip-path: url(#arrow);
  margin-left: auto;
}