@media only screen and (min-width: 701px)  {
  .hide-desktop {
    display: none;
  }
}

@media only screen and (max-width: 700px)  {
  .hide-mobile {
    display: none;
  }
}
