@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.icon {
  width: 25px;
  height: 25px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.icon-facebook {
  background-image: url(../images/icon-facebook.png);
}
.icon-line {
  background-image: url(../images/icon-line.png);
}
.icon-en {
  width: 68px;
  background-image: url(../images/EN.png);
}
.icon-ch {
  width: 68px;
  background-image: url(../images/CH.png);
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000;
  opacity: 0.6;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 41px;
  height: 41px;
  line-height: 41px;
  position: absolute;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-preloader {
  background-image: url(../images/ajax-loader-b.png);
  width: 32px;
  height: 32px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  margin: 0 auto;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  background-position: center top;
  image-rendering: -webkit-optimize-contrast;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color, opacity, background-color 0.5s ease;
  -o-transition: color, opacity, background-color 0.5s ease;
  -webkit-transition: color, opacity, background-color 0.5s ease;
  transition: color, opacity, background-color 0.5s ease;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
  margin: 0 auto;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 18px;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

.scroll--hidden {
  overflow: hidden;
}

#container {
  overflow: hidden;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 20px;
  position: relative;
}

.text-block {
  display: inline-block;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.is-toggle {
  display: block;
}

.in-view {
  opacity: 0;
}

/* fade image in while loading and show a spinner as background image (good for progressive images) */
.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
  transition: opacity 300ms;
  background: #f7f7f7;
}

.site-content {
  position: relative;
  z-index: 2;
}

.plus-header {
  padding-top: 110px;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}
.site-header .container {
  height: 110px;
}
.site-header .logo {
  width: 312px;
  height: 56px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background-image: url(../images/logo.png);
  position: absolute;
  display: none;
  top: 24px;
  left: 40px;
  z-index: 2;
}
.site-header.sticky {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.site-header.sticky .container {
  height: 96px;
}
.site-header.sticky .logo {
  display: block;
  top: 20px;
}
.site-header .top-link {
  position: absolute;
  top: 5px;
  right: 40px;
}
.site-header .top-link a {
  font-size: 15px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
  border-bottom: 1px solid #000;
  display: inline-block;
}
.site-header .top-link a:active, .site-header .top-link a.active {
  color: #cb171d;
  border-color: #cb171d;
}
@media (hover: hover) {
  .site-header .top-link a:hover {
    color: #cb171d;
    border-color: #cb171d;
  }
}
.site-header .bottom-link {
  margin-top: 30px;
  text-align: center;
}
.site-header .bottom-link a {
  font-size: 20px;
  line-height: 32px;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid #000;
  display: inline-block;
}
.site-header .bottom-link a:active, .site-header .bottom-link a.active {
  color: #cb171d;
  border-color: #cb171d;
}
@media (hover: hover) {
  .site-header .bottom-link a:hover {
    color: #cb171d;
    border-color: #cb171d;
  }
}

.site-menu {
  position: absolute;
  top: 48px;
  right: 30px;
}
.site-menu .menu-close {
  display: none;
}
.site-menu .menu-toggle {
  display: none;
}
.site-menu .bottom-link {
  display: none;
}

.main-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.main-menu li {
  position: relative;
  padding: 0 10px;
}
.main-menu a {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
}
.main-menu a:active, .main-menu a.active {
  color: #cb171d;
}
@media (hover: hover) {
  .main-menu a:hover {
    color: #cb171d;
  }
}

.section {
  position: relative;
  z-index: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.section.in-view {
  opacity: 1;
  animation: none;
}
.section-anchor {
  position: absolute;
  top: -110px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  pointer-events: none;
  background-color: transparent;
}
.section a {
  text-decoration: none;
}
.section .section-header {
  margin: 0 auto;
}
.section .section-content {
  margin: 0 auto;
}

.parent {
  position: relative;
}

.sprite {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
}

@keyframes sprite {
  from {
    background-position: 0 0%;
  }
  to {
    background-position: 0 100%;
  }
}
.index-bg {
  background-image: url(../images/index-bg.jpg);
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-position: center top;
}

.kv {
  position: relative;
  z-index: 1;
}
.kv .bg {
  background-image: url(../images/kv-bg.png);
  background-position: center top;
  background-size: auto 100%;
}
.kv .container {
  padding: 0;
  max-width: 1280px;
}
.kv .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  opacity: 0;
  font-size: 0;
}
.kv .kv-slogan {
  opacity: 1;
}
.kv.active .kv-slogan {
  -moz-animation: zoomIn 0.8s both;
  -webkit-animation: zoomIn 0.8s both;
  animation: zoomIn 0.8s both;
  animation-delay: .1s;
}
.kv.active .kv-sub {
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: .5s;
}
.kv.active .kv-bottom {
  -moz-animation: fadeInRight 0.8s both;
  -webkit-animation: fadeInRight 0.8s both;
  animation: fadeInRight 0.8s both;
  animation-delay: .6s;
}
.kv.active .kv-side {
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: .7s;
}
.kv.active .kv-layer1 {
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: .8s;
}
.kv.active .kv-layer2 {
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: 1.1s;
}

.index-info .unit-1 {
  position: absolute;
  top: 68%;
  left: 6%;
  width: 60px;
}
.index-info .unit-1 img {
  opacity: .8;
}
.index-info .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 960px;
  margin: 0 auto;
}
.index-info .grid-left {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.index-info .grid-right {
  width: 50%;
  padding-top: 50px;
}
.index-info .image {
  max-width: 440px;
  margin: 0 auto;
}
.index-info .info {
  font-size: 18px;
  line-height: 36px;
  letter-spacing: .025em;
  font-weight: 500;
  padding-left: 24px;
  position: relative;
  color: #000;
}
.index-info .info + .info {
  margin-top: 40px;
}
.index-info .info-header {
  color: #595757;
  line-height: 32px;
}
.index-info .info-header:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 3px solid #cb171d;
  border-radius: 50%;
}
.index-info .info-content {
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.index-info .info .text-lg {
  font-size: 30px;
  letter-spacing: 0;
}
.index-info .info .text-lg span {
  display: inline-block;
}
.index-info .info .text-md {
  font-size: 24px;
}
.index-info .info .text-small {
  font-size: 18px;
  line-height: 32px;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  color: #595757;
}
.index-info .info .line {
  font-size: 16px;
  line-height: 24px;
  position: relative;
  top: -4px;
  margin: 0 2px;
}
.index-info .info a {
  color: #595757;
  text-decoration: underline;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.index-info .info a:active, .index-info .info a.active {
  color: #cb171d;
  text-decoration: none;
}
@media (hover: hover) {
  .index-info .info a:hover {
    color: #cb171d;
    text-decoration: none;
  }
}

.index-video .unit {
  position: absolute;
}
.index-video .unit.fadeInUp {
  -moz-animation: zoomIn 0.8s both;
  -webkit-animation: zoomIn 0.8s both;
  animation: zoomIn 0.8s both;
  opacity: 1;
}
.index-video .unit-1 {
  top: 68%;
  left: 90%;
  width: 60px;
}
.index-video .unit-1 img {
  opacity: .9;
}
.index-video .unit-2 {
  top: 5%;
  left: 88%;
  width: 110px;
}
.index-video .unit-3 {
  top: 90%;
  left: 5%;
  width: 125px;
}
.index-video .container {
  padding-top: 120px;
  padding-bottom: 60px;
}
.index-video .section-header {
  width: 270px;
  height: 60px;
  margin: 0 auto 30px;
  background-size: 100% auto;
  background-image: url(../images/page-title.png);
  color: #fff;
  font-size: 36px;
  line-height: 56px;
  letter-spacing: .1em;
  text-indent: .1em;
  font-weight: 700;
  text-align: center;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.index-video .section-content {
  max-width: 800px;
  margin: 0 auto;
}

.index-sdgs .container {
  padding-bottom: 50px;
}
.index-sdgs .image {
  max-width: 460px;
  margin: 0 auto;
}

.page-bg {
  min-height: 100svh;
}
.page-bg .site-header .logo {
  display: block;
}
.page-bg .site-header.sticky .site-menu {
  right: 30px;
}
.page-bg .site-menu {
  right: 220px;
}

.page {
  position: relative;
}
.page-bg {
  background-color: #fff;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-position: center top;
}
.page-banner {
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}
@media (min-width: 1001px) {
  .page-banner {
    position: absolute;
    top: -74px;
    right: -10px;
    width: 184px;
  }
}
@media (max-width: 1000px) {
  .page-banner .lg-view {
    display: none;
  }
  .page-banner .sm-view {
    display: block;
  }
}
.page-content {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
.page-box {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  border-radius: 20px;
  padding: 0;
  background-color: #fff;
  padding: 48px 20px 90px;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: .001em;
  color: #000;
  min-height: calc(100svh - 110px - 160px);
}
.page-box:before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 180px;
  height: 180px;
  background-image: url(../images/page-bottom.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.page-inner {
  width: calc(100% - 110px * 2);
  max-width: 940px;
  margin: 0 auto;
}
.page-title {
  width: 270px;
  height: 60px;
  background-size: 100% auto;
  background-image: url(../images/page-title.png);
  color: #fff;
  font-size: 36px;
  line-height: 56px;
  letter-spacing: .1em;
  text-indent: .1em;
  font-weight: 700;
  text-align: center;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  margin: 0 auto 40px;
}
.page .unit {
  position: absolute;
  width: 125px;
}
.page .unit.fadeInUp {
  -moz-animation: zoomIn 0.8s both;
  -webkit-animation: zoomIn 0.8s both;
  animation: zoomIn 0.8s both;
  opacity: 1;
}
.page .unit-1 {
  top: 35%;
  right: -63px;
}
.page .unit-1.fadeInUp {
  animation-delay: .1s;
}
.page .unit-2 {
  top: 70%;
  left: -63px;
}
.page .unit-2.fadeInUp {
  animation-delay: .3s;
}
.page .unit-3 {
  top: 70%;
  right: -63px;
}
.page .unit-4 {
  top: 90%;
  left: -63px;
}
.page p {
  text-align: justify;
}
.page p + p {
  margin-top: 20px;
}
.page a {
  color: #cb171d;
  text-decoration: underline;
}

.page1 .unit-1 {
  top: 22.5%;
}
.page1 .unit-2 {
  top: 45%;
}
.page1 .unit-3 {
  top: 65%;
}
.page1 .image {
  margin-bottom: 24px;
}
.page1 .block {
  margin: 24px 0;
}
.page1 .block img {
  max-width: 108px;
  margin: 0 auto;
  display: block;
}
.page1 .block p {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}

.page2 .unit-1 {
  top: 20%;
}
.page2 .unit-2 {
  top: 35%;
}
.page2 .unit-3 {
  top: 60%;
}
.page2 .unit-4 {
  top: 80%;
}
.page2 .image {
  max-width: 580px;
  margin: 40px auto;
}

.page3 .unit-1 {
  top: 20%;
}
.page3 .unit-2 {
  top: 35%;
}
.page3 .unit-3 {
  top: 60%;
}
.page3 .unit-4 {
  top: 80%;
}
.page3 .tabs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 36px -4px;
}
.page3 .tabs .nav-item {
  margin: 4px;
}
.page3 .tabs .nav-link {
  position: relative;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  padding: 0 10px;
  border: 0;
  background-color: #000;
  text-align: center;
  text-decoration: none;
  border-radius: 40px;
  min-width: 124px;
}
.page3 .tabs .nav-link:active, .page3 .tabs .nav-link.active {
  color: #fff;
  background-color: #cb171d;
}
@media (hover: hover) {
  .page3 .tabs .nav-link:hover {
    color: #fff;
    background-color: #cb171d;
  }
}
.page3 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.page3 .item:nth-child(2n - 1) {
  background-color: #fdfbfa;
}
.page3 .item + .item {
  margin-top: 50px;
}
.page3 .item-anchor {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.page3 .item .image {
  width: 360px;
}
.page3 .item .content {
  width: calc(100% - 360px);
  padding: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.page3 .item .main-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: .1em;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.page3 .item .sub-text {
  font-size: 20px;
  line-height: 32px;
}
.page3 .item .text-small {
  font-size: 18px;
  letter-spacing: 0;
}
.page3 .item .highlight {
  color: #cb171d;
}

.page4 .tabs-header {
  position: relative;
}
.page4 .tabs-header .tabs-anchor {
  position: absolute;
  top: -120px;
  left: 0;
  pointer-events: none;
}
.page4 .tabs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 36px -4px;
}
.page4 .tabs .nav-item {
  margin: 4px;
}
.page4 .tabs .nav-link {
  position: relative;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  padding: 0 10px;
  border: 0;
  background-color: #000;
  text-align: center;
  text-decoration: none;
  border-radius: 40px;
  min-width: 136px;
}
.page4 .tabs .nav-link.active {
  color: #fff;
  background-color: #cb171d;
}
.page4 .item {
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.page4 .item .image {
  width: 240px;
}
.page4 .item .content {
  width: calc(100% - 240px);
  padding-left: 40px;
}
.page4 .item .main-text {
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: .1em;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.page4 .item .sub-text {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #cb171d;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.page4 .item .text-small {
  font-size: 18px;
  letter-spacing: 0;
}
.page4 .item .text {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #a77310;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.page4 .list li {
  position: relative;
  padding-left: 24px;
}
.page4 .list li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(../images/list-a.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.page5 .title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  margin-bottom: 24px;
}
.page5 p {
  text-align: center;
}

.site-footer {
  position: relative;
  color: #000;
  width: 100%;
}
.site-footer .container {
  padding-top: 30px;
  padding-bottom: 30px;
  max-width: 1200px;
}
.site-footer .container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #000;
  opacity: .5;
}
.site-footer .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
.site-footer .grid-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.site-footer .grid-right {
  padding-left: 30px;
}
.site-footer .title {
  margin-right: 10px;
}
.site-footer .kcg-logo {
  max-width: 200px;
  display: block;
  position: relative;
  top: -4px;
}
.site-footer a:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .site-footer a:hover {
    filter: brightness(1.2);
  }
}

.menu-toggle {
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 11;
  background-size: contain;
  background-image: url(../images/menu-toggle.png);
}

.menu-close {
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  z-index: 12;
  background-size: contain;
  background-image: url(../images/menu-close.png);
}

.side-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
}
.side-sticky.is-view .btn-top {
  display: block;
}
.side-sticky.change-bottom {
  position: absolute;
  bottom: 100px;
}
.side-sticky a {
  display: block;
  cursor: pointer;
}
.side-sticky .btn {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.side-sticky .icon-cta {
  display: block;
  overflow: hidden;
  width: 100px;
  height: 100px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  cursor: pointer;
  background-size: contain;
  background-image: url(../images/btn-cta.png);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}
.side-sticky .btn-top {
  display: none;
  width: 50px;
  margin: 20px auto 0;
}
.side-sticky .icon-top {
  display: block;
  overflow: hidden;
  width: 50px;
  height: 50px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  cursor: pointer;
  background-size: contain;
  border-radius: 50%;
  background-image: url(../images/icon-top.png);
}

.floating {
  animation-name: floating;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, -10px);
  }
  to {
    transform: translate(0, 0);
  }
}
.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
@media (min-width: 1921px) {
  body {
    background-size: 5760px auto;
    background-image: url(../images/bg-lg.jpg);
  }

  .page-bg {
    background-image: url(../images/bg-lg.jpg);
    background-size: 5760px auto;
  }
}
@media (max-width: 1240px) and (min-width: 751px) {
  .site-header .logo {
    left: 20px;
  }
  .site-header .top-link {
    right: 20px;
  }

  .site-menu {
    right: 10px;
  }

  .page-bg .site-menu {
    right: 180px;
  }
}
@media (max-width: 1140px) and (min-width: 1001px) {
  .site-header .logo {
    width: 27.368421052vw;
  }

  .page-bg .site-menu {
    right: 15.789473684vw;
  }

  .main-menu li {
    padding: 0 8px;
  }
  .main-menu a {
    font-size: 1.754385964vw;
  }

  .page-banner {
    width: 16.140350877vw;
  }
}
@media (max-width: 1000px) and (min-width: 751px) {
  .page-box {
    padding-bottom: 120px;
  }
  .page-inner {
    width: calc(100% - 60px * 2);
  }
  .page-banner img {
    -moz-animation: zoomIn 0.8s both;
    -webkit-animation: zoomIn 0.8s both;
    animation: zoomIn 0.8s both;
    animation-delay: .1s;
  }

  .page3 .item {
    display: block;
  }
  .page3 .item + .item {
    margin-top: 40px;
  }
  .page3 .item .image {
    width: 100%;
  }
  .page3 .item .content {
    width: 100%;
    padding: 20px;
    display: block;
  }

  .page4 .tabs-header .tabs-anchor {
    top: -80px;
  }
  .page4 .item {
    display: block;
  }
  .page4 .item .image {
    width: 100%;
    margin-bottom: 20px;
  }
  .page4 .item .content {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 1000px) {
  .plus-header {
    padding-top: 60px;
  }

  .site-header .container {
    height: 60px;
    max-width: 100%;
  }
  .site-header .logo {
    width: 245px;
    height: 44px;
    top: 8px;
    left: 15px;
  }
  .site-header.sticky .container {
    height: 60px;
  }
  .site-header.sticky .logo {
    top: 8px;
  }
  .site-header .top-link {
    display: none;
  }
  .site-header .bottom-link {
    display: block;
    -moz-animation: fadeInUp 0.3s both;
    -webkit-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
    animation-delay: 0.6s;
  }

  .site-menu {
    top: 0;
    right: 0;
  }
  .site-menu .menu-toggle {
    display: block;
  }
  .site-menu .menu-close {
    display: block;
  }
  .site-menu.is-view .menu-panel {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding-top: 90px;
    padding-bottom: 65px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    min-height: -webkit-fill-available;
  }
  .site-menu.is-view .menu-panel .main-menu li {
    -moz-animation: fadeInUp 0.3s both;
    -webkit-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(5) {
    animation-delay: 0.5s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(6) {
    animation-delay: 0.6s;
  }
  .site-menu.is-view .menu-panel .menu-close {
    -moz-animation: fadeInDown 0.3s both;
    -webkit-animation: fadeInDown 0.3s both;
    animation: fadeInDown 0.3s both;
  }

  .menu-panel {
    display: none;
    background-color: #fff;
    background-image: url(../images/menu-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
  }

  .main-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .main-menu li {
    position: relative;
    margin: 0;
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .main-menu li + li {
    margin-top: 30px;
  }

  .site-footer {
    font-size: 12px;
    line-height: 24px;
  }
  .site-footer .container {
    max-width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .site-footer .grid {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
  .site-footer .grid-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 8px;
  }
  .site-footer .grid-right {
    padding-left: 0;
  }
  .site-footer .title {
    margin-right: 8px;
  }
  .site-footer .kcg-logo {
    max-width: 160px;
    top: -2px;
    margin: 0;
  }
}
@media (max-width: 750px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  .side-sticky {
    bottom: 10px;
    right: 5px;
  }
  .side-sticky .icon-cta {
    width: 80px;
    height: 80px;
  }
  .side-sticky .btn-top {
    width: 40px;
    margin: 16px auto 0;
  }
  .side-sticky .icon-top {
    width: 40px;
    height: 40px;
  }
  .side-sticky.change-bottom {
    bottom: 50px;
  }

  .index-bg {
    background-image: url(../images/index-bg_s.jpg);
    background-size: auto 100%;
  }

  .kv .bg {
    background-image: url(../images/kv-bg_s.png);
    background-size: 100% auto;
  }
  .kv .container {
    padding: 0;
    max-width: 750px;
  }

  .index-info .unit-1 {
    display: none;
  }
  .index-info .grid {
    display: block;
    width: calc(100% - 20px * 2);
    max-width: 480px;
    margin: 0 auto;
  }
  .index-info .grid-left {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .index-info .grid-right {
    width: 100%;
    padding-top: 0;
  }
  .index-info .image {
    max-width: 320px;
  }
  .index-info .info {
    text-align: center;
    padding-left: 0;
  }
  .index-info .info + .info {
    margin-top: 20px;
  }
  .index-info .info-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .index-info .info-header:before {
    position: relative;
    top: 0;
    display: inline-block;
    margin-right: 8px;
    margin-left: -26px;
  }
  .index-info .info .text-md {
    font-size: 20px;
  }
  .index-info .info .text-small {
    font-size: 16px;
  }
  .index-info .info .line {
    font-size: 14px;
  }
  .index-info .info .price {
    display: inline-block;
  }

  .index-video .unit-1 {
    display: none;
  }
  .index-video .unit-2 {
    top: 5%;
    left: 88%;
    width: 55px;
  }
  .index-video .unit-3 {
    top: 90%;
    left: 5%;
    width: 64px;
  }
  .index-video .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .index-video .section-header {
    width: 216px;
    height: 48px;
    font-size: 30px;
    line-height: 48px;
    margin: 0 auto 24px;
  }
  .index-video .section-content {
    max-width: 100%;
  }

  .index-sdgs .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .index-sdgs .image {
    max-width: 280px;
  }

  .page-bg {
    background-image: url(../images/bg_s.jpg);
    background-size: cover;
    background-attachment: fixed;
  }
  .page-banner img {
    -moz-animation: zoomIn 0.8s both;
    -webkit-animation: zoomIn 0.8s both;
    animation: zoomIn 0.8s both;
    animation-delay: .1s;
  }
  .page-content {
    max-width: 750px;
  }
  .page-box {
    border-radius: 16px;
    padding: 24px 20px;
    min-height: calc(100svh - 60px - 250px);
    width: calc(100% - 8px * 2);
  }
  .page-box:before {
    right: -15px;
    width: 90px;
    height: 90px;
  }
  .page-inner {
    width: calc(100% - 16px * 2);
    -moz-animation: fadeInUp 0.8s both;
    -webkit-animation: fadeInUp 0.8s both;
    animation: fadeInUp 0.8s both;
    animation-delay: .8s;
  }
  .page-title {
    width: 216px;
    height: 48px;
    font-size: 30px;
    line-height: 48px;
    margin: 0 auto 24px;
    -moz-animation: fadeInUp 0.8s both;
    -webkit-animation: fadeInUp 0.8s both;
    animation: fadeInUp 0.8s both;
    animation-delay: .4s;
  }
  .page .unit {
    width: 64px;
  }
  .page .unit-1 {
    top: 20%;
    right: -40px;
  }
  .page .unit-2 {
    top: 45%;
    left: -40px;
  }
  .page .unit-3 {
    top: 70%;
    right: -40px;
  }
  .page .unit-4 {
    top: 80%;
    left: -40px;
  }

  .page1 .unit-1 {
    top: 20%;
  }
  .page1 .unit-2 {
    top: 45%;
  }
  .page1 .unit-3 {
    top: 70%;
  }

  .page2 .unit-1 {
    top: 20%;
  }
  .page2 .unit-2 {
    top: 45%;
  }
  .page2 .unit-3 {
    top: 70%;
  }
  .page2 .unit-4 {
    top: 80%;
  }
  .page2 .image {
    margin: 24px auto;
  }

  .page3 .unit-1 {
    top: 20%;
  }
  .page3 .unit-2 {
    top: 45%;
  }
  .page3 .unit-3 {
    top: 70%;
  }
  .page3 .unit-4 {
    top: 80%;
  }
  .page3 .tabs .nav-link {
    line-height: 36px;
    border-radius: 36px;
    padding: 0 8px;
    min-width: 112px;
  }
  .page3 .item {
    display: block;
  }
  .page3 .item + .item {
    margin-top: 40px;
  }
  .page3 .item .image {
    width: 100%;
  }
  .page3 .item .content {
    width: 100%;
    padding: 20px;
    display: block;
  }

  .page4 .tabs-header .tabs-anchor {
    top: -80px;
  }
  .page4 .tabs .nav-link {
    line-height: 36px;
    padding: 0 8px;
    border-radius: 36px;
    min-width: 136px;
  }
  .page4 .item {
    display: block;
  }
  .page4 .item .image {
    width: 100%;
    margin-bottom: 20px;
  }
  .page4 .item .content {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .index-info .grid {
    width: 100%;
  }

  .page .unit {
    display: none;
  }
  .page-box {
    width: 100%;
  }
  .page-box:before {
    right: -16px;
    bottom: -72px;
  }
  .page-inner {
    width: calc(100% - 8px * 2);
  }
}
