.section {
  padding: 72px 0 94px;
}

.section .wrap .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 80px;
}

.section .wrap .title h1 {
  font-weight: bold;
  font-size: 36px;
  color: #111111;
}

.section .wrap .title form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 400px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 0 20px;
}

.section .wrap .title form input {
  height: 16px;
  width: 380px;
  font-weight: 400;
  font-size: 16px;
  color: #111;
  border: unset;
  background: unset;
}

.section .wrap .title form input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #999999;
}

.section .wrap .title form button {
  background: unset;
  font-size: 16px;
  transition: 0.6s;
}

.section .wrap .title form button:hover {
  color: #F44D00;
}

.section .wrap .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section .wrap .content .item {
  display: block;
  width: 660px;
  padding-bottom: 29px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 42px;
}

.section .wrap .content .item:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #F44D00;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 1s;
  transform: scaleX(0);
  transform-origin: left;
}

.section .wrap .content .item p {
  font-weight: 400;
  font-size: 18px;
  color: #444444;
  transition: 0.6s;
  line-height: 1;
}

.section .wrap .content .item:hover p {
  color: #F44D00;
}

.section .wrap .content .item:hover:after {
  transform: scaleX(1);
}

@media screen and (max-width: 1920px) {
  .section {
    padding: 3.75vw 0 4.8958333333vw;
  }

  .section .wrap .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 4.1666666667vw;
  }

  .section .wrap .title h1 {
    font-weight: bold;
    font-size: 1.875vw;
    color: #111111;
  }

  .section .wrap .title form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 20.8333333333vw;
    border-bottom: 0.0520833333vw solid rgba(0, 0, 0, 0.2);
    padding: 0 0 1.0416666667vw;
  }

  .section .wrap .title form input {
    height: 0.8333333333vw;
    width: 19.7916666667vw;
    font-weight: 400;
    font-size: 0.8333333333vw;
    color: #111;
    border: unset;
    background: unset;
  }

  .section .wrap .title form input::placeholder {
    font-weight: 400;
    font-size: 0.8333333333vw;
    color: #999999;
  }

  .section .wrap .title form button {
    background: unset;
    font-size: 0.8333333333vw;
    transition: 0.6s;
  }

  .section .wrap .title form button:hover {
    color: #F44D00;
  }

  .section .wrap .content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .section .wrap .content .item {
    display: block;
    width: 34.375vw;
    padding-bottom: 1.5104166667vw;
    position: relative;
    border-bottom: 0.0520833333vw solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2.1875vw;
  }

  .section .wrap .content .item:after {
    content: "";
    width: 100%;
    height: 0.0520833333vw;
    background: #F44D00;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 1s;
    transform: scaleX(0);
    transform-origin: left;
  }

  .section .wrap .content .item p {
    font-weight: 400;
    font-size: 0.9375vw;
    color: #444444;
    transition: 0.6s;
    line-height: 1;
  }

  .section .wrap .content .item:hover p {
    color: #F44D00;
  }

  .section .wrap .content .item:hover:after {
    transform: scaleX(1);
  }
}

/*# sourceMappingURL=support.css.map */
@media screen and (max-width: 1024px) {
  .section{
    padding: 60px 0;
  }
  .wrap{
    width: 90%;
  }
  .section .wrap .title h1{
    font-size: 28px;
  }
  .section .wrap .title form input{
    height: 100%;
    font-size: 14px;
  }
  .section .wrap .title form input::placeholder{
    font-size: 14px;
  }
  .section .wrap .title form button{
    font-size: 14px;
  }
  .section .wrap .title form{
    width: 300px;
  }
  .section .wrap .content .item{
    width: 48%;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .section .wrap .content .item p{
    font-size: 14px;
  }
  .banner .text{
    text-align: left;
    bottom: 40px;
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .section .wrap .title{
    flex-direction: column;
    align-items: start;
    margin-bottom: 40px;
  }
  .section .wrap .title h1{
    margin-bottom: 20px;
    font-size: 24px;
  }
  .section .wrap .title form input{
    flex: 1;
  }
  .section .wrap .title form{
    width: 100%;
    padding-bottom: 10px;
  }
  .section .wrap .content .item{
    width: 100%;
  }

}