@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/**
 * 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: content-box;
  box-sizing: content-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: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 100%;
  background: #ACACAC;
  opacity: 1;
  border: 0;
  margin: 0 7px;
}

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: #8F4F8E;
}

.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;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.icon {
  width: 24px;
  height: 24px;
  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-facebook:before {
  content: "";
  background-image: url(../images/icon-facebook_light.png);
}
.icon-line {
  background-image: url(../images/icon-line.png);
}
.icon-line:before {
  content: "";
  background-image: url(../images/icon-line_light.png);
}
.icon-arrow {
  background-image: url(../images/icon-arrow.png);
}

/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/
.sm {
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  -webkit-tap-highlight-color: transparent;
}

.sm, .sm ul, .sm li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
}

.sm-rtl, .sm-rtl ul, .sm-rtl li {
  direction: rtl;
  text-align: right;
}

.sm > li > h1, .sm > li > h2, .sm > li > h3, .sm > li > h4, .sm > li > h5, .sm > li > h6 {
  margin: 0;
  padding: 0;
}

.sm ul {
  display: none;
}

.sm li, .sm a {
  position: relative;
}

.sm a {
  display: block;
}

.sm a.disabled {
  cursor: default;
}

.sm::after {
  content: "";
  display: block;
  height: 0;
  font: 0px/0 serif;
  clear: both;
  overflow: hidden;
}

.sm *, .sm *::before, .sm *::after {
  box-sizing: inherit;
}

.sm-blue {
  background: transparent;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
}
.sm-blue a:hover,
.sm-blue a:focus,
.sm-blue a:active {
  color: #FDEAD1;
  text-decoration: none;
}
.sm-blue a:hover:before,
.sm-blue a:focus:before,
.sm-blue a:active:before {
  opacity: 1;
}
.sm-blue a.current {
  color: #FDEAD1;
}
.sm-blue a.disabled {
  color: #a1d1e8;
}
.sm-blue > li > a {
  padding: 0 18px;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 38px;
  letter-spacing: .1em;
  text-decoration: none;
}
.sm-blue > li > a:hover, .sm-blue > li > a:focus, .sm-blue > li > a:active {
  color: #fff;
}
.sm-blue > li > a:hover:before, .sm-blue > li > a:focus:before, .sm-blue > li > a:active:before {
  opacity: 1;
}
.sm-blue > li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  background-image: url(../images/menu-item-bg.png);
  opacity: 0;
  z-index: -1;
}
.sm-blue > li > a.item-bg2:before {
  background-image: url(../images/menu-item-bg2.png);
}
.sm-blue > li > a .sub-arrow {
  display: none;
}
.sm-blue .sub-arrow {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: 17px;
  width: 14px;
  height: 11px;
  overflow: hidden;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/menu-arrow.svg);
  background-repeat: no-repeat;
}
.sm-blue ul {
  background: #fff;
  border-radius: 9px;
}
.sm-blue ul ul {
  display: block !important;
}
.sm-blue ul ul a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.sm-blue ul ul a:hover,
.sm-blue ul ul a:focus,
.sm-blue ul ul a:active {
  color: #FDEAD1;
}
.sm-blue a.highlighted {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.sm-blue a.highlighted:before {
  opacity: 1;
}
.sm-blue ul a.current {
  color: #FDEAD1;
}
.sm-blue ul a.disabled {
  color: #b3b3b3;
}
.sm-blue ul .has-submenu {
  position: relative;
  padding-left: 44px !important;
  text-align: left;
  font-weight: 700;
}
.sm-blue ul .highlighted {
  color: #485981;
}
.sm-blue ul ul {
  padding-left: 45px;
  text-align: left;
}
.sm-blue ul ul li {
  padding: 6px 0;
  border-top: 1px solid #C8C8C8;
  margin-right: 25px;
}
.sm-blue ul ul li a {
  padding: 0;
}

@media (min-width: 1024px) {
  .sm-blue {
    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;
  }
  .sm-blue ul {
    position: absolute;
    padding: 0;
    background: #2B2967;
    min-width: 100% !important;
    max-width: 155px !important;
    width: 155px !important;
    border: 2px solid #D8726A;
    border-radius: 12px;
  }
  .sm-blue > li > a {
    padding: 0 22px;
  }
  .sm-blue > li > a > .sub-arrow {
    display: none;
  }
  .sm-blue > li > ul {
    margin-top: 14px !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .sm-blue ul ul {
    border-top: 0;
    position: static;
    margin: 0 !important;
  }
  .sm-blue ul a {
    padding: 3px 0;
    color: #fff;
  }
  .sm-blue > li {
    position: relative;
  }
  .sm-blue > li > ul {
    padding: 10px 0;
  }
  .sm-blue > li > ul:before {
    content: "";
    display: none;
  }
}
@media (max-width: 1023px) {
  .sm-blue {
    margin: 0 auto;
  }
  .sm-blue ul {
    margin-top: 10px;
    background: transparent;
    border-radius: 0;
  }
  .sm-blue .sub-arrow {
    margin-top: -7px;
  }
  .sm-blue > li {
    margin-bottom: 18px;
  }
  .sm-blue > li > a {
    display: inline-block;
    line-height: 38px;
  }
  .sm-blue > li > ul > li > a {
    line-height: 24px;
    padding: 3px 0;
    font-weight: 900;
    color: #2B2967;
  }
  .sm-blue > li > ul > li > a:active, .sm-blue > li > ul > li > a.active {
    color: #D8726A;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 41px;
  height: 41px;
  line-height: 41px;
  position: absolute;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-preloader {
  background-image: url(../images/ajax-loader-b.png);
  width: 32px;
  height: 32px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  margin: 0 auto;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 '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;
  background-color: #e4eaf6;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color, opacity, background-color 0.5s ease;
  -o-transition: color, opacity, background-color 0.5s ease;
  -webkit-transition: color, opacity, background-color 0.5s ease;
  transition: color, opacity, background-color 0.5s ease;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
  margin: 0 auto;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 18px;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

.scroll--hidden {
  overflow: hidden;
}

#container {
  overflow: hidden;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 20px;
  position: relative;
}

.text-block {
  display: inline-block;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.is-toggle {
  display: block;
}

.in-view {
  opacity: 0;
}

.site-content {
  position: relative;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  background-position: center top;
  background-size: 100% 100%;
  background-image: url(../images/header-bg.png);
}
@media (max-width: 1920px) {
  .site-header {
    background-size: auto 100%;
  }
}
.site-header .container {
  height: 126px;
  max-width: 1280px;
}

.site-menu {
  position: absolute;
  top: 39px;
  right: 0;
  padding-right: 180px;
}
.site-menu .menu-close {
  display: none;
}
.site-menu .menu-toggle {
  display: none;
}

.main-menu {
  font-family: 'Noto Serif TC';
  font-weight: 700;
}
.main-menu .active,
.main-menu .mPS2id-highlight-first {
  color: #fff;
}
.main-menu .active:before,
.main-menu .mPS2id-highlight-first:before {
  opacity: 1;
}

.share-menu {
  position: absolute;
  top: 6px;
  right: 64px;
  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 6px;
}
.share-menu .icon {
  width: 26px;
  height: 26px;
}
.share-menu a {
  display: block;
}
.share-menu a:active .icon-facebook {
  background-image: url(../images/icon-facebook_light.png);
}
.share-menu a:active .icon-line {
  background-image: url(../images/icon-line_light.png);
}
@media (hover: hover) {
  .share-menu a:hover .icon-facebook {
    background-image: url(../images/icon-facebook_light.png);
  }
  .share-menu a:hover .icon-line {
    background-image: url(../images/icon-line_light.png);
  }
}

.site-footer {
  background-color: #202042;
  width: 100%;
  color: #fff;
  position: relative;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: .15em;
}
.site-footer .bg {
  position: absolute;
  top: -290px;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-position: center top;
  background-image: url(../images/footer-bg.png);
  pointer-events: none;
  min-height: 557px;
}
.site-footer__top {
  padding: 30px 0 20px;
  max-width: 890px;
  margin: 0 auto;
}
.site-footer__bottom {
  padding-bottom: 114px;
  text-align: center;
}
.site-footer__bottom span {
  display: inline-block;
}
.site-footer .group {
  margin: 0 -10px;
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.site-footer .group .item {
  margin: 0 10px;
}
.site-footer .group .hd {
  margin-bottom: 20px;
}
.site-footer .group img {
  max-height: 38px;
}
.site-footer .group a {
  color: #fff;
  font-size: 18px;
}

.breadcrumb-container {
  padding: 0 0 37px;
}

.menu-toggle {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 70px;
  height: 47px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 11;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/menu-toggle.png);
}

.menu-close {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 70px;
  height: 47px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 11;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  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 {
  bottom: 28px;
}
.side-sticky.is-view .to-top {
  display: block;
}
.side-sticky.change-bottom {
  position: absolute;
  bottom: -25px;
}
.side-sticky a {
  display: block;
  cursor: pointer;
}
.side-sticky a:active {
  opacity: .8;
}
@media (hover: hover) {
  .side-sticky a:hover {
    opacity: .8;
  }
}
.side-sticky .to-top {
  display: none;
}
.side-sticky .icon-top {
  width: 75px;
  height: 105px;
  margin: 0 auto;
  background-image: url(../images/btn-top.png);
}

.floating {
  animation-name: floating;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, -10px);
  }
  to {
    transform: translate(0, 0);
  }
}
.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
.btn-back {
  position: relative;
  background-color: #2B2967;
  border: 5px solid #fff;
  width: 209px;
  height: 59px;
  line-height: 49px;
  font-size: 22px;
  letter-spacing: .2em;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-family: 'Noto Serif TC';
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.75) inset;
  margin: 0 auto;
  display: block;
  text-decoration: none;
}
.btn-back .icon-arrow {
  position: absolute;
  top: -8px;
  right: 2px;
  width: 42px;
  height: 55px;
  background-image: url(../images/icon-back.png);
}
.btn-back:active {
  color: #fff;
  background-color: #8F4F8E;
  text-decoration: none;
}
@media (hover: hover) {
  .btn-back:hover {
    color: #fff;
    background-color: #8F4F8E;
    text-decoration: none;
  }
}

.pagination {
  display: flex;
  list-style: none;
  margin-bottom: 0;
}

.page-link {
  position: relative;
  display: block;
  padding: 0;
  margin: 0 3px;
  color: #163D38;
  border: 0;
  border-radius: 50%;
  min-width: 32px;
  min-height: 32px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  font-weight: 500;
}
.page-link:focus {
  z-index: 2;
}
.page-link:active {
  z-index: 2;
  text-decoration: none;
  color: #fff;
  background-color: #E4B178;
}
@media (hover: hover) {
  .page-link:hover {
    z-index: 2;
    text-decoration: none;
    color: #fff;
    background-color: #E4B178;
  }
}
.page-link .icon {
  width: 32px;
  height: 32px;
  background-color: #fff;
  background-size: auto 17px;
  background-position: center center;
}
.page-link .icon-prev {
  background-image: url(../images/icon-prev.png);
}
.page-link .icon-next {
  background-image: url(../images/icon-next.png);
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #E4B178;
}
.page-item.disabled .page-link {
  pointer-events: none;
  cursor: auto;
}

.mfp-close {
  width: 41px;
  height: 41px;
  right: 18px;
  top: 18px;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background-image: url(../images/mfp-close.png);
}
.mfp-close:active {
  opacity: .8;
}
@media (hover: hover) {
  .mfp-close:hover {
    opacity: .8;
  }
}

button.mfp-close,
a.mfp-close,
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close,
.popup-modal-dismiss {
  width: 31px;
  height: 31px;
  padding: 0;
  display: block;
  vertical-align: middle;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 35px;
  right: 26px;
  opacity: 1;
  overflow: hidden;
  cursor: pointer;
}
button.mfp-close:before,
a.mfp-close:before,
.mfp-image-holder .mfp-close:before,
.mfp-iframe-holder .mfp-close:before,
.popup-modal-dismiss:before {
  content: "";
  background: url(../images/mfp-close.png) no-repeat center center;
  width: 100%;
  height: 100%;
  background-size: contain;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
button.mfp-close:active:before,
a.mfp-close:active:before,
.mfp-image-holder .mfp-close:active:before,
.mfp-iframe-holder .mfp-close:active:before,
.popup-modal-dismiss:active:before {
  opacity: .8;
}
@media (hover: hover) {
  button.mfp-close:hover:before,
  a.mfp-close:hover:before,
  .mfp-image-holder .mfp-close:hover:before,
  .mfp-iframe-holder .mfp-close:hover:before,
  .popup-modal-dismiss:hover:before {
    opacity: .8;
  }
}

.mfp-bg {
  background: #fff;
  opacity: 0.88;
}

.bg-dismiss {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: default;
  pointer-events: none;
}
.bg-dismiss:before {
  display: none;
}

.white-popup-block {
  border-radius: 13px;
  background: #fdebd1;
  background: linear-gradient(0deg, #fdebd1 0%, #f3d3c6 100%);
  padding: 70px 16px 67px;
  width: calc(100% - 15px * 2);
  max-width: 1004px;
  margin: 20px auto;
  position: relative;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.white-popup-block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/modal-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 58px;
}
.white-popup-block ::-webkit-scrollbar {
  width: 8px;
}
.white-popup-block ::-webkit-scrollbar-track {
  background: #eee;
}
.white-popup-block ::-webkit-scrollbar-thumb {
  background: #a0a0a0;
  border-radius: 8px;
}
.white-popup-block ::-webkit-scrollbar-thumb:hover {
  background: #888;
}

.history-modal {
  max-width: 806px;
}
.history-modal:before {
  top: -40px;
  left: -70px;
  width: 332px;
  height: 143px;
  background-image: url(../images/history-modal-left.png);
  background-position: center;
}
.history-modal:after {
  content: "";
  position: absolute;
  bottom: 90px;
  right: -215px;
  width: 588px;
  height: 171px;
  background-image: url(../images/history-modal-right.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
.history-modal .inner {
  position: relative;
  text-align: center;
  background-position: center calc(50% - 40px);
  background-repeat: no-repeat;
  background-image: url(../images/ajax-loader.png);
}
.history-modal .history-swiper {
  width: 100%;
  max-width: 626px;
  margin: 0 auto 20px;
  min-height: 150px;
}
.history-modal .content {
  margin-bottom: 28px;
}
.history-modal .main-text {
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #2B2967;
}
.history-modal .sub-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
}
.history-modal .swiper-button-prev,
.history-modal .swiper-button-next {
  width: 35px;
  height: 13px;
  top: calc(50% - 13px / 2);
  margin-top: 0;
  box-shadow: none;
  background-size: contain;
  border-radius: 0;
}
.history-modal .swiper-button-prev:active,
.history-modal .swiper-button-next:active {
  opacity: .8;
}
@media (hover: hover) {
  .history-modal .swiper-button-prev:hover,
  .history-modal .swiper-button-next:hover {
    opacity: .8;
  }
}
.history-modal .swiper-control {
  position: relative;
  padding: 0 60px;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 auto;
}
.history-modal .swiper-pagination-bullet {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  border: 0;
  margin: 0 7px;
  color: #A7A7A7;
  font-size: 14px;
  font-weight: 500;
  opacity: 1;
}
.history-modal .swiper-pagination-bullet-active {
  opacity: 1;
  color: #000;
}
.history-modal .swiper-button-prev {
  background-image: url(../images/history-swiper-prev.png);
  left: 0;
}
.history-modal .swiper-button-next {
  background-image: url(../images/history-swiper-next.png);
  right: 0;
}
.history-modal .c-1 {
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.history-modal .c-1 img {
  max-width: 20px;
  margin: 0;
}
.history-modal .modal-control {
  position: absolute;
  width: 42px;
  height: 44px;
  top: calc(50% - 44px / 2);
  background-size: contain;
  border-radius: 0;
  display: block;
}
.history-modal .modal-control:active {
  opacity: .8;
}
@media (hover: hover) {
  .history-modal .modal-control:hover {
    opacity: .8;
  }
}
.history-modal .modal-prev {
  background-image: url(../images/history-modal-prev.png);
  left: -80px;
}
.history-modal .modal-next {
  background-image: url(../images/history-modal-next.png);
  right: -80px;
}

.record-modal {
  max-width: 1004px;
}
.record-modal .inner {
  text-align: center;
  padding: 0 50px;
}
.record-modal .record-swiper {
  margin: 0 auto 18px;
}
.record-modal .main-text {
  font-size: 29px;
  line-height: 41px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #2B2967;
  margin-bottom: 31px;
  font-family: 'Noto Serif TC';
}
.record-modal .swiper-button-prev,
.record-modal .swiper-button-next {
  width: 22px;
  height: 22px;
  top: calc(50% - 22px / 2);
  margin-top: 0;
  box-shadow: none;
  background-size: contain;
  border-radius: 0;
}
.record-modal .swiper-button-prev:active,
.record-modal .swiper-button-next:active {
  opacity: .8;
}
@media (hover: hover) {
  .record-modal .swiper-button-prev:hover,
  .record-modal .swiper-button-next:hover {
    opacity: .8;
  }
}
.record-modal .swiper-slide {
  max-width: 552px;
  opacity: .72;
}
.record-modal .swiper-slide-active {
  opacity: 1;
}
.record-modal img {
  width: 100%;
}
.record-modal .swiper-button-prev {
  background-image: url(../images/record-popup-prev.png);
  left: 15px;
}
.record-modal .swiper-button-next {
  background-image: url(../images/record-popup-next.png);
  right: 15px;
}

@media (max-width: 1140px) and (min-width: 1024px) {
  .site-menu {
    padding-right: 120px;
  }

  .sm-blue > li > a {
    padding: 0 15px;
  }

  .share-menu {
    right: 20px;
  }
}
@media (max-width: 1023px) {
  .site-header {
    background: none;
  }
  .site-header .container {
    height: 67px;
    max-width: 100%;
  }
  .site-header .logo {
    width: 94px;
    height: 39px;
    top: 12px;
    left: 24px;
  }
  .site-header.sticky .container {
    height: 67px;
  }

  .site-menu {
    position: fixed;
    top: 0;
    right: -100%;
    padding: 0;
    width: 100%;
    height: 100vh;
    background: #fffbf4;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    overflow: auto;
  }
  .site-menu .menu-toggle {
    display: block;
  }
  .site-menu .menu-close {
    display: none;
  }
  .site-menu.is-view {
    right: 0;
  }
  .site-menu.is-view .menu-toggle {
    display: none;
  }
  .site-menu.is-view .menu-close {
    -moz-animation: fadeIn 0.3s both;
    -webkit-animation: fadeIn 0.3s both;
    animation: fadeIn 0.3s both;
    display: block;
  }

  .menu-panel {
    background: #fffbf4;
    background-image: url(../images/menu-bg_s.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 100%;
  }
  .menu-panel:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    background-image: url(../images/menu-bottom-bg_s.png);
  }

  .main-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
    padding-top: 95px;
    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-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    z-index: 0;
  }
  .main-menu > li {
    position: relative;
    width: 100%;
    text-align: center;
  }
  .main-menu a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .share-menu {
    position: relative;
    padding-top: 24px;
    right: 0;
    margin: 0 auto;
  }
}
@media (max-width: 1023px) and (min-width: 751px) {
  .record-modal {
    max-width: 600px;
  }
}
@media (max-width: 750px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .container {
    max-width: 100%;
    max-width: 375px;
    padding: 0 15px;
  }

  .side-sticky {
    right: 10px;
    bottom: 10px;
  }
  .side-sticky.is-view {
    bottom: 15px;
  }
  .side-sticky.change-bottom {
    bottom: -25px;
  }
  .side-sticky .icon-top {
    width: 62px;
    height: 86px;
  }

  .site-footer {
    font-size: 11px;
    line-height: 17px;
  }
  .site-footer .bg {
    top: -115px;
    background-size: 750px auto;
    background-image: url(../images/footer-bg_s.png);
    min-height: 158px;
  }
  .site-footer .container {
    max-width: 330px;
  }
  .site-footer__top {
    padding: 30px 0 39px;
  }
  .site-footer__bottom {
    padding-bottom: 68px;
    font-size: 14px;
  }
  .site-footer .group {
    max-width: 100%;
    display: block;
    text-align: center;
    margin: 0;
  }
  .site-footer .group .item {
    margin: 0;
  }
  .site-footer .group .item + .item {
    margin-top: 18px;
  }
  .site-footer .group .hd {
    margin-bottom: 5px;
  }
  .site-footer .group img {
    max-height: 33px;
  }
  .site-footer .group a {
    font-size: 15px;
  }

  .breadcrumb-container {
    padding-bottom: 19px;
  }

  button.mfp-close,
  a.mfp-close,
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close,
  .popup-modal-dismiss {
    width: 16px;
    height: 16px;
    top: 12px;
    right: 12px;
  }

  .white-popup-block {
    padding: 36px 5px 26px;
    max-width: 300px;
  }
  .white-popup-block:before {
    background-image: url(../images/modal-bg_s.png);
    background-position: 0 15px;
  }

  .history-modal {
    max-width: 300px;
    padding: 30px 16px;
  }
  .history-modal:before {
    top: -30px;
    left: -26px;
    width: 144px;
    height: 62px;
    background-image: url(../images/history-modal-left_s.png);
  }
  .history-modal:after {
    bottom: -34px;
    right: 15px;
    width: 184px;
    height: 139px;
    background-image: url(../images/history-modal-right_s.png);
  }
  .history-modal .history-swiper {
    max-width: 100%;
    margin: 0 auto 15px;
  }
  .history-modal .content {
    margin-bottom: 18px;
  }
  .history-modal .main-text {
    font-size: 18px;
    line-height: 26px;
  }
  .history-modal .modal-control {
    display: none;
  }
  .history-modal .swiper-button-prev,
  .history-modal .swiper-button-next {
    width: 12px;
    height: 13px;
    top: calc(50% - 13px / 2);
  }
  .history-modal .swiper-control {
    padding: 0 40px;
  }
  .history-modal .swiper-pagination-bullet {
    font-size: 11px;
    line-height: 16px;
  }
  .history-modal .swiper-button-prev {
    background-image: url(../images/history-modal-prev.png);
  }
  .history-modal .swiper-button-next {
    background-image: url(../images/history-modal-next.png);
  }

  .record-modal {
    max-width: 300px;
  }
  .record-modal .inner {
    padding: 0 20px;
  }
  .record-modal .record-swiper {
    margin: 0 auto 14px;
  }
  .record-modal .main-text {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 17px;
  }
  .record-modal .swiper-button-prev,
  .record-modal .swiper-button-next {
    width: 22px;
    height: 22px;
    top: calc(50% - 22px / 2);
    margin-top: 0;
    box-shadow: none;
    background-size: 12px auto;
    border-radius: 0;
  }
  .record-modal .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 0 4px;
  }
  .record-modal .swiper-slide {
    max-width: 100%;
    opacity: 1;
  }
  .record-modal .swiper-button-prev {
    left: 3px;
  }
  .record-modal .swiper-button-next {
    right: 3px;
  }

  .btn-back {
    border: 3px solid #fff;
    width: 162px;
    height: 44px;
    line-height: 38px;
    font-size: 18px;
  }
  .btn-back .icon-arrow {
    top: -5px;
    right: 2px;
    width: 32px;
    height: 43px;
  }
}
@media (min-width: 1921px) {
  #container {
    max-width: 1920px;
    margin: 0 auto;
  }

  .site-header {
    width: 1920px;
    left: calc(50% - 1920px / 2);
  }

  .side-sticky {
    right: calc(50% - 1920px / 2 + 20px);
  }
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #353b92;
  background: linear-gradient(0deg, #353b92 0%, #0e183c 100%);
  z-index: 100;
}
.loader .loader-feather {
  position: absolute;
  top: calc(50% - 72px / 2);
  left: calc(50% - 72px / 2);
  width: 72px;
}
.loader .loader-text {
  position: absolute;
  top: calc(50% + 44px);
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 12px;
  letter-spacing: .5em;
}

.section {
  position: relative;
  z-index: 0;
  width: 100%;
}
.section-anchor {
  position: absolute;
  top: -130px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top;
}
.section .container {
  max-width: 1044px;
}
.section-header {
  opacity: 0;
  margin: 0 auto;
}
.section-header.animated {
  opacity: 1;
}
.section-content {
  position: relative;
  opacity: 0;
  margin: 0 auto;
}
.section-content.animated {
  opacity: 1;
}
.section a {
  text-decoration: none;
}

.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%;
  }
}
.kv {
  position: relative;
  width: 100%;
  background-color: #0c1636;
  overflow: hidden;
  background-image: url(../images/kv-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 751px) and (max-width: 1280px) {
  .kv {
    background-size: auto 100%;
  }
}
.kv .container {
  padding: 0;
}
@media (min-width: 1281px) {
  .kv .container {
    height: 866px;
    width: 1920px;
    max-width: 1920px;
    left: calc(50% - 1920px / 2);
    margin: 0;
  }
}
@media (min-width: 751px) and (max-width: 1280px) {
  .kv .container {
    width: 150%;
    max-width: 150%;
    left: calc(50% - 150% / 2);
  }
}
.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 img {
  display: block;
}
.kv .mask {
  opacity: 1;
}
.kv .bottom {
  opacity: 1;
}
.kv .stage {
  opacity: 1;
}
.kv .ocean {
  opacity: 1;
}
.kv .ribbon-right .floating {
  animation-direction: alternate-reverse;
  animation-delay: 2s;
}
.kv .ribbon-left .floating {
  animation-direction: alternate;
  animation-delay: 1.5s;
}
.kv .light img {
  animation: flash 2.6s infinite;
  animation-delay: 1.5s;
}
.kv .light2 img {
  animation: flash 2.6s infinite;
  animation-delay: 1s;
}
.kv .feather {
  position: absolute;
  top: 48.75%;
  left: calc(50% - 12% / 2);
  width: 12%;
}
.kv .feather:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.kv .cloud2 {
  z-index: 1;
}
.kv .ribbon-left,
.kv .ribbon-right {
  z-index: 2;
}
.kv .ocean {
  z-index: 2;
}
.kv .bottom {
  z-index: 3;
}
.kv .slogan,
.kv .sub,
.kv .text,
.kv .stage {
  z-index: 5;
}
.kv.active .cloud {
  -moz-animation: bounceInDown 0.8s both;
  -webkit-animation: bounceInDown 0.8s both;
  animation: bounceInDown 0.8s both;
  animation-delay: .3s;
  opacity: 1;
}
.kv.active .cloud2 {
  -moz-animation: bounceInDown 0.8s both;
  -webkit-animation: bounceInDown 0.8s both;
  animation: bounceInDown 0.8s both;
  animation-delay: .5s;
  opacity: 1;
}
.kv.active .ribbon-left {
  -moz-animation: fadeInLeft 1s both;
  -webkit-animation: fadeInLeft 1s both;
  animation: fadeInLeft 1s both;
  animation-delay: .55s;
}
.kv.active .ribbon-right {
  -moz-animation: fadeInRight 1s both;
  -webkit-animation: fadeInRight 1s both;
  animation: fadeInRight 1s both;
  animation-delay: .7s;
}
.kv.active .main {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  animation-delay: .85s;
}
.kv.active .slogan {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: .2s;
}
.kv.active .sub {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: .5s;
}
.kv.active .light {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: .2s;
}
.kv.active .light2 {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: .2s;
}
.kv.active .text {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: 1s;
}
.kv .sprite-slogan {
  animation: sprite 2s steps(19) infinite;
  background-image: url(../images/kv-slogan-sprites.png);
}
.kv .sprite-feather {
  animation: sprite 3s steps(26) infinite;
  background-image: url(../images/kv-feather-sprites.png);
}

.performance {
  z-index: 1;
  margin-top: -1px;
}
.performance .bg {
  background-size: 100% 100%;
  background-position: center center;
  background-image: url(../images/performance-bg.jpg);
}
.performance .container {
  padding-top: 68px;
  padding-bottom: 82px;
  min-height: 480px;
}
.performance .section-header {
  margin-bottom: 40px;
}
.performance .section-header img {
  max-height: 77px;
}
.performance .box {
  max-width: 1020px;
  margin: 0 auto;
}
.performance .list {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.performance .item {
  position: relative;
  background-color: #2B2967;
  width: 214px;
  height: 214px;
  border-radius: 50%;
  padding-top: 62px;
  font-family: 'Noto Serif TC';
}
.performance .item:nth-child(1) .image img {
  animation-delay: .1s;
}
.performance .item:nth-child(2) .image img {
  animation-delay: .2s;
}
.performance .item:nth-child(3) .image img {
  animation-delay: .3s;
}
.performance .item:nth-child(3) .image img {
  animation-delay: .4s;
}
.performance .image {
  position: absolute;
  top: -54px;
  left: 0;
  width: 100%;
}
.performance .image img {
  max-height: 126px;
  display: block;
  margin: 0 auto;
}
.performance .main-text {
  font-size: 23px;
  line-height: 33px;
  font-weight: 900;
  letter-spacing: .1em;
}
.performance .text-lg {
  font-size: 46px;
  line-height: 66px;
  margin-right: 8px;
  letter-spacing: .1em;
}
.performance .sub-text {
  font-size: 23px;
  line-height: 33px;
  font-weight: 900;
  letter-spacing: .1em;
}

.news .bg {
  background-size: 1920px auto;
  background-position: center top;
  background-image: url(../images/news-bg.jpg);
  background-color: #fffbf4;
}
.news .container {
  padding-top: 77px;
  padding-bottom: 54px;
}
.news .section-header {
  margin-bottom: 32px;
}
.news .section-header img {
  max-height: 50px;
  margin: 0 0 0 72px;
}
.news .section-content {
  background: #fdebd1;
  background: linear-gradient(0deg, #fdebd1 0%, #f3d3c6 100%);
  border-radius: 13px;
  overflow: hidden;
  padding: 48px 60px 38px;
}
.news .item {
  position: relative;
  border-bottom: 1px solid #fff;
  padding-bottom: 14px;
  padding-right: 100px;
}
.news .item + .item {
  margin-top: 40px;
}
.news .news-collapse .item {
  margin-top: 40px;
}
.news .date {
  color: #8F4F8E;
  font-size: 15px;
  letter-spacing: .15em;
  font-weight: 700;
  margin-bottom: 6px;
}
.news .main-text {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: .15em;
  color: #2B2967;
}
.news .icon-arrow {
  width: 35px;
  height: 13px;
  background-image: url(../images/icon-arrow.png);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.news .link {
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  color: #2B2967;
  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;
  font-family: 'Noto Serif TC';
  position: absolute;
  bottom: 13px;
  right: 0;
}
.news .link .icon {
  position: relative;
  margin-left: 12px;
}
.news .link:active {
  color: #8F4F8E;
}
.news .link:active .icon {
  right: -5px;
}
@media (hover: hover) {
  .news .link:hover {
    color: #8F4F8E;
  }
  .news .link:hover .icon {
    right: -5px;
  }
}
.news .action {
  margin-top: 45px;
}
.news .btn {
  border-radius: 11px;
  border: 3px solid #2B2967;
  background-color: transparent;
  width: 192px;
  height: 55px;
  text-align: center;
  color: #2B2967;
  font-size: 20px;
  letter-spacing: .15em;
  font-weight: 700;
  display: block;
  margin: 0 auto;
  line-height: 48px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) inset;
}
.news .btn:active {
  background-color: #F6B0BB;
}
@media (hover: hover) {
  .news .btn:hover {
    background-color: #F6B0BB;
  }
}
.news .btn .more {
  display: inline;
}
.news .btn .less {
  display: none;
}
.news .btn[aria-expanded="true"] .more {
  display: none;
}
.news .btn[aria-expanded="true"] .less {
  display: inline;
}

.event {
  background-color: #1E1F42;
}
.event .bg {
  background-size: 1920px auto;
  background-position: center top;
  background-image: url(../images/event-bg.jpg);
}
.event .bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 109px;
  background-size: 100% 100%;
  background-position: center top;
  background-image: url(../images/event-top-bg.png);
}
.event .container {
  padding-bottom: 83px;
}
.event .section-header {
  margin-bottom: 110px;
}
.event .section-header img {
  max-height: 50px;
  margin: 0 0 0 72px;
}
.event .box {
  width: 100%;
  padding-left: calc(100% - 53.685258964%);
  margin-bottom: 110px;
}
.event .action {
  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;
}
.event .btn {
  position: relative;
  background-color: #2B2967;
  border: 5px solid #fff;
  height: 59px;
  line-height: 49px;
  font-size: 22px;
  letter-spacing: .2em;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-family: 'Noto Serif TC';
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.75) inset;
}
.event .btn--lg {
  height: 74px;
  font-size: 22px;
  line-height: 64px;
  letter-spacing: .2em;
  display: block;
  width: 300px;
  margin: 0 auto;
  text-align: left;
  padding-left: 25px;
}
.event .btn--lg img {
  position: absolute;
  top: -25px;
  right: 2px;
  width: 46px;
}
.event .btn:active {
  background-color: #8F4F8E;
}
@media (hover: hover) {
  .event .btn:hover {
    background-color: #8F4F8E;
  }
}
.event .block {
  color: #fff;
}
.event .block-1 {
  margin-bottom: 80px;
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  letter-spacing: .15em;
}
.event .block-1 .action {
  margin-top: 64px;
}
.event .block-2 p {
  text-align: center;
  font-family: 'Noto Serif TC';
  font-size: 15px;
  line-height: 21px;
  font-weight: 700;
  letter-spacing: .3em;
}
.event .block-2 .action {
  margin: 0 -9px;
  margin-top: 30px;
}
.event .block-2 .btn {
  width: calc(50% - 9px * 2);
  margin: 0 9px;
}
.event .list {
  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;
}
.event .list .item {
  width: 192px;
  height: 174px;
  margin: 0 14px;
  border-radius: 11px;
  border: 3px solid #2B2967;
  background: #f2d3c5;
  background: linear-gradient(0deg, #f2d3c5 0%, #fce7cf 100%);
  text-align: center;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  padding: 30px 10px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.16) inset, 0 3px 6px rgba(0, 0, 0, 0.16) inset;
}
.event .list .item:active .icon-arrow {
  right: -5px;
}
@media (hover: hover) {
  .event .list .item:hover .icon-arrow {
    right: -5px;
  }
}
.event .list .main-text {
  font-size: 22px;
  line-height: 31px;
  font-weight: 700;
  color: #1E1F42;
  font-family: 'Noto Serif TC';
  margin-bottom: 20px;
}
.event .list .icon-arrow {
  width: 62px;
  height: 31px;
  margin: 0 auto;
  background-image: url(../images/event-arrow.png);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  position: relative;
}

.review {
  background-color: #1E1F42;
}
.review .bg {
  background-size: 1920px auto;
  background-position: center top;
  background-image: url(../images/review-bg.jpg);
  background-color: #ecc3bf;
}
.review .container {
  padding-top: 49px;
  padding-bottom: 153px;
  max-width: 1044px;
}
.review .section-header {
  margin-bottom: 69px;
}
.review .section-header img {
  max-height: 77px;
}
.review .video {
  background-color: #fff;
}
.review video {
  display: block;
}

.works {
  background-color: #f9faff;
}
.works .unit {
  position: absolute;
  top: 50px;
  left: calc(50% - 140px);
  width: 73px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  background-image: url(../images/works-1.png);
  animation-name: floating;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}
.works .container {
  padding-top: 60px;
  padding-bottom: 57px;
}
.works .section-header {
  margin-bottom: 28px;
}
.works .section-header h4:before {
  background-image: url(../images/header-line2.png);
  bottom: 0;
}
.works .box {
  border-radius: 30px;
  background-color: #163D38;
  background-image: url(../images/works-bg.png);
  background-size: 100% auto;
  max-width: 948px;
  margin: 0 auto;
  position: relative;
  padding: 84px 15px;
}
.works .box:before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  border: 1px solid #E4B178;
  border-radius: 30px;
  pointer-events: none;
}
.works .box:after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: -40px;
  width: 111px;
  height: 88px;
  background-image: url(../images/works-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation-name: floating;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}
.works .list {
  max-width: 566px;
  margin: 0 auto;
  height: calc(75px * 3);
  overflow: hidden;
}
.works .list.is-show {
  height: auto;
}
.works .item {
  border-top: 1px solid #F1F1F1;
  padding: 15px 0;
}
.works .item:first-child {
  border-top: 0;
}
.works .item .inner {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.works .item .main-text {
  color: #fff;
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  letter-spacing: .05em;
  font-family: 'Noto Serif TC';
  width: calc(100% - 158px - 20px);
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.works .item .action {
  width: 158px;
}
.works .item .btn {
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  color: #163D38;
  background-color: #E4B178;
}
.works .item .btn:active {
  background-color: #fff;
  color: #E4B178;
}
@media (hover: hover) {
  .works .item .btn:hover {
    background-color: #fff;
    color: #E4B178;
  }
}
.works .list-bottom {
  max-width: 566px;
  margin: 0 auto;
  padding-top: 20px;
}
.works .list-bottom .btn {
  width: 100%;
  height: 38px;
  line-height: 38px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
  text-align: center;
  margin: 0 auto;
  border-radius: 10px;
  color: #163D38;
  background-color: #E8E8E8;
  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;
}
.works .list-bottom .btn:active {
  color: #163D38;
  background-color: #fff;
}
@media (hover: hover) {
  .works .list-bottom .btn:hover {
    color: #163D38;
    background-color: #fff;
  }
}
.works .list-bottom .btn.active .icon-arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.works .list-bottom .icon-arrow {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  background-image: url(../images/works-arrow-down.png);
}

.record {
  background-color: #FFFCF5;
}
.record .container {
  padding-top: 60px;
  padding-bottom: 94px;
}
.record .section-header {
  margin-bottom: 44px;
}
.record .section-header img {
  max-height: 97px;
}
.record .nav-pills {
  -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: 524px;
  margin: 0 auto 55px;
}
.record .nav-pills .nav-item {
  width: 217px;
}
.record .nav-pills .nav-item + .nav-item {
  margin-left: 18px;
}
.record .nav-link {
  position: relative;
  background-color: #2B2967;
  border: 5px solid #fff;
  height: 59px;
  line-height: 49px;
  font-size: 22px;
  letter-spacing: .2em;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-family: 'Noto Serif TC';
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.75) inset;
  padding: 0;
}
.record .nav-link:active, .record .nav-link.active {
  background-color: #8F4F8E;
}
@media (hover: hover) {
  .record .nav-link:hover {
    background-color: #8F4F8E;
  }
}
.record .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: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: -12px -9px;
}
.record .item {
  border: 5px solid #FBE6CF;
  background-color: #F6DBCA;
  width: calc(100% / 4 - 9px * 2);
  margin: 12px 9px;
  padding: 10px 5px;
  position: relative;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.16) inset, 0 3px 6px rgba(0, 0, 0, 0.16) inset;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.record .item:active {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
@media (hover: hover) {
  .record .item:hover {
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.record .item:before {
  content: "";
  position: absolute;
  background-size: 100% 100%;
  z-index: 1;
}
.record .item:nth-child(1):before, .record .item:nth-child(7):before {
  top: -10px;
  left: -2px;
  width: 85px;
  height: 23px;
  background-image: url(../images/record-1.png);
}
.record .item:nth-child(2):before, .record .item:nth-child(8):before {
  bottom: 38px;
  left: -5px;
  width: 68px;
  height: 26px;
  background-image: url(../images/record-2.png);
}
.record .item:nth-child(3):before, .record .item:nth-child(5):before {
  top: 60px;
  right: -10px;
  width: 40px;
  height: 41px;
  background-image: url(../images/record-3.png);
}
.record .item:nth-child(4):before, .record .item:nth-child(6):before {
  bottom: 35px;
  right: 5px;
  width: 50px;
  height: 19px;
  background-image: url(../images/record-4.png);
}
.record .image {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.record .image:before {
  content: "";
  padding-top: 66.6666%;
  display: block;
}
.record .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.record .main-text {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: .15em;
  color: #2B2967;
}

.ceremony {
  background-color: #EEC8C1;
  overflow: hidden;
}
.ceremony .unit {
  position: absolute;
}
.ceremony .unit-1 {
  top: -300px;
  right: calc(100% + 112px - 20px);
  width: 720px;
}
.ceremony .unit-2 {
  top: 62px;
  left: calc(100% + 108px - 20px);
  width: 450px;
}
.ceremony .container {
  padding-top: 35px;
  padding-bottom: 140px;
}
.ceremony .section-header {
  margin-bottom: 48px;
}
.ceremony .section-header img {
  max-height: 51px;
  margin: 0;
}
.ceremony .block-0 {
  text-align: center;
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: .35em;
  color: #000;
  margin-bottom: 64px;
}
.ceremony .block-0 span {
  display: inline-block;
}
.ceremony .heading {
  background-size: 118px 75px;
  background-position: left top;
  background-image: url(../images/ceremony-heading.png);
  background-repeat: no-repeat;
  min-height: 75px;
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  color: #2B2967;
  letter-spacing: .15em;
  padding: 32px 0 0 33px;
  margin-bottom: 20px;
}
.ceremony .block-1 {
  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;
}
.ceremony .block-1 .content {
  width: calc(100% - 418px);
  padding-right: 15px;
}
.ceremony .block-1 .map {
  width: 418px;
  padding-top: 28px;
}
.ceremony .block-1 .info {
  font-size: 18px;
  color: #484848;
  padding-left: 60px;
}
.ceremony .block-1 .info__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.ceremony .block-1 .info__row + .info__row {
  margin-top: 9px;
}
.ceremony .block-1 .info__hd {
  width: 120px;
  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;
}
.ceremony .block-1 .info__bd {
  width: calc(100% - 120px);
  font-weight: 700;
  padding-left: 35px;
}
.ceremony .block-1 .info__bd span {
  display: inline-block;
}
.ceremony .block-2 {
  margin-top: 30px;
}
.ceremony .block-2 .top-text {
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  color: #484848;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 35px;
}
.ceremony .block-2 .bottom {
  padding-left: 185px;
}
.ceremony .block-2 .main-text {
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  color: #2B2967;
  letter-spacing: .15em;
  margin-bottom: 15px;
}
.ceremony .block-2 .sub-text {
  padding-left: 49px;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: .15em;
  color: #6E6E6E;
}

@media (max-width: 1023px) {
  .section-anchor {
    top: 0;
  }
}
@media (min-width: 751px) and (max-width: 1024px) {
  .performance .box {
    max-width: 488px;
  }
  .performance .list {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -30px;
  }
  .performance .item {
    margin: 30px;
  }

  .event .box {
    padding-left: calc(100% - 60%);
  }

  .ceremony .block-1 {
    display: block;
  }
  .ceremony .block-1 .content {
    width: 100%;
    padding-right: 0;
  }
  .ceremony .block-1 .map {
    width: 100%;
  }
  .ceremony .block-2 .bottom {
    padding-left: 22.5%;
    padding-right: 22.5%;
  }
  .ceremony .block-2 .sub-text {
    padding-left: 0;
  }
}
@media (max-width: 750px) {
  .section-anchor {
    top: 0;
  }
  .section .container {
    max-width: 330px;
  }

  .kv {
    background-image: url(../images/kv-bg_s.jpg);
  }
  .kv .container {
    padding: 0;
    max-width: 100%;
  }
  .kv .feather {
    top: 32.75%;
    left: calc(50% - 32.4% / 2);
    width: 32.4%;
  }
  .kv .sprite-slogan {
    background-image: url(../images/kv-slogan-sprites_s.png);
  }

  .performance .bg {
    background-image: url(../images/performance-bg_s.jpg);
  }
  .performance .container {
    padding-top: 77px;
    padding-bottom: 62px;
  }
  .performance .section-header {
    margin-bottom: 64px;
  }
  .performance .section-header img {
    max-height: 55px;
  }
  .performance .section-content {
    max-width: 300px;
  }
  .performance .list {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
  }
  .performance .item {
    width: 135px;
    height: 135px;
    padding-top: 39px;
    margin: 15px;
  }
  .performance .image {
    top: -27px;
  }
  .performance .image img {
    max-height: 63px;
  }
  .performance .main-text {
    font-size: 15px;
    line-height: 21px;
  }
  .performance .text-lg {
    font-size: 28px;
    line-height: 40px;
  }
  .performance .sub-text {
    font-size: 15px;
    line-height: 21px;
  }

  .news .bg {
    background-size: 100% 100%;
    background-image: url(../images/news-bg_s.jpg);
    background-color: #fffbf4;
  }
  .news .container {
    padding-top: 55px;
    padding-bottom: 62px;
  }
  .news .section-header img {
    max-height: 36px;
    margin: 0;
  }
  .news .section-content {
    padding: 44px 20px;
  }
  .news .item {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .news .item + .item {
    margin-top: 22px;
  }
  .news .news-collapse .item {
    margin-top: 22px;
  }
  .news .date {
    color: #8F4F8E;
    font-size: 13px;
    margin-bottom: 8px;
  }
  .news .main-text {
    font-size: 16px;
    line-height: 22px;
  }
  .news .link {
    bottom: 15px;
  }
  .news .action {
    margin-top: 45px;
  }
  .news .btn {
    border: 2px solid #2B2967;
    width: 155px;
    height: 44px;
    font-size: 15px;
    line-height: 40px;
  }

  .event .bg {
    background-size: 750px auto;
    background-image: url(../images/event-bg_s.jpg);
  }
  .event .bg:before {
    height: 72px;
    background-image: url(../images/event-top-bg_s.png);
  }
  .event .container {
    padding-top: 0;
    padding-bottom: 48px;
  }
  .event .section-header {
    margin-bottom: 228px;
  }
  .event .section-header img {
    max-height: 36px;
    margin: 0;
  }
  .event .box {
    width: 100%;
    padding-left: 0;
    margin-bottom: 33px;
  }
  .event .action {
    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;
  }
  .event .btn {
    font-size: 22px;
  }
  .event .btn--lg {
    height: 59px;
    font-size: 22px;
    line-height: 49px;
    letter-spacing: .2em;
    width: 300px;
  }
  .event .btn--lg img {
    top: -25px;
    right: 2px;
    width: 40px;
  }
  .event .block-1 {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 300;
  }
  .event .block-1 .action {
    margin-top: 30px;
  }
  .event .block-2 span {
    display: inline-block;
  }
  .event .block-2 p {
    letter-spacing: .15em;
  }
  .event .block-2 .action {
    margin: 0 auto;
    max-width: 253px;
    margin-top: 37px;
    display: block;
  }
  .event .block-2 .btn {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .event .block-2 .btn + .btn {
    margin-top: 16px;
  }
  .event .list {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -8px -10px;
  }
  .event .list .item {
    width: 140px;
    height: 127px;
    margin: 8px 10px;
    padding: 18px 10px;
  }
  .event .list .main-text {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 19px;
  }
  .event .list .icon-arrow {
    width: 40px;
    height: 15px;
  }

  .review .bg {
    background-size: 750px auto;
    background-image: url(../images/review-bg_s.jpg);
  }
  .review .container {
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .review .section-header {
    margin-bottom: 23px;
  }
  .review .section-header img {
    max-height: 57px;
  }

  .works .unit {
    top: 26px;
    left: calc(50% - 105px);
    width: 62px;
    height: 51px;
  }
  .works .container {
    padding-top: 36px;
    padding-bottom: 60px;
  }
  .works .section-header {
    margin-bottom: 25px;
  }
  .works .box {
    background-image: url(../images/works-bg_s.png);
    padding: 24px 15px 48px;
  }
  .works .box:before {
    top: -10px;
    left: -10px;
  }
  .works .box:after {
    bottom: -22px;
    right: 15px;
    width: 78px;
    height: 62px;
  }
  .works .list {
    max-width: 280px;
    height: calc(136px * 3);
  }
  .works .item {
    padding: 24px 0;
  }
  .works .item .inner {
    display: block;
  }
  .works .item .main-text {
    text-align: center;
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .works .item .action {
    width: 100%;
  }
  .works .item .btn {
    width: 158px;
  }
  .works .list-bottom {
    max-width: 280px;
    padding-top: 12px;
  }

  .record .container {
    padding-top: 25px;
    padding-bottom: 60px;
  }
  .record .section-header {
    margin-bottom: 31px;
  }
  .record .section-header img {
    max-height: 57px;
  }
  .record .nav-pills {
    display: block;
    max-width: 195px;
    margin: 0 auto 34px;
  }
  .record .nav-pills .nav-item {
    width: 100%;
  }
  .record .nav-pills .nav-item + .nav-item {
    margin-left: 0;
    margin-top: 5px;
  }
  .record .nav-link {
    height: 45px;
    font-size: 16px;
    line-height: 35px;
  }
  .record .list {
    margin: -10px -5px;
  }
  .record .item {
    width: calc(100% / 2 - 5px * 2);
    margin: 10px 5px;
    padding: 3px 2px 8px;
  }
  .record .item:nth-child(1):before, .record .item:nth-child(7):before {
    top: -10px;
    left: -2px;
    width: 51px;
    height: 14px;
  }
  .record .item:nth-child(2):before, .record .item:nth-child(8):before {
    bottom: 38px;
    left: -5px;
    width: 41px;
    height: 16px;
  }
  .record .item:nth-child(3):before, .record .item:nth-child(5):before {
    top: 37px;
    right: -10px;
    width: 24px;
    height: 25px;
  }
  .record .item:nth-child(4):before, .record .item:nth-child(6):before {
    bottom: 35px;
    right: 5px;
    width: 31px;
    height: 12px;
  }
  .record .image {
    margin-bottom: 9px;
  }
  .record .main-text {
    font-size: 13px;
    line-height: 18px;
  }

  .ceremony .unit {
    display: none;
  }
  .ceremony .container {
    padding-top: 31px;
    padding-bottom: 140px;
  }
  .ceremony .section-header {
    margin-bottom: 30px;
  }
  .ceremony .section-header img {
    max-height: 36px;
    margin: 0 auto;
  }
  .ceremony .block-0 {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 36px;
  }
  .ceremony .heading {
    background-size: 94px 60px;
    min-height: 60px;
    font-size: 19px;
    line-height: 27px;
    padding: 19px 0 0 26px;
  }
  .ceremony .block-1 {
    display: block;
  }
  .ceremony .block-1 .content {
    width: 100%;
    padding-right: 0;
  }
  .ceremony .block-1 .map {
    width: 100%;
  }
  .ceremony .block-1 .info {
    font-size: 15px;
    padding-left: 0;
  }
  .ceremony .block-1 .info__row + .info__row {
    margin-top: 14px;
  }
  .ceremony .block-1 .info__hd {
    width: 90px;
  }
  .ceremony .block-1 .info__bd {
    width: calc(100% - 90px);
    padding-left: 20px;
  }
  .ceremony .block-1 .info__bd span {
    font-size: 14px;
  }
  .ceremony .block-2 {
    margin-top: 30px;
  }
  .ceremony .block-2 .top-text {
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
    margin-bottom: 43px;
  }
  .ceremony .block-2 .bottom {
    padding-left: 0;
  }
  .ceremony .block-2 .main-text {
    font-size: 17px;
    line-height: 25px;
  }
  .ceremony .block-2 .sub-text {
    padding-left: 0;
    letter-spacing: 0;
  }
}
.page {
  -moz-animation: fadeInUp 1s both;
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  overflow: hidden;
}
.page-header {
  position: relative;
  background-color: #1f1f43;
}
.page-header .container {
  padding: 0;
  max-width: 100%;
}
@media (min-width: 1281px) {
  .page-header .container {
    height: 550px;
    width: 1920px;
    max-width: 1920px;
    left: calc(50% - 1920px / 2);
    margin: 0;
  }
}
@media (min-width: 751px) and (max-width: 1280px) {
  .page-header .container {
    width: 150%;
    max-width: 150%;
    left: calc(50% - 150% / 2);
  }
}
.page-content {
  background-image: url(../images/page-content-bg.jpg);
  background-repeat: repeat-x;
  background-size: 100px auto;
  background-position: center top;
  background-color: #ecc3bf;
  padding-top: 140px;
  padding-bottom: 140px;
}
.page-content .container {
  max-width: 1044px;
}

.shortlist .section-header {
  margin-bottom: 50px;
  text-align: center;
}
.shortlist .section-header .title {
  font-size: 33px;
  line-height: 47px;
  font-weight: 900;
  font-family: 'Noto Serif TC';
  letter-spacing: .15em;
  text-align: center;
  color: #2B2967;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.shortlist .section-header .title:before, .shortlist .section-header .title:after {
  content: "";
  position: absolute;
  background-size: contain;
}
.shortlist .section-header .title:before {
  background-image: url(../images/title-left.png);
  top: 9px;
  width: 71px;
  height: 27px;
  right: calc(100% + 40px);
}
.shortlist .section-header .title:after {
  background-image: url(../images/title-right.png);
  bottom: 3px;
  width: 76px;
  height: 21px;
  left: calc(100% + 40px);
}
.shortlist .section-content {
  margin-bottom: 160px;
}
.shortlist .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;
  margin: -25px;
}
.shortlist .list .item {
  border-radius: 135px;
  padding: 55px 40px;
  background-color: rgba(254, 242, 231, 0.66);
  text-align: center;
  width: calc(50% - 25px * 2);
  margin: 25px;
  box-shadow: 100px 100px 50px rgba(255, 255, 255, 0.59) inset, 6px 6px 10px rgba(0, 0, 0, 0.16);
}
.shortlist .list .main-text {
  color: #2B2967;
  font-size: 25px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 22px;
  min-height: 68px;
}
.shortlist .list .sub-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 18px;
  color: #676767;
}
.shortlist .list .btn {
  width: 300px;
  height: 53px;
  line-height: 53px;
  border-radius: 27px;
  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;
  font-size: 15px;
  letter-spacing: .3em;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 0 auto;
}
.shortlist .list .btn .icon-arrow {
  width: 68px;
  height: 26px;
  background-image: url(../images/shortlist-arrow.png);
  margin-left: 20px;
}
.shortlist .list .btn-primary {
  color: #2B2967;
  background-color: #F6DBCA;
}
.shortlist .list .btn-primary:active {
  opacity: .8;
}
@media (hover: hover) {
  .shortlist .list .btn-primary:hover {
    opacity: .8;
  }
}

.shortlist-detail__header {
  padding-bottom: 30px;
}
.shortlist-detail__header .title {
  color: #2B2967;
  font-size: 27px;
  line-height: 39px;
  font-weight: 900;
  letter-spacing: .15em;
  margin-bottom: 13px;
  font-family: 'Noto Serif TC';
}
.shortlist-detail__header .author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: .15em;
}
.shortlist-detail__header .author .hd {
  font-weight: 900;
  color: #8F4F8E;
  background-image: url(../images/shortlist-author.png);
  background-size: 58px 22px;
  background-repeat: no-repeat;
  padding-left: 68px;
  margin-right: 40px;
}
.shortlist-detail__header .author .bd {
  font-weight: 700;
  color: #000;
}
.shortlist-detail__content {
  background-image: url(../images/shortlist-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-color: #fdead1;
  margin-bottom: -140px;
  padding-bottom: 140px;
  padding-top: 113px;
}
.shortlist-detail .section {
  position: relative;
}
.shortlist-detail .section + .section {
  margin-top: 50px;
}
.shortlist-detail .section-header {
  margin-bottom: 22px;
}
.shortlist-detail .section .heading {
  font-size: 20px;
  line-height: 56px;
  font-weight: 700;
  letter-spacing: .15em;
  width: 138px;
  height: 56px;
  text-align: center;
  background-color: #2B2967;
  color: #fff;
}
.shortlist-detail .section-content {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: .15em;
  color: #575757;
}
.shortlist-detail .action {
  margin-top: 180px;
}

.news-detail {
  color: #575757;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: .15em;
}
.news-detail__header {
  margin-bottom: 44px;
}
.news-detail__header .date {
  color: #8F4F8E;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 25px;
}
.news-detail__header .main-text {
  font-size: 25px;
  line-height: 34px;
  letter-spacing: .15em;
  color: #2B2967;
  font-weight: 700;
}
.news-detail__content {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: .05em;
}
.news-detail__content a {
  color: #485981;
  text-decoration: underline;
  font-weight: 700;
}
.news-detail__content a:active {
  text-decoration: none;
}
@media (hover: hover) {
  .news-detail__content a:hover {
    text-decoration: none;
  }
}
.news-detail__footer {
  padding-top: 109px;
}
.news-detail .images {
  position: relative;
  margin-top: 60px;
  padding: 55px 0;
  background-color: #FEF2E7;
}
.news-detail .images:before, .news-detail .images:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100vh;
  height: 100%;
  background-color: #FEF2E7;
  pointer-events: none;
}
.news-detail .images:before {
  right: 100%;
}
.news-detail .images:after {
  left: 100%;
}
.news-detail .images img {
  width: 100%;
}
.news-detail .images img + img {
  margin-top: 40px;
}

.history .section-header {
  margin-bottom: 50px;
  text-align: center;
}
.history .section-header .title {
  font-size: 33px;
  line-height: 47px;
  font-weight: 900;
  font-family: 'Noto Serif TC';
  letter-spacing: .15em;
  text-align: center;
  color: #2B2967;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.history .section-header .title:before, .history .section-header .title:after {
  content: "";
  position: absolute;
  background-size: contain;
}
.history .section-header .title:before {
  background-image: url(../images/title-left.png);
  top: 9px;
  width: 71px;
  height: 27px;
  right: calc(100% + 40px);
}
.history .section-header .title:after {
  background-image: url(../images/title-right.png);
  bottom: 3px;
  width: 76px;
  height: 21px;
  left: calc(100% + 40px);
}
.history .section-content {
  margin-bottom: 150px;
}
.history .bottom-text {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: .15em;
  text-align: center;
  font-weight: 700;
}
.history .heading {
  font-size: 26px;
  line-height: 37px;
  letter-spacing: .15em;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.history-table {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .15em;
  margin-bottom: 40px;
  color: #4D4D4D;
}
.history-table .c-1 {
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.history-table .c-1 img {
  max-width: 20px;
  margin: 0;
}
.history-table__header {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.82);
  border-radius: 97px;
  font-weight: 700;
  color: #2B2967;
  margin-bottom: 14px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.16);
}
.history-table__header .history-table__col {
  width: calc(100% / 3);
  padding: 18px 10px;
}
.history-table__header .history-table__col:nth-child(1) {
  width: calc(20% - 12px);
  margin-right: 12px;
}
.history-table__header .history-table__col:nth-child(2), .history-table__header .history-table__col:nth-child(3) {
  width: calc(80% / 2);
}
.history-table__group {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
  border-radius: 12px;
}
.history-table__group + .history-table__group {
  margin-top: 16px;
}
.history-table__left {
  width: calc(20% - 12px);
  background-color: rgba(254, 242, 231, 0.66);
  box-shadow: 100px 100px 50px rgba(255, 255, 255, 0.59) inset, 6px 6px 10px rgba(0, 0, 0, 0.16);
  border-radius: 14px;
  padding: 34px 10px;
  margin-right: 12px;
  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: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  align-items: stretch;
}
.history-table__right {
  width: 80%;
}
.history-table .item {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 100px 100px 50px rgba(255, 255, 255, 0.59) inset, 6px 6px 10px rgba(0, 0, 0, 0.16);
  background-color: rgba(254, 242, 231, 0.66);
}
.history-table .item:nth-child(2n - 1) {
  background-color: rgba(241, 210, 134, 0.66);
}
.history-table .item + .item {
  margin-top: 14px;
}
.history-table .item__col {
  width: 50%;
  padding: 34px 10px;
}
.history-table .btn-primary {
  width: 128px;
  height: 48px;
  line-height: 48px;
  margin: 0 auto;
  border-radius: 27px;
  font-size: 16px;
  letter-spacing: .15em;
  display: block;
  color: #fff;
  text-align: center;
  background-color: #2B2967;
  box-shadow: 3px 2px 6px rgba(255, 255, 255, 0.94) inset, 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.history-table .btn-primary:active {
  opacity: .8;
}
@media (hover: hover) {
  .history-table .btn-primary:hover {
    opacity: .8;
  }
}

.history_pdf .history-table__header .history-table__col {
  width: 25%;
}
.history_pdf .history-table__left {
  width: 25%;
}
.history_pdf .history-table__right {
  width: 75%;
}
.history_pdf .item__col {
  width: calc(100% / 2);
}

.nominations .history-table__header .history-table__col {
  width: 50%;
}
.nominations .item__col {
  width: calc(100% / 2);
}
.nominations .heading {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.nominations_pdf .history-table__header .history-table__col:nth-child(1) {
  width: 40%;
}
.nominations_pdf .history-table__header .history-table__col:nth-child(2) {
  width: 30%;
}
.nominations_pdf .history-table__header .history-table__col:nth-child(3) {
  width: 30%;
  color: #4D4D4D;
}
.nominations_pdf .item__col:nth-child(1) {
  width: 40%;
  margin-right: 0;
}
.nominations_pdf .item__col:nth-child(2) {
  width: 30%;
}
.nominations_pdf .item__col:nth-child(3) {
  width: 30%;
}
.nominations_pdf .item .group {
  width: calc(100% / 3 * 2);
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 0;
}

@media (min-width: 751px) and (max-width: 1024px) {
  .shortlist .list .btn {
    width: 224px;
    height: 34px;
    line-height: 34px;
    font-size: 15px;
    letter-spacing: .15em;
  }
  .shortlist .list .btn .icon-arrow {
    width: 30px;
    height: 12px;
    margin-left: 7px;
  }
}
@media (max-width: 750px) {
  .page-header .container {
    padding: 0;
    max-width: 100%;
  }
  .page-content {
    padding-top: 64px;
    padding-bottom: 90px;
  }
  .page-content .container {
    max-width: 330px;
  }

  .news-detail {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: .18em;
  }
  .news-detail__header {
    margin-bottom: 29px;
  }
  .news-detail__header .date {
    margin-bottom: 19px;
  }
  .news-detail__header .main-text {
    font-size: 20px;
    line-height: 29px;
  }
  .news-detail__content {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: .18em;
  }
  .news-detail__footer {
    padding-top: 20px;
  }
  .news-detail .images {
    margin-top: 20px;
    padding: 30px 0;
  }
  .news-detail .images img + img {
    margin-top: 20px;
  }

  .shortlist .section-header {
    margin-bottom: 29px;
  }
  .shortlist .section-header .title {
    font-size: 21px;
    line-height: 29px;
    font-weight: 900;
    display: inline-block;
  }
  .shortlist .section-header .title:before {
    top: 6px;
    width: 59px;
    height: 22px;
    right: calc(100% + 28px);
  }
  .shortlist .section-header .title:after {
    bottom: 4px;
    width: 54px;
    height: 15px;
    left: calc(100% + 28px);
  }
  .shortlist .section-content {
    margin-bottom: 54px;
  }
  .shortlist .list {
    display: block;
    margin: 0 auto;
    max-width: 292px;
  }
  .shortlist .list .item {
    border-radius: 90px;
    padding: 44px 30px;
    width: 100%;
    margin: 0;
  }
  .shortlist .list .item + .item {
    margin-top: 19px;
  }
  .shortlist .list .main-text {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 6px;
    min-height: 54px;
  }
  .shortlist .list .sub-text {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 21px;
  }
  .shortlist .list .btn {
    width: 224px;
    height: 34px;
    line-height: 34px;
    font-size: 15px;
    letter-spacing: .15em;
  }
  .shortlist .list .btn .icon-arrow {
    width: 30px;
    height: 12px;
    margin-left: 7px;
  }

  .shortlist-detail__header {
    padding-bottom: 24px;
  }
  .shortlist-detail__header .title {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 45px;
  }
  .shortlist-detail__header .author {
    font-size: 15px;
    line-height: 21px;
  }
  .shortlist-detail__header .author .hd {
    background-size: 38px 15px;
    padding-left: 46px;
    margin-right: 22px;
  }
  .shortlist-detail__content {
    background-image: url(../images/shortlist-bg_s.png);
    background-size: 750px auto;
    margin-bottom: -90px;
    padding-bottom: 90px;
    padding-top: 44px;
  }
  .shortlist-detail .section + .section {
    margin-top: 40px;
  }
  .shortlist-detail .section-header {
    margin-bottom: 10px;
  }
  .shortlist-detail .section .heading {
    font-size: 18px;
    width: 125px;
    height: 42px;
    line-height: 42px;
  }
  .shortlist-detail .section-content {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: .18em;
  }
  .shortlist-detail .action {
    margin-top: 45px;
  }

  .history .section-header {
    margin-bottom: 25px;
  }
  .history .section-header .title {
    font-size: 21px;
    line-height: 29px;
    font-weight: 900;
    display: inline-block;
  }
  .history .section-header .title span {
    display: block;
  }
  .history .section-header .title span:nth-child(1) {
    margin-bottom: 4px;
  }
  .history .section-header .title span:nth-child(2) {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .3em;
  }
  .history .section-header .title:before {
    top: 6px;
    width: 59px;
    height: 22px;
    right: calc(100% + 28px);
  }
  .history .section-header .title:after {
    bottom: 4px;
    width: 54px;
    height: 15px;
    left: calc(100% + 28px);
  }
  .history .section-content {
    margin-bottom: 25px;
  }
  .history .bottom-text {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    text-align: justify;
  }
  .history .heading {
    font-size: 20px;
    line-height: 27px;
  }

  .history-table {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 30px;
  }
  .history-table__header {
    font-size: 16px;
  }
  .history-table__header .history-table__col {
    width: 40%;
  }
  .history-table__header .history-table__col:nth-child(1) {
    width: calc(40% - 12px);
    margin-right: 12px;
  }
  .history-table__header .history-table__col:nth-child(2) {
    width: 60%;
  }
  .history-table__header .history-table__col:nth-child(3), .history-table__header .history-table__col:nth-child(4) {
    display: none;
  }
  .history-table__left {
    width: calc(40% - 12px);
  }
  .history-table__right {
    width: 60%;
  }
  .history-table .item {
    display: block;
    padding: 20px;
    text-align: left;
  }
  .history-table .item__col {
    width: 100%;
    padding: 0;
    border-left: 0;
    border-bottom: 0;
  }
  .history-table .main-text {
    min-height: 50px;
  }
  .history-table .sub-text {
    font-size: 15px;
    padding-top: 30px;
  }
  .history-table .btn-primary {
    width: 104px;
    height: 39px;
    line-height: 39px;
    margin: 0;
    font-size: 15px;
  }
  .history-table .c-1 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }

  .history_pdf .history-table__header .history-table__col:nth-child(1) {
    width: calc(40% - 12px);
    margin-right: 12px;
  }
  .history_pdf .history-table__header .history-table__col:nth-child(2) {
    width: 60%;
  }
  .history_pdf .history-table__left {
    width: 40%;
  }
  .history_pdf .history-table__right {
    width: 60%;
  }
  .history_pdf .item__col {
    width: 100%;
  }
  .history_pdf .item .action {
    margin-top: 20px;
  }
  .history_pdf .item .btn {
    margin: 0 auto;
  }

  .nominations .history-table__header {
    padding: 18px 32px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .nominations .history-table__header .history-table__col {
    width: auto;
    margin-right: 0;
    padding: 0;
  }
  .nominations .history-table__header .history-table__col:nth-child(1):after {
    content: "與";
  }
  .nominations .item {
    display: block;
    padding: 20px 32px;
  }
  .nominations .item__col {
    width: 100%;
    padding: 0;
  }
  .nominations .sub-text {
    padding-top: 20px;
  }

  .nominations_pdf .history-table__header {
    padding: 18px 32px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .nominations_pdf .history-table__header .history-table__col {
    width: auto;
    margin-right: 0;
    padding: 0;
  }
  .nominations_pdf .history-table__header .history-table__col:nth-child(1):after {
    content: "與";
  }
  .nominations_pdf .history-table__header .history-table__col:nth-child(2) {
    width: auto;
  }
  .nominations_pdf .item {
    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;
    padding: 20px 32px;
    padding-right: 24px;
  }
  .nominations_pdf .item__col {
    width: 100%;
    padding: 0;
  }
  .nominations_pdf .item__col:nth-child(1) {
    width: 100%;
  }
  .nominations_pdf .item__col:nth-child(2) {
    width: calc(100% - 104px);
  }
  .nominations_pdf .item__col:nth-child(3) {
    width: 104px;
  }
  .nominations_pdf .sub-text {
    padding-top: 20px;
    padding-right: 20px;
  }
  .nominations_pdf .action {
    padding-top: 20px;
  }
}
