.html__desktop,
.html__mobile {
    display: contents;
}

.html__mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    .html__desktop {
        display: none;
    }

    .html__mobile {
        display: contents;
    }
}
