/* Desktop */
@media only screen and (min-width: 575px) {
    .mobile-hide {
    display: none !important;
  }
}

/* Mobile */
@media only screen and (max-width: 575px) and (min-width: 320px) {
  .desktop-hide {
    display: none !important;
  }
}