a.dd {
    display: none; /* hidden by default */
}

@media only screen and (max-width: 768px) {
    a.dd {
        display: inline-block; /* change from inline to inline-block */
        font-size: 15px !important;
        color: white !important;
        margin-bottom: 10px !important;
    }
}