.section_page {
  padding: 16.2rem 0 14.5rem;
}
.section_page h1 {
  text-align: center;
  font-weight: 500;
  font-size: 6.4rem;
  margin-bottom: 8.8rem;
}
.section_page h2 {
  color: var(--primary);
  font-weight: 500;
  font-size: 4rem;
  margin: 1.8rem 0 2.2rem;
}
.section_page h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 1.8rem;
  margin-top: 2rem;
  background: url(../img/h2-hr.svg) no-repeat center / contain;
}
.section_page h3 {
  font-weight: 500;
  font-size: 2.4rem;
  margin: 2.6rem 0 1rem;
}
.section_page p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin: 1rem 0;
}
.section_page ul {
  margin: 1.6rem 0;
}
.section_page ol {
  margin: 1.6rem 0 1.6rem 2rem;
}
.section_page li {
  font-size: 1.8rem;
  line-height: 2.7rem;
  position: relative;
  padding-left: 2.6rem;
  margin: 1rem 0;
}
.section_page li::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
  background-color: #fff;
}
.section_page a {
  color: var(--primary);
  text-decoration: underline;
  transition: all .3s;
}
.section_page a:hover {
  text-decoration-color: transparent;
}
@media screen and (max-width: 768px) {
  .section_page {
    padding: 50px 0 64px;
  }
  .section_page h1 {
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 22px;
  }
  .section_page h2 {
    font-size: 16px;
    margin: 32px 0 16px;
  }
  .section_page h3 {
    font-size: 15px;
    margin: 26px 0 16px;
  }
  .section_page p {
    color: var(--text);
    font-size: 14px;
    line-height: 22px;
  }
  .section_page li {
    color: var(--text);
    font-size: 14px;
    line-height: 22px;
    padding-left: 20px;
  }
  .section_page li::before {
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 576px) {
  .section_page h2::after {
    margin-top: 6px;
    background-image: url(../img/h2-hr-m.svg);
  }
}
