@media screen and (max-width: 1200px) {
  .above-1200 {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .above-1000 {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .above-600 {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .under-1200 {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .under-1000 {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .under-600 {
    display: none !important;
  }
}
