.banner-container {
  display: flex;
  padding-top: 60px;
  min-width: 1200px;
  background: url("../img/demand-banner.png") no-repeat;
  background-size: 100% 100%;
}
.banner-container .banner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 100px auto;
}
.banner-container .banner-wrapper h4,
.banner-container .banner-wrapper p {
  color: #fff;
  text-align: center;
}
.banner-container .banner-wrapper h4 {
  margin-bottom: 30px;
  font-size: 48px;
}
.banner-container .banner-wrapper p {
  font-size: 24px;
}

.form-container {
  margin-bottom: 50px;
  min-width: 1200px;
}
.form-container .form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  background-color: #F9F9F9;
}
.form-container h4 {
  margin-top: 50px;
  font-size: 32px;
  font-weight: 600;
}
.form-container p {
  margin-top: 30px;
  font-size: 16px;
}
.form-container .sub-btn {
  cursor: pointer;
  padding: 15px 0;
  margin: 80px auto 60px;
  width: 350px;
  font-size: 22px;
  text-align: center;
  color: #1E90FF;
  border: 2px solid #1E90FF;
  border-radius: 17px;
}

.form-list {
  margin-top: 40px;
}
.form-list li {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.form-list li:last-child {
  margin-bottom: 0;
  align-items: flex-start;
}
.form-list li:last-child span {
  margin-top: 8px;
}
.form-list li span {
  display: block;
  width: 68px;
  text-align: right;
  margin-right: 20px;
  font-size: 16px;
}
.form-list li input {
  padding: 9px 20px;
  width: 700px;
  font-weight: 300;
  font-size: 16px;
  color: rgba(61, 61, 61, 0.3);
  background-color: #F5F5F5;
  border: 1px solid rgba(61, 61, 61, 0.5);
  border-radius: 10px;
  outline: none;
}
.form-list li textarea {
  padding: 9px 20px;
  width: 700px;
  height: 200px;
  font-weight: 300;
  font-size: 16px;
  color: rgba(61, 61, 61, 0.3);
  background-color: #F5F5F5;
  border: 1px solid rgba(61, 61, 61, 0.5);
  border-radius: 10px;
  resize: none;
  outline: none;
}