body {
  background-color: #F7F7F7;
}

.section1 {
  padding: 200px 0 142px;
}

.section1 .wrap {
  width: 1400px;
  margin: 0 auto;
}

.section1 .wrap .title {
  text-align: center;
  font-family: Gilroy-ExtraBold;
  font-weight: 400;
  font-size: 48px;
  color: #1A1A1A;
}

.section1 .wrap .box {
  padding-top: 50px;
}

.section1 .wrap .box form {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.section1 .wrap .box form .input {
  width: 680px;
  position: relative;
}

.section1 .wrap .box form .input input {
  width: 680px;
  height: 76px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E3EBFF;
  padding: 0 40px;
  font-weight: 300;
  font-size: 16px;
  color: #1A1A1A;
}

.section1 .wrap .box form .input .placeholder {
  font-weight: 300;
  font-size: 16px;
  color: #1A1A1A;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  pointer-events: none;
}

.section1 .wrap .box form .textarea {
  width: 100%;
  position: relative;
  margin-bottom: 47px;
}

.section1 .wrap .box form .textarea textarea {
  width: 100%;
  height: 247px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E3EBFF;
  padding: 20px 40px;
  font-weight: 300;
  font-size: 16px;
  color: #1A1A1A;
}

.section1 .wrap .box form .textarea .placeholder {
  font-weight: 300;
  font-size: 16px;
  color: #1A1A1A;
  position: absolute;
  top: 20px;
  left: 40px;
  pointer-events: none;
}

.section1 .wrap .box form .button {
  width: 100%;
}

.section1 .wrap .box form .button button {
  width: 140px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid #9c9c9c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 9px;
  background: #FFFFFF;
  margin: 0 auto;
  transition: 0.6s;
}

.section1 .wrap .box form .button button p {
  font-weight: 500;
  font-size: 18px;
  color: #555;
  transition: 0.6s;
}

.section1 .wrap .box form .button button .icon {
  display: block;
  width: 16px;
  transition: 0.6s;
}

.section1 .wrap .box form .button button:hover {
  background: #5a5a5a;
}

.section1 .wrap .box form .button button:hover p {
  color: #FFFFFF;
}

.header .wrap .left .list .item .level .second {
  background-color: #fff;
}

.header .wrap .left .list .item .level .second a {
  color: #333;
}

@media screen and (max-width:1024px) {
  .section1 {
    padding: 120px 0 60px;
  }

  .section1 .wrap .title {
    font-size: 30px;
  }

  .section1 .wrap .box,
  .section1 .wrap .box form,
  .section1 .wrap .box form .input input,
  .section1 .wrap .box form .input {
    width: 100%;
  }

  .section1 .wrap .box form {
    gap: 20px;
  }

  .section1 .wrap .box form .input input {
    height: 64px;
    padding: 0 20px;
  }
  .section1 .wrap .box form .textarea{
    margin-bottom: 0;
  }
}