.circled-numbers ol {
    display: block;
    padding: 0 0 0 26px;
    list-style: none;
    position: relative;
    overflow: hidden;
    counter-reset: numList
}

.circled-numbers ol li {
    margin: 1rem 0 2.5rem 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #ccc
}

.circled-numbers ol li:before {
    counter-increment: numList;
    content: counter(numList);
    display: block;
    position: absolute;
    left: 0;
    text-align: center;
    color: #c99700;
    background: #0c2340;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 3.75rem;
    width: 60px;
    height: 60px;
    background: #0c2340;
    border-radius: 100%
}

