/* ------------------------------
     共用 start
   ------------------------------ */
:root {
  scroll-padding-top: 3rem;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 100%;
  min-height: 100vh;
  position: relative;
  font-weight: 300;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-family: 'Noto Sans', 'Noto Sans TC', Helvetica, '微軟正黑體', '新細明體', Arial, sans-serif;
}

p {
  font-size: 22px;
}

a {
  color: #00bceb;
}

a:hover {
  color: #1283df;
  text-decoration: none;
}

.line {
  border-bottom: 3px solid #02c0e8;
}

section {
  padding: 3rem 2rem;
}

.main-title {
  font-size: 36px;
  margin: 0;
  text-align: center;
  font-weight: 600;
  color: #d53896;
  position: relative;
  padding: 30px 0 16px;
}

.second-title {
  text-align: center;
  color: #444;
  font-size: 32px;
  margin-bottom: 20px;
}

.main-btn {
  max-width: 250px;
  text-align: center;
  display: block;
  background-color: #02c0e8;
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  transition: 0.3s;
}

.main-btn:hover {
  color: #fff;
  opacity: 0.6;
}

.mt-5 {
  margin-top: 5.5rem;
}

.s-title {
  position: relative;
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: #001d2b;
}

.s-title::before {
  position: absolute;
  bottom: -5px;
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background: linear-gradient(to right, #00c0e8 0%, #d9f8fc 80%, rgba(217, 248, 252, 0) 100%);

}

.c-blue {
  color: #0196b3;
}


/* ------------------------------
         Navbar
   ------------------------------ */
.navbar {
  margin: 10px 20px;
  padding: 10px 15px 15px 0;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  background-color: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(0.5em);
  backdrop-filter: blur(0.5em);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all .3s ease-in-out;
}

.navbar:hover {
  background-color: #fff;
}

.navbar-brand {
  position: relative;
  left: -3%;
}

.navbar-brand img {
  height: 3rem;
}

.navbar-container {
  position: relative;
  justify-content: flex-end;
  width: 80%;
  left: 0;
}

.navbar-list .nav-item {
  padding: 0 6px;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
}

.navbar-list .nav-item.signup {
  position: absolute;
  right: -5%;
  top: 6px;
  transform: skew(10deg, 10deg);
  padding: 10px 15px 20px;
  border-radius: 5px;
  border: 2px solid #fff;
  text-align: center;
  -webkit-animation: color-change-2x 2s linear infinite alternate both;
  animation: color-change-2x 2s linear infinite alternate both;
  transition: all .3s ease-in-out;
}

@-webkit-keyframes color-change-2x {
  0% {
    background: #3074f2;
  }

  100% {
    background: #b22cff;
  }
}

@keyframes color-change-2x {
  0% {
    background: #3074f2;
  }

  100% {
    background: #b22cff;
  }
}

.navbar-list .nav-item.signup a {
  color: #fff;
  transform: skew(-10deg, -10deg);
  line-height: 24px;
  transition: all .3s ease-in-out;
}

.nav-item.signup:hover a,
.nav-item.signup:focus a {
  font-size: 22px;
  line-height: 26px;
}

.navbar-list .nav-item.signup i {
  font-size: 14px;
}

.navbar-list .nav-link {
  color: #444;
  padding-top: 0.8rem;
  font-size: 18px;
  font-weight: normal;
}

.navbar-list .nav-link.active,
.navbar-list .nav-link:hover {
  color: #00bceb;
  transition: all 0.3s ease;
}

.navbar i.fas.fa-bars {
  color: #FFF;
  font-size: 30px;
}

.btn-hamburguer {
  padding: 10px 15px;
}

@media (max-width: 1200px) {
  .navbar-container {
    width: 90%;
    max-width: 100%;
    padding: 0;
  }

  .navbar-brand img {
    height: 2rem;
  }

  .navbar-list .nav-link {
    padding-top: 1rem;
  }

  .navbar-list .nav-item.signup {
    padding: 4px 10px 12px;
  }

  .navbar-list .nav-item.signup a {
    line-height: 20px;
  }

  .nav-item.signup:hover a,
  .nav-item.signup:focus a {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {
  .navbar {
    border-radius: 20px;
    padding: 10px 20px;
  }

  .navbar-container {
    max-width: 100%;
  }

  .navbar-list .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #fff;
  }

  .navbar-list .nav-item.signup {
    padding: auto;
    border-radius: 5px;
    border: none;
    -webkit-animation: none;
    animation: none;
    transform: none;
    position: relative;
    right: inherit;
    top: inherit;
    width: 100%;
    background-color: #3030f2;
    box-shadow: none;
  }

  .navbar-list .nav-item.signup a {
    color: #fff;
    transform: none;
    line-height: 24px;
  }

  .navbar-list .nav-item.signup a:hover,
  .navbar-list .nav-item.signup a:focus {
    color: #eee;
  }
}

/* ------------------------------
       kv
   ------------------------------ */
.kv-box {
  width: 100%;
  height: 520px;
  background: url("../img/kv.png") center center no-repeat;
  background-size: cover;
  transition: all .3s ease-in-out;
}


.kv-box-sm {
  width: 100%;
  height: 450px;
  background: url("../img/kv-xs.png") center center no-repeat;
  background-size: cover;
}

.kv-content {
  margin-bottom: -80px;
}

.kv-box h1,
.kv-box-sm h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 68px;
  color: #fff;
}

.kv-box h1 span,
.kv-box-sm h1 span {
  color: #3030f2;
  padding: 0 10px;
  background-color: #aacc03;
  -webkit-animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
    transform: translateZ(-700px);
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
    transform: translateZ(-700px);
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}


.kv-box h3,
.kv-box-sm h3 {
  color: #0aceff;
}

.btn-get-started {
  letter-spacing: 1px;
  font-weight: 700;
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
  transition: all .2s ease;
}

.btn-get-started:hover {
  background: #0aceff;
  border-color: #0aceff;
  color: #444;
}

@media (max-width: 1200px) {

  .kv-box-sm {
    background-attachment: fixed;
    background-position: 80% center;
  }
}

@media (max-width: 991px) {

  .kv-box,
  .kv-box-sm {
    width: 100%;
    height: 520px;
    background: url("../img/kv-xs.png") center center no-repeat;
    text-align: center;
  }

  .kv-box .container,
  .kv-box .container-fluid,
  .kv-box-sm .container,
  .kv-box-sm .container-fluid {
    padding-top: 40px;
  }

  .kv-content {
    margin-bottom: -40px;
  }
}

@media (max-width: 768px) {
  .kv-box {
    height: 650px;
  }

  .kv-box h1,
  .kv-box-sm h1 {
    font-size: 45px;
  }

  .kv-box h1 span,
  .kv-box-sm h1 span {
    font-size: 36px;
    font-weight: 700;
    line-height: 55px;
  }
}

/* ------------------------------
       sec-main
   ------------------------------ */
.sec-main {
  position: relative;
  overflow: hidden;
  background: url(../img/bg.png) no-repeat center center fixed;
}

.main-box h4 {
  text-align: center;
  color: #3030f2;
  padding-bottom: 10px;
  font-size: 36px;
  font-style: italic;
}

.sec-main .inner-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #9b30ef;
  margin: 20px;
}

.inner-box h5 {
  text-align: center;
  font-size: 26px;
  padding: 20px 0 0;
}

.inner-box p {
  font-size: 18px;
}

@media (max-width: 768px) {
  .sec-main {
    background: url(../img/bg.png) no-repeat 80% center fixed;
  }
}

/* ------------------------------
       sec-content
   ------------------------------ */
.content-top {
  background-color: #2b95f8;
  padding: 30px;
  border-radius: 30px;
  margin: 0 20px 20px;
}

.content-top h2 {
  color: #fff;
}

.content-top i {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 33px;
}

.sec-content {
  position: relative;
  -webkit-animation: color-change-1 5s linear infinite alternate both;
  animation: color-change-1 5s linear infinite alternate both;
  transition: all .3s ease-in-out;
}

.sec-content::before {
  content: '';
  position: absolute;
  background-attachment: fixed;
  background-image: url(../img/bg-2.png);
  inset: 0;
}

@-webkit-keyframes color-change-1 {
  0% {
    background: #3dc8ff;
  }

  100% {
    background: #4356ff;
  }
}

@keyframes color-change-1 {
  0% {
    background: #3dc8ff;
  }

  100% {
    background: #4356ff;
  }
}

.sec-content .content-box {
  position: relative;
  background-color: #fff;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 60px;
}

.content-box h4 {
  position: absolute;
  top: 0;
  left: 60px;
  display: inline-block;
  padding: 6px 44px 8px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #f14df7 0%, #d538d5 100%);
  font-size: 30px;
  border-radius: 0 0 100px 100px;
}

.content-box .content-inner-box {
  padding: 100px 80px 80px;
}

.content-inner-box h5 {
  font-size: 26px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.content-inner-box p {
  padding-bottom: 30px;
}

.content-inner-box .content-pic {
  position: relative;
  z-index: 1;
}

.content-inner-box .content-pic::before {
  content: '';
  position: absolute;
  background-color: #ebebeb;
  z-index: -1;
  width: 100px;
  height: 60px;
  bottom: 50px;
  right: 20px;
  transform: skew(-20deg, -20deg);
  border-radius: 10px;
  border: 2px solid #fff;
}

.content-pic h5 {
  color: #3030f2;
}

.content-inner-box p {
  margin-bottom: 0;
  font-size: 20px;
}

.content-inner-box ul {
  margin-bottom: 20px;
}

.content-inner-box a {
  color: #3030f2;
  border: 1px solid #3030f2;
  padding: 8px 20px;
  border-radius: 50px;
}

.content-inner-box a:hover {
  color: #307ef2;
  border: 1px solid #307ef2;
}

@media (max-width: 768px) {
  .content-box h4 {
    font-size: 26px;
    left: 0;
    right: 0;
    border-radius: 0;
    text-align: center;
    padding: 15px;
  }

  .content-box .content-inner-box {
    padding: 100px 30px 80px;
  }

  .sec-content .content-box {
    border-radius: 20px;
    padding: 5px;
  }
}

/* ------------------------------
         sec_paper
   ------------------------------ */
.sec_paper {
  position: relative;
  overflow: hidden;
  background: url(../img/bg.png) no-repeat center center fixed;
}

.sec_paper .sec_head .sec-title {
  color: #fff;
}

.paper-box {
  text-align: center;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 20px;
  margin-bottom: 20px;
}

.paper-head {
  padding: 10px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  min-height: 100px;
}

.paper-head .paper-title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  padding: 8px;
  line-height: 30px;
}

.paper-box.ep01 .paper-head {
  background-color: #3030f2;
}

.paper-box.ep02 .paper-head {
  background-color: #7c3ce4;
}

.paper-box.ep03 .paper-head {
  background-color: #e022b1;
}

.paper-box.ep04 .paper-head {
  background-color: #28b4df;
}

.paper-pricebox {
  text-align: left;
  background-color: #fff;
  padding: 2rem;
  color: #333;
  min-height: 200px;
}

.btn-dl {
  display: block;
  color: #1F71F4;
  text-align: right;
  font-weight: 500;
  width: 100%;
  font-size: 18px;
  padding: 10px 20px;
}

.btn-dl:hover {
  opacity: 0.7;
}

/* ------------------------------
         sec-video
   ------------------------------ */
.sec-video {
  position: relative;
  background: linear-gradient(180deg, #6faeff 0%, #5b66ff 100%);
}

.sec-video .main-box h4 {
  color: #fff;
}

.partner-video {
  background-color: #fff;
  margin: 10px 0;
  padding: 25px 0 20px;
  border-radius: 20px;
}

.partner-video h5 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  /*行數*/
  font-weight: 500;
  margin: 1rem 0;
  font-size: 18px;
  line-height: 1.4;
}

/* ------------------------------
         form
   ------------------------------ */
.form .list-area {
    padding-bottom: 40px;
}

.form .list {
    position: relative;
}

.form .list-area h4 {
    color: #236BF5;
    font-size: 30px;
    padding: 26px 10px;
}

.form .list::before,
.form .list::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
}

.form .list::before {
    top: 0;
    left: 0;
    border-top: 3px solid #236BF5;
    border-left: 3px solid #236BF5;
}

.form .list::after {
    right: 0;
    bottom: 0;
    border-right: 3px solid #236BF5;
    border-bottom: 3px solid #236BF5;
}

.form .list p {
    padding: 15px;
    font-size: 20px;
    border-radius: 50px;
    margin: 15px 100px;
    background-color: #f5f5f5;
    transition: all .3s ease-in-out;
}

.form .list p:hover {
    transform: translateY(-3px);
}

.form .list p:nth-child(even) {
    border: 2px solid #6da0ff;
}

.form .list p:nth-child(odd) {
    border: 2px solid #b291ff;
}

.form .gift-box {
  padding-bottom: 20px;
}

.form .gift-box span {
  color: #ad42df;
  font-weight: 600;
}

.form .gift-content {
  padding: 20px 200px;
  background-color: #f5fff9;
  border-radius: 20px;
}

.form .gift-content p {
  font-size: 20px;
  line-height: 1.2;
}

.form .gift-content small {
  color: #e2361f;
}

.form .gift-area h4 {
    background-color: #6b00cf;
    color: #fff;
    font-size: 26px;
    border-radius: 10px 0 10px 0;
    padding: 16px;
    margin-bottom: 40px;
}

.form span {
  color: #d31967;
  padding-right: 5px;
}

.form-inner {
  border-top: 2px solid #eee;
  padding-top: 40px;
}

.form .help-block {
  color: #d31967;
  font-size: 15px;
}

.form label {
  font-size: 17px;
}

.form .form-answer input[type=checkbox],
input[type=radio] {
  margin-right: 10px;
}

.form .form-answer {
  display: flex;
  flex-direction: column;
}

.btn-main,
.btn-main:focus {
  position: relative;
  border: none;
  border-radius: 50px;
  background-position: center;
  background-color: #3030f2;
  color: #fff;
  font-size: 20px;
  letter-spacing: 5px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s;
  padding: 10px 10px 10px;
}

.btn-main:hover,
.btn-main:focus {
  background-color: #4450ff;
  color: #fff;
}

@media (max-width: 1200px) {
  .form .gift-content {
    padding: 20px 100px;
  }
}

@media (max-width: 768px) {
  .form .content p {
    font-size: 18px;
  }

  .form .gift-content {
    padding: 20px 50px;
  }
}

/* ------------------------------
         form
   ------------------------------ */
.thanks {
  padding-bottom: 40px;
}

.thanks .thanks-content p {
  font-size: 22px;
}

.thanks .thanks-content h3 {
  padding: 30px;
  margin-bottom: 0;
}

/* ------------------------------
         footer
   ------------------------------ */
.footer {
  position: relative;
  padding: 20px 20px 30px;
  width: 100%;
  background-color: #FFF;
  width: 100%;
  color: #111;
  font-size: 16px;
}

.footer a {
  display: inline-block;
  color: #444;
}

.footer a:hover {
  color: #00a7ca;
}

.footer ul {
  list-style-type: square;
}

.footer-year {
  margin: 30px;
}

.footer-bottom {
  font-size: 16px;
  letter-spacing: 2px;
  padding-top: 15px;
  border-top: 1px solid #ffffff;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #9037da;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
  padding-top: 10px;
}

.back-to-top:hover {
  background: #a74cf1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}