.contact-hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9dbebb;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  height: 175px;
}

.contact-hero-container h1 {
  text-align: center;
}

.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form-side-text {
  margin-bottom: 2rem;
  width: 300px;
}

.contact-form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}

.contact-submit-button-container {
  text-align: right;
}

@media (min-width: 576px) {
  .contact-hero-container {
    height: 300px;
  }
}

@media (min-width: 900px) {
  .section-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 900px;
  }
  .contact-form-side-text {
    margin: 0 auto;
  }
  .contact-form-container {
    width: auto;
    max-width: none;
    width: 50%;
  }
}

.err-msg {
  color: red;
}
