html {
  scroll-behavior: smooth;
}

header {
  transition: transform 0.35s ease;
}

body.tab-sticky header {
  transform: translateY(-100%);
}

body.menu-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

header.header-zindex {
  z-index: 110;
}

body.header-mo-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

.board-tab {
  display: none;
}

/* =========================
   Common
========================= */
.wrap,
.faq-list {
  max-width: 1360px;
  margin: 0 auto;
}

.sec-qualify,
.sec-docs,
.sec-process,
.sec-withdraw,
.sec-caution {
  padding: 120px 0 0;
}

.sec-faq {
  padding: 120px 0;
}

._fnctWrap h2.sec-title,
.sec-title {
  position: relative;
  margin-bottom: 24px;
  text-align: center;
  font-size: 40px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #333;
  letter-spacing: -0.8px;
}

.sec-title strong {
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #0080fb;
}

.sec-title::before,
.sec-title::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-size: 13px;
}

.sec-title::before {
  display: none;
  content: "◆ ";
  margin-left: -28px;
}

.sec-title::after {
  display: none;
  content: " ◆";
  margin-left: 15px;
}

.sec-desc {
  margin-bottom: 60px;
  text-align: center;
  font-size: 16px;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
  line-height: 1.6;
  color: #6c6c6c;
}

.sec-desc em {
  font-style: normal;
  font-family: "S-CoreDream-5Medium";
  color: #484848;
}

.sec-desc em.color {
  color: #0080fb;
}

/* =========================
   Common Card
========================= */
.q-card,
.doc-card,
.proc-card,
.wd-card,
.ca-card,
.faq-item {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.q-card:hover,
.doc-card:hover,
.proc-card:hover,
.wd-card:hover,
.ca-card:hover {
  transform: translateY(-6px);
  border-color: #b9dfff;
  /*box-shadow: 0 16px 36px rgba(0, 70, 137, .08);*/
}
.q-card {
  background: #f6f8f9;
  border: 1px solid #f6f8f9;
}
.ca-card:hover,
.proc-card:hover,
.wd-card:hover,
.q-card:hover {
  background: #e8f6fd;
}
.doc-card:hover .doc-card-body {
  background: #e8f6fd;
}
/* =========================
   Common Info Box
========================= */
.info-box,
.proc-info-box,
.wd-info-box {
  margin-top: 30px;
  /*padding: 60px;
    background: #F8F9FC;
    border: 1px solid #E7E9EF;
    border-radius: 20px;*/
}

.info-box-title,
.proc-info-title,
.wd-info-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;

  /*margin-bottom: 24px;*/
  padding: 0 0 16px 26px;
  /*border-bottom: 1px solid #E7E9EF;*/

  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.36px;
  font-family: "S-CoreDream-5Medium";
  font-weight: normal;
  color: #484848;
}

.info-box-title::before,
.proc-info-title::before,
.wd-info-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url(../images/ico_info.png) no-repeat center;
}

.info-box-title .ic-info,
.proc-info-title .ic-info,
.wd-info-title .ic-info {
  display: none;
}

.info-box-title strong,
.proc-info-title strong,
.wd-info-title strong {
  font-size: 18px;
  font-family: "S-CoreDream-5Medium";
  font-weight: normal;
  color: #484848;
}

/* =========================
   Common List
========================= */
.info-list,
.proc-info-list,
.wd-info-list,
.doc-list,
.wd-list {
  list-style: none;
}

.info-list,
.proc-info-list,
.doc-list,
.wd-list {
  display: flex;
  flex-direction: column;
}

.info-list,
.proc-info-list,
.wd-list {
  gap: 4px;
}

.doc-list {
  gap: 10px;
}

.info-list li,
.proc-info-list li,
.wd-info-list li {
  position: relative;
  padding-left: 12px;
  font-size: 16px;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
  line-height: normal;
  color: #717171;
}

.doc-list li,
.wd-list li {
  position: relative;
  padding-left: 12px;
  font-size: 16px;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
  line-height: normal;
  color: #6c6c6c;
}

.info-list li::before,
.wd-info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #7a8394;
}

.proc-info-list li::before,
.doc-list li::before,
.wd-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #484848;
}
.wd-list li::before {
  background: #6c6c6c;
}
.proc-info-list li::before {
  background: #7a8394;
}

.doc-list li {
  color: #333;
}

.doc-list li::before {
  left: 0;
  top: 10px;
  background: #333;
}

.proc-info-list li strong,
.proc-info-list li em,
.wd-info-list li strong,
.ca-card p em {
  font-family: "S-CoreDream-5Medium";
  font-weight: normal;
  font-style: normal;
  color: #484848;
}

/* =========================
   Hero
========================= */
.hero {
  text-align: center;
  padding: 70px 0 120px;
  background: #fff;
}

.hero-title {
  margin-bottom: 40px;
  font-size: 62px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #222;
  line-height: 1.25;
  letter-spacing: -1px;
  word-break: keep-all;
}

.hero-title em {
  color: #0080fb;
  font-style: normal;
}

.hero-desc {
  margin-bottom: 40px;
  font-family: "S-CoreDream-4Regular";
  font-size: 18px;
  color: #717171;
  line-height: 1.6;
  word-break: keep-all;
}

.hero-desc strong {
  color: #484848;
  font-family: "S-CoreDream-4Regular";
}

/* Hero info bar */
.hero-infobar {
  display: flex;
  justify-content: center;
}

.hero-infobar-inner {
  display: inline-flex;
  align-items: center;
  background: #f6f8f9;
  border-radius: 8px;
  padding: 13px 14px;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  font-size: 16px;
  color: #888;
  white-space: nowrap;
}

.info-label {
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
  color: #717171;
}

.info-val {
  font-family: "S-CoreDream-5Medium";
  color: #484848;
  font-size: 16px;
}

.info-val em {
  color: #1a6ef5;
  font-style: normal;
}

.info-sep {
  width: 2px;
  height: 14px;
  margin: 0 5px;
  background: #d9d9d9;
}

/* =========================
   Section Tab
========================= */
.sec-tab {
  position: relative;
  z-index: 50;
  background: #fff;
  padding: 16px 0;
  margin: -16px 0;
  transition: box-shadow 0.25s ease;
}

.sec-tab.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.sec-tab-placeholder {
  display: none;
  height: 0;
}

.sec-tab.is-sticky + .sec-tab-placeholder {
  display: block;
}

/* .wrap-header {
    transition: transform .35s ease;
}

body.tab-sticky .wrap-header {
    transform: translateY(-100%);
} */

.sec-tab .wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  overflow-x: visible;
}

.sec-tab a {
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  border: 1px solid #dcdcdc;
  background: #fff;

  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #222;

  font-family: "S-CoreDream-5Medium";
  font-weight: normal;

  text-align: center;
  word-break: keep-all;
  box-sizing: border-box;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.sec-tab a:hover,
.sec-tab a.on {
  background: #0080fb;
  border-color: #0080fb;
  color: #fff;
}

.sec-tab a:focus,
.sec-tab a:active {
  background: #fff;
  border-color: #ddd;
  color: #111;
  outline: none;
}

.sec-tab a.on:focus,
.sec-tab a.on:active {
  background: #0080fb;
  border-color: #0080fb;
  color: #fff;
}

/* =========================
   Qualify
========================= */
.qualify-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.q-card {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 16px;
  padding: 30px;
}

.q-icon {
  width: 100px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: transform 0.35s ease;
}

.q-card:hover .q-icon {
  transform: translateY(-3px);
}

.q-icon img {
  width: auto;
  margin: 0 auto;
}

.q-content {
  flex: 1;
  min-width: 0;
}

.q-title-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.q-card h3 {
  margin: 0;
  font-size: 20px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #333;
}

.q-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #add7ff;
  background: #fff;
  font-size: 13px;
  line-height: normal;
  font-family: "S-CoreDream-5Medium";
  color: #0080fb;
  white-space: nowrap;
}

.q-badge em {
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  font-style: normal;
}

.q-card p {
  font-size: 16px;
  color: #484848;
  font-family: "S-CoreDream-4Regular";
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.q-card p em {
  font-size: 16px;
  color: #333;
  font-family: "S-CoreDream-5Medium";
  font-style: normal;
}

/* Livestock table */
.table-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}

.table-title-row h3 {
  font-size: 22px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #333;
  letter-spacing: -0.5px;
}

.table-title-row span {
  font-size: 16px;
  color: #717171;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
}

.table-title-row span em {
  color: #484848;
  font-family: "S-CoreDream-5Medium";
  font-style: normal;
}

.livestock-wrap {
  margin-bottom: 14px;
}

.livestock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.livestock-table thead tr {
  /*background: #F0F6FB;*/
}

.livestock-table thead th,
.livestock-table tbody td {
  padding: 14px 60px 15px;
  text-align: left;
  font-size: 18px;
  font-family: "S-CoreDream-5Medium";
  color: #333;
  line-height: 1.4;
  letter-spacing: -0.36px;
}

.livestock-table thead th {
  color: #666;
  padding: 14px 0 15px;
  font-family: "S-CoreDream-3Light";
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #e2e2e2;
}

.livestock-table thead th:first-child {
  padding: 14px 60px 15px;
  border-radius: 8px 0 0 8px;
}

.livestock-table thead th:last-child {
  padding: 14px 60px 15px;
  border-radius: 0 8px 8px 0;
  text-align: right;
}

.livestock-table tbody td {
  padding: 14px 0 15px;
  border-bottom: 1px solid #e2e2e2;
}

/*.livestock-table tbody tr:last-child td {
    border-bottom: none;
}*/

.livestock-table tbody td:first-child {
  padding: 14px 60px 15px;
}
.livestock-table tbody td:last-child {
  text-align: right;
  padding: 14px 60px 15px;
}

.livestock-table .sub-note {
  color: #717171;
  font-size: 18px;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
}

/* =========================
   Docs
========================= */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.doc-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-color: #e2e5ea;
}

.doc-card-body {
  flex: 1;
  padding: 40px;
  background: #f6f8f9;
}

._fnctWrap h3.doc-card-title,
.doc-card-title {
  margin-bottom: 24px;
  font-size: 22px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #333;
  line-height: 1.3;
}

.doc-card-title em {
  color: #0080fb;
  font-style: normal;
}

.doc-card-footer {
  padding: 40px;
  background: #fff;
  /*border-top: 1px solid #dcdcdc;*/
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
}

.doc-card-footer .ft-label {
  color: #0080fb;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
}

/* =========================
   Process
========================= */
.proc-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 20px;
}

.proc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px;
  text-align: center;
  background: #f6f8f9;
  border: none;
}

.proc-card-icon {
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  line-height: 1;
  transition: transform 0.35s ease;
}

.proc-card-icon img {
  width: 100%;
}

.proc-card:hover .proc-card-icon {
  transform: translateY(-3px);
}

.proc-card h4 {
  margin-bottom: 12px;
  font-size: 22px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #333;
  letter-spacing: -0.4px;
}

.proc-card p {
  font-size: 16px;
  color: #484848;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.32px;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
}

/* =========================
   Withdraw
========================= */
.withdraw-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.wd-card {
  padding: 40px;
  background: #f6f8f9;
  border: none;
}

.wd-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  line-height: normal;
  font-family: "S-CoreDream-5Medium";
  font-weight: normal;
  white-space: nowrap;
}

.wd-badge.blue {
  background: #e4f3ff;
  border: 1px solid #bde0ff;
  color: #2d7aeb;
}

.wd-badge.orange {
  background: #fff2e1;
  border: 1px solid #ffd6b3;
  color: #ff8000;
}

.wd-badge.purple {
  background: #ebedff;
  border: 1px solid #b4b9f3;
  color: #404bc5;
}

.wd-badge.red {
  background: #ffeaef;
  border: 1px solid #ffcbd5;
  color: #e50031;
}

._fnctWrap .wd-card h3,
.wd-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #333;
  line-height: 1.35;
}

.wd-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
  letter-spacing: -1px;
}

.wd-divider {
  border: none;
  border-top: 1px solid #e2e2e2;
  margin: 28px 0;
}

/* =========================
   Caution
========================= */
.caution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.ca-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  min-height: 175px;
  padding: 40px;
}

.ca-card-content {
  flex: 1;
  min-width: 0;
}
.ca-card h4 {
  margin-bottom: 14px;
  font-size: 22px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #333;
  line-height: 1.4;
}

.ca-card p {
  font-size: 16px;
  color: #484848;
  line-height: 1.5;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
}

.ca-card-icon {
  flex-shrink: 0;

  width: 80px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.ca-card-icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================
   FAQ
========================= */
.faq-list {
  margin-top: 60px;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
  border-color: #cdd1da;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: #0080fb;
  border-width: 2.5px;
  box-shadow: 0 14px 34px rgba(0, 128, 251, 0.08);
}

.faq-q {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;

  font-size: 22px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #22252a;
}

.faq-q span {
  font-size: 22px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  color: #22252a;
}

.q-mark {
  margin-right: 10px;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: #bbb;
  stroke-width: 2;
  transition: transform 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  stroke: #0080fb;
}

.faq-a {
  display: none;
  padding: 0 40px 40px;
  margin-top: -16px !important;
  font-size: 18px;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
  color: #484848;
  line-height: 1.4;
  animation: faqFade 0.28s ease both;
}

.faq-a em {
  font-family: "S-CoreDream-5Medium";
  font-style: normal;
}

.faq-item.open .faq-a {
  display: block;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   CTA
========================= */
.cta {
  background: #004689;
  padding: 120px 20px 100px;
  text-align: center;
  color: #fff;
}

.cta h2 {
  margin-bottom: 52px;
  font-size: 42px;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
  letter-spacing: -0.84px;
}

.cta h2 strong,
.cta h2 span {
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
}

.cta p {
  margin-bottom: 80px;
  font-size: 20px;
  font-family: "S-CoreDream-3Light";
  font-weight: normal;
  color: #fff;
  line-height: 1.5;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-search,
.btn-join {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 36px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-family: "S-CoreDream-6Bold";
  font-weight: normal;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.btn-search {
  color: #0080fb;
  background: #fff;
}

.btn-join {
  color: #fff;
  background: #0080fb;
}

.btn-search:hover,
.btn-join:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.btn-search .icon,
.btn-join .icon {
  display: block;
  width: 24px;
  height: 24px;
}

.btn-search .icon {
  background: url(../images/icon-search.png) no-repeat center;
}

.btn-join .icon {
  background: url(../images/icon-download.png) no-repeat center;
}

/* =========================
   Responsive
========================= */
@media all and (max-width: 1400px) {
  .wrap {
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-title {
    font-size: 56px;
  }

  .sec-tab .wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .q-card,
  .wd-card,
  .ca-card {
    padding: 32px;
  }

  .ca-card p {
    letter-spacing: -0.6px;
  }

  .livestock-table thead th:first-child,
  .livestock-table tbody td:first-child {
    padding-left: 40px;
    padding-right: 40px;
  }
  .livestock-table thead th:last-child,
  .livestock-table tbody td:last-child {
    padding-left: 40px;
    padding-right: 40px;
  }

  .info-item {
    padding: 0 24px;
  }
}

@media all and (max-width: 1200px) {
  .hero {
    padding: 60px 0 90px;
  }

  .hero-title {
    font-size: 48px;
  }

  .sec-qualify,
  .sec-docs,
  .sec-process,
  .sec-withdraw,
  .sec-caution {
    padding: 90px 0 0;
  }

  .sec-faq {
    padding: 90px 0;
  }

  .qualify-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .withdraw-cards,
  .caution-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .docs-grid {
    gap: 24px;
  }
}

@media all and (max-width: 1024px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  ._fnctWrap h2.sec-title,
  .sec-title {
    font-size: 28px;
  }

  .sec-desc {
    margin-bottom: 44px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-desc {
    font-size: 16px;
  }

  /* .hero-infobar-inner {
        padding: 13px 24px;
    } */

  .docs-grid {
    grid-template-columns: 1fr;
  }

  .livestock-wrap {
    overflow-x: auto;
  }

  .livestock-table {
    min-width: 900px;
  }
  .qualify-cards {
    margin-bottom: 44px;
  }

  .info-box,
  .proc-info-box,
  .wd-info-box {
    /* padding: 40px; */
  }

  .faq-q {
    padding: 32px;
  }

  .faq-q,
  .faq-q span {
    font-size: 20px;
  }

  .faq-a {
    padding: 0 32px 32px;
    font-size: 16px;
  }
}

@media all and (max-width: 768px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding: 48px 20px 70px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.32;
  }

  .hero-desc {
    text-align: left;
    margin-bottom: 36px;
  }

  .hero-desc br,
  .sec-desc br {
    display: none;
  }

  .info-val {
    font-size: 15px;
  }

  .hero-infobar-inner {
    width: 100%;
    align-items: flex-start;
    gap: 12px;
  }

  .info-item {
    flex-direction: column;
    gap: 0;
    white-space: normal;
  }

  .info-sep {
    display: none;
  }

  .sec-tab {
    width: 100%;
    padding: 12px 0;
    overflow: hidden;
  }

  .sec-tab .wrap {
    gap: 10px;

    width: max-content;
    min-width: 100%;

    max-width: none;
    margin: 0;

    padding: 0 20px;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    box-sizing: border-box;
  }

  .sec-tab .wrap::-webkit-scrollbar {
    display: none;
  }

  .sec-tab a {
    flex: 0 0 auto;

    min-width: 150px;
    width: auto;

    height: 48px;

    padding: 0 10px;

    font-size: 16px;
    line-height: 1.2;

    white-space: nowrap;
  }

  .sec-tab-placeholder {
    height: 80px;
  }

  .ca-card p br {
    display: none;
  }

  .sec-tab-placeholder {
    height: 80px;
  }

  .sec-qualify,
  .sec-docs,
  .sec-process,
  .sec-withdraw,
  .sec-caution {
    padding: 70px 0 0;
  }
  .q-title-row {
    gap: 4px;
  }
  .sec-faq {
    padding: 70px 0;
  }

  .sec-desc {
    text-align: left;
  }

  .qualify-cards,
  .withdraw-cards,
  .caution-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .q-card {
    padding: 24px 24px;
    flex-direction: row-reverse;
    gap: 4px;
  }
  .q-card p br {
    display: none;
  }

  .q-icon {
    width: 84px;
    height: 100%;
  }

  .table-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .info-box,
  .proc-info-box,
  .wd-info-box {
    /* padding: 32px 24px; */
  }

  .info-list li,
  .proc-info-list li,
  .wd-info-list li {
    font-size: 16px;
  }

  .ca-card {
    gap: 4px;
    min-height: auto;
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ca-card-icon {
    width: 84px;
    height: 84px;
  }

  .doc-card-body,
  .doc-card-footer {
    padding: 32px 24px;
  }

  .proc-card {
    padding: 24px 12px;
  }
  .proc-card-icon {
    width: 80px;
    margin-bottom: 12px;
  }
  .proc-card h4 {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .cta {
    padding: 80px 20px;
  }

  .cta h2 {
    font-size: 30px;
    margin-bottom: 36px;
  }

  .cta p {
    font-size: 17px;
    margin-bottom: 48px;
  }
}

@media all and (max-width: 520px) {
  .wrap {
    padding: 0 0;
  }
  .hero {
    padding: 48px 0 70px;
  }
  .hero-title {
    font-size: 30px;
  }

  .hero-desc strong {
    font-family: "S-CoreDream-5Medium";
  }

  .hero-infobar-inner {
    gap: 0;
    padding: 13px 0;
  }

  .sec-tab .wrap {
    padding: 0 0;
    width: auto;
  }
  .sec-tab.is-sticky .wrap {
    padding: 0 20px;
  }

  .sec-tab a {
    min-width: 140px;
    height: 48px;
    font-size: 14px;
  }

  .sec-title::before,
  .sec-title::after {
    font-size: 10px;
  }

  .qualify-cards {
    grid-template-columns: 1fr;
  }

  .q-card {
    flex-direction: row-reverse;
  }

  .q-card h3,
  .proc-card h4,
  .wd-card h3,
  .ca-card h4 {
    font-size: 18px;
  }

  .proc-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .withdraw-cards,
  .caution-cards {
    grid-template-columns: 1fr;
  }

  .proc-card-icon {
    /*height: 90px;*/
  }

  .ca-card {
    align-items: center;
    flex-direction: row;
  }

  .ca-card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: -25px;
  }
  .q-badge {
    font-size: 14px;
    padding: 4px 8px 1px 8px;
  }
  .wd-badge {
    font-size: 14px;
    padding: 4px 8px 1px 8px;
  }
  .faq-q {
    padding: 24px;
  }

  .faq-q,
  .faq-q span {
    font-size: 18px;
    line-height: normal;
  }

  .faq-a {
    padding: 0 24px 24px;
    margin-top: -8px !important;
  }

  .cta-btns {
    flex-direction: column;
  }

  .btn-search,
  .btn-join {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   Motion Reduce
========================= */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
