.contact-hiro {
  height: 420px;
  background-color: black;
  color: white;
  overflow: hidden;
  padding-top: 120px;
  box-sizing: border-box;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 64px 24px;
  font-size: 24px;
  margin-bottom: 120px;
  margin-top: 80px;
}

.contact-form > * {
  grid-column: 2 / 3;
}

.contact-form form p {
  margin-bottom: 24px;
}

.contact-form input {
  border: none;
  border-bottom: solid 1px #666;
  max-width: 100%;
  width: 100%;
  font-size: 18px;
  padding: 12px 0;
}
.contact-form input:focus {
  outline: none;
  border-bottom: solid 1px #000;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 16px;
  margin-top: 6px;
}
.contact-form textarea {
  background-color: #F4F4F5;
  width: 100%;
  margin-top: 6px;
  border: none;
  max-width: 100%;
  min-width: 100%;
  resize: none;
  padding: 12px;
  box-sizing: border-box;
  font-size: 16px;
}

.contact-form textarea:focus {
  outline: none;
}
.contact-form .wpcf7-submit {
  width: auto;
  background-color: black;
  color: white;
  border-radius: 100px;
  padding: 12px 26px;
  font-weight: 600;
  cursor: pointer;
}
.contact-form .wpcf7-submit:hover {
  background-color: #101010;
}

.contact-form .wpcf7-response-output {
  border: none !important;
  font-size: 16px;
  padding: 0 !important;
  margin-left: 0 !important;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  color: #dc3232;
}

@media screen and (max-width: 1000px) {
  .contact-form {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
  }
  .contact-hiro {
    padding-top: 64px;
    height: 200px;
    font-size: 20px;
  }
  .contact-hiro h2 {
    font-size: 32px;
  }
}