@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: 0.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;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    transparent
  );
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    transparent
  );
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    transparent
  );
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    transparent
  );
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 17px 31px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23989898'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23989898'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: relative;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 100%;
  background: #ddd;
  opacity: 1;
  border: 0;
  margin: 0 5px;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #1fb0a5;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #989898;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white
  .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black
  .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.15));
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.swiper-button-prev {
  background-image: url(../images/swiper-prev.png);
  left: 0;
}

.swiper-button-next {
  background-image: url(../images/swiper-next.png);
  right: 0;
}

.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;
}
.btn:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn:hover {
    filter: brightness(1.2);
  }
}

.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: 39px;
  height: 39px;
  background-image: url(../images/EN.png);
}
.icon-ch {
  width: 39px;
  height: 39px;
  background-image: url(../images/CH.png);
}

.form-control {
  padding: 0 20px;
  font-size: 48px;
  line-height: 48px;
  height: 48px;
  color: #000;
  font-size: 16px;
  background-color: #fff;
  border: 0;
  border-radius: 48px;
  width: 100%;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體",
    Helvetica, sans-serif, "Microsoft YaHei";
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.form-control::placeholder {
  color: #999;
  opacity: 1;
}

.radio-group {
  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;
  margin-top: 10px;
}

.radio-item {
  position: relative;
}
.radio-item + .radio-item {
  margin-left: 25px;
}
.radio-item input[type="radio"] {
  display: none;
}
.radio-item label {
  padding: 0 0 0 30px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  display: block;
  color: #4b4b4b;
  cursor: pointer;
}
.radio-item label:before {
  content: "";
  display: inline-block;
  background-color: #fff;
  border: 1px solid #d4af37;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.radio-item label:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background-color: #d4af37;
  box-sizing: border-box;
  left: 4px;
  top: 4px;
  display: none;
}
.radio-item input:checked + label:after {
  display: block;
}
.radio-item input + label {
  transition: 0.7s ease;
}

.checkbox-group {
  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;
}

.checkbox-item {
  position: relative;
  display: block;
}
.checkbox-item input {
  display: none;
}
.checkbox-item label {
  padding: 4px 0 4px 50px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  display: block;
  color: #666;
}
.checkbox-item label:before {
  content: "";
  display: inline-block;
  background-color: #fff;
  border: 1px solid #d4af37;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.checkbox-item label:after {
  content: "";
  background-image: url(../images/icon-check.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  position: absolute;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: #d4af37;
  box-sizing: border-box;
  left: 0;
  top: 0;
  display: none;
}
.checkbox-item input:checked + label:after {
  display: block;
}
.checkbox-item input + label {
  transition: 0.7s ease;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: 42px;
  padding: 0 1.75em 0 0.75em;
  font-weight: 400;
  line-height: 42px;
  color: #4b4b4b;
  font-size: 15px;
  vertical-align: middle;
  background: #fff url(../images/select-arrow.svg) right 0.75rem center/12px 8px
    no-repeat;
  border: 1px solid #707070;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
}

.form {
  font-size: 16px;
}
.form .form-control {
  border-radius: 48px;
}
.form a {
  color: #d4af37;
}
.form .form-section {
  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;
}
.form .form-section + .form-section {
  margin-top: 14px;
}
.form .form-label {
  width: 300px;
  font-size: 18px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.form .form-content {
  width: calc(100% - 300px);
}
.form .check-row {
  padding-top: 25px;
}
.form .check-row a {
  text-decoration: underline;
  color: #d4af37;
}
.form .check-row + .check-row {
  padding-top: 10px;
}
.form .action {
  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;
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", Arial,
    Helvetica, sans-serif, "Microsoft YaHei";
  min-width: 320px;
  overflow-x: hidden;
  color: #333;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  -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: 1440px;
  /* 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: 1;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}
.site-header .container {
  max-width: 1280px;
}
.site-header .logo {
  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: block;
  top: 47px;
  left: 30px;
  z-index: 16;
  width: 150px;
  height: 35px;
}
.site-header.sticky {
  height: 60px;
  background-color: #e2e9b0ef;
  /* border-bottom: 2px solid #d4af37; */
}
@media (min-width: 1001px) {
  .site-header.sticky .main-menu a.plus-line {
    background-color: transparent;
  }
}

.site-menu {
  position: absolute;
  top: 40px;
  right: 25px;
}
.site-menu .menu-close {
  display: none;
}
.site-menu .menu-toggle {
  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;
  padding-right: 50px;
}
.main-menu li {
  position: relative;
  padding: 0 15px;
}
.main-menu a {
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 36px;
  color: #626161;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
}
.main-menu a.plus-line {
  background-color: #d4af37;
  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;
  color: #fff;
  padding-right: 16px;
  padding-left: 12px;
  border-radius: 36px;
}
.main-menu a.plus-line .icon-arrow {
  background-image: url(../images/menu-arrow.svg);
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.main-menu a.plus-line:active {
  color: #fff;
}
@media (hover: hover) {
  .main-menu a.plus-line:hover {
    color: #fff;
  }
}
.main-menu a.highlight {
  color: #000000;
  font-weight: 900;
}
.main-menu a:active {
  color: #000000;
  font-weight: 900;
}
@media (hover: hover) {
  .main-menu a:hover {
    color: #000000;
    font-weight: 900;
  }
}
.main-menu .active,
.main-menu .mPS2id-highlight-first {
  color: #000000;
  font-weight: 800;
}

.share-menu {
  position: absolute;
  top: 0;
  right: 0;
  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: 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;
}
.share-menu li {
  position: relative;
  padding: 0;
}
.share-menu a {
  display: block;
}
.share-menu a:active {
  opacity: 0.8;
}
@media (hover: hover) {
  .share-menu a:hover {
    opacity: 0.8;
  }
}

.section {
  position: relative;
  z-index: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background: transparent;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.025em;
  color: #000000;
  padding-top: 20px;
}
.section.in-view {
  opacity: 1;
  animation: none;
}
.section-anchor {
  position: absolute;
  top: -60px;
  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 {
  opacity: 0;
  font-size: 42px;
  line-height: 56px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #d4af37;
  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;
}
.section .section-header .icon-arrow {
  width: 37px;
  height: 37px;
  background-image: url(../images/heading-arrow.svg);
  background-size: 37px auto;
  margin-right: 16px;
  margin-top: 4px;
}
.section .section-header span {
  max-width: calc(100% - 37px - 16px);
}
.section .section-content {
  margin: 0 auto;
  opacity: 0;
}
.section.animated .section-header {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: 0.5s;
}
.section.animated .section-content {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: 1.5s;
}

.kv {
  position: relative;
  width: 100%;
  z-index: 0;
  padding: 0;
  background-color: transparent;
}
.kv .bg {
  background-image: url(../images/kv-bg.png);
  background-position: center top;
  background-size: 1920px auto;
  /* 添加水母飄動動畫 */
  animation: jellyfishFloat 22s infinite ease-in-out;
}
/* abbie定義水母飄動動畫 */
@keyframes jellyfishFloat {
  /* 起始位置：原始位置，無旋轉 */
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  /* 25%位置：向右上方移動並輕微順時針旋轉，模擬水母向右飄動 */
  25% {
    transform: translate(5px, -5px) rotate(-1deg);
  }
  /* 中間位置：向上移動到最高點，回到原始角度，模擬水母向上浮動 */
  50% {
    transform: translate(0, -5px) rotate(0deg);
  }
  /* 75%位置：向左上方移動並輕微逆時針旋轉，模擬水母向左飄動 */
  75% {
    transform: translate(-5px, -10px) rotate(0deg);
  }
  /* 結束位置：回到原始位置，無旋轉，完成一個循環 */
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* 手機版停用動畫 */
/* 當螢幕寬度小於 768px（手機）時，停用動畫以提升效能 */
@media (max-width: 768px) {
  .kv .bg {
    animation: none;
  }
}

.kv .container {
  padding: 0;
  max-width: 1300px;
}
.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 .layer img {
  width: 100%;
  height: auto;
}
.kv.active .kv-slogan {
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: 0.1s;
}
.kv.active .kv-sub {
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: 0.4s;
}
.kv.active .kv-light {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: 0.6s;
}
.kv.active .kv-light img {
  -moz-animation: fadeIn 2s both;
  -webkit-animation: fadeIn 2s both;
  animation: fadeIn 2s both;
  animation-delay: 0.6s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}
/* banner wave動畫 */
.banner {
  background-image: url("../images/wave-banner.png");
  background-size: 120% auto; /* 讓背景可以有滑動空間 */
  background-repeat: no-repeat;
  animation: wave 20s infinite linear;
  /* 
  border: 6px solid red; */
}

@media (max-width: 576px) {
  .banner {
    animation: none !important;
    background-image: none !important;
  }
}

/* .intro wave動畫 */
.speaker-animation {
  background-image: url("../images/wave-intro.png");
  background-size: 105% auto; /* 讓背景可以有滑動空間 */
  background-repeat: no-repeat;
  animation: wave 20s infinite linear;
  /* border: 5px solid red; */
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes wave {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@media (max-width: 768px) {
  /* .intro {
    animation: none;
  } */
}

.intro .container {
  /* padding-top: 85px; */
  /* padding-bottom: 85px; */
  max-width: 1150px;
}
/* 少於1200px 要加上padding 5%*/
@media (max-width: 1200px) {
  .intro .container {
    padding: 0 5%;
  }
}

.intro .top-block {
  /* padding-bottom: 70px; */
}
.intro .top-block .section-header {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 25px;
  opacity: 1;
}
.intro .top-block .section-content {
  padding: 0;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.025em;
  color: #fff;
  opacity: 1;
}
.intro .top-block .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.intro .top-block .grid-left {
  width: 60%;
}
/* abbie 3/27 調整手手 */
.intro .top-block .grid-right {
  position: relative;
  width: 100%;
  overflow: visible;
}
.intro .top-block .grid-right img {
  width: 1000px !important;
  max-width: none;
  position: absolute;

  top: 0;
}

@media (max-width: 900px) {
  .intro .top-block .grid-right img {
    width: 500px !important;
  }
}

.intro .top-block .heading {
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 16px;
  letter-spacing: 0.025em;
}
.intro .top-block .heading span {
  display: inline-block;
}
.intro .top-block p {
  text-align: justify;
}
.intro .top-block p + p {
  margin-top: 20px;
}
.intro .data .section-header {
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  color: #d4af37;
}
.intro .data .section-header .text-small {
  font-size: 16px;
  line-height: 24px;
  color: #d4af37;
  margin-left: 32px;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.intro .data .section-content {
  max-width: 1110px;
}
.intro .data .list {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin: -15px;
}
.intro .data .item {
  width: calc(100% / 4 - 15px * 2);
  margin: 15px;
  position: relative;
  color: #fff;
  text-align: center;
}
.intro .data .item-1 .image img {
  opacity: 0.5;
}
.intro .data .image {
  border-radius: 50%;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  position: relative;
}
.intro .data .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.intro .data .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}
.intro .data .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 36px;
}
.intro .data .top-text {
  font-size: 24px;
  line-height: 30px;
  min-height: 60px;
  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;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.5));
}
.intro .data .main-text {
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.5));
}
.intro .data .text-large {
  font-size: 80px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.025em;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.5));
}

.speaker {
  background-color: transparent;
}
.speaker .bg {
  /* 直接用css寫一顆球, 不使用設計師的背景 */
  /* background-image: url(../images/speaker-bg.png); */
  background-size: cover;
  animation: speakerMove 80s infinite linear;
}

@keyframes speakerMove {
  /* 0%：背景圖片的起始位置為 (0%, 0%)，即從左上角開始。 */
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 25% 25%;
  }
  /* 50%：動畫運行到一半時，背景位置會變為 (100%, 100%)，即背景圖片會移動到右下角。 */
  50% {
    background-position: 50% 50%;
  }
  /* 100%：動畫結束時，背景再次回到原點 (0%, 0%)，這樣就形成了一個循環。 */
  100% {
    background-position: 100% 100%;
  }
}
/* 手機版停用動畫 */
@media (max-width: 768px) {
  .speaker .bg {
    /* animation: none; */
  }
}

.speaker .container {
  padding-top: 0px;
  padding-bottom: 70px;
}
.speaker .section-header {
  margin-bottom: 40px;
}
.speaker .section-content {
  max-width: 1200px;
}
.speaker .landing-swiper-container {
  position: relative;
  margin: 0 auto;
  padding: 0 85px;
}
.speaker .l-swiper {
  z-index: 0;
}
.speaker .swiper-pagination {
  display: none;
}
.speaker .swiper-slide {
  width: calc(100% / 4);
}
.speaker .item {
  cursor: pointer;
  margin: 20px 15px;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  background-color: #0c3f6a;
  border: 3px solid #d4af37;
}
.speaker .item:active {
  box-shadow: 0 0 0 3px #d4af37, 0 12px 12px rgba(0, 0, 0, 0.45);
}
@media (hover: hover) {
  .speaker .item:hover {
    box-shadow: 0 0 0 3px #d4af37, 0 12px 12px rgba(0, 0, 0, 0.45);
  }
}

.gold-line {
  border: 1px solid #d4af37; /* 金色 */
  border: 1px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(45deg, #b8860b, #ffd700, #fff8dc, #daa520) border-box;
}
.gold-frame {
  border: 6px solid #d4af37; /* 金色 */
  border-radius: 20px; /* 圓角 */
  padding: 8px; /* 內距，避免內容貼邊 */
}

.gold-frame {
  border: 6px solid transparent;
  border-radius: 20px;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(45deg, #b8860b, #ffd700, #fff8dc, #daa520) border-box;
}

.speaker .image {
  position: relative;
  overflow: hidden;
}
.speaker .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.speaker .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker .image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/speaker-image-shadow.png);
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.speaker .content {
  position: relative;
  /* background-image: url(../images/speaker-item-bg.jpg); */
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 20px;
  min-height: 300px;

  /* abbie revise */
  /* overflow: hidden;
  background-color: #0000009e;
  border-bottom: 3px solid #d4af37; 
  border-left: 3px solid #d4af37;
  border-right: 3px solid #d4af37; */
}
/* 手機版 */
@media (max-width: 768px) {
  .speaker .content {
    min-height: 200px;
  }
}

/* 用偽元素加上去右下角邊框才不會被吃掉 */
.speaker .content::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* border-left: 2px solid #d4af37;
  border-right: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37; */
  border-top: none;
  pointer-events: none; /* 不影響點擊 */
  border-radius: 0 0 20px 0px; /* 可以加圓角 */
}
.speaker .main-text {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}
.speaker .main-text2 {
  font-size: 21px;
  line-height: 30px;
  font-weight: 480;
  margin-bottom: 8px;
}
.speaker .sub-text {
  font-size: 15px;
  line-height: 21px;
  letter-spacing: -0.025em;
}

.agenda .container {
  /* padding-top: 70px; */
  /* padding-bottom: 70px; */
  max-width: 1160px;
}
.agenda .section-header {
  margin-bottom: 20px;
  color: #d4af37;
}
.agenda .section-header .icon-arrow {
  background-image: url(../images/heading-arrow2.svg);
}
.agenda .top-text {
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.025em;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}
.agenda .top-text .hd {
  color: #d4af37;
}
.agenda .agenda-table {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
.agenda .agenda-table .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.agenda .agenda-table .section-anchor {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  font-size: 0;
}
.agenda .agenda-table .block {
  position: relative;
}
.agenda .tabs {
  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;
  max-width: 346px;
  margin: 0 auto 30px;
}
.agenda .tabs .btn {
  width: calc(100% / 2 - 8px * 2);
  margin: 0 8px;
  text-align: center;
  height: 48px;
  line-height: 44px;
  border-radius: 48px;
  border: 2px solid #d4af37;
  background-color: #fff;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  color: #d4af37;
}
.agenda .tabs .btn:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: calc(50% - 20px / 2);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #19968f transparent transparent transparent;
  opacity: 0;
}
.agenda .tabs .btn.active {
  background-color: #19968f;
  color: #fff;
  border-color: #19968f;
}
.agenda .tabs .btn.active:before {
  opacity: 1;
}

.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%;
  }
}
.registration {
  background-color: transparent;
}
.registration .bg {
  background-image: url(../images/registration-bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 1920px auto;
}
.registration .container {
  padding-top: 55px;
  padding-bottom: 70px;
}
.registration .section-header {
  margin-bottom: 45px;
  color: #d4af37;
}
.registration .section-header .icon-arrow {
  background-image: url(../images/heading-arrow2.svg);
}
.registration .form {
  max-width: 794px;
  border-radius: 15px;
  margin: 0 auto 110px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.24);
  border: 3px solid #d4af37;
  background-color: #fff;
}
.registration .btn-submit {
  position: relative;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.45);
  border-radius: 57px;
}
.registration .btn-submit .parent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 24.726477024%;
}
.registration .btn-submit .sprite {
  opacity: 0;
  background-image: url(../images/btn-submit_sprites.png);
}
.registration .btn-submit.active img {
  opacity: 0;
}
.registration .btn-submit.active .sprite {
  opacity: 1;
  animation: sprite 0.7s steps(9) forwards;
}
.registration .inner {
  padding: 30px 30px 40px;
  border-radius: 12px;
  max-width: 794px;
}
.registration .note {
  border-top: 2px solid #01c67e;
  padding: 25px 30px 0;
  margin-top: 25px;
  margin-left: -30px;
  margin-right: -30px;
}
.registration .note h4 {
  width: 112px;
  height: 38px;
  border-radius: 38px;
  background-color: #01bc85;
  color: #fff;
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  display: inline-block;
  margin-bottom: 16px;
}
.registration .note ol {
  margin-left: 1.25em;
  list-style: decimal;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.registration .btn {
  margin: 0 15px;
  background-color: transparent;
  border: 0;
  max-width: 222px;
}

.site-footer {
  /* background-color: #B0CF00; */
  background-image: url(../images/footer-bg.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  color: #fff;
  width: 100%;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
}
.site-footer .container {
  padding-top: 25px;
  padding-bottom: 25px;
  max-width: 1150px;
}
.site-footer p {
  padding: 0 100px;
}
.site-footer .menu {
  position: absolute;
  top: 18px;
  right: -4px;
  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: 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;
}
.site-footer .menu li {
  position: relative;
  padding: 0 4px;
}
.site-footer .menu .icon {
  width: 39px;
  height: 39px;
}
.site-footer .menu a {
  display: block;
}
.site-footer .menu a:hover,
.site-footer .menu a:active {
  opacity: 0.8;
}

.menu-toggle {
  display: block;
  position: fixed;
  top: 10px;
  right: 17px;
  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: 17px;
  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: 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;
}
.side-sticky a {
  display: block;
  cursor: pointer;
}
.side-sticky .btn {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.side-sticky .btn + .btn {
  margin-top: 20px;
}
.side-sticky .btn-cta {
  width: 99px;
  height: 99px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
  border-radius: 50%;
}
.side-sticky .btn-top {
  width: 80px;
  height: 100px;

  display: none;
  margin: 0 auto;
}

.modal-backdrop.show {
  opacity: 0.7;
}

.modal {
  overflow-y: auto;
  background-color: transparent;
}
.modal-dialog {
  max-width: 558px;
  margin: 60px auto;
  width: calc(100% - 15px * 2);
}
.modal-body {
  padding: 0;
}
.modal-content {
  border: 0;
  border-radius: 10px;
  padding: 0;
  background-color: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.025em;
}
.modal .close {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border-radius: 0;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  background-size: 48px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/modal-close.png);
  opacity: 1;
  z-index: 2;
}
.modal .close:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .modal .close:hover {
    filter: brightness(1.2);
  }
}

.speaker-modal .modal-dialog {
  max-width: 920px;
  margin: 60px auto;
}
.speaker-modal .modal-content {
  padding: 25px 40px 75px;
  background-color: #00000076;
  background-image: url(../images/speaker-modal-bg.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.025em;
  border-radius: 20px;
  border: 2px solid #d4af37;
}
.speaker-modal .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.speaker-modal .grid-left {
  width: 205px;
}
.speaker-modal .grid-right {
  width: calc(100% - 205px);
  padding-left: 36px;
}
.speaker-modal .image {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
}
.speaker-modal .main-text {
  font-size: 26px;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 8px;
}
.speaker-modal .sub-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  border-bottom: 2px solid #d4af37;
  color: #ffffff;
}
.speaker-modal .info {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
}
.speaker-modal .info + .info {
  margin-top: 28px;
}
.speaker-modal .info + .info .info-left {
  padding-top: 28px;
}
.speaker-modal .info + .info .info-right {
  border-top: 1px solid #fff;
  padding-top: 28px;
}
.speaker-modal .info-left {
  width: 85px;
}
.speaker-modal .info-left h4 {
  width: 64px;
  height: 32px;
  background-color: #d4af37;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  border-radius: 32px;
  font-weight: 500;
}
.speaker-modal .info-right {
  width: calc(100% - 85px);
}
.speaker-modal .info p + p {
  margin-top: 28px;
}

.form-modal .modal-dialog {
  max-width: 732px;
  margin: 60px auto;
}
.form-modal .modal-content {
  padding: 55px 30px 65px;
  background-color: transparent;
  background-image: url(../images/modal-bg.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.form-modal p {
  margin: 0 0 16px;
  text-align: center;
}
.form-modal .action {
  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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.form-modal .link {
  max-width: 274px;
  display: block;
  margin: 0 10px;
}
.form-modal .text-small {
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 24px;
}

.personal-modal .modal-dialog {
  max-width: 732px;
  margin: 60px auto;
}
.personal-modal .modal-content {
  padding: 55px 30px 65px;
  background-color: transparent;
  background-image: url(../images/modal-bg.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.personal-modal h3 {
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
}
.personal-modal ol {
  list-style: decimal;
  margin-left: 1.25em;
  text-align: justify;
}
.personal-modal p {
  text-align: justify;
  margin-bottom: 30px;
}

.statement-modal .modal-dialog {
  max-width: 732px;
  margin: 60px auto;
}
.statement-modal .modal-content {
  padding: 55px 30px 65px;
  background-color: transparent;
  background-image: url(../images/modal-bg.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.statement-modal h3 {
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
}
.statement-modal ol {
  list-style: decimal;
  margin-left: 1.25em;
  text-align: justify;
}
.statement-modal p {
  text-align: justify;
}

.video-modal .modal-dialog {
  max-width: 920px;
  margin: 0 auto;
}

.en-us .main-menu a {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500;
  text-align: left;
}
.en-us .main-menu a span {
  display: block;
}
.en-us .section {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
}
.en-us .section .section-header {
  font-size: 42px;
  line-height: 56px;
  letter-spacing: -0.1px;
}
.en-us .section .section-header .icon-arrow {
  width: 32px;
  height: 32px;
  background-size: 32px auto;
  margin-right: 12px;
}
.en-us .section .section-header span {
  max-width: calc(100% - 32px - 12px);
}
.en-us .intro .top-block .heading {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0;
}
.en-us .intro .top-block .section-content {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
.en-us .intro .top-block p {
  text-align: left;
}
.en-us .intro .data .content {
  padding-top: 32px;
}
.en-us .intro .data .top-text {
  font-size: 18px;
  line-height: 24px;
  padding: 0 15px;
  padding-top: 15px;
}
.en-us .speaker .sub-text {
  font-size: 12px;
  line-height: 18px;
}
.en-us .agenda .tabs .btn {
  padding: 2px 0;
  line-height: 20px;
  font-size: 18px;
}
.en-us .agenda .top-text {
  font-size: 16px;
  line-height: 24px;
}
.en-us .activity .note {
  text-align: left;
}
.en-us .activity .note h4 {
  width: 72px;
}
.en-us .activity .note ol {
  font-size: 12px;
  line-height: 18px;
}
.en-us .registration .btn-submit .sprite {
  opacity: 0;
  background-image: url(../images/en/btn-submit_sprites.png);
}
.en-us .registration .form-label {
  text-transform: none;
}
.en-us .registration .form-section-break {
  display: block;
  margin-bottom: 20px;
}
.en-us .registration .form-section-break .form-label {
  width: 100%;
  line-height: 30px;
  margin-bottom: 10px;
}
.en-us .registration .form-section-break .form-content {
  width: 100%;
}
.en-us .speaker-modal .info {
  display: block;
}
.en-us .speaker-modal .info + .info {
  border-top: 1px solid #fff;
}
.en-us .speaker-modal .info + .info .info-right {
  border-top: 0;
  padding-top: 0;
}
.en-us .speaker-modal .info-left {
  width: 100%;
}
.en-us .speaker-modal .info-left h4 {
  width: 120px;
  margin-bottom: 5px;
}
.en-us .speaker-modal .info-right {
  width: 100%;
}

.floating {
  animation-name: floating;
  animation-duration: 1s;
  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(2px, -3px);
  }
  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: 1001px) {
  .site-header.sticky {
    height: 70px;
  }
  .site-header.sticky .logo {
    top: 18px;
  }
  .site-header.sticky .site-menu {
    top: 10px;
  }
}
@media (max-width: 1300px) and (min-width: 751px) {
  .kv .bg {
    background-size: 147.692307692vw auto;
  }

  .intro .bg {
    background-size: 147.692307692vw auto;
  }

  .agenda .bg {
    background-size: 147.692307692vw auto;
  }

  .activity .bg {
    background-size: 147.692307692vw auto;
  }

  .registration .bg {
    background-size: 147.692307692vw auto;
  }
}
@media (max-width: 1110px) and (min-width: 751px) {
  .intro .data .content {
    padding-top: 3.24vw;
  }
  .intro .data .top-text {
    font-size: 2.16vw;
    line-height: 2.7vw;
    min-height: 5.4vw;
    margin-bottom: 1.35vw;
  }
  .intro .data .main-text {
    font-size: 3.24vw;
    line-height: 4.32vw;
  }
  .intro .data .text-large {
    font-size: 7.2vw;
  }

  .speaker .swiper-slide {
    width: calc(100% / 3);
  }
}
@media (max-width: 1000px) {
  .site-content {
    padding-top: 0;
  }

  .site-header .container {
    max-width: 100%;
  }
  .site-header .logo {
    width: 121px;
    height: 30px;
    top: 18px;
    left: 18px;
  }
  .site-header.sticky {
    height: 60px;
  }

  .site-menu {
    top: 0;
    right: 0;
  }
  .site-menu:before {
    display: none;
  }
  .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;
  }
  .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 .main-menu li:nth-child(7) {
    animation-delay: 0.7s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(8) {
    animation-delay: 0.8s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(9) {
    animation-delay: 0.9s;
  }
  .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;
  }
  .site-menu.is-view .share-menu {
    -moz-animation: fadeInUp 0.3s both;
    -webkit-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
    animation-delay: 0.7s;
  }

  .menu-panel {
    display: none;
    background: transparent;
    background: linear-gradient(45deg, #e2e9b0 0%, #9ed0d9f1 30%);
  }

  .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: 20px;
  }
  .main-menu a {
    font-size: 22px;
    line-height: 40px;
    font-weight: 500;
    letter-spacing: 0.025em;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .main-menu a.plus-line {
    background-color: transparent;
    color: #d4af37;
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
  }
  .main-menu a.plus-line span {
    position: relative;
  }
  .main-menu a.plus-line span:before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    display: block;
    background-color: #d4af37;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
  .main-menu a.plus-line .icon-arrow {
    display: none;
  }
  .main-menu a.plus-line:active {
    color: #d4af37;
  }
}
@media (max-width: 1000px) and (hover: hover) {
  .main-menu a.plus-line:hover {
    color: #000000;
    font-weight: 900;
  }
}
@media (max-width: 1000px) {
  .main-menu a.mPS2id-highlight-first,
  .main-menu a:active {
    color: #000000;
    font-weight: 900;
  }
}
@media (max-width: 1000px) and (hover: hover) {
  .main-menu a:hover {
    color: #000000;
    font-weight: 900;
  }
}

@media (max-width: 1000px) {
  .share-menu {
    position: relative;
    padding-top: 30px;
  }
  .share-menu li {
    padding: 0;
  }
  .share-menu .icon {
    width: 36px;
    height: 36px;
  }

  .en-us .main-menu a {
    text-align: center;
    line-height: 40px;
    font-size: 18px;
  }
  .en-us .main-menu a br {
    display: none;
  }
}
@media (max-width: 750px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .modal-dialog {
    max-width: 319px;
    margin: 50px auto;
  }
  .modal-content {
    border-radius: 30px;
  }
  .modal .close {
    top: -19px;
    right: -13px;
  }

  .speaker-modal .modal-dialog {
    max-width: 330px;
    margin: 36px auto;
  }
  .speaker-modal .modal-content {
    padding: 40px 25px 84px;
    /* background-image: url(../images/speaker-modal-bg_s.jpg); */
  }
  .speaker-modal .grid {
    display: block;
  }
  .speaker-modal .grid-left {
    width: 100%;
    margin-bottom: 15px;
  }
  .speaker-modal .grid-right {
    width: 100%;
    padding-left: 0;
  }
  .speaker-modal .image {
    width: 204px;
    margin: 0 auto;
  }
  .speaker-modal .main-text {
    font-size: 28px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
  }
  .speaker-modal .sub-text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
  }
  .speaker-modal .info {
    display: block;
    font-size: 15px;
    line-height: 24px;
    text-align: start;
  }
  .speaker-modal .info + .info {
    margin-top: 30px;
    border-top: 1px solid #fff;
    padding-top: 28px;
  }
  .speaker-modal .info + .info .info-left {
    padding-top: 0;
  }
  .speaker-modal .info + .info .info-right {
    border-top: 0;
    padding-top: 0;
  }
  .speaker-modal .info-left {
    width: 100%;
    margin-bottom: 15px;
  }
  .speaker-modal .info-left h4 {
    margin: 0 auto;
  }
  .speaker-modal .info-right {
    width: 100%;
  }

  .form-modal .modal-dialog {
    max-width: 330px;
    margin: 36px auto;
  }
  .form-modal .modal-content {
    padding: 40px 25px 84px;
    background-image: url(../images/modal-bg_s.jpg);
  }
  .form-modal p {
    text-align: center;
  }
  .form-modal p br {
    display: none;
  }
  .form-modal .action {
    display: block;
    max-width: 274px;
    margin: 0 auto;
  }
  .form-modal .link {
    margin: 0;
  }
  .form-modal .link + .link {
    margin-top: 20px;
  }

  .personal-modal .modal-dialog {
    max-width: 330px;
    margin: 36px auto;
  }
  .personal-modal .modal-content {
    padding: 40px 25px 84px;
    background-image: url(../images/modal-bg_s.jpg);
  }

  .statement-modal .modal-dialog {
    max-width: 330px;
    margin: 36px auto;
  }
  .statement-modal .modal-content {
    padding: 40px 25px 84px;
    background-image: url(../images/modal-bg_s.jpg);
  }

  .video-modal .modal-dialog {
    max-width: 330px;
  }

  .side-sticky {
    bottom: 20px;
    right: 10px;
  }
  .side-sticky .btn + .btn {
    margin-top: 10px;
  }
  .side-sticky .btn-cta {
    width: 76px;
    height: 76px;
  }
  .side-sticky .btn-top {
    width: 30px;
    height: 45px;
  }

  .section-anchor {
    top: -60px;
  }
  .section .bg {
    /* abbie註解掉/地球才不會破版 */
    /* background-size: 100% auto; */
  }
  /* .section .container {
    max-width: 375px;
  } */
  .section .section-header {
    font-size: 36px;
    line-height: 48px;
  }
  .section .section-header .icon-arrow {
    width: 32px;
    height: 32px;
    background-size: 32px auto;
    margin-right: 10px;
    margin-top: 4px;
  }
  .section .section-header span {
    max-width: calc(100% - 32px - 10px);
  }

  .kv .bg {
    background-image: url(../images/kv-bg_s.png);
    background-size: 1024px auto;
    background-position: center bottom;
  }
  .kv .container {
    padding: 0;
    max-width: 375px;
  }

  .intro {
    z-index: 2;
  }
  .intro .bg {
    background-image: url(../images/intro-bg_s.png);
    /* background-size: 1024px auto;
    height: 1485px; */
  }
  .intro .container {
    /* padding-top: 48px; */
    padding-bottom: 35px;
  }
  .intro .top-block {
    max-width: 330px;
    /* margin: 0 auto 70px; */
  }
  .intro .top-block .section-header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #d4af37;
  }
  .intro .top-block .section-content {
    line-height: 24px;
  }
  .intro .top-block .grid {
    display: block;
  }
  .intro .top-block .grid-left {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    /* abbie add */
    flex-direction: column;

    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    /* abbie註解 */
    /* padding-right: 25px; */
  }
  .intro .top-block .grid-left img {
    /* abbie註解 */
    /* max-width: 150px; */
    margin: 0;
  }
  .intro .top-block .grid-right {
    width: 100%;
    padding-left: 0;
    padding-top: 40px;
  }
  .intro .top-block .heading {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
    text-align: center;
  }
  .intro .top-block .heading span {
    display: block;
  }
  .intro .data .section-header {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin-bottom: 40px;
    color: #d4af37;
  }
  .intro .data .section-header .text-small {
    font-size: 18px;
    margin: 10px 0 0;
  }
  .intro .data .section-content {
    max-width: 310px;
    margin: 0 auto;
  }
  .intro .data .list {
    margin: -18px -10px;
    max-width: 330px;
  }
  .intro .data .item {
    width: calc(100% / 2 - 10px * 2);
    margin: 18px 10px;
  }
  .intro .data .item .content {
    padding-top: 12px;
  }
  .intro .data .item .top-text {
    font-size: 14px;
    line-height: 20px;
    min-height: 40px;
    margin-bottom: 8px;
  }
  .intro .data .item .text-large {
    font-size: 48px;
  }
  .intro .data .item .main-text {
    font-size: 22px;
  }

  /* .speaker .bg {
    background-image: url(../images/speaker-bg_s.png);
    background-size: 1024px auto;
  } */
  .speaker .container {
    padding: 0;
    /* padding-top: 50px; */
    padding-bottom: 70px;
  }
  .speaker .section-header {
    margin-bottom: 20px;
  }
  .speaker .landing-swiper-container {
    padding: 0 48px;
  }
  .speaker .swiper-slide {
    width: 100%;
  }
  .speaker .item {
    margin: 15px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 46px;
    height: 46px;
    margin-top: -23px;
  }

  .agenda .bg {
    background-image: url(../images/agenda-bg_s.png);
    background-size: 1024px auto;
  }
  .agenda .container {
    /* padding-top: 55px; */
    /* padding-bottom: 50px; */
  }
  .agenda .top-text {
    /* margin-bottom: 30px; */
    line-height: 30px;
  }
  .agenda .top-text .hd {
    display: block;
  }
  .agenda .top-text span {
    display: inline-block;
  }
  .agenda .top-text .mobile-hide {
    display: none;
  }
  /* .agenda .agenda-table {
    max-width: 341px;
    width: 341px;
    left: calc(50% - 341px / 2);
  } */

  .activity .container {
    padding-top: 60px;
    padding-bottom: 35px;
  }
  .activity .section-header {
    margin-bottom: 24px;
  }
  .activity .note {
    font-size: 16px;
    line-height: 24px;
  }

  .registration .bg {
    background-image: url(../images/registration-bg_s.jpg);
    background-position: center bottom;
  }
  .registration .container {
    padding-top: 35px;
    padding-bottom: 55px;
  }
  .registration .section-header {
    margin-bottom: 30px;
  }
  .registration .inner {
    padding: 20px 18px 65px;
  }
  .registration .form-section-break .form-label {
    line-height: 26px;
    margin-bottom: 15px;
  }
  .registration .form-label {
    line-height: 26px;
    margin-bottom: 15px;
  }
  .registration .note {
    margin-left: -18px;
    margin-right: -18px;
  }
  .registration .form {
    margin-bottom: 100px;
  }
  .registration .form .action {
    bottom: -100px;
  }

  .form .form-section {
    display: block;
  }
  .form .form-label {
    width: 100%;
    font-size: 18px;
    line-height: 36px;
  }
  .form .form-content {
    width: 100%;
  }

  .esg .container {
    padding-top: 40px;
    padding-bottom: 35px;
  }
  .esg .section-header {
    margin-bottom: 20px;
  }
  .esg .section-header span {
    max-width: calc(100% - 104px);
  }
  .esg .top-text {
    text-align: justify;
    margin-bottom: 20px;
  }
  .esg .top-text br {
    display: none;
  }

  .partner .container {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .partner .section-header {
    margin-bottom: 40px;
  }
  .partner .item {
    width: calc(100% / 3 - 15px * 2);
    margin: 20px 15px;
  }
  .partner .item-1 {
    width: calc(40% - 15px * 2);
    max-width: 128px;
  }
  .partner .item-2 {
    width: calc(40% - 15px * 2);
    max-width: 166px;
  }

  .traffic .container {
    /* padding-top: 35px; */
    padding-bottom: 35px;
  }
  .traffic .section-header {
    margin-bottom: 25px;
  }
  .traffic .grid {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
  }
  .traffic .grid-left {
    width: 100%;
    padding-right: 0;
    order: 2;
  }
  .traffic .grid-right {
    width: 100%;
    order: 1;
    margin-bottom: 36px;
  }

  .site-footer {
    text-align: left;
  }
  .site-footer .container {
    max-width: 370px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .site-footer p {
    padding: 0 100px 0 0;
  }
  .site-footer .menu {
    top: calc(50% - 39px / 2);
    right: 15px;
  }

  .en-us .section {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
  }
  .en-us .section .section-header {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -0.1px;
  }
  .en-us .section .section-header .icon-arrow {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
    margin-right: 8px;
  }
  .en-us .section .section-header span {
    max-width: calc(100% - 20px - 8px);
  }
  .en-us .intro .top-block .grid-right {
    padding-top: 100px;
  }
  .en-us .intro .top-block .section-content {
    font-size: 14px;
    line-height: 20px;
  }
  .en-us .intro .top-block .heading {
    font-size: 18px;
    line-height: 30px;
  }
  .en-us .intro .data .item .content {
    padding-top: 30px;
  }
  .en-us .intro .data .item .top-text {
    font-size: 12px;
    line-height: 18px;
    min-height: 36px;
    margin-bottom: 8px;
    padding: 0 5px;
  }
  .en-us .intro .data .item .text-large {
    font-size: 48px;
  }
  .en-us .intro .data .item .main-text {
    font-size: 22px;
  }
  .en-us .agenda .tabs .btn {
    padding: 4px 0;
    line-height: 18px;
    font-size: 16px;
  }
  .en-us .esg .section-header span {
    max-width: calc(100% - 140px);
  }
  .en-us .esg .main-text {
    font-size: 20px;
  }
  .en-us .esg .top-text {
    text-align: left;
  }
  .en-us .registration .form-section:first-child .radio-group {
    display: block;
  }
  .en-us .registration .form-section:first-child .radio-item + .radio-item {
    margin-left: 0;
    margin-top: 5px;
  }
  .en-us .registration .btn-submit .sprite {
    opacity: 0;
    background-image: url(../images/en/btn-submit_sprites.png);
  }
  .en-us .speaker-modal .info {
    display: block;
  }
  .en-us .speaker-modal .info + .info {
    border-top: 1px solid #fff;
  }
  .en-us .speaker-modal .info + .info .info-right {
    border-top: 0;
    padding-top: 0;
  }
  .en-us .speaker-modal .info-left {
    width: 100%;
  }
  .en-us .speaker-modal .info-left h4 {
    width: 120px;
    margin-bottom: 5px;
  }
  .en-us .speaker-modal .info-right {
    width: 100%;
  }
  .en-us .speaker-modal .mobile-text-left {
    text-align: left;
  }
}

/* abbie新增 */

.title-introduce {
  width: 0px;
}

/* 手機版預設寬度 */
.earth-image-phone {
  width: 100%;
}

.green-color {
  color: #d4af37;
  font-weight: bold;
}

.map-container {
  max-width: 900px; /* 限制最大寬度 */
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  max-width: 900px; /* 限制最大寬度 */
  height: 400px; /* 設置高度 */
}

.title-width {
  max-width: 200px;
}

.d-flex {
  display: flex;
  flex-wrap: wrap; /* 確保可以換行 */
}

@media (max-width: 767px) {
  /* 手機版的斷點 */
  .w-25,
  .w-75 {
    width: 100% !important; /* 手機版中每個元素佔滿一行 */
  }
}

@keyframes moveCircle {
  0% {
    background-position: 0% 0%;
    box-shadow: none;
  }
  50% {
    background-position: 50% 50%;
    box-shadow: 0 0 200px 100px rgba(255, 255, 255, 0.1); /* 添加微弱的光暈效果 */
  }
  100% {
    background-position: 100% 100%;
    box-shadow: none;
  }
}

.text-green {
  color: #d4af37;
}

.register-info-container {
  max-width: 900px; /* 限制最大寬度 */
  margin: 0 auto;
}

.bg-register-info {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}

.sub-text-height {
  margin-bottom: 41px;
}

.intro-width {
  max-width: 700px;
  width: 100%;
}

@media (max-width: 900px) {
  .intro-width {
    max-width: 500px;
  }
}

/* 父容器 */
.traffic-container {
  display: flex;
  flex-direction: column; /* 預設手機版直排 */
  gap: 16px; /* 讓兩區塊有間距 */
}

/* 內容區塊 */
.traffic-box {
  width: 100%; /* 預設手機版佔滿 100% */
  color: white;
  padding: 16px;
  box-sizing: border-box;
}

/* 桌機版 (768px以上) */
@media (min-width: 768px) {
  .traffic-container {
    flex-direction: row; /* 改為橫向排列 */
  }

  .parking-info {
    width: 34%;
  }

  .transport-info {
    width: 64%;
    padding-left: 20px;
  }
}

/* 中文版的section-content-height-desktop需要調整margin讓動畫跑出來 */
.section-content-height-desktop {
  min-height: 700px;
}
@media (max-width: 1200px) {
  .section-content-height-desktop {
    min-height: 500px;
  }
}

@media (max-width: 1024px) {
  .section-content-height-desktop {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .section-content-height-desktop {
    min-height: 0;
  }
}

body {
  background-image: url("../images/body-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.btn-width {
  display: inline-block;
  width: 200px;
}

/* 背景：SVG 漸層 + 安全高度 */
.hero {
  position: relative;

  min-height: 400px;

  padding: 72px 0px 36px;
}

@media (max-width: 576px) {
  .hero {
    padding: 36px 0px 36px;
  }
}

/* 如果你有 bg-gradient.svg 想覆蓋在上面： */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero/bg-gradient.svg") center/cover no-repeat;
  opacity: 0.9; /* 可微調 */
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.ornament {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.12));
}

.ornament--right {
  right: -8rem;
  bottom: 30%;
  width: clamp(120px, 20vw, 240px);
}
@media screen and (max-width: 992px) {
  .ornament--right {
    display: none;
  }
}

/* 內容置中 */
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* 品牌鎖定組與主標尺寸 */
.hero__brand {
  width: clamp(220px, 36vw, 420px);
  height: auto;
  margin-bottom: clamp(8px, 1.8vh, 16px);
}
.hero__title {
  width: 980px;
  height: auto;
}

/* 三資訊卡（可放 hero 內，必要時在手機隱藏） */
.hero__info {
  display: grid;
  gap: 16px;
  margin-top: clamp(40px, 3vh, 28px);
  margin-bottom: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 992px) {
  .hero__info {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}
.info-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #0c406ab9;
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  color: #ffffff;
  width: 300px;
}
.info-card .icon {
  font-size: 28px;
  line-height: 1;
}
.info-card .h5 {
  margin: 0;
  font-weight: 700;
}
.info-card small {
  opacity: 0.8;
}
.icon-width {
  width: 50px;
}

/* 網頁整體強制對齊 */
#container .container {
  max-width: 1280px !important; /* 想改寬度就改這一行 */
  width: 100%;
  margin-left: auto;
  margin-right: auto;

  padding-left: 16px;
  padding-right: 16px;
}

.logo-width {
  max-width: 200px;
  margin: 0.5rem 1rem;
}

.logo-width-small {
  max-width: 110px;
  height: auto;
  margin: 0.5rem 1.5rem;
}

.text-var-color {
  color: #0c3f6a;
}
.text-var-color.fw-bold {
  font-weight: 900; /* 超粗 */
}

.title-font {
  font-size: 50px;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .title-font {
    font-size: 40px;
  }
}

@media screen and (max-width: 576px) {
  .title-font {
    font-size: 26px;
  }
}
.w-33 {
  width: 33%;
}

@media screen and (max-width: 576px) {
  .w-33 {
    width: 30%;
  }
}

.sub-role {
  display: block;
  margin-left: 2em;
}

/* 輪播強制對齊底部： */


/* 文字容器定一個最小高度；內容自動貼底 */
.swiper-slide{
  height: 100%;
}
