@media (min-width: 1170px) {
  .contact-section {
    background: var(--color-white);
    padding: 64px 486px 142px 127px;
  }
}

.contact-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 6vw, 55px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-green);
}

.contact-subtitle {
  margin-top: 64px;
  font-family: var(--font-title);
  font-size: clamp(26px, 6vw, 44px);

  line-height: 1.1;
  font-weight: 400;
  color: var(--color-brand-green);
}

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

.contact-form .form-label {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-deep-blue);
  margin-bottom: 10px;
}

.contact-form .form-control {
  width: 825px;
  min-height: 60px;
  border: 1px solid #5b85ac;
  border-radius: 5px;
  padding: 16px 24px;
  color: var(--color-deep-blue);
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: #5b85ac;
}

.contact-form .form-control:focus {
  border-color: #5b85ac;
  box-shadow: 0 0 0 0.2rem rgba(1, 55, 94, 0.15);
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form_div {
  margin-top: 30px;
}

.mes_div {
  margin-top: 58px;
}

.contact-btn {
  min-width: 216px;
  min-height: 50px;
  border: 1px solid var(--color-deep-blue);
  border-radius: 30px;
  padding: 9px 40px;
  color: var(--color-deep-blue);
  background: var(--color-white);
}

.contact-btn:hover {
  color: var(--color-white);
  background: var(--color-deep-blue);
}

@media (max-width: 1170px) {
  .contact-section {
    padding: 50px 50px;
  }
  .contact-form .form-control {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-subtitle {
    margin-top: 40px;
  }

  .mes_div {
    margin-top: 40px;
  }

  .contact-btn {
    width: 100%;
  }
}
