.results {
    padding: 30px 0;
}
.results h1 {
    padding: 10px 0;
    font-size: 2.4em;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
}
.results h1 > span {
    color: #005793;
}
.results__content article {
    width: 900px;
}
.results__content article > p {
    font-size: 1.6em;
    color: #303030;
    line-height: 20px;
}
.results__content article > p strong {
    font-weight: 500;
}
.results__content article > a {
    margin: 10px 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.8em;
    color: #005793;
    text-decoration: none;
    position: relative;
    display: inline-block;
}
.results__content article > a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    left: 0;
    bottom: -1px;
    background-color: #005793;
    display: block;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.results__content article > a:hover::after {
    width: 100%;
}
.results__content > ul > li {
    padding: 35px 0;
}
.results__content > ul > li:nth-child(2n) {
    background-color: #f2f2f2;
}
