.marked-li {
	list-style-type:none;
	list-style:none;
	counter-reset: li;
	padding: 0;
}
.marked-li li{
	 position: relative;
    padding-left: 3em;
    margin: 0.45em 0;
    list-style: none;
    line-height: 1.8em;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.marked-li li:before{
	
	content: "✓" !important;
	position:absolute;
	top: 0;
    left: 0;
	width: 1.8em;
	height: 1.8em;
	border-radius: 0.9em;
	background: #2388ED;
	text-align: center;
	color: #fff;
	box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3);
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.number-li{
	counter-reset: li;
	padding: 0;
}
.number-li li{
    position: relative;
    padding-left: 3em;
    margin: 0.85em 0;
    list-style: none;
    line-height: 2.4em;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.number-li li:before {
	counter-increment: li;
	content: counters(li, ".") ". ";
    
    position: absolute;
    top: 0;
    left: 0;
    width: 2.4em;
    height: 2.4em;
    line-height: 2.4em;
    padding: 0px;
    color: #fff;
    background: #2388ED;
    font-weight: bold;
    text-align: center;
    border-radius: .9em;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3);
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.number-li li:after {
	position: absolute;
    top: 2.1em;
    left: 0.9em;
    width: 2px;
    height: calc(100% - 2em);
    content: '';
    background-color: rgb(203, 203, 203);
    z-index: 0;
}


element.style {
}
.sp-page-title .sp-page-title-heading {
    font-weight: 800;
    font-size: 70px !important;
    line-height: 110px !important;
    position: relative;
    z-index: 2;
    max-width: 100% !important;
    margin-bottom: 50px;
}