.contact {
  background: url("../images/contact-us.png") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap-reverse;
  padding: 6rem 2rem;
}
.contact form {
  background-color: #fff;
  text-align: center;
  width: 40%;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.5rem;
}
.contact form label strong {
  display: inline-block;
  margin: 0rem;
  font-size: 0.9rem;
  padding: 0.5rem;
}
.contact form label input {
  padding: 0.5rem 2rem;
  width: 100%;
  border: thin solid #8e8e8e;
  outline: none;
  box-shadow: none;
  border-radius: 1rem;
  box-shadow: none;
}
.contact form label input:focus, .contact form label input:hover {
  box-shadow: none;
  border-color: #8e1699;
  color: #8e1699;
}
.contact form label textarea {
  box-shadow: none;
  border-color: #8e1699;
  color: #8e1699;
}
.contact form button.submitBtn {
  margin-top: 0.5rem;
}
.contact .text {
  color: #fff;
  text-align: center;
  width: 45%;
}
.contact .text h2 {
  font-weight: 800;
}

@media (max-width: 450px) {
  .contact {
    padding: 4rem 1rem;
  }
  .contact .text,
  .contact form {
    width: 100%;
  }
}
@media (min-width: 451px) and (max-width: 767px) {
  .contact {
    padding: 4rem 0rem;
  }
  .contact .text,
  .contact form {
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact .text,
  .contact form {
    width: 90%;
  }
}/*# sourceMappingURL=contact.css.map */