.mobile-content {
    display: none;
}

@media only screen and (max-width: 500px) {
    .normal-content {
        display: none;
    }

    .mobile-content {
        display: initial;
    }
}