@charset "UTF-8";

@-ms-viewport {
  width: device-width;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: rgba(235, 183, 30, 0.8);
  color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

/*================= General =================*/

html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #fafafa;
  color: #252437;
  font-family: "Montserrat", "Noto Sans TC", sans-serif !important;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
}

p {
  margin: 0;
}

a {
  color: #888;
  text-decoration: underline;
}

a:focus {
  outline: none;
}

a:hover {
  color: #888;
}

.body-box {
  max-width: 1440px;
}

.body-box .col {
  padding: 0;
}

.text-nowrap {
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

.text-color-gray {
  color: rgba(0, 0, 0, 0.4);
}

.text-highlight {
  background-image: -webkit-linear-gradient(
    left,
    #1df5cc,
    #caeb22,
    #ebb71e
  ); /* For Chrome and Safari */
  background-image: -moz-linear-gradient(
    left,
    #1df5cc,
    #caeb22,
    #ebb71e
  ); /* For old Fx (3.6 to 15) */
  background-image: -ms-linear-gradient(
    left,
    #1df5cc,
    #caeb22,
    #ebb71e
  ); /* For pre-releases of IE 10*/
  background-image: -o-linear-gradient(
    left,
    #1df5cc,
    #caeb22,
    #ebb71e
  ); /* For old Opera (11.1 to 12.0) */
  background-image: linear-gradient(
    to right,
    #1df5cc,
    #caeb22,
    #ebb71e
  ); /* Standard syntax; must be last */
  background-size: 100%;
  background-repeat: repeat;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.bg-line {
  background-image: url("../image/bg-line_bw.png");
  background-position: center;
  background-size: 100%;
}

.bg-gradient-1 {
  background-image: url("../image/bg-gradient_1.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 25px #aaa;
}

.bg-gradient-2 {
  background-image: url("../image/bg-gradient_2.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 25px #aaa;
}

.bg-wave {
  background-image: url("../image/bg-wave_bw.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 25px #aaa;
}

.section-box {
  padding: 10% 5%;
}

.section-title {
  font-size: 3rem;
  margin: 0 0 2% 0;
}

.section-subtitle {
  font-size: 1.8rem;
  margin: 0 15% 5% 15%;
}

.section-btn {
  background-image: linear-gradient(135deg, #1df5cc 0%, #ebb71e 100%);
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 1.5% 3%;
  text-decoration: none;
}

.section-btn:hover {
  color: #fff;
  text-decoration: none;
}

.section-btn:focus {
  outline: none;
}

/*================= Nav =================*/

.nav-back,
.nav-front {
  padding: 1% 10%;
  max-width: 1440px;
  margin: 0 auto;
}
.nav-back {
  background-color: rgba(255, 255, 255, 0);
}

.nav-back .navbar-brand {
  color: rgba(0, 0, 0, 0);
  font-size: 2rem;
}

.nav-front {
  background-color: rgba(255, 255, 255, 0.8);
}

.nav-front a {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-front .navbar-brand {
  color: rgba(0, 0, 0, 0.7);
  font-size: 2rem;
}

.nav-front .navbar-btn {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50px;
  color: #fff;
  font-size: 1.5rem;
  padding: 1% 2%;
}

/*================= Header =================*/

.header-video {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 1440px;
  height: 120vh;
  z-index: -100;
}

.header {
  margin: 0;
  padding: 0;
  height: 100vh;
  color: #fff;
}

.header .row {
  height: 100vh;
}

.header .section-title {
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
  font-size: 5rem;
  margin: 0;
}

.header .section-title:nth-of-type(2) {
  font-size: 6rem;
  margin: 0 0 10% 0;
}

.header a {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border: 5px solid #fff;
}

/*================= Projects =================*/

.accordion {
  filter: drop-shadow(3px 3px 25px rgba(0, 0, 0, 0.25));
}

.accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 30px;
  margin: 1% 0 0 0;
  text-align: left;
}

.accordion-body .card {
  border: none;
  border-radius: 15px;
  flex-shrink: 0;
  height: 600px;
  width: 300px;
  margin: 1% 2% 2% 2%;
  scroll-snap-align: start;
  transform: scale(1);
  transition: transform 0.5s;
}

.accordion-body .badge {
  border: 2px solid #252437;
  letter-spacing: 2px;
}

.accordion-body .hashtag {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  padding: 0 5%;
}

.accordion-body img {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0 0;
}

.accordion-body .card-text {
  color: rgba(0, 0, 0, 0.8);
}

.accordion-body .card-footer {
  background: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 0 0 15px 15px;
  padding: 10% 0;
  text-align: center;
}

.accordion-body .card-footer .section-btn {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50px;
  font-size: 1.1rem;
  padding: 4% 8%;
}

.slider {
  overflow: hidden;
}

.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  margin-top: 5%;
}

.slides::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}
.slides::-webkit-scrollbar-track {
  background: transparent;
}

/*================= Partner =================*/

.partner img {
  margin: 10% 0 5% 0;
  width: 60%;
}

/*================= Founder =================*/

.founder .section-body img {
  border-radius: 15px;
  width: 200px;
  height: 200px;
  filter: drop-shadow(0px 0 10px rgba(0, 0, 0, 0.25));
  margin-top: 5%;
}

.founder .section-body p {
  font-size: 1.1rem;
  text-align: left;
}

.founder .section-body p:nth-of-type(2) {
  text-align: right;
}

/*================= Story =================*/

.story .carousel {
  margin: 5% 5% 0 5%;
}

.story .carousel-inner {
  height: 175px;
}

.story .user {
  overflow-y: scroll;
}

.story .user:nth-of-type(1) {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-width: 0 2px 0 0;
}

.story .user-head {
  padding-right: 0;
  text-align: center;
}

.story .user-head img {
  width: 90%;
  padding-right: 10px;
}

.story .user-body {
  padding-left: 0;
  text-align: left;
}

.carousel-indicators {
  margin-top: 5%;
  position: relative;
  bottom: 0px;
}

.carousel-indicators li {
  background-color: rgba(0, 0, 0, 0.6);
}

/*================= Reward =================*/

.reward-table {
  margin: 0;
}

.reward-table table {
  font-size: 1.2rem;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin: 0;
}

.reward-table table thead {
  background-color: rgba(235, 183, 30, 0.4);
  letter-spacing: 2px;
}

.reward-table table th {
  letter-spacing: 2px;
  vertical-align: middle;
  white-space: nowrap;
}

.reward-table table td {
  vertical-align: middle;
  white-space: nowrap;
}

.reward-table table tbody tr:nth-of-type(1) {
  background-color: rgba(0, 0, 0, 0.05);
}
.reward-table table tbody tr:nth-of-type(2) {
  background-color: rgba(0, 0, 0, 0.1);
}
.reward-table table tbody tr:nth-of-type(3) {
  background-color: rgba(0, 0, 0, 0.15);
}
.reward-table table tbody tr:nth-of-type(4) {
  background-color: rgba(0, 0, 0, 0.2);
}

.reward-table table tbody tr:nth-of-type(5) {
  background-color: rgba(0, 0, 0, 0.25);
}

.reward-table table tbody tr:nth-of-type(6) {
  background-color: rgba(0, 0, 0, 0.4);
}

.reward-table table th:nth-of-type(1) {
  border-radius: 15px 0 0 15px;
}

.reward-table table tr:nth-of-type(1) th:nth-of-type(7) {
  border-radius: 0 15px 15px 0;
}

.reward-table table td:nth-of-type(6) {
  border-radius: 0 15px 15px 0;
}

.reward-table .ntd {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
}

.reward-footer {
  margin: 0 3%;
}

.reward-footer p {
  font-size: 0.8rem;
  text-align: left;
}

/*================= Step =================*/

.step .step-body {
  margin: 5% 0 0 0;
}

.step .step-body img {
  filter: drop-shadow(0px 0 10px rgba(0, 0, 0, 0.25));
  width: 90%;
}

.step .step-body h3 {
  font-size: 1.8rem;
  margin: 0 0 3% 0;
}

.step .step-body p {
  font-size: 1.3rem;
}

.step .step-body .col-12 .row:nth-of-type(2),
.step .step-body .col-12 .row:nth-of-type(4) {
  margin: 5% 0;
  font-size: 2rem;
}

/*================= Enroll =================*/

.enroll h2 {
  font-size: 2.5rem;
  margin: 0 0 5% 0;
}

.enroll p {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2% 0 0 0;
}

/*================= About =================*/

.about .row:nth-of-type(2) {
  margin: 5% 0 0 0;
}

.about img {
  width: 200px;
}

.about p {
  text-align: left;
}

/*================= Calc =================*/

.calcBody {
  margin: 0 auto;
  max-width: 650px;
}

.calcBody #calcObject {
  max-width: 200px;
  margin: 0 auto;
}

.calcBody form {
  max-width: 400px;
  margin: 0 auto;
}

.calcBody .form-group {
  margin: 10% 0;
}

.calcBody .form-group:nth-of-type(1) {
  margin-top: 5%;
}
.calcBody .form-group label {
  font-size: 2rem;
  font-weight: 700;
}

.calcBody .form-group #calcAmount {
  font-size: 2.5rem;
}

.calcBody .form-group input[type="range"]::-webkit-slider-thumb {
  cursor: ew-resize;
  background: #252437;
}

.calcBody .form-group input[type="range"]::-webkit-slider-thumb:focus {
  outline: none;
}

.calcBody .form-group input[type="range"]::-webkit-slider-thumb:active {
  background: #252437;
}

.calcBody .form-group .start {
  text-align: left;
}

.calcBody .form-group .end {
  text-align: right;
}

.calcBody .calcBtnGroup {
  margin: 8% auto;
}

.calcBody .calcBtn {
  background-color: #fff;
  border-radius: 50px;
  border: none;
  color: #252437;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 2% 6%;
  margin: 0 2%;
  letter-spacing: 2px;
}

.calcBody .calcBtn:focus {
  outline: none;
}

.calcBody .calcBtnActive {
  color: #fff;
  background-color: rgba(235, 183, 30, 0.8);
}

.calcBody .table {
  border-spacing: 15px;
  border-collapse: separate;
  font-size: 1.2rem;
}

.calcBody .table th,
.calcBody .table td {
  border-radius: 10px;
  vertical-align: middle;
  white-space: nowrap;
  font-weight: 700;
}

.calcBody .table thead th {
  font-size: 1.4rem;
  padding: 0;
}

.calcBody .table tbody th {
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.calcBody .table tbody tr:nth-of-type(3) th {
  background-color: rgba(235, 183, 30, 0.4);
}

.calcBody .table tbody td {
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.calcBody .table tbody td p:nth-of-type(2) {
  font-size: 1rem;
}

.calcBody .table tbody .unit {
  font-size: 1rem;
}

/*================= QA =================*/

.qa .accordion {
  margin: 2% 0 0 0;
}

.qa .card {
  border-radius: 30px;
  margin: 0 auto;
  max-width: 800px;
}

.qa .card-header {
  background-image: linear-gradient(135deg, #fff 0%, #eee 100%);
  border-radius: 30px;
}

.qa .card-header .btn {
  color: #252437;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  outline: none;
}

.qa .card-header .btn:focus {
  outline: none;
}

.qa .card-body {
  text-align: left;
}

/*================= Term =================*/

.term {
  color: #aaa;
}

.term h5 {
  font-size: 1rem;
  margin: 0 0 1% 0;
}

.term p {
  font-size: 0.8rem;
  margin: 0 10%;
}

/*================= Footer =================*/

.footer {
  background-color: #333;
  border: none;
  box-shadow: 0 0 25px #aaa;
  padding: 3% 0;
}

.footer img {
  width: 25%;
}

.footer p {
  margin: 1% 0 0 0;
  color: rgba(255, 255, 255, 0.3);
}

/*================= Modal =================*/

.modal-content,
.modal-body {
  border-radius: 30px;
}

.modal-btn {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  position: absolute;
  text-align: center;
  top: 3%;
  right: 3%;
  z-index: 10000;
}

.modal-btn img {
  width: 50px;
  height: 50px;
}

.modal-btn:focus {
  outline: none;
}

/*================= Modal - Projects =================*/

.info {
  text-align: left;
  width: 50vw;
}

.info-banner {
  text-align: center;
  margin: 5% 0;
}

.info-banner img {
  border-radius: 20px;
  width: 100%;
}

.info-head {
  font-weight: 700;
  margin: 3% 0;
}

.info-head .badge {
  border: 2px solid #252437;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.info-head .hashtag {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  padding: 0 2%;
}

.info-title {
  margin: 5% 0;
}

.info-body table {
  border-spacing: 50px;
}

.info-body table th,
.info-body table td {
}

.info-body table tr {
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
}

.info-body table th {
  border: none;
  font-size: 1.2rem;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

/*================= Frame =================*/

.frame-box {
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.frame-box iframe {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*================= RWD =================*/
/*================= RWD =================*/
/*================= RWD =================*/
/*================= RWD =================*/
/*================= RWD =================*/

@media (max-width: 576px) {
  /*================= General =================*/

  .d-none {
    display: inline-block !important;
  }

  .section-box {
    padding: 15% 5%;
  }

  .section-title {
    font-size: 2.3rem;
    margin: 0 0 5% 0;
  }

  .section-subtitle {
    font-size: 1.3rem;
    margin: 0 0 5% 0;
  }

  .section-btn {
    font-size: 1.3rem;
    padding: 3% 6%;
  }

  /*================= Nav =================*/

  .nav-back,
  .nav-front {
    padding: 3% 5%;
  }

  .nav-front .navbar-brand {
    font-size: 1.6rem;
  }

  .nav-front .navbar-btn {
    font-size: 1.2rem;
    padding: 2% 4%;
  }

  /*================= Header =================*/

  .header .section-title {
    font-size: 2.5rem;
  }

  .header .section-title:nth-of-type(2) {
    font-size: 3rem;
    margin: 0 0 15% 0;
  }

  .header a {
    font-size: 1.3rem;
    padding: 2% 4%;
    border-width: 3px;
  }

  /*================= Projects =================*/

  .projects {
    padding-left: 3%;
    padding-right: 3%;
  }

  .accordion-body .card {
    width: 265px;
    height: 550px;
  }

  /*================= Founder =================*/

  .founder {
    padding: 15% 5%;
  }

  .founder .section-body img {
    width: 200px;
    height: 200px;
    margin: 5% 0 10% 0;
  }

  .founder .section-body {
    font-size: 1.1rem;
  }

  /*================= Story =================*/

  .story .carousel-inner {
    height: 385px;
  }

  .story .user:nth-of-type(1) {
    border: none;
    margin-bottom: 5%;
  }

  .story .user-head {
    text-align: center;
  }

  /*================= Reward =================*/

  .reward {
    padding-left: 1%;
    padding-right: 1%;
  }

  .reward .section-subtitle {
    margin: 0 5% 5% 5%;
  }

  .reward-table table {
    font-size: 1rem;
    width: 700px;
  }

  .reward-table .ntd {
    font-size: 0.8rem;
  }

  .reward-footer {
    margin: 3% 3% 0 3%;
  }

  /*================= Step =================*/

  .step .step-body img {
    width: 100%;
    margin: 0 0 15% 0;
  }

  .step .step-body h3 {
    font-size: 1.5rem;
  }

  .step .step-body p {
    font-size: 1.2rem;
  }

  /*================= Enroll =================*/

  .enroll h2 {
    font-size: 1.6rem;
    margin: 0 0 8% 0;
  }

  .enroll p {
    font-size: 1.2rem;
    margin: 5% 0 0 0;
  }

  /*================= About =================*/

  .about img {
    width: 200px;
    margin: 0 0 10% 0;
  }

  /*================= Calc =================*/

  .calcBody #calcObject {
    max-width: 200px;
    margin: 0 auto;
  }

  .calcBody .form-group label {
    font-size: 1.6rem;
  }

  .calcBody .form-group #calcAmount {
    font-size: 2rem;
  }

  .form-group:nth-of-type(2) {
    margin: 0 auto;
    max-width: 300px;
  }

  .calcBody .calcBtn {
    font-size: 1.1rem;
    padding: 2% 5%;
    margin: 0 1%;
  }

  .calcBody .table {
    border-spacing: 5px;
    font-size: 1rem;
  }

  .calcBody .table thead th {
    font-size: 1.1rem;
  }

  .calcBody .table tbody th {
    font-size: 1.1rem;
  }

  .calcBody .table tbody td p:nth-of-type(2) {
    font-size: 0.8rem;
  }

  .calcBody .table tbody .unit {
    font-size: 0.8rem;
  }

  /*================= QA =================*/

  .qa .accordion {
    margin: 3% 0 0 0;
  }

  .qa .card {
    margin: 0;
  }

  /*================= Term =================*/

  .term p {
    margin: 0 5%;
  }

  /*================= Footer =================*/

  .footer {
    padding: 6% 0;
  }

  .footer img {
    width: 50%;
  }

  /*================= Modal =================*/

  .modal-btn img {
    width: 35px;
    height: 35px;
  }

  /*================= Modal - Projects =================*/

  .info {
    padding: 0;
    width: 100%;
  }

  .info .info-title h2 {
    font-size: 1.6rem;
  }
}
