ol {
  max-width: 350px;
  counter-reset: lis;
  counter-reset: lis calc(var(--s) - 1) ;
  list-style: none;
  padding-left: 40px;
}
ol li {
  margin: 0 0 0.5rem 0;
  counter-increment: lis;
  position: relative;
}
ol li::before {
  content: counter(lis);
  color: #ff6701;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  --size: 32px;
  left: calc(-1 * var(--size) - 10px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
  transform: rotate(-10deg);
  background: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 1px 1px 8px #999;
}

@media (max-width: 767px) {
	
	ol li::before {	
	left:0px;
	}	
	ol li {
	  padding-left: 40px;
	}	
}