/* Switch content */
.for-desktop {
  display: none;
}
@media screen and (min-width:40em) {
  .for-mobile {
    display: none;
  }
  .for-desktop {
    display: block;
  }
}
