/* Contact */
.contact .contact-form {
  position: relative;
  border: 3px solid var(--primary-color);
}
.contact .contact-form::before, .contact .contact-form::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
  pointer-events: none;
}
.contact .contact-form::before {
  top: -1.25rem;
  left: -1.25rem;
}
.contact .contact-form::after {
  top: -0.75rem;
  left: -0.75rem;
}
.contact .contact-form:hover::before, .contact .contact-form:hover::after {
  top: -1rem;
  left: -1rem;
}

/* Map */
.map {
  height: 500px;
}/*# sourceMappingURL=contact.css.map */