.home_highlight {
  padding: 3rem 0 0;
  background: url(../assets/img/home-high-bg.jpg) no-repeat center / cover;
}
.home_highlight .head {
  text-align: center;
  margin-bottom: 90px;
}
.home_highlight .head h2 {
  color: #fff;
}
.home_highlight .main {
  height: 800px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
.home_highlight .main div {
  color: #fff;
  position: relative;
  padding: 0.5rem 1.8rem 0 4.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
}
.home_highlight .main div::before {
  content: "1";
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  line-height: 3.125rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--theme_color);
  position: absolute;
  top: 0;
  left: 0;
}
.home_highlight .main div:nth-child(2)::before {
  content: "2";
}
.home_highlight .main div:nth-child(3)::before {
  content: "3";
}
.home_highlight .main div:nth-child(4)::before {
  content: "4";
}
.home_highlight .main div:nth-child(5) {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 6;
  grid-row-end: 7;
}
.home_highlight .main div:nth-child(5)::before {
  content: "4";
}
.home_highlight .main div:nth-child(6) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 6;
  grid-row-end: 7;
}
.home_highlight .main div:nth-child(6)::before {
  content: "5";
}
.home_highlight .main div:nth-child(7) {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 6;
  grid-row-end: 7;
}
.home_highlight .main div:nth-child(7)::before {
  content: "6";
}
@media screen and (max-width: 786px) {
  .home_highlight {
    background-image: none;
    background-color: #010206;
    padding: 5rem 0 3.125rem;
  }
  .home_highlight .head {
    margin-bottom: 1.875rem;
  }
  .home_highlight .main {
    height: auto;
    display: block;
  }
  .home_highlight .main div {
    font-size: 0.9rem;
    line-height: 1.5rem;
    padding: 0.2rem 0 0 2.5rem;
    margin-bottom: 1rem;
  }
  .home_highlight .main div::before {
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    font-size: 14px;
  }
}

@media screen and (min-width: 786px) and (max-width: 1000px) {
  .home_highlight .main div {
    font-size: 1rem;
    padding-left: 3rem;
  }
  .home_highlight .main div::before {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    line-height: 2.5rem;
  }
}
