.circled-numbers ol li p {
       margin: 0.5em 0 1.25em;
}
.circled-numbers > ol:first-of-type {
    display: block;
    padding: 0 0 0 1rem;
    list-style: none;
    position: relative;
    overflow: hidden;
    counter-reset: numList;
}

.circled-numbers > ol:first-of-type > li {
    margin: 1rem 0 2.5rem 5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #ccc;
    position: relative; /* important for positioning the number circle */
}

.circled-numbers > ol:first-of-type > li::before {
    counter-increment: numList;
    content: counter(numList);
    display: block;
    position: absolute;
    left: -5rem;
    top: 0;
    text-align: center;
    color: #c99700;
    background: #0c2340;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 3.75rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.circled-numbers ol ul {
        margin: 0.5rem 0 .5rem 0;
}
.circled-numbers ol ul li:first-child {
      margin-top: 1rem;
}