.show-mobile {
  display: block;
}

.show-desktop {
  display: none;
}


@media all and (min-width: 1024px) {
  .show-desktop {
    display: block;
  }

  .show-mobile {
    display: none;
  }
}
