/* -- servis */
article {
  counter-reset: servisStep;
}

.servis-step {
	position: relative;
	margin-left: 0;
  margin-bottom: 0 !important;
  border-left: 40px solid var(--color-tertiary);
  border-radius: 20px;
}

.servis-step::before {
  counter-increment: servisStep;
  content: counter(servisStep) '';
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: 20px;
  left: -35px;
  color: var(--color-secondary);
  border-radius: 100%;
  border: 1px solid var(--color-secondary);
  font-size: 22px;
  text-align: center;
}

@media (min-width: 768px) {
	.servis-step {
    border-left-width: 80px;
  }
  .servis-step::before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    left: -70px;
    font-size: 36px;
  }
}

.servis-next-step {
	position: relative;
  width: 90px;
  font-size: 60px;
  line-height: 30px;
  height: 30px;
  margin: 3rem auto;
  color: var(--color-tertiary);
}
.servis-next-step > span {
  position: absolute;
	transform: rotate(-90deg);
  width: 30px;
  left: 25px;
}

.servis-next-step::before,
.servis-next-step::after {
	content: '«';
  position: absolute;
  left: -8px;
  top: 0;
  transform: rotate(-90deg);
}

.servis-next-step::after {
  left: 57px;
}