.contact-form {
  background: #fff;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 80%;
}
.contact-form__container {
  display: flex;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}
.contact-form__info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 50%;
  padding: 40px;
}
.contact-form__title {
  font-family: "Inria Serif", serif;
  font-size: 36px;
  color: #463621;
  line-height: 32px;
  font-weight: 400;
}
.contact-form__description {
  font-family: "DIN 2014", sans-serif;
  font-size: 16px;
  color: #808080;
  line-height: 24px;
  margin-bottom: 24px;
}
.contact-form__map {
  width: 100%;
  flex: 1 1 auto;
  min-height: 250px;
  border-radius: 20px;
  overflow: hidden;
}
.contact-form__map iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  border-radius: 20px;
}
.contact-form__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.contact-form__form {
  flex: 1 1 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 30%;
  min-width: 320px;
}
.contact-form__form-title {
  font-family: "Inria Serif", serif;
  font-size: 36px;
  color: #463621;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 32px;
}
.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f9f9fb;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  padding: 12px;
}
.contact-form__field label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: #808080;
  font-weight: 400;
  margin-bottom: 2px;
}
.contact-form__field input,
.contact-form__field textarea {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: #232323;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  resize: none;
}
.contact-form__field--textarea {
  min-height: 200px;
}
.contact-form__field--textarea textarea {
  min-height: 180px;
}
.contact-form__contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "DIN 2014", sans-serif;
  font-size: 15px;
  color: #808080;
}
.contact-form__contact-info p {
  margin: 0;
}
.contact-form__contact-info a {
  color: #808080;
  text-decoration: none;
}
.contact-form__contact-info a:hover {
  color: #463621;
}
.contact-form__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #78582b;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form__button svg {
  display: block;
}
.contact-form__button:hover {
  background: #5e431e;
}

@media (max-width: 1100px) {
  .contact-form {
    width: 100%;
    padding: 60px 0;
  }
  .contact-form__container {
    flex-direction: column;
    gap: 48px;
    align-items: stretch;
    padding: 0 16px;
  }
  .contact-form__info, .contact-form__form {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .contact-form__form {
    padding: 32px 12px;
  }
  .contact-form__title {
    font-size: 32px;
    line-height: 40px;
  }
  .contact-form__form-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 700px) {
  .contact-form {
    padding: 32px 0;
  }
  .contact-form__container {
    gap: 24px;
    padding: 0 4px;
  }
  .contact-form__title {
    font-size: 22px;
    line-height: 28px;
  }
  .contact-form__form-title {
    font-size: 18px;
    line-height: 22px;
  }
  .contact-form__description {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-form__form {
    padding: 16px 4px;
    gap: 20px;
  }
  .contact-form__contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: "DIN 2014", sans-serif;
    font-size: 15px;
    color: #808080;
  }
  .contact-form__contact-info p {
    margin: 0;
  }
  .contact-form__contact-info a {
    color: #808080;
    text-decoration: none;
  }
  .contact-form__contact-info a:hover {
    color: #463621;
  }
  .contact-form__button {
    font-size: 14px;
    padding: 8px 12px;
  }
}
/*# sourceMappingURL=contact-form.css.map */
