/* Job Description */

.jd>li>a {
    text-decoration: none;
}

.jd>li>a:hover,
.jd>li>a:focus {
    background: transparent;
    text-decoration: none;
}


/* Nav List */

ul.jd-list {
    list-style: none;
    /* Remove default bullets */
}

ul.jd-list li {
    line-height: 3em;
    margin-left: 20px;
}

ul.jd-list li::before {
    content: "\2022";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #00BFD8;
    /* Change the color */
    font-weight: bold;
    font-size: 2em;
    vertical-align: bottom;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
}

ul.jd-list li a {
    transition: background 0.1s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0 8px 22px;
    display: block;
    color: #666;
    font-size: 0.9em;
    text-decoration: none;
    line-height: 20px;
}