@charset "UTF-8";
.gap-32 {
  gap: 2rem;
}

.section-1 {
  background: url("https://images.reiboot.com/classification/sec1-bg.png");
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 48px 0;
  background-position: center;
}
@media (min-width: 992px) {
  .section-1 {
    padding: 102px 0;
    background-size: 100% 100%;
  }
}

.section-1 .lft h1 {
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 24px;
}
@media (min-width: 992px) {
  .section-1 .lft h1 {
    font-size: 32px;
  }
}
@media (min-width: 1600px) {
  .section-1 .lft h1 {
    font-size: 48px;
  }
}

.section-1 .lft .title {
  font-size: 16px;
}

@media (min-width: 1600px) {
  .section-1 .lft .title {
    font-size: 18px;
  }
}
.section-1 .lft .list-unstyled {
  margin-top: 20px;
}

.lft-tab {
  padding: 19px 24px;
  background: rgba(45, 101, 255, 0.1);
}

.lft-tab .text-box {
  padding-left: 12px;
  border-left: 4px solid #2d65ff;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  height: 24px;
}

.lft-tab .svg-box:hover {
  color: #2d65ff;
}

.section-2 {
  padding: 32px 0;
}

@media (min-width: 992px) {
  .section-2 {
    padding: 32px 0;
  }
}
@media (min-width: 1280px) {
  .section-2 {
    padding: 64px 0;
  }
}
@media (min-width: 1600px) {
  .section-2 {
    padding: 120px 0;
  }
}
.section-2 .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 991.98px) {
  .section-2 .container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 1599.98px) {
  .section-2 .container {
    gap: 40px;
  }
}
.section-2 .lft {
  position: sticky;
  top: 20px;
  width: 260px;
  flex-shrink: 0;
}
@media (min-width: 1280px) {
  .section-2 .lft {
    width: 320px;
  }
}

@media (max-width: 991.98px) {
  .section-2 .lft {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100vw;
    height: 495px;
    border-radius: 12px 12px 0 0;
    background: #fff;
    overflow: auto;
    transform: translateX(-50%) translateY(828px);
    transition: all 0.2s;
    z-index: 59;
  }
}
.section-2 .lft.active {
  /* -webkit-transform: translateX(-50%) translateY(0); */
  transform: translateX(-50%) translateY(67%);
}

.section-2 .lft .close-box {
  margin: 16px 24px 8px;
  text-align: end;
}

.section-2 .table-of-contents {
  width: 100%;
  border: 1px solid rgba(141, 150, 164, 0.5);
  border-radius: 12px;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .section-2 .table-of-contents {
    width: 260px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (min-width: 1280px) {
  .section-2 .table-of-contents {
    width: 320px;
  }
}
.section-2 .lft.active .table-of-contents {
  border-radius: 0px;
  border: none;
}

.section-2 .table-of-contents .table-of-contents-title {
  padding: 20px;
  background: #878B8D;
  font-size: 20px;
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .section-2 .table-of-contents .table-of-contents-title {
    padding: 20px;
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .section-2 .table-of-contents .table-of-contents-title {
    font-size: 18px;
  }
}
.section-2 .table-of-contents ul {
  height: 470px;
  overflow-y: auto;
  flex: 1;
  margin: 0;
  padding: 0;
}

@media (min-width: 1280px) {
  .section-2 .table-of-contents ul {
    height: 396px;
  }
}
@media (min-width: 1600px) {
  .section-2 .table-of-contents ul {
    height: 480px;
  }
}
.section-2 .table-of-contents ul::-webkit-scrollbar {
  width: 6px;
}

.section-2 .table-of-contents ul::-webkit-scrollbar-track {
  border-radius: 10px;
}

.section-2 .table-of-contents ul::-webkit-scrollbar-thumb {
  background: rgb(216, 223, 226);
  border-radius: 10px;
}

.section-2 .table-of-contents ul::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.section-2 .table-of-contents ul li {
  border-bottom: 1px solid rgba(238, 238, 238, 0.93);
  list-style: none;
  margin: 0;
}

.section-2 .table-of-contents ul li:last-child {
  border-bottom: none;
}

.section-2 .table-of-contents ul .nav-link {
  padding: 0;
}

.section-2 .table-of-contents ul .nav-link .select-box {
  display: none;
}

.section-2 .table-of-contents ul .nav-link.active .select-box {
  display: block;
}

.section-2 .table-of-contents ul .nav-link.active a {
  color: #0670FB;
}

.section-2 .table-of-contents ul li a {
  display: block;
  text-decoration: none;
  color: #212121;
  width: 100%;
  font-size: 18px;
  padding: 20px;
}

@media (min-width: 1280px) {
  .section-2 .table-of-contents ul li a {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .section-2 .table-of-contents ul li a {
    font-size: 18px;
    padding: 20px;
  }
}
.section-2 .table-of-contents ul li a::before {
  content: "•";
  margin-right: 5px;
  text-decoration: none;
}

@media (min-width: 992px) {
  .section-2 .table-of-contents ul li a::before {
    content: "";
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .section-2 .table-of-contents ul li a.active,
  .section-2 .table-of-contents ul li a:hover {
    background: rgba(45, 101, 255, 0.1);
    color: rgb(45, 101, 255);
  }
}
.section-2 .rgt {
  flex: 1;
  min-width: 0;
}

@media (min-width: 992px) {
  .section-2 .rgt {
    min-height: 614px;
  }
}
@media (min-width: 1280px) {
  .section-2 .rgt {
    min-height: 432px;
  }
}
@media (min-width: 1600px) {
  .section-2 .rgt {
    min-height: 524px;
  }
}
.section-2 .rgt .cell {
  border-bottom: 1px solid #dddfe5;
  width: 100%;
}

@media (min-width: 1280px) {
  .section-2 .rgt .cell {
    width: 852px;
  }
}
@media (min-width: 1600px) {
  .section-2 .rgt .cell {
    width: 1024px;
  }
}
.section-2 .rgt .cell:hover {
  text-decoration: none;
}

.section-2 .rgt .cell .title {
  font-size: 18px;
  font-weight: 600;
  color: #212121;
  text-decoration: none;
}
.section-2 .rgt .cell .title:hover {
  color: #0B6CDE;
}

@media (min-width: 992px) {
  .section-2 .rgt .cell .title {
    font-size: 24px;
  }
}
.section-2 .rgt .cell .text-content {
  font-size: 14px;
  color: #6B6B6B;
}

@media (min-width: 992px) {
  .section-2 .rgt .cell .text-content {
    font-size: 18px;
  }
}
.section-2 .rgt .cell .mask {
  font-size: 14px;
  color: #9C9C9C;
}

@media (min-width: 992px) {
  .section-2 .rgt .cell .mask {
    font-size: 16px;
  }
}
.section-2 .rgt .page {
  list-style: none;
}

.section-2 .rgt .page .prev span,
.section-2 .rgt .page .next span {
  width: auto;
  border: 1px solid #081a2d;
  border-radius: 40px;
  font-size: 14px;
  border-radius: 20px;
  padding: 0 16px;
  cursor: pointer;
}

.section-2 .rgt .page .prev span:hover,
.section-2 .rgt .page .next span:hover {
  background: #2d65ff;
  color: #fff;
  border: 1px solid #2d65ff;
}

@media (min-width: 992px) {
  .page span {
    font-size: 20px;
  }
}
.page span {
  width: 33px;
  height: 33px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .page span {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.page .active {
  background: #2d65ff;
  border-radius: 50%;
  color: #fff;
}

.page span:hover {
  background: #2d65ff;
  cursor: pointer;
  border-radius: 50%;
  color: #fff;
}

.page .active a {
  color: #fff;
}

.page div input {
  width: 70px;
  height: 40px;
  padding: 2px 8px;
  margin-right: 12px;
  border-radius: 4px;
  border: 1.25px solid #081a2d;
}

.page .total {
  padding: 7px 0;
}

.mask-box {
  position: fixed;
  top: 0;
  background: rgba(33, 33, 33, 0.4);
}

.mask-box.active {
  width: 100vw;
  height: 100vh;
}/*# sourceMappingURL=how-to.css.map */