ol{
list-style-position:inside;
display:inline-block;
counter-reset: example 0;}
li{
text-align:left;
position: relative;
list-style-type:none;
position: relative;
padding: 2.5rem 0;
}
li::before{
content: counter(example, decimal);
counter-increment:example 1;
position:absolute;
width: 1.75rem;
height: 1.75rem;
position: absolute;
left: calc(50% - 1.75rem);
top: -1rem;
border: .1rem solid red;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 90%;
background: #fff;
z-index: 1;
color: red;
}
li::after {
content: "";
width: 0.01rem;
height: 4rem;
background: red;
position: absolute;
left: calc(50% - .85rem);
top: -2rem;
}
li:first-child::after {
content: "";
width: .01rem;
height: 2rem;
background: red;
position: absolute;
left: calc(50% - .85rem);
top: 0;
}
li:last-child::after {
content: "";
width: .01rem;
height: 2rem;
background: red;
position: absolute;
left: calc(50% - .85rem);
top: -2rem;
}
.info__text{
padding-top: 50px;
width: 800px;
text-align:center;
margin:0 auto;
position: relative;
}