/*Список нумерованный*/
.content__block>ol {
counter-reset: myCounter;
margin-left: 3rem;
}
.content__block>ol>li {
list-style: none;
margin: 0 0 1.5rem;
position: relative;
z-index: 1;
}
.content__block>ol>li:before {
counter-increment: myCounter;
content: counter(myCounter);
border-radius: 5px;
background: linear-gradient(180.00deg, rgb(204, 146, 158), rgb(175, 100, 228) 68.153%, rgb(115, 100, 228) 100%);
display: inline-flex;
height: 32px;
width: 26px;
margin-right: 1rem;
align-items: center;
justify-content: center;
font-size: 20px;
font-family: Impact;
position: absolute;
z-index: 1;
top: 0;
left: -3rem;
}