/* font color */
/* family */
.contact .inner {
  max-width: 728px;
}
.contact .table_wrap {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 30px 0;
  margin-bottom: 60px;
}
.contact .input_wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.contact .input_wrap input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #D6DAE1;
  border-radius: 8px;
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  font-family: "noto_regular";
}
.contact .input_wrap input::placeholder {
  color: #798CA8;
}
.contact .input_wrap select {
  min-width: 150px;
  max-width: 150px;
  border: 1px solid #D6DAE1;
  border-radius: 8px;
  padding: 10px 16px;
  color: #798CA8;
  font-size: 14px;
  line-height: 1.5;
  font-family: "noto_regular";
  background: url(../images/icons/drop_down.svg) no-repeat right 12px center/auto 20px;
  cursor: pointer;
}
.contact .input_wrap select:focus {
  outline-width: 2px;
  outline-color: #1273eb;
}
.contact .input_wrap option:not(first-child) {
  color: #000;
}
.contact .textarea_wrap {
  margin-bottom: 30px;
}
.contact .textarea_wrap .note-editable {
  height: 200px;
}
.contact .file_wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.contact .file_wrap input {
  flex: 1;
  border: 1px solid #D6DAE1;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.5;
  font-family: "noto_regular";
}
.contact .file_wrap input::placeholder {
  color: #798CA8;
}
.contact .file_wrap input[type=file] {
  display: none;
}
.contact .file_wrap .upload_btn {
  min-width: 112px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  font-family: "noto_medium";
  color: #1273eb;
  border: 1px solid #1273eb;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}
.contact .file_wrap .upload_btn:hover {
  background: #1273eb;
  color: #fff;
  transition: var(--hover-transition);
}
.contact .email {
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.5;
  font-family: "noto_regular";
  border: 1px solid #D6DAE1;
  border-radius: 8px;
}
.contact .email::placeholder {
  color: #798CA8;
}
.contact .send_btn {
  width: 200px;
  line-height: 1.5;
  color: #fff;
  font-family: "noto_regular";
  font-size: 16px;
  background: #1273eb;
  border-radius: 8px;
  padding: 16px 0;
}
.contact .send_btn:hover {
  background: #1362C3;
  transition: var(--hover-transition);
}

@media screen and (max-width: 426px) {
  .contact .input_wrap {
    flex-wrap: wrap;
  }
  .contact .input_wrap select {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .contact .send_btn {
    margin: 0 auto;
  }
}

/*# sourceMappingURL=Contact.css.map */
