.numeric-order {
    list-style: none;
    padding-left: 0;
}

.numeric-order > li {
    position: relative;
    display: block;
    counter-increment: section;
    counter-reset: subsection;
    padding-left: 25px;
    margin-bottom: 20px;
    @media (max-width: 767px) {
        padding-left: 20px;
    }
}

.numeric-order > li:last-child {
    margin-bottom: 0;
}

.numeric-order > li:before {
    content: counter(section) ". ";
    position: absolute;
    left: 0;
    font-size: 1.4375rem;
    font-weight: 600;
    line-height: 2.1875rem;
    color: #003e69;
    @media (max-width: 767px) {
        font-size: 1rem;
        line-height: 2rem;
    }
}

.numeric-order ol {
    list-style: none;
    margin: 0;
    padding: 0 0 0 15px;
    @media (max-width: 767px) {
        padding: 0 0 0 5px;
    }
}
.numeric-order ol > li {
    counter-increment: subsection;
    counter-reset: subsubsection;
    font-size: 1rem;
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-left: 35px;
    @media (max-width: 767px) {
        padding-left: 30px;
    }
}

.numeric-order ol > li:last-child {
    margin-bottom: 0;
}

.numeric-order ol > li:before {
    content: counter(section) "." counter(subsection) " ";
    position: absolute;
    left: 0;
}
