body {
  background-color: #F7F7F7;
}

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

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

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

.section1 .wrap .box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
}

.section1 .wrap .box .item {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.section1 .wrap .box .item svg {
  position: absolute;
  width: 102%;
  height: 102%;
  top: -1px;
  left: -2px;
}

.section1 .wrap .box .item:hover img {
  filter: grayscale(0%);
}

.section1 .wrap .box .item:hover svg rect {
  stroke-dashoffset: 0;
}

.section1 .wrap .box .item svg rect {
  width: 99%;
  height: 98%;
  stroke-dashoffset: 1200;
  stroke-dasharray: 1200;
  transition: 1s ease;
}

.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 {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
  .section1 .wrap .box .item{
    height: 140px;
  }
}