/* Verbergen op mobiel */

@media screen and (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Verbergen op tablet */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }
}

/* Verbergen op desktop */

@media screen and (min-width: 1025px) {
  .hide-desktop {
    display: none !important;
  }
}