
div.way {
  width: 75%;
  margin: auto;
}

p.way {
  border-top: 2px solid;
  border-color: #e95b0c !important;
  /* margin:0;  */
  padding: 30px;
  counter-increment: section;
  position: relative;
  margin-bottom: -1px;
}



p.way:nth-child(odd):before {
content: counter(section);
    right: 100%;
    margin-right: -28px;
	margin-bottom: -1px;
    position: absolute;
    border-radius: 50%;
    padding: 0px;
    height: 25px;
    width: 25px;
    background-color: #e95b0c;
    text-align: center;
    color: white;
    font-size: 90%;
}

p.way:nth-child(even):before {
    content: counter(section);
    left: 100%;
    margin-left: -28px;
	margin-bottom: -1px !important;
    position: absolute;
    border-radius: 50%;
    padding: 0px;
    height: 25px;
    width: 25px;
    background-color: #e95b0c;
    text-align: center;
    color: white;
    font-size: 90%;
}



p.way:nth-child(odd) {
  border-left: 2px solid;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-right: 30px; 
  margin-bottom: 9px;   
  padding-right: 0;
}

p.way:nth-child(even) {
  border-right: 2px solid;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-left: 30px;
  margin-bottom: 9px;  
  padding-left: 0;
}

p.way:first-child {
  border-top: 0;
  border-top-right-radius:0;
  border-top-left-radius:0;
}

p.way:last-child {
  border-bottom-right-radius:0;
  border-bottom-left-radius:0;
}

