* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 13px;
  font-family: "Microsoft Jhenghei", sans-serif;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

p,
li {
  margin-bottom: 5px;
  line-height: 1.5;
}

.wrapper {
  text-align: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

.text-right {
  text-align: right;
}

.fw-bold {
  font-weight: bold;
}

.logo-bg-outer {
  background: #fff;
  text-align: left;
}

.logo-bg {
  width: 100%;
}

.logo-bg img {
  display: inline;
}

.logo1 {
  float: left;
}

.kv {
  position: relative;
  background: #BAB0FF url("../images/kv-bg.jpg") no-repeat top/100%;
  z-index: 1;
  overflow-x: hidden;
}
.kv::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 16%;
  background: url("../images/sec-bg.jpg") no-repeat bottom/100%;
}

.kv-title-group {
  width: 50%;
  position: relative;
  margin: 4% 0 20% 23%;
}
.kv-title-group .kv-888 {
  width: 40%;
  position: absolute;
  top: 22%;
  right: -7%;
}

.kv-wifi {
  position: absolute;
  width: 16%;
  top: 21.5%;
  left: 20%;
  mix-blend-mode: overlay;
}

.kv-main {
  position: absolute;
  width: 32%;
  top: 6%;
  left: 4%;
}
.kv-main .kv-traveler {
  position: relative;
  z-index: 2;
}
.kv-main .kv-wifi-gif {
  position: absolute;
  width: 8%;
  top: 0;
  left: 51%;
}

.kv-scene {
  position: absolute;
  width: 21%;
  top: 11%;
  right: 15%;
}

.container {
  position: absolute;
  width: 18%;
  top: 6%;
  right: 3%;
}
.container .coin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.container .coin-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.container .coin-symbol.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.container .coin-symbol.hidden {
  opacity: 0;
  transform: translate(-50%, -60%) scale(0.95);
}
.container .plane {
  position: absolute;
  width: 32%;
  transform-origin: center center;
  z-index: 2;
}

:root {
  --animate-delay: 0.5s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 70%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.img-m {
  display: none;
}

.offer {
  position: relative;
  margin: auto;
  width: 90%;
  max-width: 1300px;
}
.offer.offer2:before {
  content: "";
  display: block;
  position: absolute;
  top: -4%;
  left: -4%;
  width: 13%;
  padding-bottom: 15%;
  background: url("../images/offer-2-tag.png") no-repeat center/100%;
}

.cta img {
  width: 50%;
  max-width: 500px;
  padding: 5% 0;
  animation: click 1s infinite ease-out;
}

@keyframes click {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.c-primary {
  color: #7B34C6;
}

.notebg {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
}

.note-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #7B34C6;
  margin-top: 20px;
}

.btn-collapse {
  display: block;
  padding: 20px 25px;
  background: #fff;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  font-weight: bold;
}
.btn-collapse > span:nth-child(1) {
  display: inline-flex;
  align-items: center;
}
.btn-collapse .icon {
  font-size: 30px;
  margin-left: 4px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  text-align: center;
}
.btn-collapse .minus {
  display: none;
}
.btn-collapse.open .plus {
  display: none;
}
.btn-collapse.open .minus {
  display: inline-block;
}

.collapse {
  display: none;
  width: 100%;
  text-align: left;
  color: #333;
  padding: 10px 30px 30px;
  font-size: 16.5px;
  opacity: 0;
  transition: 500ms all;
  background: #fff;
}
.collapse.in {
  display: block;
  opacity: 1;
}
.collapse a {
  color: #7B34C6;
  text-decoration: underline;
  word-break: break-all;
}
.collapse li {
  line-height: 1.8;
}
.collapse p {
  line-height: 2;
}
.collapse h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #7B34C6;
}

.collapse-inner {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 2% 5%;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.btn-border {
  padding: 15px 40px;
  color: #fff;
  background-color: #7B34C6;
  border-radius: 100px;
}

.note_DotList {
  list-style: disc;
  padding: 0 0 0 2em;
  margin: 0;
}

.note_NumList {
  list-style: decimal;
  padding: 0 0 0 2em;
  margin: 0;
}

.note_NumList2 {
  counter-reset: list;
  list-style: none;
}
.note_NumList2 > li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.note_NumList2 > li::before {
  content: "(" counter(list) ") ";
  counter-increment: list;
}

@media screen and (max-width: 768px) {
  .kv {
    background: #BAB0FF url("../images/kv-bg-m.jpg") no-repeat top/100%;
    padding-bottom: 20%;
  }
  .kv::before {
    background: url("../images/sec-bg-m.jpg") no-repeat bottom/100%;
  }
  .kv-logo {
    width: 50%;
  }
  .kv-title-group {
    width: 84%;
    margin: 37% 0 90% 6%;
  }
  .kv-wifi {
    width: 28%;
    top: 31%;
    left: 37%;
  }
  .kv-main {
    width: 65%;
    top: 18%;
  }
  .kv-scene {
    width: 35%;
    top: 18.5%;
    right: 15%;
  }
  .container {
    width: 34%;
    top: 4%;
    right: 6%;
  }
  .offer.offer2:before {
    width: 18%;
    padding-bottom: 20%;
    top: -5%;
    left: -4%;
  }
  .img-d {
    display: none;
  }
  .img-m {
    display: block;
  }
  .cta img {
    width: 70%;
    max-width: 280px;
  }
}
@media screen and (max-width: 600px) {
  .logo-bg img {
    height: 35px;
  }
  .btn-collapse,
  .btn-collapse .icon {
    font-size: 20px;
  }
  .collapse {
    padding: 10px 10px 30px;
  }
  .collapse-inner {
    border-radius: 20px;
  }
  .btn-collapse {
    padding: 20px 25px;
  }
  .note-title {
    font-size: 20px;
  }
}