/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.form-hero {
  position: relative;
  min-height: 77rem;
  color: #fff;
  padding: 4.4rem 0;
}
.form-hero .form-hero-content {
  display: grid;
  grid-template-columns: auto 58rem;
  gap: 2.4rem;
}
.form-hero .text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
  max-width: 70.6rem;
}
.form-hero .text,
.form-hero .usp {
  font-weight: 500;
}
.form-hero .usps {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.form-hero .usp {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.form-hero .button-container {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  margin: 2.4rem 0 0;
}
.form-hero .button-container .phone-number {
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-underline-position: from-font;
}
.form-hero .button-container .phone-number a {
  color: #fff;
  transition: color 0.2s ease-in-out;
}
.form-hero .button-container .phone-number a:hover {
  color: #E11425;
}
.form-hero .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.form-hero .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-hero .background-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.form-hero .background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.hero-contact-form {
  background-color: #fff;
  border-radius: 1.6rem;
  border: 0.2rem solid #E11425;
  padding: 3.6rem 5rem;
}
.hero-contact-form .form-heading {
  color: #333;
  margin: 0 0 2.4rem;
}

@media (max-width: 1100px) {
  .form-hero .form-hero-content {
    grid-template-columns: 2fr 1fr;
  }
  .hero-contact-form {
    margin: 2.4rem 0;
  }
}
@media (max-width: 768px) {
  .form-hero {
    min-height: unset;
    padding: 8.4rem 0;
  }
  .form-hero .form-hero-content {
    grid-template-columns: 1fr;
  }
  .form-hero .text-content {
    gap: 0.8rem;
  }
  .form-hero .text,
  .form-hero .usp {
    font-weight: 400;
  }
  .form-hero .usps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0.8rem 0 0;
  }
  .form-hero .usp svg {
    width: 2.6rem;
    height: 2.6rem;
  }
  .form-hero .button-container {
    margin: 1.6rem 0 0;
  }
  .form-hero .button-container .phone-number {
    display: none;
  }
  .hero-contact-form {
    padding: 2.4rem 1.6rem;
    margin: 2.4rem 0.4rem;
  }
  .hero-contact-form .form-heading {
    margin: 0 0 1.6rem;
  }
}