@charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

/**
 * Allows you to use retina images at various pixel densities.
 * Examples:
 *
 *   +retina(/images/mypic.jpg, 2);
 *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 *
 * @param  {Value}  $path               The path to the file name minus extension.
 * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * @param  {Value}  $extras: null       Any other `background` values to be added.
 */
.u-border {
  border: 1px solid orange;
}

.u-border * {
  border: 1px solid orange;
}

header {
  padding: 4vh 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  pointer-events: none;
}

@media (max-width: 991px) {
  header {
    padding: 15px 0;
  }
}

header.fixed .header__logo {
  pointer-events: none;
  visibility: none;
  opacity: 0;
}

.header__widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.header__logo {
  pointer-events: auto;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  height: 58px;
}

.header__logo img {
  height: 100%;
}

@media (max-width: 991px) {
  .header__logo {
    height: 30px;
  }
}

.lang-nav {
  text-align: center;
  position: relative;
  padding: 0 23px;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .lang-nav {
    padding: 0 10px;
  }
}

.lang-nav:hover .lang-nav__list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lang-nav__list {
  padding-top: 15px;
  opacity: 0;
  visibility: none;
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  z-index: 1;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.lang-nav ul {
  padding: 3px 18px;
  margin-bottom: 0;
  background-color: #222;
  border: 1px solid #00EB9B;
  white-space: nowrap;
}

.lang-nav li:not(:last-of-type) {
  border-bottom: 1px solid #00EB9B;
}

.lang-nav a {
  padding: 15px 14px;
  display: block;
  color: #FFF;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-size: 1.125em;
  line-height: 100%;
  letter-spacing: 0.02em;
  font-weight: 400;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

@media (hover: hover) {
  .lang-nav a:hover {
    color: #00EB9B;
    font-weight: 700;
  }
}

.lang-nav__active {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #00EB9B;
  font-size: 1.125em;
  font-weight: 400;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
}

@media (max-width: 991px) {
  .lang-nav__active {
    width: 30px;
    height: 30px;
  }
}

.lang-nav__active span {
  line-height: 42px;
}

@media (max-width: 991px) {
  .lang-nav__active span {
    line-height: 30px;
  }
}

@media (hover: hover) {
  .lang-nav__active:hover {
    background-color: #00EB9B;
    color: #000;
  }
}

.site-nav-toggle {
  width: 40px;
  height: 42px;
  position: relative;
  margin-left: 23px;
  pointer-events: auto;
}

@media (max-width: 991px) {
  .site-nav-toggle {
    width: 30px;
    height: 30px;
    margin-left: 10px;
  }
}

.site-nav-toggle:hover span:before, .site-nav-toggle:hover span:after {
  background-color: #fff;
}

.site-nav-toggle span {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #FFF;
  display: block;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

@media (max-width: 991px) {
  .site-nav-toggle span {
    height: 3px;
  }
}

.site-nav-toggle span:before, .site-nav-toggle span:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #adadad;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  left: 50%;
}

@media (max-width: 991px) {
  .site-nav-toggle span:before, .site-nav-toggle span:after {
    height: 3px;
  }
}

.site-nav-toggle span:before {
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.site-nav-toggle span:after {
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.site-nav {
  background-color: #000;
  background-image: url("../images/img_menu bg.svg");
  width: 100%;
  height: 100vh;
  z-index: 999;
  opacity: 0;
  visibility: none;
  pointer-events: none;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
}

.site-nav::-webkit-scrollbar {
  width: 0px;
}

.site-nav::-webkit-scrollbar-button {
  width: 0px;
  height: 5px;
}

.site-nav::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 5px;
}

.site-nav::-webkit-scrollbar-thumb {
  background-color: rgba(157, 157, 157, 0.3);
  border: 0;
  border-radius: 5px;
}

.site-nav::-webkit-scrollbar-thumb:hover {
  background-color: rgba(157, 157, 157, 0.5);
}

@media (min-width: 992px) {
  .site-nav nav {
    position: relative;
    top: 5.2vh;
  }
}

.site-nav > div {
  -webkit-transform: translateX(-7px);
          transform: translateX(-7px);
}

.site-nav ul {
  margin-bottom: 0;
  padding: 10vh 0;
}

.site-nav li {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.site-nav li:not(:last-of-type) {
  margin-bottom: 5vh;
}

@media (max-width: 991px) {
  .site-nav li:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.site-nav li:nth-child(1) {
  -webkit-transition-delay: calc(1 * 0.1s);
          transition-delay: calc(1 * 0.1s);
}

.site-nav li:nth-child(2) {
  -webkit-transition-delay: calc(2 * 0.1s);
          transition-delay: calc(2 * 0.1s);
}

.site-nav li:nth-child(3) {
  -webkit-transition-delay: calc(3 * 0.1s);
          transition-delay: calc(3 * 0.1s);
}

.site-nav li:nth-child(4) {
  -webkit-transition-delay: calc(4 * 0.1s);
          transition-delay: calc(4 * 0.1s);
}

.site-nav a {
  font-size: 3em;
  font-weight: 900;
  line-height: 1.35417;
  letter-spacing: 0.48958em;
  -webkit-text-stroke-color: #b5b5b6;
  font-family: 'Noto Sans JP', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  padding: 20px 0;
  display: block;
  width: 609px;
  max-width: 100%;
  border-bottom: 1px solid #b5b5b6;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  position: relative;
}

.site-nav a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #00EB9B;
  left: 0;
  bottom: -2px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

@media (max-width: 1679px) {
  .site-nav a {
    font-size: 2.5em;
  }
}

@media (max-width: 1399px) {
  .site-nav a {
    font-size: 2.25em;
  }
}

@media (max-width: 767px) {
  .site-nav a {
    font-size: 1.625em;
  }
}

@media (hover: hover) {
  .site-nav a:hover {
    -webkit-text-stroke-color: #00EB9B;
  }
  .site-nav a:hover:after {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.site-nav-active .main-container {
  opacity: 0;
}

.site-nav-active .site-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav-active .site-nav li {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.site-nav-active header {
  padding-right: 7px;
}

.site-nav-active .site-nav-toggle span {
  background-color: transparent;
}

.site-nav-active .site-nav-toggle span:before, .site-nav-active .site-nav-toggle span:after {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.site-nav-active .site-nav-toggle span:before {
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
}

.site-nav-active .site-nav-toggle span:after {
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(-45deg);
          transform: translate(-50%, 50%) rotate(-45deg);
}

.loader-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.loader-wrap img {
  width: 60px;
  height: auto;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: rotateLogo 2s infinite linear;
          animation: rotateLogo 2s infinite linear;
}

@-webkit-keyframes rotateLogo {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateLogo {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  color: #000;
  font-family: 'Roboto', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  background-color: #181818;
  color: #FFF;
  font-family: 'Roboto', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
}

body::-webkit-scrollbar {
  width: 0px;
}

body::-webkit-scrollbar-button {
  width: 0px;
  height: 5px;
}

body::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(157, 157, 157, 0.3);
  border: 0;
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(157, 157, 157, 0.5);
}

@media (max-width: 1199px) {
  body {
    font-size: 14px;
  }
}

.site-nav-active {
  overflow-y: hidden;
}

::-moz-selection {
  background-color: #00EB9B;
  color: #181818;
}

::selection {
  background-color: #00EB9B;
  color: #181818;
}

.cursor {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #00EB9B;
  background: radial-gradient(100% 100% at 70% 100%, #00EB9B 0%, #CAFFED 100%);
  -webkit-box-shadow: 0px 0px 40px 10px rgba(0, 235, 155, 0.8), 0px 0px 10px #00EB9B, 0px 0px 15px #00EB9B, 0px 0px 20px #00EB9B, 0px 0px 25px #00EB9B, 0px 0px 30px #00EB9B, 0px 0px 100px 20px #00EB9B;
          box-shadow: 0px 0px 40px 10px rgba(0, 235, 155, 0.8), 0px 0px 10px #00EB9B, 0px 0px 15px #00EB9B, 0px 0px 20px #00EB9B, 0px 0px 25px #00EB9B, 0px 0px 30px #00EB9B, 0px 0px 100px 20px #00EB9B;
  position: fixed;
  pointer-events: none;
  -webkit-transition: -webkit-box-shadow .3s ease;
  transition: -webkit-box-shadow .3s ease;
  transition: box-shadow .3s ease;
  transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
  z-index: 1000;
}

@media (hover: none) {
  .cursor {
    display: none;
  }
}

.cursor.active {
  -webkit-box-shadow: 0px 0px 40px rgba(0, 235, 155, 0.8), 0px 0px 10px #00EB9B, 0px 0px 15px #00EB9B, 0px 0px 20px #00EB9B, 0px 0px 25px #00EB9B, 0px 0px 30px #00EB9B, 0px 0px 100px 20px #00EB9B;
          box-shadow: 0px 0px 40px rgba(0, 235, 155, 0.8), 0px 0px 10px #00EB9B, 0px 0px 15px #00EB9B, 0px 0px 20px #00EB9B, 0px 0px 25px #00EB9B, 0px 0px 30px #00EB9B, 0px 0px 100px 20px #00EB9B;
}

@-webkit-keyframes ui-spinner-rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ui-spinner-rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes ui-spinner-rotate-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ui-spinner-rotate-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.ui-spinner {
  position: relative;
  border-radius: 100%;
}

.ui-spinner .side {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}

.ui-spinner .side .fill {
  border-radius: 999px;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.ui-spinner .side-left {
  left: 0;
}

.ui-spinner .side-left .fill {
  left: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-animation-name: ui-spinner-rotate-left;
          animation-name: ui-spinner-rotate-left;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

.ui-spinner .side-right {
  left: 50%;
}

.ui-spinner .side-right .fill {
  left: -100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-animation-name: ui-spinner-rotate-right;
          animation-name: ui-spinner-rotate-right;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}

.ui-spinner {
  width: 46px;
  height: 46px;
  background: #9d9d9d;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.ui-spinner .side .fill {
  background: #00EB9B;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  opacity: 0.8;
}

.ui-spinner:after {
  content: "";
  background: transparent;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  top: 9px;
  left: 9px;
  display: block;
}

.rolly-scroll-bar {
  background-color: rgba(157, 157, 157, 0.3);
}

.rolly-scroll-bar-thumb {
  background-color: #00EB9B;
}

.rolly-scroll-bar.y-scroll {
  width: 10px;
}

h1 {
  font-size: 2.875em;
}

h2 {
  font-size: 2.25em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.375em;
}

h5 {
  font-size: 1.125em;
}

h6 {
  font-size: 1em;
  letter-spacing: 0.25em;
}

span {
  font-size: 100%;
}

p, a, li, span {
  font-size: inherit;
  margin: 0px;
  padding: 0px;
}

b, strong {
  font-weight: bold;
}

.text-stroke {
  font-size: 60px;
  color: transparent;
  -webkit-text-stroke-color: #00EB9B;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
}

.text-stroke-bold {
  -webkit-text-stroke-width: 2px;
}

.double-line {
  border: 1px solid #00EB9B;
  -webkit-box-shadow: 0px 7px 1px #00EB9B;
          box-shadow: 0px 7px 1px #00EB9B;
}

.title-bg-sub {
  position: relative;
}

.title-bg-sub > span {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  -webkit-text-stroke-width: 1px;
  text-transform: uppercase;
  font-family: 'Cairo', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 900;
  font-size: 0.8em;
  letter-spacing: 0.21875em;
  line-height: 110%;
  position: absolute;
  width: 100%;
  left: -.1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  white-space: nowrap;
  z-index: -1;
}

[class^="title-icon-"] {
  width: 1.12em;
  height: 1.12em;
  margin-right: 2.3vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 575px) {
  [class^="title-icon-"] {
    display: none;
  }
}

.title-icon-left {
  background-image: url("../images/title-icon002.svg");
}

.title-icon-right {
  background-image: url("../images/title-icon001.svg");
}

.title-icon-center {
  background-image: url("../images/title-icon003.svg");
}

.double-line-title {
  font-family: 'Noto Sans JP', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 3.75em;
  margin-bottom: 1em;
}

@media (max-width: 1679px) {
  .double-line-title {
    font-size: 3em;
  }
}

@media (max-width: 1199px) {
  .double-line-title {
    font-size: 2.25em;
    -webkit-text-stroke-width: 1px;
  }
}

@media (max-width: 767px) {
  .double-line-title {
    font-size: 1.75em;
  }
}

.double-line-title > span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 1em;
  line-height: 1.36667;
  letter-spacing: 0.39167em;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .double-line-title > span {
    font-weight: 900;
  }
}

@media (max-width: 767px) {
  .double-line-title > span {
    letter-spacing: 0.3em;
  }
}

.double-line-title:before, .double-line-title:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #00EB9B;
  -webkit-box-shadow: 0px 7px 1px #00EB9B;
          box-shadow: 0px 7px 1px #00EB9B;
}

.double-line-title:before {
  margin-right: 2.3vw;
}

.double-line-title:after {
  margin-left: calc(2.3vw / 2);
}

.double-line-title-left,
.underline-title,
.rectangle-title {
  font-size: 3em;
}

@media (max-width: 1679px) {
  .double-line-title-left,
  .underline-title,
  .rectangle-title {
    font-size: 2.25em;
  }
}

@media (max-width: 1199px) {
  .double-line-title-left,
  .underline-title,
  .rectangle-title {
    font-size: 1.75em;
  }
}

@media (max-width: 767px) {
  .double-line-title-left,
  .underline-title,
  .rectangle-title {
    font-size: 1.5em;
  }
}

.double-line-title-left {
  margin-bottom: 1.875em;
}

@media (max-width: 1679px) {
  .double-line-title-left {
    -webkit-text-stroke-width: 1px;
  }
}

.double-line-title-left:before {
  display: none;
}

.double-line-title-left > span {
  padding-left: 0;
}

@media (min-width: 768px) {
  .double-line-title-left > span {
    letter-spacing: 0.48958em;
  }
}

.double-line-title-left [class^="title-icon-"] {
  width: 1.45em;
  height: 1.45em;
}

.double-line-title-left .title-bg-sub > span {
  font-size: 1em;
}

.underline-title {
  position: relative;
  padding-bottom: 1.04em;
  margin-bottom: 0.73em;
}

.underline-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 224px;
  height: 1px;
  background-color: #00EB9B;
}

.underline-title > span {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-size: 1em;
  line-height: 120%;
  letter-spacing: 0.25em;
}

.underline-title .title-bg-sub > span {
  font-size: 0.83em;
  letter-spacing: 0.175em;
  margin-left: 0.85em;
  top: auto;
  bottom: -15px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.rectangle-title {
  border-top: 1px solid #00EB9B;
  border-bottom: 1px solid #00EB9B;
  margin-bottom: 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 10px 0;
}

.rectangle-title:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #00EB9B;
}

.rectangle-title span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.rectangle-title span:first-of-type {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 900;
  font-size: 1em;
  line-height: 1.47917;
  letter-spacing: 0.42708em;
  text-indent: 0.42708em;
  margin-left: -0.42708em;
  margin-right: -0.42708em;
  color: #00EB9B;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .rectangle-title span:first-of-type {
    font-weight: 700;
    letter-spacing: 0.375em;
    text-indent: 0.375em;
  }
}

.rectangle-title span:nth-of-type(2) {
  padding: 0 0.75em;
  text-transform: uppercase;
  font-family: 'Cairo', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 700;
  font-size: 0.75em;
  line-height: 110%;
  letter-spacing: 0.08em;
  -webkit-text-stroke-color: #FFF;
}

@media (max-width: 767px) {
  .rectangle-title span:nth-of-type(2) {
    opacity: 0.5;
    font-weight: 900;
  }
}

.rectangle-title-right:after {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.rectangle-title-right span {
  text-align: right;
}

.rectangle-title-right span:first-of-type {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.rectangle-title-right span:nth-of-type(2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.icon-hover {
  position: relative;
}

.icon-hover:before, .icon-hover:after {
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.icon-hover:after {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

@media (hover: hover) {
  .icon-hover:hover:before {
    opacity: 0;
  }
  .icon-hover:hover:after {
    opacity: 1;
  }
}

.icon-arrow:after {
  content: "\e900";
  color: #00eb9b;
  font-weight: normal;
}

.icon-facebook:after {
  content: "\e905";
  color: #00eb9b;
}

.icon-youtube:after {
  content: "\e90a";
  color: #00eb9b;
}

.icon-arrow-long:after {
  content: "\e901";
  color: #00eb9b;
}

.a-reset {
  text-decoration: none;
}

.a-reset:active, .a-reset:hover, .a-reset:visited, .a-reset:focus {
  text-decoration: none;
  outline: 0;
}

[class^="btn"] {
  cursor: pointer;
}

.btn-glowing {
  border: 1px solid #00EB9B;
  display: inline-block;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.27778em;
  text-indent: 0.27778em;
  padding: 11px 40px;
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #00EB9B;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.btn-glowing:active, .btn-glowing:hover, .btn-glowing:visited, .btn-glowing:focus {
  text-decoration: none;
  outline: 0;
}

@media (min-width: 768px) {
  .btn-glowing {
    min-width: 260px;
  }
}

.btn-glowing:hover {
  background-color: #00EB9B;
  color: #000;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 235, 155, 0.6);
          box-shadow: 0px 0px 20px rgba(0, 235, 155, 0.6);
}

@media (min-width: 1680px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1524px;
  }
}

@media (max-width: 575px) {
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding: 0 20px;
  }
}

.main-container {
  opacity: 1;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  padding-top: calc(58px + 8vh);
}

@media (max-width: 991px) {
  .main-container {
    padding-top: calc(30px + 30px);
  }
}

.showcase__item {
  position: relative;
  font-size: 24px;
}

@media (max-width: 1679px) {
  .showcase__item {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .showcase__item {
    font-size: 16px;
  }
}

.showcase__info {
  padding: 33px 30px 24px 23px;
  margin-top: -10vh;
  position: relative;
  background-image: url("../images/dot-bg.svg");
  background-color: rgba(58, 58, 58, 0.7);
  background-size: 62%;
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .showcase__info {
    margin-top: -50px;
  }
}

.showcase__img {
  width: 100%;
  padding-top: calc(100% / 478 * 330);
  position: relative;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  opacity: 0.3;
}

@media (hover: none) {
  .showcase__img {
    opacity: 0.6;
  }
}

.showcase__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.showcase__tag {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 700;
  font-size: 1em;
  line-height: 169%;
  letter-spacing: 0.20833em;
  text-indent: 0.20833em;
  padding: 0 14px;
  color: #373737;
  background-color: #fff;
  display: inline-block;
  margin-bottom: 6.8vh;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

@media (max-width: 767px) {
  .showcase__tag {
    margin-bottom: 30px;
  }
}

.showcase__date, .showcase__title {
  text-align: right;
}

.showcase__date {
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1.16667;
  letter-spacing: 0.27778em;
  margin-bottom: 1.11111em;
}

.showcase__title {
  font-weight: 700;
  line-height: 169%;
  letter-spacing: 0.1em;
}

.showcase__title span {
  display: block;
}

@media (min-width: 576px) {
  .showcase__title span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (hover: hover) {
  .showcase__item:hover .showcase__info {
    background-color: rgba(0, 235, 155, 0.7);
  }
  .showcase__item:hover .showcase__tag {
    color: #00EB9B;
  }
  .showcase__item:hover .showcase__img {
    opacity: 1;
  }
}

.nas-article {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 400;
}

.nas-article h1:not([class]), .nas-article h2:not([class]), .nas-article h3:not([class]), .nas-article h4:not([class]), .nas-article h5:not([class]), .nas-article h6:not([class]) {
  font-weight: bold;
}

.nas-article h1:not([class]) {
  font-size: 2.1em;
  line-height: 1.47222;
  margin-bottom: 0.83333em;
}

.nas-article h2:not([class]) {
  font-size: 1.4em;
  line-height: 1.5;
  letter-spacing: 0.11875em;
  margin-bottom: 0.83333em;
}

.nas-article h3:not([class]), .nas-article h4:not([class]), .nas-article h5:not([class]), .nas-article h6:not([class]) {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.nas-article h3:not([class]) {
  font-size: 1.1em;
  margin-bottom: 1.11111em;
}

.nas-article h4:not([class]), .nas-article h5:not([class]), .nas-article h6:not([class]) {
  font-size: 1em;
  margin-bottom: 1.25em;
}

.nas-article p {
  font-size: 1em;
  line-height: 2.11765;
  letter-spacing: 0.11765em;
}

.nas-article p:not(:last-of-type) {
  margin-bottom: 1em;
}

.nas-article ul, .nas-article ol {
  -webkit-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}

.nas-article li {
  font-size: 1em;
  line-height: 2;
}

.nas-article img {
  max-width: 100%;
}

.nas-article p img {
  display: block;
}

.nas-article a {
  color: #FFF;
  text-decoration: none;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

.nas-article a:active, .nas-article a:hover, .nas-article a:visited, .nas-article a:focus {
  text-decoration: none;
  outline: 0;
}

@media (hover: hover) {
  .nas-article a:hover {
    color: #00EB9B;
  }
}

.nas-article {
  width: 100%;
  padding: 0;
}

.nsdi-article-system {
  margin-bottom: 60px;
}

.nas-wrapper > .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 767px) {
  .nas-image-wrapper ~ .nas-article-wrapper .nas-article {
    margin-top: 1em;
  }
}

.nsdi-article-system {
  overflow: visible;
}

main {
  min-height: 50vh;
}

.contact-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 1.0625em;
  font-weight: 400;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  line-height: 2.11765;
  letter-spacing: 0.11765em;
}

.contact-info__item:not(:last-of-type) {
  margin-bottom: 0.4em;
}

@media (max-width: 767px) {
  .contact-info__item {
    line-height: 1.76471;
  }
}

.contact-info__item a {
  color: inherit;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

@media (hover: hover) {
  .contact-info__item a:hover {
    color: #00EB9B;
  }
}

.contact-info__item [class^="icon"] {
  font-size: 1.17em;
  line-height: 1.82353;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0.66em;
}

.pages-header {
  position: relative;
}

@media (min-width: 1200px) {
  .pages-header {
    margin-bottom: 10vh;
  }
}

@media (max-width: 1199px) {
  .pages-header {
    margin-bottom: 50px;
  }
}

.pages-header__img {
  position: relative;
  width: 100%;
  padding-top: calc(100% / 1494 * 795);
  overflow: hidden;
}

.pages-header__img:before, .pages-header__img:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#161616), to(rgba(29, 29, 29, 0)));
  background: linear-gradient(0deg, #161616 0%, rgba(29, 29, 29, 0) 100%);
  background-blend-mode: darken;
  opacity: 0.4;
  z-index: 1;
}

.pages-header img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pages-header__text {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  font-family: 'Merriweather Sans', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 800;
  font-size: 3.3vw;
  line-height: 1.25;
  letter-spacing: 0.04688em;
  padding: 0 4vw 3.38vw;
}

@media (max-width: 991px) {
  .pages-header__text {
    font-size: 2em;
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .pages-header__text {
    font-size: 1.125em;
  }
}

.tabs-nav {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .tabs-nav {
    margin: 8vh 0;
  }
  .tabs-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 -35px;
  }
  .tabs-nav li {
    padding: 0 35px;
  }
  .tabs-nav a {
    font-size: 1.0625em;
    line-height: 2.11765;
    letter-spacing: 0.11765em;
    color: #b5b5b6;
    padding-bottom: 9px;
    display: block;
    position: relative;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
  }
  .tabs-nav a:hover, .tabs-nav a.active {
    color: #00EB9B;
  }
  .tabs-nav a.active:after {
    content: '';
    position: absolute;
    width: 64px;
    height: 4px;
    border-radius: 3px;
    background-color: #00EB9B;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 1199px) {
  .tabs-nav {
    margin: 35px 0;
  }
}

.selectric {
  background-color: transparent;
  border: 1px solid #00EB9B;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.selectric .label {
  color: #00EB9B;
  font-size: 1em;
  letter-spacing: 0.11765em;
}

.selectric .button {
  background-color: transparent;
  background-image: url("../images/select.svg");
  background-size: 40%;
  background-position: center center;
  background-repeat: no-repeat;
}

.selectric .button:after {
  display: none;
}

.selectric-hover .selectric {
  border-color: #00EB9B;
}

.selectric-open .selectric,
.selectric-focus .selectric {
  border-color: #00EB9B;
}

.selectric-scroll {
  overscroll-behavior: none;
}

.selectric-scroll::-webkit-scrollbar {
  width: 0px;
}

.selectric-scroll::-webkit-scrollbar-button {
  width: 0px;
  height: 5px;
}

.selectric-scroll::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 5px;
}

.selectric-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(157, 157, 157, 0.3);
  border: 0;
  border-radius: 5px;
}

.selectric-scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(157, 157, 157, 0.5);
}

.selectric-items {
  border: 1px solid #00EB9B;
  border-top: 0;
}

.selectric-items ul {
  padding: 3px 18px;
  margin-bottom: 0;
  background-color: #222;
  border-top: 0;
  white-space: nowrap;
}

.selectric-items li:not(:last-of-type) {
  border-bottom: 1px solid #00EB9B;
}

.selectric-items li.highlighted {
  background-color: transparent;
  color: #00EB9B;
}

.selectric-items li {
  color: #00EB9B;
  padding: 15px 14px;
  display: block;
  color: #FFF;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-size: 1.125em;
  line-height: 100%;
  letter-spacing: 0.02em;
  font-weight: 400;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

.selectric-items li:hover {
  color: #00EB9B;
  font-weight: 700;
  background-color: transparent;
}

[data-page="home"] .section-about {
  padding-bottom: 7vh;
}

[data-page="home"] .section-about .btn-wrap {
  margin-top: 6vh;
}

[data-page="home"] .section-about .paragraph {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 400;
  font-size: 1.0625em;
  line-height: 2.11765;
  letter-spacing: 0.11765em;
  margin-bottom: 20vh;
  padding: 25vh 0;
}

@media (min-width: 992px) {
  [data-page="home"] .section-about .paragraph {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 1199px) {
  [data-page="home"] .section-about .paragraph.paragraph-first {
    padding-top: 10vh;
  }
}

[data-page="home"] .showcase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 3vh;
  margin-left: -15px;
  margin-right: -15px;
}

[data-page="home"] .showcase__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  [data-page="home"] .showcase__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 50px;
  }
  [data-page="home"] .showcase__item:nth-of-type(even) {
    top: 80px;
  }
}

@media (min-width: 1200px) {
  [data-page="home"] .showcase__item {
    margin-bottom: 12vh;
  }
  [data-page="home"] .showcase__item:nth-of-type(even) {
    top: 18.8vh;
  }
}

@media (min-width: 992px) {
  [data-page="home"] .showcase__info {
    padding: 33px 24px 18px 35px;
    width: 77%;
  }
}

[data-page="home"] .showcase__date {
  letter-spacing: 0.07em;
  margin-bottom: 0.88889em;
}

[data-page="home"] .showcase__title {
  letter-spacing: 0.07em;
}

[data-page="home"] .showcase__img {
  padding-top: calc(100% / 607 * 329);
}

[data-page="home"] .section-showcase .btn-wrap {
  text-align: center;
}

@media (max-width: 1199px) {
  [data-page="home"] .section-showcase .btn-wrap {
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  [data-page="home"] .section-showcase .btn-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  [data-page="home"] .section-services {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 -15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.services__item {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

@media (min-width: 768px) {
  .services__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
  }
}

@media (min-width: 1200px) {
  .services__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
    margin-bottom: 11.5vh;
  }
}

@media (hover: none) {
  .services__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.services__item .stretched-link:after {
  z-index: 10;
}

.services__img {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 125%;
}

@media (min-width: 1200px) {
  .services__img {
    padding-top: calc(100% / 350 * 750);
  }
}

@media (hover: none) {
  .services__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.services__img:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

@media (hover: none) {
  .services__img:after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.services__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 255, 189, 0.7);
  background-image: url("../images/dot-bg-02.svg");
  background-size: contain;
  background-position: center center;
  mix-blend-mode: screen;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.services__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (hover: hover) {
  .services__caption {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 10;
    width: calc(100% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (hover: none) {
  .services__caption {
    background-color: rgba(58, 58, 58, 0.7);
    z-index: 1;
    position: relative;
    width: 94%;
    margin: -50px auto 0;
    padding: 30px 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.services__title {
  letter-spacing: 0.27778em;
  text-indent: 0.27778em;
  font-weight: 500;
  line-height: 1.47222;
  color: #FFF;
  font-size: 1.25em;
}

@media (min-width: 768px) {
  .services__title {
    font-size: 1.375em;
  }
}

@media (min-width: 992px) {
  .services__title {
    font-size: 1.5em;
  }
}

@media (min-width: 1680px) {
  .services__title {
    font-size: 2.25em;
  }
}

@media (hover: none) {
  .services__title {
    margin-bottom: 20px;
    background-color: #FFF;
    color: rgba(0, 0, 0, 0.7);
    font-weight: bold;
    padding: 5px 25px;
    display: inline-block;
    letter-spacing: 0.13889em;
    text-indent: 0.13889em;
  }
}

@media (hover: hover) {
  .services__title {
    padding: 15px 35px;
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
}

.services__intro {
  font-size: 1.0625em;
  font-weight: 400;
  letter-spacing: 0.11765em;
  line-height: 2.11765;
  color: #040404;
}

@media (hover: hover) {
  .services__intro {
    overflow: hidden;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    padding: 0 48px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
  .services__intro div {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}

@media (hover: none) {
  .services__intro {
    color: #FFF;
  }
}

@media (hover: hover) {
  .services__item:hover .services__title {
    background-color: #fff;
    color: #00EB9B;
    margin-bottom: 1.58em;
  }
  .services__item:hover .services__img:before {
    opacity: 1;
  }
  .services__item:hover .services__intro {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 215px;
            flex: 1 1 215px;
    padding: 15px 48px;
  }
}

.kv-swiper .swiper-slide > div {
  width: 100%;
  position: relative;
  padding-top: calc(100% / 1494 * 835);
}

@media (max-width: 991px) {
  .kv-swiper .swiper-slide > div {
    padding-top: calc(100% / 769 * 1410);
  }
}

.kv-swiper .swiper-slide > div img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.kv-swiper-wrap {
  position: relative;
  margin-bottom: 10.7vh;
}

.kv-swiper-nav {
  position: absolute;
  font-size: 106px;
  top: 50%;
  z-index: 1000;
  font-size: 106px;
  cursor: pointer;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media (max-width: 1199px) {
  .kv-swiper-nav {
    font-size: 40px;
  }
  .kv-swiper-nav i {
    font-weight: bold;
  }
}

.kv-swiper-prev {
  left: 30px;
  -webkit-transform: translate(-100%, -50%) rotate(180deg);
          transform: translate(-100%, -50%) rotate(180deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.kv-swiper-prev i {
  vertical-align: middle;
}

@media (max-width: 1199px) {
  .kv-swiper-prev {
    left: 25px;
  }
}

.kv-swiper-next {
  right: 30px;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

@media (max-width: 1199px) {
  .kv-swiper-next {
    right: 25px;
  }
}

.swiper-button-disabled {
  opacity: 0;
}

.model-wrap {
  left: 0;
  top: 0;
  z-index: -1;
  position: absolute;
}

@media (max-width: 1199px) {
  .model-wrap {
    opacity: 1;
    position: -webkit-sticky;
    position: sticky;
    height: 60vh;
    top: 15vh;
  }
}

@media (min-width: 1200px) {
  [data-page="showcase"] .pages-header {
    margin-bottom: 13vh;
  }
}

[data-page="showcase"] .showcase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -40px;
}

@media (max-width: 1199px) {
  [data-page="showcase"] .showcase {
    margin-bottom: -30px;
  }
}

[data-page="showcase"] .showcase__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 15px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  [data-page="showcase"] .showcase__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  [data-page="showcase"] .showcase__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

[data-page="showcase-page"] .nas-article {
  font-size: 1.0625em;
}

[data-page="showcase-page"] .article-title {
  font-size: 2.25em;
  color: #00EB9B;
  letter-spacing: 0.38889em;
  font-weight: 400;
  font-family: 'Noto Sans JP', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  line-height: 1.36111;
  margin-bottom: 1.66em;
}

@media (max-width: 1679px) {
  [data-page="showcase-page"] .article-title {
    font-size: 1.75em;
  }
}

@media (max-width: 1199px) {
  [data-page="showcase-page"] .article-title {
    font-size: 1.5em;
    letter-spacing: 0.19444em;
  }
}

@media (max-width: 767px) {
  [data-page="showcase-page"] .article-title {
    letter-spacing: 0.08333em;
  }
}

[data-page="showcase-page"] .main__body {
  margin-bottom: -20px;
}

[data-page="services"] footer {
  margin-top: 0;
}

@media (min-width: 1200px) {
  [data-page="services"] .pages-header {
    margin-bottom: 13vh;
  }
}

[data-page="services"] .nas-article-wrapper {
  z-index: 1;
  position: relative;
}

[data-page="services"] .nsdi-article-system {
  margin-bottom: 10vh;
}

@media (max-width: 767px) {
  [data-page="services"] .nsdi-article-system {
    margin-bottom: 50px;
  }
}

[data-page="services"] .nas-image-wrapper img {
  width: 100%;
}

@media (max-width: 1199px) {
  [data-page="services"] .nas-image-wrapper {
    margin-top: 30px;
  }
}

[data-page="services"] .rectangle-title {
  margin-top: 0.625em;
}

[data-page="services"] .nas-article > div {
  font-size: 1.0625em;
}

@media (min-width: 1200px) {
  [data-page="services"] .nas-article > div {
    padding: 0 2.86vw;
  }
}

@media (min-width: 1200px) {
  [data-page="services"] .rectangle-title {
    margin-right: -75px;
  }
  [data-page="services"] .rectangle-title-right {
    margin-right: 0;
    margin-left: -75px;
  }
}

[data-page="about"] .nas-image-wrapper img {
  max-width: 100%;
}

@media (max-width: 991px) {
  [data-page="about"] .nas-image-wrapper {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  [data-page="about"] .nas-image-wrapper > div {
    margin-right: -30px;
  }
}

[data-page="about"] .nas-wrapper > .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

[data-page="about"] .nas-article > div {
  font-size: 1.5em;
}

@media (max-width: 1199px) {
  [data-page="about"] .nas-article > div {
    font-size: 1.25em;
  }
}

@media (max-width: 767px) {
  [data-page="about"] .nas-article > div {
    font-size: 1.125em;
  }
}

[data-page="about"] .nas-article > div p {
  letter-spacing: 0.08333em;
  line-height: 2.08333;
}

[data-page="about"] .nsdi-article-system {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  [data-page="about"] .nsdi-article-system {
    margin-bottom: 50px;
  }
}

[data-page="about"] .main__body {
  margin-bottom: -10px;
}

[data-page="about"] .main__head {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
}

[data-page="about"] .header-title {
  font-size: 3em;
  font-weight: 900;
  line-height: 1.83333;
  letter-spacing: 0.16667em;
  text-align: justify;
}

@media (max-width: 1679px) {
  [data-page="about"] .header-title {
    font-size: 2.25em;
  }
}

@media (max-width: 1199px) {
  [data-page="about"] .header-title {
    font-size: 1.75em;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  [data-page="about"] .header-title {
    font-size: 1.5em;
    font-weight: 700;
  }
}

[data-page="about"] .header-paragraph {
  font-size: 1.0625em;
  font-weight: 400;
  line-height: 2.11765;
  letter-spacing: 0.11765em;
  margin: 10vh 0;
}

@media (max-width: 767px) {
  [data-page="about"] .header-paragraph {
    margin: 80px 0;
  }
}

.threesixty-wrap {
  text-align: center;
  position: relative;
}

.threesixty-title {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 40%;
  font-size: 1.0625em;
  font-weight: 400;
  line-height: 2.11765;
  letter-spacing: 0.11765em;
}

.threesixty {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.threesixty img {
  max-width: 100%;
  z-index: 1;
  width: 95%;
}

.threesixty-label {
  padding-top: 0px;
  width: 75px;
  opacity: 0;
  display: none;
}

.threesixty.loaded ~ .threesixty-label {
  opacity: 1;
}

[data-page="contact"] section {
  margin: 50px 0;
}

[data-page="contact"] section:first-of-type {
  margin-top: 0;
}

@media (min-width: 1200px) {
  [data-page="contact"] .pages-header {
    margin-bottom: 10vh;
  }
  [data-page="contact"] .info-section {
    margin: 10.9vh 0 8vh;
  }
  [data-page="contact"] .form-section {
    margin: 8vh 0 10vh;
  }
}

[data-page="contact"] .info-section__logo {
  width: 100%;
  max-width: 478px;
}

@media (min-width: 992px) {
  [data-page="contact"] .info-section__logo {
    width: calc(100% + 15px);
  }
}

@media (max-width: 991px) {
  [data-page="contact"] .info-section__logo {
    width: 60vw;
    max-width: 250px;
  }
}

@media (min-width: 992px) {
  [data-page="contact"] .info-section .contact-info {
    margin-bottom: 35px;
  }
}

@media (max-width: 991px) {
  [data-page="contact"] .info-section .contact-info {
    margin: 35px 0;
  }
}

@media (max-width: 991px) {
  [data-page="contact"] .map-iframe {
    margin-bottom: 35px;
  }
}

.map-iframe {
  position: relative;
  background-blend-mode: darken;
}

.map-iframe:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  margin-bottom: 30px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .form-group {
    margin-bottom: 50px;
  }
  .form-group:last-of-type {
    margin-bottom: 0;
  }
}

.form-group .col-form-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  font-size: 1.0625em;
  font-weight: 400;
  line-height: 2.11765;
  letter-spacing: 0.11765em;
  padding: 0;
}

.form-group .col-form-field {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.form-group .form-control {
  background-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  outline: 0;
  border-color: #00EB9B;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.11765;
  letter-spacing: 0.11765em;
  color: #FFF;
}

.form-group .form-control:focus {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 235, 155, 0.3);
          box-shadow: 0px 0px 20px rgba(0, 235, 155, 0.3);
}

.form-group input.form-control {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

@media (min-width: 1400px) {
  .form-group input.form-control {
    max-width: 480px;
  }
}

@media (max-width: 767px) {
  .form-group input.form-control {
    width: 100%;
  }
}

.form-group input.form-control:focus {
  -webkit-box-shadow: 0px 10px 14px -9px rgba(0, 235, 155, 0.4);
          box-shadow: 0px 10px 14px -9px rgba(0, 235, 155, 0.4);
}

.form-group textarea {
  height: 238px;
  min-height: 238px;
  max-height: 300px;
}

.form-group p.form-help {
  font-size: 0.875em;
  margin-top: .3em;
  letter-spacing: 0.11765em;
  color: #00EB9B;
}

@media (max-width: 767px) {
  .form-group .btn-glowing {
    width: 100%;
  }
}

footer {
  background-color: #000;
  padding-top: 73px;
  padding-bottom: 30px;
  margin-top: 10vh;
}

@media (max-width: 767px) {
  footer {
    padding-top: 50px;
  }
}

.footer-head {
  border-top: 1px solid #00EB9B;
  border-bottom: 1px solid #00EB9B;
  font-family: 'Cairo', 'Noto Sans TC', "Microsoft JhengHei", "PingFang TC" ,"蘋果儷中黑",'sans-serif' , Arial;
  font-display: swap;
  font-weight: 700;
  position: relative;
  font-size: 3em;
  padding: 34px 0;
}

.footer-head:before, .footer-head:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #00EB9B;
  left: 0;
}

.footer-head:before {
  top: 7px;
}

.footer-head:after {
  bottom: 7px;
}

@media (min-width: 768px) {
  .footer-head {
    font-size: 3.75em;
  }
}

@media (min-width: 1200px) {
  .footer-head {
    margin-bottom: 0;
    padding: 19px 0;
    font-size: 5.625em;
  }
}

@media (min-width: 1680px) {
  .footer-head {
    font-size: 7.5em;
  }
}

.footer-head__greeting {
  font-size: 0.4em;
  color: #00EB9B;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .footer-head__greeting {
    margin-bottom: 0;
  }
}

@media (min-width: 1680px) {
  .footer-head__greeting {
    margin-left: -15px;
  }
}

.footer-head__title {
  font-size: 1em;
  -webkit-text-stroke-color: #FFF;
  line-height: 100%;
  letter-spacing: 0.05em;
}

@media (min-width: 1200px) {
  .footer-head__title {
    margin-bottom: 0;
  }
}

.footer-head__row > div:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 1199px) {
  .footer-head__row > div:nth-of-type(2) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer-head .btn-arrow {
  font-size: 0.74em;
  line-height: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 1199px) {
  .footer-head .icon-arrow {
    font-weight: bold;
  }
}

.footer-body {
  padding: 35px 0 20px;
}

@media (min-width: 1200px) {
  .footer-body {
    padding: 50px 0;
  }
}

.footer-body__logo {
  max-width: 220px;
}

@media (min-width: 1200px) {
  .footer-body__logo {
    max-width: 261px;
  }
}

@media (max-width: 767px) {
  .footer-body .contact-info {
    margin-top: 30px;
  }
}

.footer-body .contact-info__item {
  margin-bottom: 0;
}

.footer-body .contact-info a {
  color: #9d9d9d;
}

@media (hover: hover) {
  .footer-body .contact-info a:hover {
    color: #00EB9B;
  }
}

.footer-foot {
  position: relative;
}

.footer-foot__copyright {
  font-weight: 400;
  font-size: 0.875em;
  line-height: normal;
  color: #9d9d9d;
  letter-spacing: 0.14286em;
}

@media (min-width: 1200px) {
  .footer-foot__copyright {
    text-align: center;
  }
}

.footer-foot__copyright span {
  letter-spacing: 0.03em;
}

.footer-foot__copyright a {
  color: inherit;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

@media (hover: hover) {
  .footer-foot__copyright a:hover {
    color: #00EB9B;
  }
}

@media (min-width: 1200px) {
  .footer-foot .social-link {
    position: absolute;
    right: 0;
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

.social-link {
  margin: 0 -6px;
}

@media (max-width: 1199px) {
  .social-link {
    margin-bottom: 20px;
  }
}

.social-link__item {
  display: inline-block;
  padding: 0 6px;
}

.social-link [class^="icon"] {
  font-size: 1.75em;
}

.social-link a {
  color: #FFF;
}

.bg-player {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: -2;
}

.bg-player video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.test-box {
  width: 100px;
  height: 100px;
}

@media (min-width: 1200px) {
  .test-box {
    background-color: #00EB9B;
  }
}

@media (min-width: 576px) and (max-width: 1199px) {
  .test-box {
    background-color: #000;
  }
}

.test-img {
  width: 480px;
  height: 200px;
  background: url("../images/img_test.jpg");
  background-size: cover;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}
/*# sourceMappingURL=style.css.map */