@charset "UTF-8";
.headroom {
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.headroom--unpinned {
  display: block;
}

.mfp-bg {
  opacity: 0.8;
}

.btn-container .com-btn {
  display: inline-block;
  padding: 16px 24px;
  background-color: #ED6B21;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 991px) {
  .btn-container .com-btn {
    font-size: 0.875em;
  }
}

.btn-container .com-btn span {
  margin-right: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-container .com-btn:after {
  content: "";
  background-image: url("../img/icon/button-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 24px;
  height: 13px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-container .com-btn:hover {
  opacity: 1;
}

.btn-container .com-btn:hover span {
  opacity: 0.8;
}

.btn-container .com-btn:hover:after {
  -webkit-animation-name: btnArrow;
          animation-name: btnArrow;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}

.swiper-pagination-bullet-active {
  position: relative;
  background-color: #5f666b;
  width: 47px;
  border-radius: 8px;
}

.swiper-pagination-bullet-active:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  background-color: #ED6B21;
  border-radius: 8px;
  -webkit-animation-name: fillY;
          animation-name: fillY;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.com-row {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991px) {
  .com-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 991px) {
  .com-row.row-normal .col-bg {
    width: calc(100% - 16px);
    margin-right: -48px;
  }
}

.com-row.row-normal .col-bg:after {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

@media screen and (max-width: 991px) {
  .com-row.row-normal .col-bg:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  }
}

.com-row.row-normal .col-desc {
  margin-left: -80px;
  padding-right: 90px;
}

@media screen and (max-width: 991px) {
  .com-row.row-normal .col-desc {
    width: 100%;
    margin-top: -30px;
    margin-left: 8px;
    padding-right: 30px;
  }
}

.com-row.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 991px) {
  .com-row.row-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 991px) {
  .com-row.row-reverse .col-bg {
    width: calc(100% - 16px);
    margin-left: -48px;
  }
}

.com-row.row-reverse .col-bg:after {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

@media screen and (max-width: 991px) {
  .com-row.row-reverse .col-bg:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  }
}

.com-row.row-reverse .col-desc {
  margin-right: -80px;
  padding-left: 90px;
}

@media screen and (max-width: 991px) {
  .com-row.row-reverse .col-desc {
    width: 100%;
    margin-top: -30px;
    margin-right: 8px;
    padding-left: 30px;
  }
}

.com-row .col-bg {
  position: relative;
  width: 66%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: auto;
}

@media screen and (max-width: 991px) {
  .com-row .col-bg {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
}

.com-row .col-bg:before {
  content: "";
  display: block;
}

@media (max-width: 991px) {
  .com-row .col-bg:before {
    padding-top: 58.30904%;
  }
}

@media (min-width: 992px) {
  .com-row .col-bg:before {
    padding-top: 55.98086%;
  }
}

.com-row .col-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.com-row .col-bg video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.com-row .col-desc {
  position: relative;
  width: calc(34% + 80px);
}

@media screen and (max-width: 991px) {
  .com-row .col-desc .txt-wrap {
    padding-right: 42px;
  }
}

.com-row .col-desc .txt-wrap h3 {
  font-size: 3.5em;
  line-height: 0.85;
  text-transform: uppercase;
}

.com-row .col-desc .txt-wrap p {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 1.25em;
  line-height: 1.4;
  font-family: "Roboto", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", "Arial Unicode MS", "Arial";
}

@media screen and (max-width: 991px) {
  .com-row .col-desc .txt-wrap p {
    margin-top: 16px;
    font-size: 1em;
  }
}

.com-row .col-desc .txt-wrap .btn-container {
  margin-top: 24px;
}

@media screen and (max-width: 991px) {
  .com-row .col-desc .txt-wrap .btn-container {
    margin-top: 16px;
  }
}

.subscription {
  background-color: #000000;
  background-image: url("../img/bg-subscription.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 991px) {
  .subscription .container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

.subscription .wrapper {
  padding-top: 94px;
  padding-bottom: 137px;
  text-align: center;
  max-width: 610px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .subscription .wrapper {
    padding-top: 48px;
    padding-bottom: 81px;
  }
}

.subscription .icon img {
  display: inline-block;
  width: 64px;
}

.subscription h3 {
  padding: 26px 0;
  font-size: 3em;
  line-height: 0.9;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  .subscription h3 {
    font-size: 2em;
  }
}

.subscription .input-group {
  border: 1px solid #ffffff;
  max-width: 404px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.subscription .input-group input {
  padding: 16px;
  color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: transparent;
  font-size: 1em;
  line-height: 1.2;
  font-family: "Roboto", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", "Arial Unicode MS", "Arial";
  border: 0;
}

.subscription .input-group input::-ms-input-placeholder {
  color: #ffffff;
}

.subscription .input-group input::-webkit-input-placeholder {
  color: #ffffff;
}

.subscription .input-group input:-ms-input-placeholder {
  color: #ffffff;
}

.subscription .input-group input::placeholder {
  color: #ffffff;
}

.subscription .input-group button {
  width: 56px;
  height: 56px;
  background-color: #ED6B21;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  cursor: pointer;
}

.subscription .input-group button:after {
  content: "";
  background-image: url("../img/icon/send-email.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.subscription .input-group button:hover:after {
  -webkit-animation-name: sendMail;
          animation-name: sendMail;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.com-popup .wrapper {
  position: relative;
  padding: 30px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .com-popup .wrapper {
    padding: 16px;
  }
}

.com-popup .btn-close {
  background-image: url("../img/icon/close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: -20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .com-popup .btn-close {
    right: 16px;
  }
}

.com-popup .btn-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sec-title {
  padding: 100px 0;
  margin-top: 100px;
  background-image: url("../img/logo-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1286px;
  color: #ffffff;
  text-align: center;
}

.theme-light .sec-title {
  background-image: url("../img/logo-bg-b.png");
}

@media screen and (max-width: 991px) {
  .sec-title {
    padding: 60px 0;
    background-size: 490px;
  }
}

.sec-title .title {
  font-size: 5em;
  margin-bottom: 8px;
  line-height: 0.95;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  .sec-title .title {
    font-size: 3em;
    margin-bottom: 16px;
  }
}

.sec-title .desc {
  font-size: 1.5em;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .sec-title .desc {
    font-size: 1.25em;
  }
}

.com-accordion .item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 991px) {
  .com-accordion .item {
    padding: 16px 0;
  }
}

.com-accordion .item.active .sign:before, .com-accordion .item.active .sign:after {
  width: 0;
}

.com-accordion .item.active .sign .line {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: #ffffff;
}

.com-accordion .item:not(.active) .title:hover {
  color: #ED6B21;
}

.com-accordion .title {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.com-accordion .sign {
  position: relative;
  width: 24px;
  height: 24px;
  top: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .com-accordion .sign {
    width: 16px;
    height: 16px;
    top: 4px;
  }
}

.com-accordion .sign .line {
  position: absolute;
  left: 10.5px;
  top: 0;
  background-color: #ED6B21;
  width: 3px;
  height: 24px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 991px) {
  .com-accordion .sign .line {
    height: 16px;
    width: 2px;
    left: 7px;
  }
}

.com-accordion .sign:before, .com-accordion .sign:after {
  content: "";
  position: absolute;
  top: 10px;
  background-color: #ED6B21;
  height: 3px;
  width: 8px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 991px) {
  .com-accordion .sign:before, .com-accordion .sign:after {
    width: 5px;
    top: 6.5px;
    height: 2px;
  }
}

.com-accordion .sign:before {
  left: 0;
}

.com-accordion .sign:after {
  right: 0;
}

.com-accordion .question {
  font-size: 2em;
  line-height: 1.2;
  padding-right: 48px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 991px) {
  .com-accordion .question {
    font-size: 1.25em;
    padding-right: 24px;
  }
}

.com-accordion .answer {
  display: none;
  padding-top: 8px;
  font-size: 1.125em;
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  .com-accordion .answer {
    font-size: 1em;
  }
}

@-webkit-keyframes btnArrow {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes btnArrow {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fillY {
  from {
    opacity: 1;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}

@keyframes fillY {
  from {
    opacity: 1;
    width: 0;
  }
  to {
    opacity: 1;
    width: 100%;
  }
}

@-webkit-keyframes sendMail {
  from {
    opacity: 0;
    -webkit-transform: translate(-5px, 5px);
            transform: translate(-5px, 5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes sendMail {
  from {
    opacity: 0;
    -webkit-transform: translate(-5px, 5px);
            transform: translate(-5px, 5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/*# sourceMappingURL=common.css.map */