body {
  background-image: linear-gradient(270deg, #f7eabd 0%, #fffae0 25%, #fffae0 75%, #f7eabd 100%);
  min-height: inherit !important;
}

main {
  min-height: 65vh;
}

.contact-head {
  text-align: center;
  padding: 45px 1.25rem 1rem;
  margin-top: 100px;
}
.contact-head__title {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.0555555556;
  color: #000;
  margin-bottom: 30px;
}
.contact-head__lead {
  font-size: 1rem;
  line-height: 1.875;
  color: #000;
}

@media (max-width: 767px) {
  .contact-head {
    padding: 3.125rem 1.25rem 0.75rem;
    margin-top: 0;
  }
  .contact-head__title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .contact-head__lead {
    font-size: 0.875rem;
  }
  .contact-head__lead br {
    display: none;
  }
}
.contact-form {
  padding-bottom: 5rem;
}
.contact-form__card {
  background: #fff;
  border-radius: 1.875rem;
  max-width: 862px;
  margin: 0 auto;
  padding: 3.75rem 3.75rem;
}

@media (max-width: 767px) {
  .contact-form {
    padding: 0 1rem 3.75rem;
  }
  .contact-form__card {
    border-radius: 0.625rem;
    padding: 1.875rem 1.25rem;
  }
}
.contact-row {
  display: grid;
  grid-template-columns: 13.125rem 1fr;
  column-gap: 1.875rem;
  align-items: center;
  margin-bottom: 1.125rem;
}
.contact-row.confirm {
  border-bottom: 1px solid #c2b280;
  margin-bottom: 0.625rem;
  padding-bottom: 0.3125rem;
}
.contact-row.confirm:first-child {
  border-top: 1px solid #c2b280;
}
.contact-row.confirm.bt {
  border-top: 1px solid #c2b280;
  padding-top: 0.3125rem;
}
.contact-row--top {
  align-items: start;
}
.contact-row__label-text {
  display: block;
  font-size: 1rem;
  line-height: 1.75;
  color: #000;
}
.contact-row__fields {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-row__fields--radio {
  gap: 1.875rem;
}
.contact-row__fields--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
}

@media (max-width: 767px) {
  .contact-row {
    grid-template-columns: 1fr;
    row-gap: 0.375rem;
    margin-bottom: 1.25rem;
  }
  .contact-row__label-text {
    font-size: 1rem;
  }
  .contact-row__fields {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .contact-row__fields--radio {
    gap: 1rem;
  }
  .contact-row.confirm .contact-row__fields {
    padding-bottom: 1em;
  }
}
.contact-divider {
  border: none;
  border-top: 1px solid #c2b280;
  margin: 2.25rem 0 1.875rem;
}

.contact-form .contact-input {
  border: 2px solid #c2b280;
  border-radius: 0.625rem;
  height: 2.8125rem;
  padding: 0 0.75rem;
  font-size: 1rem;
  background: #fff;
  color: #000;
  appearance: none;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form .contact-input::placeholder {
  color: #a0a0a0;
}
.contact-form .contact-input:focus {
  border-color: rgb(177.4521276596, 157.1117021277, 93.5478723404);
}
.contact-form .contact-input--half {
  width: calc(50% - 0.375rem);
}
.contact-form .contact-input--wide {
  width: 100%;
}
.contact-form .contact-input--zip {
  width: 17.5rem;
}
.contact-form .contact-input--tel {
  width: 16.25rem;
}

@media (max-width: 767px) {
  .contact-form .contact-input {
    font-size: 1rem;
    height: 2.8125rem;
  }
  .contact-form .contact-input--half {
    width: 100%;
  }
  .contact-form .contact-input--wide {
    width: 100%;
  }
  .contact-form .contact-input--zip {
    width: 10rem;
  }
  .contact-form .contact-input--tel {
    width: 100%;
  }
}
.contact-zip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-zip .contact-zip__prefix {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 2.8125rem;
  height: 2.8125rem;
  background: #f7f6f1;
  border: 2px solid #c2b280;
  border-radius: 0.625rem;
  padding: 0 0.625rem;
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}
.contact-zip__btn {
  height: 2.8125rem;
  width: 8.4375rem;
  background: #c2b280;
  border: 2px solid #c2b280;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  color: #000;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.contact-zip__btn:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .contact-zip {
    flex-wrap: wrap;
  }
  .contact-zip .contact-zip__prefix {
    font-size: 1rem;
  }
  .contact-zip__btn {
    font-size: 0.8125rem;
    width: 6.875rem;
  }
}
.contact-form .contact-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.contact-form .contact-select-wrap__arrow {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  pointer-events: none;
}

.contact-form .contact-select {
  appearance: none;
  border: 2px solid #c2b280;
  border-radius: 0.625rem;
  height: 2.8125rem;
  padding: 0 2.5rem 0 0.75rem;
  font-size: 1rem;
  background: #f7f6f1;
  color: #000;
  width: 17.5rem;
  cursor: pointer;
  outline: none;
}
.contact-form .contact-select:focus {
  border-color: rgb(177.4521276596, 157.1117021277, 93.5478723404);
}

@media (max-width: 767px) {
  .contact-form .contact-select {
    font-size: 1rem;
    width: 100%;
  }
}
.contact-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 2;
}
.contact-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-radio__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border: 2px solid #c2b280;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff;
  transition: border-color 0.2s;
}
.contact-radio__mark::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #028739;
  opacity: 0;
  transition: opacity 0.15s;
}
input[type=radio]:checked + .contact-radio__mark {
  border-color: #028739;
}
input[type=radio]:checked + .contact-radio__mark::after {
  opacity: 1;
}
input[type=radio]:focus-visible + .contact-radio__mark {
  outline: 2px solid #028739;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .contact-radio {
    font-size: 1rem;
  }
}
.contact-form .contact-textarea {
  border: 2px solid #c2b280;
  border-radius: 0.625rem;
  width: 100%;
  height: 12.1875rem;
  padding: 0.75rem;
  font-size: 1rem;
  background: #f7f6f1;
  color: #000;
  resize: vertical;
  outline: none;
  line-height: 1.875;
  transition: border-color 0.2s;
}
.contact-form .contact-textarea:focus {
  border-color: rgb(177.4521276596, 157.1117021277, 93.5478723404);
}

@media (max-width: 767px) {
  .contact-form .contact-textarea {
    width: 100%;
    font-size: 1rem;
  }
}
.contact-note {
  font-size: 0.875rem;
  color: #514f4f;
  line-height: 2.1428571429;
}

.contact-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.contact-submit--dual {
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
}
.contact-submit.confirm {
  margin-top: 3.125rem;
}
.contact-submit__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.375rem;
  max-width: 500px;
  border-radius: 2.1875rem;
  background: #028739;
  border: none;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.contact-submit__btn.finished {
  max-width: 270px;
}
.contact-submit__btn:hover {
  opacity: 0.85;
}
.contact-submit--dual .contact-submit__btn {
  width: 16.75rem;
}
.contact-submit__privacy {
  font-size: 0.875rem;
  color: #000;
  text-decoration: underline;
  line-height: 2.1428571429;
}
.contact-submit__privacy:hover {
  opacity: 0.7;
}
.contact-submit__back {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0dfdd;
  border: none;
  border-radius: 2.1875rem;
  width: 31.5625rem;
  height: 4.375rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #028739;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-submit__back:hover {
  opacity: 0.7;
}
.contact-submit--dual .contact-submit__back {
  width: 16.75rem;
}

@media (max-width: 767px) {
  .contact-submit--dual {
    flex-direction: column;
  }
  .contact-submit__btn {
    width: 100%;
    font-size: 1.25rem;
    height: 4.8125rem;
    border-radius: 3.75rem;
  }
  .contact-submit--dual .contact-submit__btn {
    width: 100%;
  }
  .contact-submit__back {
    width: 100%;
    font-size: 1.125rem;
    height: 3.75rem;
    border-radius: 3.75rem;
  }
  .contact-submit--dual .contact-submit__back {
    width: 100%;
  }
}
.contact-confirm__message {
  font-size: 1rem;
  line-height: 1.875;
  white-space: pre-wrap;
}

.contact-complete {
  text-align: center;
  background: none;
}
.contact-complete__text {
  font-size: 1rem;
  line-height: 1.875;
  margin-bottom: 1.5rem;
}
.contact-complete__note {
  font-size: 0.875rem;
  color: #514f4f;
  line-height: 1.8571428571;
  margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
  .contact-complete__text {
    font-size: 0.875rem;
  }
  .contact-complete__note {
    font-size: 0.75rem;
  }
}

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