body {
    counter-reset: my-h-counter
}
h2.ftwp-heading {
    position: relative;
    padding-left: 45px;
    font-weight: 700;
    text-align: left; 
    font-size: 1.5em;
}
h2.ftwp-heading span,
h2.ftwp-heading strong,
h2.ftwp-heading b{
    display: flex;
    padding: 10px 0 0 0;
    font-weight: 700 !important;
    color: #122257;
}
h2.ftwp-heading span:before,
h2.ftwp-heading strong:before,
h2.ftwp-heading b:before{
    counter-increment: my-h-counter;
    content: ""counter(my-h-counter);
    font-weight: bold;
    color: #fff;
    float: left;
    background-color: #122257;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 4px;
    width: 35px;
    height: 30px;
    text-align: center;
    font-size: 20px;
}
h2.ftwp-heading span:after,
h2.ftwp-heading strong:after,
h2.ftwp-heading b:after{
    height: 2px;
    width: 100%;
    background-color: #122257;
    position: absolute;
    z-index: 1;
    content: "";
    bottom: 0;
    left: 0;
}
