background: url('/img/svg/line.svg'), top center / 5px 100% no-repeat;
:root {
--svg-width: 5px;
}
.parent {
position: relative;
z-index: 1;
}
.parent:before {
content: '';
position: absolute;
z-index: 2;
width: 5px; /* можно задать через переменную var(--svg-width) */
height: 100%;
margin-left: calc(50% - var(--svg-width) / 2);
display: block;
background: red; /* подставьте своё, позиционировать не надо */
}