$('a[href^="#"]').on('click', function (e) {
e.preventDefault();
var target = this.hash;
var $target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 1000, 'swing', function () {
window.location.hash = target;
});
});
.line-4 {
position: reletive;
padding: 0 0 0 10px;
margin: 0 0 0 30px;
}
.line-4:before {
position: absolute;
content: "";
top: 0;
left: -30px;
width: 30px;
height: 100%;
background: url("/path/to/sign.svg") 50% 50% no-repeat;
background-size: contain;
}