footer {
  margin-top: 0;
}
.applicattion1 {
  position: relative;
}
.applicattion1 .background {
  width: 100%;
}
.applicattion1 .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.applicattion1 .title p {
  font-weight: 100;
  font-size: 64px;
  color: #FFFFFF;
}
.applicattion1 .title h4 {
  font-weight: bold;
  font-size: 42px;
  color: #FFFFFF;
}
.application2 {
  padding-bottom: 30px;
}
.application2 .wrap {
  width: 1600px;
  margin: 100px auto;
}
.application2 .wrap .top {
  text-align: center;
  padding-bottom: 80px;
}
.application2 .wrap .top .item {
  width: 172px;
  height: 64px;
  background: #F1F1F1;
  border-radius: 32px;
  font-weight: 400;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 32px;
  padding: 18px 30px;
  transition: all 0.6s;
}
.application2 .wrap .top .item:nth-child(1) {
  margin-right: 10px;
}
.application2 .wrap .top .item:hover {
  background-color: #005BAC;
  color: #FFFFFF;
}
.application2 .wrap .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}
.application2 .wrap .box .item {
  width: 440px;
  height: 400px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #ECECEC;
}
.application2 .wrap .box .item .pic img {
  width: 100%;
}
.application2 .wrap .box .item .title {
  padding-top: 30px;
  font-weight: 400;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 32px;
}
@media screen and (max-width: 1024px) {
  .applicattion1 .title{
    top: 65%;
  }
  .applicattion1 .title p{
    font-size: 18px;
  }
  .applicattion1 .title h4{
    font-size: 24px;
  }
  .application2 {
    width: 100%;
  }
  .application2 .wrap{
    width: 90%;
    margin: 0 auto;
  }
  .application2 .wrap .top{
    padding: 50px 0 50px;
  }
  .application2 .wrap .box{
        grid-template-columns: repeat(1, 1fr);
  }
  .application2 .wrap .box .item{
    width: 100%;
    height:auto;
  }
  .application2 .wrap .box .item .title{
    padding: 30px 0;
  }
}