.contact__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .contact__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.contact__header {
  flex: 1;
  min-width: 300px;
}
.contact__header .title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--clr-primary);
  margin-bottom: 20px;
}
.contact__form-wrapper {
  flex: 1.2;
  min-width: 300px;
  width: 100%;
}
.contact__form {
  position: relative;
}
.contact__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .contact__fields {
    grid-template-columns: 1fr;
  }
}
.contact__group {
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--input-border);
}
.contact__group--full {
  grid-column: 1/-1;
}
.contact__input {
  width: 100%;
  background-color: transparent;
  border: none;
  color: var(--clr-primary);
  padding: 16px 0 20px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  appearance: none;
}
.contact__input::placeholder {
  color: var(--input-placeholder);
  opacity: 0.8;
  font-weight: 400;
}
.contact__input:focus::placeholder {
  color: var(--clr-primary);
  opacity: 0.8;
  font-weight: 400;
}
.contact__input--textarea {
  min-height: 160px;
}
.contact__input.error-placeholder {
  border-color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.02);
}
.contact__input.error-placeholder::placeholder {
  color: #d32f2f;
}
.contact__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.contact__terms {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--clr-secondary);
}
.contact__terms a {
  color: var(--clr-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact__terms a:hover {
  text-decoration: none;
}
.contact__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--clr-primary);
  margin: 0;
}
.contact__submit {
  min-width: 160px;
  justify-content: center;
}
.contact__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}
.contact__form.is-submitting .loader-wrapper {
  display: flex;
}
.contact .response-wrapper {
  font-size: 18px;
  line-height: 1.35;
  min-height: 28px;
  margin-top: 20px;
}
.contact .form-response.is-success {
  color: #146c43;
}
.contact .form-response.is-error {
  color: #d32f2f;
}
.contact .primary-btn {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .contact {
    padding-block: 300px 150px;
  }
}
@media (max-width: 991px) {
  .contact {
    padding-block: 60px 60px;
  }
}

.invalid-feedback {
  display: none;
  color: #d32f2f;
  font-size: 0.75rem;
  margin-top: 6px;
  font-weight: 500;
}

/*# sourceMappingURL=contact.css.map */
