/* =============== contact =============== */

.contact {
  margin: 124px 0 80px;
  padding-top: 80px;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__title {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}

.contact__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 80px;
}

.form__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact form {
  width: 100%;
  max-width: 768px;
}

.contact form input,
.form__message {
  width: 100%;
  border: 1px solid #000;
  border-radius: 16px;
  padding: 12px 24px;
  background: transparent;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
}

.contact form input::placeholder,
.form__message::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
}

.form__message {
  margin-top: 16px;
  height: 179px;
  resize: none;
}

.contact button {
  margin: 40px auto 0;
  max-width: 153px;
  background: #ABB249;
}

/* ============================ */
/* ============================ */
/* ============================ */

@media (max-width: 600px) {

  .contact {
    margin-top: 74px;
  }

  .contact__title {
    font-size: 50px;
    margin-bottom: 24px;
  }

  .contact__subtitle {
    margin-bottom: 40px;
  }

  .form__top {
    flex-direction: column;
  }
}