.faqs_main {
  padding-top: 5rem;
}
.faqs_main h1 {
  font-size: 3.5rem;
  font-weight: 700;
}
.faqs_main .main {
  border-top: 1px solid rgba(128, 128, 128, 0.1);
  margin-top: 2rem;
}
.faqs_main .nav {
  width: 20.4rem;
  border-right: 1px solid rgba(128, 128, 128, 0.1);
  padding-right: 2rem;
  padding-top: 5.2rem;
  padding-bottom: 4.4rem;
}
.faqs_main .nav .nav_list {
  position: sticky;
  top: 10rem;
}
.faqs_main .nav li + li {
  margin-top: 4.8rem;
}
.faqs_main .nav .nav_item {
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2.5rem;
  font-weight: 500;
}
.faqs_main .nav .nav_item.active,
.faqs_main .nav .nav_item:hover {
  color: var(--primary);
}
.faqs_main .nav .nav_item.active {
  padding-bottom: 2px;
}
.faqs_main .faqs {
  flex: 1;
  max-width: 89.4rem;
  padding-top: 4rem;
  padding-bottom: 4.4rem;
  counter-reset: faq_item;
}
.faqs_main .faq_item .question {
  font-size: 2.5rem;
  font-size: 2rem;
  font-weight: 500;
  padding: 1.2rem 0;
}
.faqs_main .faq_item .question::before {
  counter-increment: faq_item;
  content: counter(faq_item) '. ';
}
.faqs_main .faq_item .answer {
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: 300;
  padding-bottom: 1.1rem;
}
@counter-style circled {
  system: fixed;
  symbols: ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩;
  suffix: " ";
}
.faqs_main .faq_item .answer ol {
  counter-reset: mycounter;
  list-style: none;
  padding-left: 0;
}
.faqs_main .faq_item .answer li {
  position: relative;
  padding-left: 1.9rem;
}
.faqs_main .faq_item .answer li::before {
  counter-increment: mycounter;
  content: counter(mycounter, circled) ' ';
  position: absolute;
  left: 0;
  top: 0;
}
.faqs_sidebar {
  display: none;
}
@media screen and (max-width: 768px) {
  .faqs_main .nav {
    display: none;
  }
  .faqs_main {
    padding: 2rem 0 4rem;
  }
  .faqs_main h1 {
    font-size: 25px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .faqs_main .main {
    margin: 0;
    display: block;
    border: none;
  }
  .faqs_main .faqs {
    padding: 0;
    max-width: unset;
  }
  .faqs_main .faq_item .question {
    position: relative;
    font-size: 19px;
    line-height: 23px;
    font-weight: 900;
    padding: 0;
    padding-left: 23px;
  }
  .faqs_main .faq_item .question::before {
    position: absolute;
    left: 0;
    top: 0;
  }
  .faqs_main .faq_item .answer {
    padding-left: 23px;
    font-size: 15px;
    line-height: 20px;
    padding-top: 7px;
    padding-bottom: 22px;
  }
  .faqs_main .faq_item .answer br {
    display: none;
  }
  .faqs_main .faq_item .answer ol {
    margin-top: 8px;
  }
  .faqs_main .faq_item .answer li + li {
    margin-top: 8px;
  }
  .faqs_main .faq_item .answer li {
    padding: 0;
  }
  .faqs_main .faq_item .answer li::before {
    position: unset;
  }
  header .btn_faqs {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-right: 60px;
    cursor: pointer;
  }
  .faqs_sidebar {
    display: block;
    position: fixed;
    left: 0;
    top: 44px;
    bottom: 0;
    z-index: 999;
    width: 100%;
    pointer-events: none;
    transition: all 0.3s;
  }
  .faqs_sidebar.active {
    pointer-events: all;
  }
  .faqs_sidebar.active .close {
    opacity: 1;
  }
  .faqs_sidebar.active .con {
    opacity: 1;
    transform: translate(0);
  }
  .faqs_sidebar .con {
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
    padding: 22px 0 0;
    display: flex;
    flex-direction: column;
  }
  .faqs_sidebar .con .con_title {
    padding: 0 1rem;
  }
  .faqs_sidebar .con .con_box {
    flex: 1;
    overflow: auto;
    padding: 3px 23px 37px;
  }
  .faqs_sidebar .con .con_box::-webkit-scrollbar {
    width: 4px;
  }
  .faqs_sidebar .con .con_box::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
  .faqs_sidebar form {
    display: grid;
    border-radius: 100px;
    border: 1px solid #e8eaec;
    background-color: #fff;
    grid-template-columns: 20px 1fr;
    align-items: center;
    min-height: 27px;
    margin-bottom: 23px;
  }
  .faqs_sidebar form input[type=text] {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #8c8d8f;
    background-color: transparent;
    padding: 1px 8px 2px;
    font-weight: 300;
  }
  .faqs_sidebar form input[type=text]::placeholder {
    color: #8c8d8f;
  }
  .faqs_sidebar form input[type=submit] {
    text-indent: -999px;
    color: transparent;
    display: block;
    background: url("../img/icon-search.png") no-repeat center right / 50% transparent;
  }
  .faqs_sidebar .breadcrumbs {
    line-height: 20px;
    min-height: 20px;
  }
  .faqs_sidebar .breadcrumbs span {
    font-size: 14px;
    font-weight: 300;
    color: #686870;
  }
  .faqs_sidebar .breadcrumbs span span::before {
    content: ' > ';
    display: inline-block;
    margin: 0 17px 0 13px;
  }
  .faqs_sidebar .breadcrumbs span span:first-child::before {
    display: none;
  }
  .faqs_sidebar .breadcrumbs span a {
    transition: all 0.3s;
    text-decoration: underline transparent;
  }
  .faqs_sidebar .breadcrumbs span a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
  }
  .faqs_sidebar .taxonomy.active .box {
    opacity: 1;
  }
  .faqs_sidebar .taxonomy.active .title::after {
    transform: rotate(-90deg);
  }
  .faqs_sidebar .title {
    font-size: 13px;
    font-weight: 500;
    color: #262628;
    display: grid;
    grid-template-columns: 1fr 10px;
    gap: 1rem;
    align-items: center;
    padding: 17px 0;
    cursor: pointer;
  }
  .faqs_sidebar .title::after {
    width: 100%;
    padding-bottom: 100%;
    display: block;
    content: '';
    background: url("../img/icon-select.png") no-repeat center / contain;
    transition: all 0.3s;
  }
  .faqs_sidebar .box {
    opacity: 0;
    display: none;
    transition: opacity 0.3s;
  }
  .faqs_sidebar .list {
    padding: 4px 0 14px;
  }
  .faqs_sidebar .list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px 8px;
  }
  .faqs_sidebar .list a {
    border-radius: 11px;
    background-color: #f9fafc;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .faqs_sidebar .list .img {
    width: 100%;
    padding-bottom: 88.198%;
  }
  .faqs_sidebar .list i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(137, 138, 147, 0.5);
    background: url("../img/faqs-r.png") no-repeat center / 6px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '';
    display: block;
  }
  .faqs_sidebar .list .label {
    font-size: 12.5px;
    color: #262628;
    font-weight: 500;
    text-align: center;
    flex: 1;
    padding: 8px 1rem 28px;
  }
}
@media screen and (max-width: 576px) {
  .faqs_main {
    padding: 5px 0 27px;
  }
  .faqs_sidebar .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=faqs.css.map */