@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overscroll-behavior: none;
  cursor: default;
}

body {
  width: 100%;
  overscroll-behavior: none;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  background-color: #F4F2F1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

@media screen and (max-width: 640px) {
  .mobile-br {
    display: inline;
  }
}
.mt-text {
  margin-top: 320px;
}
@media screen and (max-width: 640px) {
  .mt-text {
    margin-top: 440px;
  }
}
@media screen and (max-width: 480px) {
  .mt-text {
    margin-top: 320px;
  }
}

.mt-12 {
  margin-top: 12px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-section {
  margin-top: 132px;
}

.mt-carousel {
  margin-top: 242px;
}

.style-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.max-600 {
  max-width: 600px;
}

.modal-br {
  display: none;
}
@media screen and (max-width: 640px) {
  .modal-br {
    display: initial;
  }
}

.mobile-br {
  display: none;
}

.modal-text-br {
  display: block;
  height: 12px;
}

@media (max-width: 640px) {
  .mobile-br {
    display: inline;
  }
}
.tablet-br {
  display: none;
}

@media (max-width: 1030px) {
  .tablet-br {
    display: inline;
  }
}
#home,
#basic,
#trade {
  scroll-margin-top: 80px;
}

.bg-orange {
  background-color: #F94806;
}

.text-orange {
  color: #F94806;
}

.bg-black {
  background-color: #383D42;
}

.float {
  animation: floatY 4s ease-in-out infinite;
  will-change: transform;
}

.float-light {
  animation: floatY2 3s ease-in-out infinite;
  will-change: transform;
}

.float-light:nth-child(1) {
  animation-delay: 0s;
}

.float-light:nth-child(2) {
  animation-delay: 0.6s;
}

.float-light:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-60px);
  }
}
@keyframes floatY2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInCoin 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInCoin {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-down {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.immediate {
  opacity: 1;
  transform: none;
  transition: none !important;
}

.fade-cat {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-cat.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideInFadeLeft {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFadeRight {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 預設：淡入滑入（由右往左） */
.bannerC {
  animation: slideInFadeRight 1s ease forwards;
  animation-delay: 0.2s;
  /* 可選：延遲播放 0.2s */
}

/* 若要改成由左往右，只要套這個 */
.bannerC.from-left {
  animation: slideInFadeLeft 1s ease forwards;
}

.quiz-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  background: rgba(78, 78, 78, 0.6);
  background-blend-mode: multiply;
  backdrop-filter: blur(7.5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
  z-index: 1000;
  cursor: pointer;
}

.quiz-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease, visibility 0s;
}

.quiz-shell {
  position: relative;
  width: min(92vw, 860px);
  max-height: 70vh;
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  transform: translateY(18px);
  transition: transform 0.28s ease;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  .quiz-shell {
    padding: 16px;
  }
}
@media screen and (max-width: 960px) and (orientation: landscape) {
  .quiz-shell {
    max-height: 70vh;
    margin-top: 48px;
  }
}

.quiz-overlay.open .quiz-shell {
  transform: translateY(0);
}

.quiz-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 0;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .quiz-close {
    top: 16px;
    right: 16px;
  }
}

.quiz-nav {
  border: 0;
  background-color: transparent;
  outline: none;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.quiz-prev {
  justify-self: end;
  margin-right: 20px;
}

.quiz-next {
  justify-self: start;
  margin-left: 20px;
}

.quiz-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.quiz-modal-item {
  display: none;
}

.quiz-header h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.72px;
  color: #F94806;
  padding-bottom: 8px;
  padding-right: 32px;
  margin-bottom: 12px;
  border-bottom: 1px solid #F4F2F1;
}
@media screen and (max-width: 640px) {
  .quiz-header h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 960px) and (orientation: landscape) {
  .quiz-header h3 {
    font-size: 16px;
  }
}

.quiz-layout-table {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
}

.quiz-layout-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.quiz-layout-img p {
  order: 0;
}
.quiz-layout-img img {
  order: 1;
  max-width: 218px;
}
@media screen and (max-width: 640px) {
  .quiz-layout-img {
    flex-direction: column;
    justify-content: flex-start;
  }
  .quiz-layout-img p {
    order: 3;
  }
  .quiz-layout-img img {
    order: 2;
  }
}

.quiz-container-wrapper {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 18px;
}

.quiz-container-wrapper::-webkit-scrollbar {
  width: 8px;
}

.quiz-container-wrapper::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 50px;
}

.quiz-container-wrapper::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 50px;
}

.quiz-container {
  gap: 28px;
}

.quiz-des {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  color: #383D42;
  width: 100%;
}
.quiz-des a {
  color: #383D42;
}
.quiz-des a:hover {
  color: #F94806;
}

.quiz-modal-item.is-active {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.quiz-ol {
  width: 100%;
  margin: 0;
  padding-left: 24px;
  margin-top: 8px;
}
.quiz-ol li {
  color: #383D42;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.64px;
}

.bold li {
  font-weight: 500;
}

.quiz-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: absolute;
  bottom: -84px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1080px) {
  .quiz-controls {
    display: flex;
  }
}
@media screen and (max-width: 960px) and (orientation: landscape) {
  .quiz-controls {
    display: none;
  }
}
.quiz-controls .quiz-nav {
  margin: 0;
}
.quiz-controls .quiz-nav img {
  width: 60px;
}
.quiz-controls .quiz-dots {
  transform: none;
  position: static;
  bottom: auto;
  left: auto;
  margin: 0;
}

.quiz-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.quiz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-dot.active {
  width: 22px;
  border-radius: 999px;
  background-color: #383D42;
}

.collapse {
  margin-top: 20px;
  overflow: hidden;
}
.collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
}
.collapse-header img {
  transition: transform 0.3s ease;
}
.collapse-expand {
  color: #383D42;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}

.collapse-expand > * {
  overflow: hidden;
}

.collapse-container {
  padding: 0px 24px 0px 24px;
  background-color: #F4F2F1;
  border-radius: 12px;
  overflow: hidden;
}
.collapse-container h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.64px;
  color: #F94806;
  width: 100%;
  margin: 0;
  padding: 0;
}

.collapse-expand.is-open {
  grid-template-rows: 1fr;
  padding-bottom: 14px;
}

.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.compare-table {
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.64px;
  font-weight: 300;
  text-align: left;
  border: 1px solid #D9D9D9;
  border-radius: 12px;
}
@media screen and (max-width: 580px) {
  .compare-table {
    margin-right: 1px;
  }
}

.table-outline td:first-child {
  border-left: 1px solid #D9D9D9;
}
.table-outline td:last-child {
  border-right: 1px solid #D9D9D9;
}

.compare-table thead th {
  background-color: #F94806;
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  border-right: 1px solid white;
}

.table-overlay {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48px;
  pointer-events: none;
}
.table-overlay-img {
  width: 100%;
  height: calc(100% - 16px);
  mix-blend-mode: multiply;
  display: block;
}
.table-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 580px) {
  .table-overlay {
    display: block;
  }
}

.table-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 36px;
  right: -18px;
}

.compare-table thead th:last-child {
  border: none;
}

.compare-table thead th:first-child {
  text-align: center;
}

.compare-table thead th:last-child {
  border-top-right-radius: 12px;
}

.compare-table thead th:first-child {
  border-top-left-radius: 12px;
}

.compare-table thead tr:last-child {
  border-top-left-radius: 12px;
}

.compare-table thead tr:first-child {
  border-top-right-radius: 12px;
}

.compare-table td {
  color: #333;
  padding: 12px 16px;
  border-top: 1px solid #D9D9D9;
  vertical-align: middle;
}

.compare-table td:first-child {
  font-weight: 600;
  width: 15%;
  min-width: 104px;
  color: #333;
  text-align: center;
}

.compare-table tbody tr:nth-child(even) {
  background-color: #F4F2F1;
}

.table-shell {
  position: relative;
  width: 100%;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 8px;
}

.table-wrapper.table-scrolled + .table-overlay {
  opacity: 0;
  visibility: hidden;
}

.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 50px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 50px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature img {
  max-width: 110px;
}
.feature h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.64px;
  color: #383D42;
}
.feature p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  color: #605E6E;
}
.feature-container {
  margin-top: 28px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 20px;
}

.table-inner {
  padding-left: 16px;
}

.table-hl {
  font-weight: 600;
}

.table-center {
  text-align: center;
}

.table-hint {
  font-size: 14px;
  line-height: 1.4;
  width: 100%;
  text-align: left;
  color: #605E6E;
  font-weight: 400;
  margin-top: 8px;
}

.dot-list.custom {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dot-list.custom li {
  position: relative;
  padding-left: 16px;
}

.dot-list.custom li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 2px;
  height: 2px;
  background-color: #333;
  border-radius: 50%;
}

.table-title {
  position: relative;
  height: 36px;
}
.table-title-tag {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: -8px;
  background-color: #f9bb1f;
  border-radius: 999px;
  color: #383D42;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.64px;
  padding: 8px 10px 4px 10px;
  word-break: keep-all;
  z-index: 99;
  border: 2px solid #ffffff;
}

.title-h1 {
  font-size: 54px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.08px;
}
@media screen and (max-width: 640px) {
  .title-h1 {
    font-size: 38px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.76px;
  }
}

.text-p1 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 640px) {
  .text-p1 {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    letter-spacing: 0.64px;
  }
}

.carousel {
  overflow-x: clip;
  overflow-y: visible;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 85px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #CCCCCC;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  width: 21px;
  border-radius: 999px;
  background-color: #383D42;
}

.carousel {
  margin-top: 40px;
}
.carousel-card {
  display: flex;
  flex-direction: column;
  width: 70vw;
  max-width: 732px;
  height: 420px;
  padding: 24px;
  border-radius: 20px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 12px 0 rgba(163, 74, 41, 0.2);
  backdrop-filter: blur(2px);
  position: relative;
  background: #F4F2F1;
  transition: transform 0.35s ease;
}
.carousel-card-wrapper {
  display: flex;
  gap: 90px;
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .carousel-card-wrapper {
    gap: 40px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .carousel-card {
    width: calc(100vw - 36px);
    height: 414px;
  }
}
.carousel-header {
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: #383D42;
  position: relative;
}
.carousel-header p {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 480px) {
  .carousel-header p {
    font-size: 20px;
  }
}
.carousel-header .q-hl {
  color: #F94806;
}
.carousel-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  color: #605E6E;
  touch-action: pan-y;
  padding-right: 12px;
}
.carousel-container p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.72px;
  align-self: center;
}
@media screen and (max-width: 480px) {
  .carousel-container p {
    align-self: auto;
    font-size: 16px;
  }
}
.carousel-img-wrapper {
  position: relative;
  margin-top: 12px;
}
.carousel-img-wrapper .zoom {
  display: none;
  position: absolute;
  width: 35px;
  height: 35px;
  right: 8px;
  top: 8px;
  z-index: 5;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 9.1px 0 rgba(0, 0, 0, 0.25);
  padding: 7px;
  cursor: pointer;
}
@media screen and (max-width: 580px) {
  .carousel-img-wrapper .zoom {
    display: block;
  }
}
.carousel-img-wrapper .hero {
  position: relative;
  width: 100%;
  z-index: 3;
  border-radius: 16px;
}
@media screen and (max-width: 580px) {
  .carousel-img-wrapper .hero {
    border-radius: 12px;
  }
}

.carousel-container::-webkit-scrollbar {
  width: 6px;
}

.carousel-container::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 50px;
}

.carousel-container::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 50px;
}

.header-img {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 172px;
}
@media screen and (max-width: 480px) {
  .header-img {
    width: 120px;
    right: -45px;
    top: -70px;
  }
}

.carousel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #F94806 12.84%, #FF7E4D 76.66%), #FAF8F7;
  opacity: 0;
  border-radius: 18px;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.carousel-card > * {
  position: relative;
  z-index: 1;
}

.carousel-card.is-active {
  transform: translateY(40px);
}
.carousel-card.is-active .carousel-header,
.carousel-card.is-active .carousel-container,
.carousel-card.is-active .q-hl {
  color: #FFFFFF;
}
@media screen and (max-width: 480px) {
  .carousel-card.is-active {
    transform: none;
  }
}

.carousel-card.is-active::before {
  opacity: 1;
}

.carousel-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.carousel-button-wrapper button {
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .carousel-button-wrapper button img {
    width: 60px;
  }
}

.carousel-main {
  position: relative;
  height: 520px;
}

.carousel-main .card-style {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
  will-change: transform;
}

.carousel-button-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  gap: 16px;
}
.carousel-button-wrapper button {
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
.carousel-button-wrapper button:disabled {
  opacity: 0.35;
  cursor: default;
}

.img-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.img-modal.active {
  display: flex;
}

.img-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.img-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.img-modal-content img {
  width: 100%;
  max-width: 1280px;
  height: auto;
  object-fit: contain;
}

.img-modal-close {
  background: none;
  border: none;
  cursor: pointer;
}
.img-modal-close img {
  width: 32px;
  height: 32px;
}

.zoom {
  cursor: zoom-in;
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: manipulation;
  /* Safari */
}

header {
  width: calc(100% - 60px);
  margin: 25px 0px;
  max-width: 1380px;
  height: 72px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 40px;
  box-shadow: 0 4px 12px 0 rgba(163, 74, 41, 0.2);
  backdrop-filter: blur(2px);
  position: fixed;
  transition: transform 0.5s ease;
  z-index: 99;
}
@media screen and (max-width: 640px) {
  header {
    box-shadow: none;
    width: 100%;
    border-radius: 0;
    margin: 0;
    height: 60px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 960px) {
  header img {
    width: 144px;
  }
}

header.is-hidden {
  transform: translateY(-170%);
}

.position {
  left: 50%;
  transform: translateX(-50%);
}

.position2 {
  left: 50%;
  transform: translateX(calc(-50% - 28px));
}

.header-nav {
  display: flex;
  position: relative;
}
@media screen and (max-width: 960px) {
  .header-nav {
    display: none;
  }
}
.header-nav a:not(:last-child) {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid #D9D9D9;
}
.header-nav .nav-item {
  position: relative;
}
.header-nav .nav-item .style-center {
  gap: 4px;
}
.header-nav .nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  height: 60px;
}
.header-nav .nav-item:last-child a {
  border: none;
  padding-right: 0;
  margin-right: 0;
}
.header-nav .nav-item > a {
  position: relative;
  z-index: 2;
}
.header-nav .nav-item .dropdown {
  position: absolute;
  top: 60px;
  width: 150px;
  z-index: 999;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px 0 rgba(163, 74, 41, 0.2);
  backdrop-filter: blur(2px);
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms linear;
}
.header-nav .nav-item .dropdown-inner {
  overflow: hidden;
}
.header-nav .nav-item .dropdown-inner a {
  display: block;
  padding: 8px 8px;
  color: #383D42;
  font-size: 16px;
  font-weight: 500;
  line-height: 23.2px;
  letter-spacing: 0px;
  text-decoration: none;
  text-align: center;
}
.header-nav .nav-item .dropdown-inner a:first-child {
  padding-top: 16px;
}
.header-nav .nav-item .dropdown-inner a:last-child {
  padding-bottom: 16px;
}
.header-nav .nav-item .dropdown-inner a:hover {
  color: #F94806;
}
.header-nav .nav-item:hover .dropdown {
  grid-template-rows: 1fr;
}
.header-text a {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  text-decoration: none;
  color: #383D42;
  cursor: pointer;
}
.header-text a:hover {
  color: #F94806;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.menu-btn img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 960px) {
  .menu-btn {
    display: block;
  }
}

.nav-modal {
  position: fixed;
  inset: 0;
  background: rgba(56, 61, 66, 0.4);
  backdrop-filter: blur(3px);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.nav-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s;
}
.nav-modal-content {
  background: #fff;
  width: 100%;
  border-radius: 0 0 28px 28px;
  text-align: center;
  overflow: hidden;
  margin: auto;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.nav-modal-content .nav-modal-inner {
  overflow: hidden;
}
.nav-modal.open .nav-modal-content {
  grid-template-rows: 1fr;
}
.nav-modal .nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 20px 20px 0 20px;
}
.nav-modal .nav-header .nav-back-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.nav-modal .nav-header button {
  background: none;
  border: none;
  cursor: pointer;
}
.nav-modal .nav-header button img {
  width: 24px;
}
.nav-modal .nav-panels {
  --panel-index: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  transition: transform 0.28s ease;
  transform: translateX(calc(var(--panel-index) * -100%));
}
.nav-modal .panel {
  width: 100%;
}
.nav-modal .panel-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.nav-modal.subopen .nav-back-btn {
  opacity: 1;
  pointer-events: auto;
}
.nav-modal .nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 16px 28px;
  text-align: left;
}
.nav-modal .nav-list a {
  padding: 16px 0;
  color: #383D42;
  text-decoration: none;
}
.nav-modal .nav-list a:hover {
  color: #F94806;
}

.coin1 {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 72px;
}
@media screen and (max-width: 1134px) {
  .coin1 {
    left: 10px;
    bottom: 0;
    top: auto;
  }
}
@media screen and (max-width: 640px) {
  .coin1 {
    width: 52px;
  }
}

.coin2 {
  position: absolute;
  right: 30px;
  bottom: 60px;
  width: 72px;
}
@media screen and (max-width: 640px) {
  .coin2 {
    width: 52px;
    bottom: auto;
    top: 50px;
  }
}

.bannerC {
  position: absolute;
  left: 55%;
  transform: translateX(-20%);
  top: 40px;
  z-index: 2;
  width: 100%;
  max-width: 566px;
}
.bannerC img:last-child {
  width: 100%;
}
@media screen and (max-width: 1134px) {
  .bannerC {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 900px) {
  .bannerC {
    top: 180px;
  }
}
.banner-img {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 640px;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  width: 100%;
}
.banner-bg img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: bottom center;
}
@media screen and (max-width: 640px) {
  .banner-bg img {
    height: 100%;
    max-height: 600px;
    object-fit: fill;
  }
}
.banner-container {
  width: 100%;
  max-width: 1440px;
  padding-left: 152px;
  margin-top: 162px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  color: #FFFFFF;
}
@media screen and (max-width: 1280px) {
  .banner-container {
    padding-left: 5%;
    margin-top: 140px;
  }
  .banner-container .text-p1 {
    max-width: 360px;
  }
}
@media screen and (max-width: 640px) {
  .banner-container {
    width: auto;
    padding: 0;
    margin: 100px auto;
  }
}
@media screen and (max-width: 480px) {
  .banner-container {
    padding: 0 18px;
  }
}
.banner-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.banner-tag h3 {
  font-weight: 600;
  border: 1px solid #FFFFFF;
  padding: 3px 12px 5px 12px;
  border-radius: 12px;
}
@media screen and (max-width: 640px) {
  .banner-tag h3 {
    font-size: 16px;
  }
}
.banner-tag p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 640px) {
  .banner-tag p {
    font-size: 20px;
  }
}

.btn-wrapper {
  display: flex;
  gap: 12px;
}
.btn-wrapper a {
  text-decoration: none;
  color: #FFFFFF;
}
.btn-style {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  line-height: 23.2px;
  letter-spacing: 0px;
}
.btn-size {
  width: 145px;
  height: 48px;
}
@media screen and (max-width: 640px) {
  .btn-size {
    width: 128px;
    height: 40px;
  }
}

.scroll-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background-color: #FFFFFF;
  position: relative;
  max-width: 1280px;
  padding: 25px 35px 40px 35px;
  margin: 0 20px;
  margin-top: 240px;
}
@media screen and (max-width: 900px) {
  .scroll-bg {
    margin-top: 400px;
  }
}
@media screen and (max-width: 640px) {
  .scroll-bg {
    margin-top: 60%;
    padding: 48px 16px 56px 16px;
  }
}
@media screen and (max-width: 480px) {
  .scroll-bg {
    margin-top: 50%;
  }
}
.scroll-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .scroll-left {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    content: url("/assets/scroll_hor.svg");
  }
}
.scroll-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .scroll-right {
    content: url("/assets/scroll_hor.svg");
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.stick {
  position: absolute;
  width: 24px;
  height: calc(100% + 18px);
  transform: translateY(-50%);
}
@media screen and (max-width: 580px) {
  .stick {
    height: 24px;
    width: calc(100% + 18px);
  }
}

.stick-left {
  left: 0;
  top: 50%;
}
@media screen and (max-width: 580px) {
  .stick-left {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.stick-right {
  right: 0;
  top: 50%;
}
@media screen and (max-width: 580px) {
  .stick-right {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.stick-body {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 100%;
  margin: 0 auto;
  background: #E8D4C9;
  border-radius: 8px;
}
@media screen and (max-width: 580px) {
  .stick-body {
    height: 24px;
    width: 100%;
  }
}

.stick::before,
.stick::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 12px;
  background: #B9A194;
  z-index: 0;
}
@media screen and (max-width: 580px) {
  .stick::before,
.stick::after {
    height: 18px;
    width: 12px;
  }
}

.stick::before {
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  border-radius: 2px 2px 0 0;
}
@media screen and (max-width: 580px) {
  .stick::before {
    border-radius: 2px 0 0 2px;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
}

.stick::after {
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  border-radius: 0 0 2px 2px;
}
@media screen and (max-width: 580px) {
  .stick::after {
    left: auto;
    bottom: auto;
    border-radius: 0 2px 2px 0;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-container {
  position: relative;
  padding: 0 18px;
}
.text-container h3 {
  color: #F94806;
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  letter-spacing: 4.32px;
}
@media screen and (max-width: 640px) {
  .text-container h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    letter-spacing: 3.36px;
  }
}
.text-container h2 {
  color: #383D42;
  font-size: 44px;
  font-weight: 700;
  line-height: 52.8px;
  letter-spacing: 0px;
  margin: 4px 0 24px 0;
}
@media screen and (max-width: 640px) {
  .text-container h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 45.6px;
    letter-spacing: 0px;
  }
}
.text-container p {
  color: #605E6E;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 780px) {
  .text-container p {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
}
@media screen and (max-width: 640px) {
  .text-container p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    letter-spacing: 0.64px;
    text-align: left;
  }
}

.tab-switch {
  position: relative;
  display: flex;
  background: #FFFFFF;
  border-radius: 999px;
  gap: 4px;
  padding: 8px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  .tab-switch {
    display: flex;
    flex-wrap: wrap;
  }
}
.tab-switch .tab {
  position: relative;
  border: none;
  background: none;
  border-radius: 999px;
  width: 138px;
  height: 50px;
  color: #383D42;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s;
}
@media screen and (max-width: 960px) {
  .tab-switch .tab {
    width: 158px;
    height: 42px;
    flex: 0 0 calc(50% - 4px);
  }
}
.tab-switch .tab.active {
  color: #FFFFFF;
}
.tab-bg {
  position: absolute;
  top: 0;
  left: 0;
  background: #383D42;
  border-radius: 999px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.card {
  cursor: pointer;
  width: 100%;
  padding: 24px;
  border-radius: 20px;
  border: 3px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.card-section {
  position: relative;
  width: 100%;
  max-width: 1440px;
  z-index: 50;
}
.card-section-hor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 5;
  padding: 0 24px;
  max-width: 1380px;
  margin: 300px auto 0 auto;
}
@media screen and (max-width: 480px) {
  .card-section-hor {
    margin-top: 160px;
  }
}
.card-section-hor .text-container {
  text-align: left;
}
@media screen and (max-width: 900px) {
  .card-section-hor .text-container {
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .card-section-hor {
    flex-direction: column;
  }
}
.card-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 42px auto 24px auto;
  padding: 0 18px;
  width: 100%;
  max-width: 1000px;
}
.card-wrapper-bg {
  background-color: #F5F1F0;
  border-radius: 20px 20px 0 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 580px) {
  .card-wrapper-bg {
    width: 100dvw;
  }
}
.card-wrapper-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #E8D4C9;
  height: 24px;
  width: calc(100% + 24px);
  border-radius: 8px;
  right: -12px;
}
@media screen and (max-width: 580px) {
  .card-wrapper-bg::before {
    right: 0;
    width: 100%;
  }
}
.card-wrapper-bg .card-wrapper {
  margin-bottom: 80px;
}
.card-column .card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-direction: column;
  max-width: 380px;
  height: 180px;
}
@media screen and (max-width: 780px) {
  .card-column .card {
    max-width: 650px;
  }
}
@media screen and (max-width: 960px) {
  .card-row {
    padding: 0;
  }
}
.card-row .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
@media screen and (max-width: 960px) {
  .card-row .card {
    margin: 0 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-height: 154px;
  }
}
.card:hover {
  box-shadow: 0 4px 12px 0 rgba(163, 74, 41, 0.2);
  backdrop-filter: blur(2px);
}
.card:hover p {
  color: #F94806;
}
.card:hover .card-btn {
  content: url("../assets/ic_add_hover.svg");
}
.card p {
  color: #605E6E;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 640px) {
  .card p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
    letter-spacing: 0.64px;
  }
}
.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-left: auto;
}
.card-bg-group {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 580px) {
  .card-bg-group {
    overflow-x: clip;
    overflow-y: visible;
  }
}
.card-bg-1 {
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: -1;
}
@media screen and (max-width: 1230px) {
  .card-bg-1 {
    top: -10px;
  }
}
.card-bg-2 {
  position: absolute;
  bottom: -60px;
  left: -200px;
  z-index: -1;
}
@media screen and (max-width: 1230px) {
  .card-bg-2 {
    left: -240px;
    bottom: -5%;
  }
}
@media screen and (max-width: 720px) {
  .card-bg-2 {
    left: auto;
    right: -120px;
    bottom: auto;
    top: 60%;
    transform: translateY(-50%);
  }
}
.card-bg-3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  right: -220px;
}
@media screen and (max-width: 830px) {
  .card-bg-3 {
    right: -300px;
  }
}
.card-bg-4 {
  width: 160px;
  position: absolute;
  right: -30px;
  bottom: 0;
}
@media screen and (max-width: 1000px) {
  .card-bg-4 {
    display: none;
  }
}
.card-bg-5 {
  position: absolute;
  width: 155px;
  left: 10%;
  top: -200px;
  z-index: 50;
}
@media screen and (max-width: 640px) {
  .card-bg-5 {
    width: 95px;
    top: -100px;
  }
}
.card-bg-6 {
  position: absolute;
  right: 0px;
  z-index: -1;
  top: -100px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .card-bg-6 {
    right: 60%;
    top: 200px;
  }
}
.card-bg-6 img {
  position: relative;
  right: -20px;
}
.card-bg-7 {
  position: absolute;
  right: 0;
  bottom: -100px;
  z-index: -1;
  overflow: hidden;
}
.card-bg-7 img {
  position: relative;
  right: -20px;
}
.card-bg-8 {
  position: absolute;
  left: -400px;
  top: 0px;
}
.card-bg-9 {
  width: 108px;
  position: absolute;
  right: -160px;
  bottom: 0;
}
@media screen and (max-width: 1000px) {
  .card-bg-9 {
    display: none;
  }
}
.card-bg-10 {
  position: absolute;
  right: -140px;
  top: 0;
}
@media screen and (max-width: 720px) {
  .card-bg-10 {
    width: 240px;
    top: auto;
    bottom: -100px;
  }
}
@media screen and (max-width: 480px) {
  .card-bg-10 {
    bottom: -200px;
    z-index: -1;
  }
}
.card-bg-11 {
  position: absolute;
  bottom: -60px;
  left: -200px;
  z-index: -1;
}
@media screen and (max-width: 1230px) {
  .card-bg-11 {
    left: -240px;
    bottom: -5%;
  }
}
@media screen and (max-width: 720px) {
  .card-bg-11 {
    width: 200px;
    left: -50px;
    bottom: 5%;
  }
}

.card-layout {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
}

.bg {
  position: absolute;
  width: 100%;
  top: -180px;
}
.bg-wrapper {
  position: relative;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}
@media screen and (max-width: 900px) {
  .bg {
    top: -80px;
  }
}
@media screen and (max-width: 640px) {
  .bg {
    top: -10px;
  }
}
.bg-white {
  object-fit: cover;
  width: 100%;
  object-position: right top;
}
@media screen and (min-width: 961px) {
  .bg-white {
    position: absolute;
    top: -300px;
    width: auto;
  }
}

.footer {
  position: relative;
  bottom: 0;
  z-index: 99;
  border-radius: 30px 30px 0 0;
  background-color: #383D42;
  padding: 60px 60px 44px 60px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 32px 24px 20px 24px;
  }
}
.footer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .footer-header {
    margin-bottom: 30px;
  }
}
.footer-text {
  min-width: 300px;
}
.footer-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .footer-text-wrapper {
    margin-bottom: 32px;
  }
}
.footer-text p {
  font-size: 16px;
  font-weight: 700;
  line-height: 22.4px;
  letter-spacing: 0.64px;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-text ul {
  text-decoration: none;
  padding-left: 0;
}
.footer-text ul li {
  list-style: none;
  color: #dedede;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  font-weight: 300;
}
.footer-text ul li:first-child {
  margin-bottom: 4px;
}
.footer-alert {
  width: 100%;
  padding: 44px 0;
  color: #dedede;
}
@media screen and (max-width: 480px) {
  .footer-alert {
    padding: 22px 0;
  }
}
.footer-alert h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #FFFFFF;
}
.footer-alert a {
  color: #dedede;
}
.footer-alert p {
  font-size: 16px;
  font-weight: 300;
  line-height: 25.6px;
  letter-spacing: 0.64px;
}
.footer-alert .alert-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* ← 桌機 4 行 */
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}
.footer-alert .alert-text ul {
  padding: 0;
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 1.6;
}
.footer-alert .alert-text ul li {
  list-style: none;
  margin-bottom: 16px;
}
.footer-alert .alert-text ul ol {
  padding-left: 24px;
}
.footer-alert .alert-text ul ol li {
  list-style-type: decimal;
  margin-bottom: 4px;
}
@media screen and (max-width: 480px) {
  .footer-alert .alert-text {
    -webkit-line-clamp: 3;
  }
}
.footer-alert.expanded .alert-text {
  -webkit-line-clamp: unset;
}
.footer-alert .toggle-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  padding: 0;
  margin-top: 4px;
  cursor: pointer;
  color: #999999;
  font-size: 16px;
  font-weight: 300;
  line-height: 25.6px;
  letter-spacing: 0.64px;
}

.media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .media {
    gap: 16px;
  }
  .media img {
    width: 24px;
  }
}

.bottom-wrapper {
  background-color: #FDFCFC;
  position: relative;
  top: 20px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .bottom-wrapper {
    top: 20px;
  }
}

.section-bottom {
  background-color: #FDFCFC;
  position: relative;
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1280px;
  padding-top: 120px;
}
.section-bottom-text-wrapper {
  flex: 1;
  width: 100%;
  max-width: 650px;
  z-index: 9;
  padding-bottom: 100px;
  padding-right: 48px;
  order: 1;
}
@media screen and (max-width: 640px) {
  .section-bottom-text-wrapper {
    order: 2;
    padding-bottom: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 780px) {
  .section-bottom {
    margin-top: 100px;
  }
}
@media screen and (max-width: 640px) {
  .section-bottom {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .section-bottom {
    margin-top: 20px;
  }
}
.bt-earth {
  bottom: -40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.bt-c {
  width: 100%;
}
.bt-c-group {
  flex: 1;
  z-index: 8;
  max-width: 480px;
  top: 20px;
  order: 0;
  position: relative;
}
@media screen and (max-width: 640px) {
  .bt-c-group {
    order: 3;
  }
}
@media screen and (max-width: 480px) {
  .bt-c-group {
    max-width: 380px;
    top: 0px;
    max-height: 480px;
  }
}
.bt-coin1 {
  position: absolute;
  right: 0;
  top: 5%;
}
.bt-coin3 {
  position: absolute;
  left: 0;
  bottom: 10%;
}

.coin-desktop {
  display: block;
}
@media screen and (max-width: 640px) {
  .coin-desktop {
    display: none;
  }
}

.coin-mobile {
  display: none;
}
@media screen and (max-width: 640px) {
  .coin-mobile {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
