.contact-section {
  background-color: #FFFAF1;
  color: #24582A;
}
.contact-section .contact-section-inner {
  padding: 70px 80px;
  display: grid;
  grid-template-columns: minmax(420px, 640px) 1fr;
  gap: 48px;
  align-items: start;
}
.contact-section .contact-section-title {
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 400;
  color: #24582A;
}
.contact-section .contact-section-subtitle {
  margin-top: 8px;
  font-size: 1.45rem;
  font-weight: 300;
  color: #24582A;
}
.contact-section .contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-section .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-section .contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-section .contact-field label {
  font-size: 1.35rem;
  font-weight: 300;
  color: #24582A;
}
.contact-section .contact-field input,
.contact-section .contact-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(36, 88, 42, 0.8);
  background: transparent;
  color: #24582A;
  padding: 8px 0;
  font-size: 1.2rem;
  font-family: inherit;
}
.contact-section .contact-field input:focus,
.contact-section .contact-field textarea:focus {
  outline: none;
}
.contact-section .contact-field textarea {
  resize: vertical;
  min-height: 56px;
}
.contact-section .contact-form-button {
  margin-top: 8px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  padding: 12px 28px;
  border: 1px solid #24582A;
  border-radius: 999px;
  background-color: #24582A;
  color: #ffffff;
  font-size: 18px;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contact-section .contact-form-button:hover {
  background-color: transparent;
  color: #24582A;
}
.contact-section .contact-section-right {
  justify-self: end;
  max-width: 420px;
  padding-top: 8px;
}
.contact-section .contact-section-description {
  font-size: 1.45rem;
  line-height: 1.45;
  font-weight: 300;
  color: #24582A;
}
.contact-section .contact-form-status {
  margin-top: 18px;
  min-height: 24px;
  font-size: 1rem;
  color: #24582A;
}
.contact-section .contact-section-image {
  margin-top: 22px;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.contact-page .contact-section .contact-section-inner {
  padding: calc(var(--header-height) + 36px) 80px 70px;
}

@media (max-width: 998px) {
  .contact-section .contact-section-inner {
    padding: 54px 24px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-section .contact-section-right {
    justify-self: start;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
  .contact-section .contact-section-image {
    max-width: 100%;
  }
  .contact-section .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
  .contact-page .contact-section .contact-section-inner {
    padding: calc(var(--header-height) + 24px) 24px 54px;
  }
}
@media (max-width: 768px) {
  .contact-section .contact-section-inner {
    padding: 40px 16px;
    gap: 18px;
  }
  .contact-section .contact-section-subtitle {
    font-size: 1.2rem;
  }
  .contact-section .contact-form {
    margin-top: 24px;
    gap: 14px;
  }
  .contact-section .contact-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-section .contact-field label {
    font-size: 1.15rem;
  }
  .contact-section .contact-field input,
  .contact-section .contact-field textarea {
    font-size: 1rem;
  }
  .contact-section .contact-form-button {
    min-width: 150px;
    font-size: 16px;
    padding: 10px 15px;
  }
  .contact-section .contact-section-description {
    font-size: 1rem;
  }
  .contact-section .contact-section-right {
    width: 100%;
  }
  .contact-section .contact-section-image {
    max-width: 100%;
    margin-top: 16px;
  }
  .contact-page .contact-section .contact-section-inner {
    padding: calc(var(--header-height) + 20px) 16px 40px;
  }
}/*# sourceMappingURL=contact.css.map */