/* Medium Layout: 1280px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
}
/* Tablet & Mobile Layout: 991px. */
@media only screen and (max-width: 991px) {
}
/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .column-half {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .newsletter {
    display: none;
  }
}
/* Wide Mobile Layout: 480px. */
@media only screen and (max-width: 575px) {
}
/* Wide Mobile Layout: 480px. */
@media only screen and (max-width: 320px) {
}
