.contact {
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  padding: 0;
}
.contact .form {
  width: 100%;
  height: auto;
  background-color: var(--color-white);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .form .form-content {
  width: 45%;
  height: auto;
  padding: 5%;
}
.contact .form .form-content h3 {
  color: var(--color-black);
}
.contact .form .form-image {
  width: 48%;
  height: auto;
}

@media (max-width: 900px) {
  .contact {
    padding: 80px 0 0;
  }
  .contact .form {
    flex-direction: column-reverse;
  }
  .contact .form .form-content,
  .contact .form .form-image {
    width: 100%;
  }
}