.contact-banner {
  position: relative;
  background: url('../images/pricing.jpg') center/cover no-repeat;
  height: 30vh;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 202, 138, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner h1 {
  color: #fff;
  font-size: 3rem;
  z-index: 1;
  font-weight: 600;
  text-transform: uppercase;
}

/* ========== 1024px SCREENS ========== */
@media (max-width: 1024px) {
  .contact-banner {
    height: 25vh;
  }

  .contact-banner h1 {
    font-size: 2.4rem;
  } 
}

/* ========== 600px SCREENS ========== */
@media (max-width: 600px) {
  .contact-banner {
    height: 30vh;
    margin-top: 5rem;
  }

  .contact-banner h1 {
    font-size: 1.8rem;
    text-align: center;
    padding: 0 1rem;
  }
}