.diamond:before {
    display: block;
    content: "";
    float: none;
    clear: both;
    height: 1px;
}

.diamond hr {
    border-color: #aed6f2;
    max-width: 300px;
    margin: 2em auto;
}

.diamond hr::after {
    content: ' ';
    display: block;
    width: 14px;
    height: 14px;
    background: #0c2340;
    border-top: 1px solid #0c2340;
    border-right: 1px solid #0c2340;
    transform: translate(-50%, 0) rotate(45deg) skew(15deg, 15deg);
    -moz-transform: translate(-50%, 0) rotate(45deg) skew(15deg, 15deg);
    -webkit-transform: translate(-50%, 0) rotate(45deg) skew(15deg, 15deg);
    margin: -9px 0;
    position: absolute;
    left: 50%;
}

.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%
}

