/* max width 760px*/
@media (max-width: 760px) {
  header .wrapper {
    display: none;
  }
  main .title {
    color: white;
  }
  main .search-input {
    display: none;
  }
  footer {
    display: none;
  }
}

/* Small  768px  to 991px*/
@media (min-width: 768px) and (max-width: 1024px) {
  .third .upper,
  .third .lower {
    min-height: 200px;
  }
  .fourth .upper,
  .fourth .lower {
    min-height: 200px;
  }
  footer {
    display: none;
  }
  header .wrapper {
    display: none;
  }
}

/* Medium 992px  to 1199px*/
@media (min-width: 992px) {
}
/* Large 1200px up to */
@media (min-width: 1200px) {
}
