/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.contact-form {
  background-image: url("../../../assets/icons/contact_form_bg.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.contact-form .container {
  max-width: 109.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 clamp(11rem, 2vw, 13rem);
}
.contact-form .heading-pill-container {
  display: flex;
  justify-content: center;
  margin: 0 0 3.2rem;
}
.contact-form .heading {
  text-align: center;
}
.contact-form .text {
  max-width: 53.4rem;
  margin: 2.4rem auto 0;
  text-align: center;
}
.contact-form .information-badge-container {
  display: flex;
  justify-content: center;
  margin: 2.4rem auto 0;
}
.contact-form .information-badge {
  display: inline-grid;
  grid-template-columns: 2.4rem auto;
  align-items: center;
  gap: 1.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  background-color: #D0FBDB;
}
.contact-form .form {
  margin: 4.8rem 0 0;
  background-color: #fff;
  padding: 4rem;
  border-radius: 2.4rem;
  box-shadow: 0 270px 76px 0 rgba(0, 0, 0, 0), 0 173px 69px 0 rgba(0, 0, 0, 0.01), 0 97px 58px 0 rgba(0, 0, 0, 0.05), 0 43px 43px 0 rgba(0, 0, 0, 0.09), 0 11px 24px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .contact-form {
    background-size: auto;
  }
  .contact-form .container {
    grid-column: full-width !important;
  }
  .contact-form .content {
    padding: 0 2.4rem;
  }
  .contact-form .heading-pill-container {
    margin: 0 0 1.6rem;
  }
  .contact-form .text {
    margin: 1.6rem auto 0;
  }
  .contact-form .form {
    margin: 4rem 0 0;
    padding: 4rem 2.4rem;
    border-radius: 0;
    box-shadow: 0 270px 76px 0 rgba(0, 0, 0, 0), 0 173px 69px 0 rgba(0, 0, 0, 0.01), 0 97px 58px 0 rgba(0, 0, 0, 0.05), 0 43px 43px 0 rgba(0, 0, 0, 0.09), 0 11px 24px 0 rgba(0, 0, 0, 0.1);
  }
}