.container {
    margin: 3em auto;
    width: 90%;
    max-width: 1100px;
}
#article-ul h2 {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    color: #959595;
}
#article-ul h2:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    border-bottom: 3px solid #e2cef9;
    width: 30px;
}
#article-ul ul {
    list-style: none;
    margin: 4em 0 0;
    padding: 0;
}
#article-ul ul::after {
    clear: both;
    content: "";
    display: table;
}
#article-ul ul li {
    margin-bottom: 2em;
}
@media only screen and (min-width: 700px) {
    #article-ul ul li {
        float: left;
        width: 78.5%;
        margin-right: 5%;
    }
    #article-ul ul li:nth-child(2n) {
        margin-right: 0;
    }
}
#article-ul ul li h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5em;
    line-height: 2.5em;
    font-weight: 300;
    letter-spacing: 1px;
}
#article-ul ul li h3:before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: #e2cef9;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
}
#article-ul ul li h3 span {
    padding-left: 15px;
}
#article-ul ul li p {
    padding-left: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    line-height: 1.6875em;
    font-weight: 400;
    color: #959595;
}