@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, -100px, 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 9.2.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 17, 2023
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #666;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

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

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

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

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

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

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

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

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

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

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

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

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

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

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

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

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

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

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

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

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

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

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

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

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

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

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

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

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

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

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

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

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-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: flex;
  justify-content: 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%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

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

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

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

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

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

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

.swiper-cube {
  overflow: visible;
}

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

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

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

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

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

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

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

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

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

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

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

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -3px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: #000;
  box-shadow: 0;
  opacity: .5;
  margin: 3px;
}

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

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

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 18px;
  height: 36px;
  margin-top: -18px;
  border-radius: 0;
  background-size: 18px auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
}
.swiper-button-prev:before, .swiper-button-prev:after,
.swiper-button-next:before,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: .4 !important;
  filter: grayscale(1);
}
.swiper-button-prev:active,
.swiper-button-next:active {
  opacity: .8;
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: .8;
  }
}

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

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

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  text-align: center;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.btn.disabled {
  color: #565570;
  background: #353451;
  pointer-events: none;
}

.btn-primary {
  font-size: 24px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: .075em;
  height: 50px;
  padding: 0;
  width: 100%;
  border-radius: 10px;
  background: #cdf0f4;
  color: #333;
  border: 2px solid #333;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
  box-shadow: 0 4px 0 4px #333;
}
.btn-primary:active {
  color: #333;
  background: #cdf0f4;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .btn-primary:hover {
    color: #333;
    background: #cdf0f4;
    filter: brightness(1.1);
  }
}

.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.icon-facebook {
  background-image: url(../images/icon-facebook.png);
}
.icon-rss {
  background-image: url(../images/icon-rss.png);
}
.icon-search {
  background-image: url(../images/icon-search.svg);
}

.form-control {
  padding: 8px 16px;
  font-size: 16px;
  line-height: 32px;
  height: 48px;
  letter-spacing: .075em;
  color: #333;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  width: 100%;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
.form-control::placeholder {
  color: #999;
  opacity: 1;
}
.form-control::focus {
  background-color: #fff;
}

.form-check {
  position: relative;
  padding: 0;
  margin: 0;
}
.form-check .form-check-input {
  display: none;
}
.form-check .form-check-input:checked + .form-check-label:after {
  display: block;
}
.form-check .form-check-input + .form-check-label {
  transition: .7s ease;
}

.form-radio .form-check-input:disabled + .form-check-label {
  color: #505C7D;
}
.form-radio .form-check-input:disabled + .form-check-label:before {
  border-color: #505C7D;
  background-color: #f8f8f8;
}
.form-radio .form-check-label {
  position: relative;
  padding: 3px 0;
  padding-left: 40px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  display: block;
  color: #505C7D;
}
.form-radio .form-check-label:before {
  content: '';
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 0;
  border: 2px solid #505C7D;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.form-radio .form-check-label:after {
  content: '';
  background-color: #505C7D;
  position: absolute;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border-radius: 50%;
  top: 5px;
  left: 5px;
  display: none;
}

.form-checkbox .form-check-input:disabled + .form-check-label {
  color: #505C7D;
}
.form-checkbox .form-check-input:disabled + .form-check-label:before {
  border-color: #505C7D;
  background-color: #f8f8f8;
}
.form-checkbox .form-check-label {
  position: relative;
  padding: 3px 0;
  padding-left: 40px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  display: block;
  color: #505C7D;
}
.form-checkbox .form-check-label:before {
  content: '';
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border: 0;
  border: 2px solid #505C7D;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.form-checkbox .form-check-label:after {
  content: '';
  background-color: #505C7D;
  position: absolute;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  top: 5px;
  left: 5px;
  display: none;
}

.form {
  position: relative;
  max-width: 534px;
  margin: 0 auto;
}
.form .form-control {
  border-radius: 0;
}
.form textarea.form-control {
  height: 106px;
}
.form .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.form .form-section + .form-section {
  margin-top: 12px;
}
.form .form-label {
  font-weight: 500;
  text-transform: uppercase;
  width: 90px;
  font-size: 16px;
  line-height: 48px;
  letter-spacing: .075em;
  color: #333;
  margin: 0;
  text-align: right;
}
.form .form-content {
  width: calc(100% - 90px);
  padding-left: 30px;
}
.form .note {
  padding-left: 120px;
  margin-top: 36px;
  color: #2d5968;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.form .note a {
  color: #2d5968;
  text-decoration: underline;
}
.form .note a:active {
  filter: brightness(1.1);
  text-decoration: none;
}
@media (hover: hover) {
  .form .note a:hover {
    filter: brightness(1.1);
    text-decoration: none;
  }
}
.form .group {
  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;
  padding-left: 120px;
  margin-top: 40px;
}
.form .code {
  width: 225px;
}
.form .btn-primary {
  width: 148px;
}
.form .btn-primary img {
  width: 24px;
  margin-left: 10px;
}
.form .upload {
  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;
}
.form .upload .text {
  color: #2d5968;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: .075em;
  width: calc(100% - 142px);
  padding-left: 20px;
}
.form .btn-upload {
  font-size: 16px;
  line-height: 48px;
  letter-spacing: .075em;
  font-weight: 500;
  height: 48px;
  padding: 0;
  width: 142px;
  border-radius: 10px;
  background: #99d2e6;
  color: #fff;
  border: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
}
.form .btn-upload img {
  width: 24px;
  margin-left: 10px;
}
.form .btn-upload:active {
  color: #fff;
  background: #99d2e6;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .form .btn-upload:hover {
    color: #fff;
    background: #99d2e6;
    filter: brightness(1.1);
  }
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 'Noto Serif TC', '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: #eeece6;
}

* {
  -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 {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
}

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: 16px;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, 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;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

.container {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 20px;
  position: relative;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.in-view {
  opacity: 0;
}
.in-view.animated {
  opacity: 1;
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
}

.site-content {
  position: relative;
  overflow: hidden;
}

.plus-header {
  padding-top: 70px;
}

.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;
  }
}
.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);
  }
}
@media (max-width: 767px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .container {
    padding: 0 15px;
  }

  .site-content {
    padding-top: 52px;
  }

  .plus-header {
    padding-top: 127px;
  }
  .plus-header .page-right {
    display: none;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.site-header .container {
  max-width: 100%;
}
.site-header .logo {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 110px;
  height: 35px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/logo.png);
  z-index: 11;
}
.site-header.sticky {
  background-color: #edece7;
  height: 70px;
  border-bottom: 1px solid #333;
}
.site-header.plus-border {
  background-color: #edece7;
  height: 70px;
  border-bottom: 1px solid #333;
}
.site-header .header-text {
  position: absolute;
  top: -1px;
  left: 148px;
  width: 474px;
}

.site-menu {
  position: absolute;
  top: 0;
  right: 0;
}
.site-menu .menu-close {
  display: none;
}
.site-menu.is-view .menu-panel {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -moz-animation: slideInRight 0.3s both;
  -webkit-animation: slideInRight 0.3s both;
  animation: slideInRight 0.3s both;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  width: 100%;
  height: 100vh;
  padding-top: 90px;
  padding-bottom: 65px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  max-width: 445px;
}
.site-menu.is-view .menu-panel .main-menu li {
  -moz-animation: fadeInUp 0.3s both;
  -webkit-animation: fadeInUp 0.3s both;
  animation: fadeInUp 0.3s both;
}
.site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
  animation-delay: 0.1s;
}
.site-menu.is-view .menu-panel .main-menu li:nth-child(2) {
  animation-delay: 0.2s;
}
.site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
  animation-delay: 0.3s;
}
.site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
  animation-delay: 0.4s;
}
.site-menu.is-view .menu-panel .main-menu li:nth-child(5) {
  animation-delay: 0.5s;
}
.site-menu.is-view .menu-panel .menu-close {
  display: block;
  -moz-animation: fadeInDown 0.3s both;
  -webkit-animation: fadeInDown 0.3s both;
  animation: fadeInDown 0.3s both;
}

.menu-panel {
  display: none;
  background-color: #99d2e6;
}
.menu-panel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/menu-bg.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 53px auto;
}

.main-menu {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: 0;
  display: block;
}
.main-menu li {
  position: relative;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.main-menu li + li {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #333;
}
.main-menu a {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: .1em;
  display: block;
  color: #333;
}
.main-menu a.active, .main-menu a.mPS2id-highlight-first, .main-menu a:active {
  color: inherit;
}
@media (hover: hover) {
  .main-menu a:hover {
    color: inherit;
  }
}

.menu-toggle {
  position: fixed;
  top: 13px;
  right: 28px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 5;
  background-size: contain;
  background-image: url(../images/menu-toggle.png);
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
}
.menu-toggle:active {
  filter: brightness(1.1);
}

.menu-close {
  position: fixed;
  top: 15px;
  right: 60px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 12;
  background-size: contain;
  background-image: url(../images/menu-close.png);
  display: none;
}
.menu-close:active {
  filter: brightness(1.1);
}

@media (max-width: 767px) {
  .site-header {
    border-bottom: 1px solid #333;
    background-color: #edece7;
    height: 52px;
  }
  .site-header .logo {
    top: 8px;
    left: 16px;
    width: 110px;
    height: 35px;
  }
  .site-header.sticky {
    height: 52px;
  }
  .site-header.sticky .header-text {
    display: none;
  }
  .site-header.plus-border {
    height: 52px;
  }
  .site-header .header-text {
    top: 52px;
    left: 0;
    width: 100%;
    background-color: #99d2e6;
    height: 74px;
  }
  .site-header .header-text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 46px;
    background-color: #99d2e6;
    border-bottom: 1px solid #000;
    z-index: 0;
  }
  .site-header .header-text:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 46px;
    background-color: #eeece6;
    border-bottom: 1px solid #000;
    z-index: 0;
  }
  .site-header .header-text div {
    position: relative;
    z-index: 1;
  }
  .site-header .header-text img {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }

  .menu-toggle {
    top: 6px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .menu-close {
    top: 7px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .site-menu.is-view .menu-panel {
    width: 100%;
    height: 100vh;
    padding-top: 90px;
    padding-bottom: 65px;
    max-width: 248px;
  }

  .menu-panel:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 52px;
    background-color: #edece7;
    border-bottom: 1px solid #333;
  }
  .menu-panel:before {
    top: 77px;
    left: calc(100% - 100px);
    width: 81px;
    height: 17px;
    background-image: url(../images/menu-bg_s.png);
    background-size: 81px auto;
  }

  .main-menu {
    max-width: 180px;
  }
  .main-menu li + li {
    margin-top: 48px;
    padding-top: 48px;
  }
}
.site-footer {
  position: relative;
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: .075em;
  text-align: center;
  color: #333;
  background-color: #dcd6c6;
  padding: 15px 0;
}
.site-footer span {
  display: inline-block;
}

.side-sticky {
  position: fixed;
  bottom: 20px;
  right: 10px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
}
.side-sticky.is-view .btn-top {
  display: block;
}
.side-sticky.change-bottom {
  position: absolute;
  bottom: 20px;
}
.side-sticky a {
  cursor: pointer;
  display: block;
}
.side-sticky a:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .side-sticky a:hover {
    filter: brightness(1.1);
  }
}
.side-sticky .btn-top {
  width: 63px;
  margin: 15px auto 0;
  display: none;
}
.side-sticky .icon-top {
  width: 63px;
  height: 63px;
  background-size: 100% auto;
  background-image: url(../images/btn-top.png);
}

@media (max-width: 767px) {
  .site-footer {
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0;
  }

  .side-sticky {
    right: 10px;
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 1137px;
  margin: 0 auto;
}
.modal-content {
  position: relative;
  border: 2px solid #333;
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .05em;
  color: #5E5E5E;
  background-color: #cdf0f4;
}
.modal .btn-close {
  width: 54px;
  height: 55px;
  padding: 0;
  background: url(../images/modal-close.png);
  background-size: 54px auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 10;
}

.modal-backdrop {
  background-color: #000;
}

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

.vote-modal {
  word-wrap: break-word;
}
.vote-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 732px;
}
.vote-modal .modal-content {
  padding: 18px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .075em;
  color: #333;
}
.vote-modal a {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.vote-modal a:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .vote-modal a:hover {
    filter: brightness(1.2);
  }
}
.vote-modal .grid {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.vote-modal .grid-left {
  width: 57.70609319%;
}
.vote-modal .grid-right {
  width: calc(100% - 57.70609319%);
  padding-left: 26px;
  padding-top: 72px;
}
.vote-modal .image {
  position: relative;
  overflow: hidden;
}
.vote-modal .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.vote-modal .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vote-modal .top-text {
  padding: 5px 13px;
  font-size: 16px;
  line-height: 25px;
  background-color: #333;
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.vote-modal .main-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 18px;
}

.winner-modal,
.post-modal {
  word-wrap: break-word;
}
.winner-modal .modal-dialog,
.post-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 732px;
}
.winner-modal .modal-content,
.post-modal .modal-content {
  padding: 18px;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: .075em;
  color: #333;
  display: block;
}
.winner-modal a,
.post-modal a {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.winner-modal a:active,
.post-modal a:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .winner-modal a:hover,
  .post-modal a:hover {
    filter: brightness(1.2);
  }
}
.winner-modal .title,
.post-modal .title {
  padding: 5px 13px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
  background-color: #333;
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0;
  max-width: calc(100% - 80px);
}
.winner-modal ul,
.post-modal ul {
  list-style: disc;
  padding-left: 1.25em;
  margin-bottom: 20px;
}
.winner-modal p,
.post-modal p {
  margin-bottom: 20px;
}
.winner-modal strong,
.post-modal strong {
  color: #f00;
}

@media (max-width: 767px) {
  .modal .btn-close {
    right: 5px;
  }

  .vote-modal .modal-dialog {
    width: calc(100% - 15px * 2);
    max-width: 348px;
  }
  .vote-modal .modal-content {
    padding: 18px 15px;
  }
  .vote-modal .grid {
    display: block;
  }
  .vote-modal .grid-left {
    width: 100%;
  }
  .vote-modal .grid-right {
    width: 100%;
    padding-left: 0;
    padding-top: 18px;
  }

  .winner-modal .modal-dialog,
  .post-modal .modal-dialog {
    width: calc(100% - 15px * 2);
    max-width: 348px;
  }
  .winner-modal .modal-content,
  .post-modal .modal-content {
    padding: 18px 15px;
  }
  .winner-modal .title,
  .post-modal .title {
    max-width: calc(100% - 60px);
  }
}
/* index */
.page-left {
  position: absolute;
  top: 1275px;
  left: 0;
  width: 50px;
  pointer-events: none;
}

.page-right {
  position: absolute;
  top: 70px;
  right: 0;
  width: 35px;
  pointer-events: none;
}

.index-section {
  position: relative;
  z-index: 0;
  font-size: 18px;
  line-height: 30px;
}
.index-section .section-anchor {
  position: absolute;
  top: -64px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.index-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
.index-section .container {
  padding: 0;
}
.index-section ul {
  list-style: disc;
  padding-left: 1.75em;
}
.index-section ol {
  list-style: decimal;
  padding-left: 1.75em;
}

.index-kv {
  position: relative;
  z-index: 0;
}
.index-kv .container {
  padding: 0 95px;
}
.index-kv img {
  width: 100%;
  display: block;
}
.index-kv .swiper-gallery {
  position: relative;
}
.index-kv .gallery-top {
  max-width: 760px;
  z-index: 0;
}
.index-kv .gallery-top .item {
  opacity: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  position: relative;
}
.index-kv .gallery-top .swiper-slide-active .item {
  opacity: 1;
}
.index-kv .gallery-top .swiper-button-prev,
.index-kv .gallery-top .swiper-button-next {
  display: none;
}
.index-kv .gallery-top .image {
  position: relative;
}
.index-kv .gallery-top .image:before {
  content: "";
  padding-top: 760px;
  display: block;
}
.index-kv .gallery-top .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-kv .gallery-top .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 100%;
  height: 100%;
  background-image: url(../images/changhua.png);
  background-repeat: no-repeat;
  background-size: 64px auto;
  background-position: left bottom;
}
.index-kv .gallery-thumbs {
  position: absolute;
  bottom: 10px;
  left: 780px;
}
.index-kv .gallery-thumbs .swiper-wrapper {
  display: block;
}
.index-kv .gallery-thumbs .swiper-slide {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: .1em;
  font-weight: 500;
  width: auto;
  padding: 0 0 0 24px;
  position: relative;
  color: #999;
  cursor: pointer;
}
.index-kv .gallery-thumbs .swiper-slide:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px / 2);
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #999;
}
.index-kv .gallery-thumbs .swiper-slide + .swiper-slide {
  margin-top: 15px;
}
.index-kv .gallery-thumbs .swiper-slide-thumb-active {
  color: #99d2e6;
}
.index-kv .gallery-thumbs .swiper-slide-thumb-active:before {
  background-color: #99d2e6;
}
.index-kv .kv-slogan {
  width: 150px;
  position: absolute;
  top: 110px;
  right: 78px;
  z-index: 2;
}
.index-kv .kv-scroll {
  position: relative;
  width: 64px;
  margin: 16px auto 0;
}
.index-kv .kv-scroll__arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: mouseScroll 1s linear infinite;
}

.mouseScroll {
  animation-name: scroll;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}

@keyframes mouseScroll {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 3px);
  }
  to {
    transform: translate(0, 0);
  }
}
.floating {
  animation-name: floating;
  animation-duration: 1.6s;
  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, -5px);
  }
  to {
    transform: translate(0, 0);
  }
}
.index-a .container {
  padding: 0 20px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.index-a .container:after {
  content: "";
  position: absolute;
  top: 70px;
  left: calc(50% + 525px);
  width: 30px;
  height: 30px;
  background-image: url(../images/bg-plus.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.index-a .section-header {
  margin-bottom: 45px;
}
.index-a .section-header .title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
  letter-spacing: .075em;
  margin-bottom: 45px;
  text-align: center;
  position: relative;
}
.index-a .section-header .title:before {
  content: "";
  position: absolute;
  top: calc(100% + 20px);
  left: calc(50% - 110px / 2);
  width: 110px;
  height: 1px;
  background-color: #333;
}
.index-a .section-header .top-text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .075em;
  font-weight: 500;
  text-align: center;
}
.index-a .section-header .top-text strong {
  font-weight: 900;
}
.index-a .section-content {
  position: relative;
  max-width: 1110px;
  margin: 0 auto;
}
.index-a .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: -34px;
}
.index-a .list .item {
  width: calc(100% / 3 - 34px * 2);
  margin: 34px;
}
.index-a .swiper-slide {
  padding: 0;
  width: 100%;
}
.index-a .item {
  display: block;
  position: relative;
}
.index-a .item:before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 103px;
  height: 92px;
  background-color: #dcd6c6;
}
.index-a .item:active .image img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (hover: hover) {
  .index-a .item:hover .image img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.index-a .item .image {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}
.index-a .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.index-a .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.index-a .item .main-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: .075em;
  text-align: center;
  position: relative;
}
.index-a .item .main-text:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #99d2e6;
}
.index-a .item .main-text span {
  position: relative;
  background-color: #efece7;
  width: 130px;
  margin: 0 auto;
  display: block;
}
.index-a .item .sub-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: .075em;
  text-align: center;
  color: #666;
  margin-top: 12px;
}
.index-a .swiper-button-prev,
.index-a .swiper-button-next {
  width: 40px;
  height: 40px;
  top: 150px;
  margin-top: 0;
  background-size: 100% auto;
  border-radius: 50%;
}
.index-a .swiper-button-prev {
  background-image: url(../images/swiper-prev.png);
  left: 0;
}
.index-a .swiper-button-next {
  background-image: url(../images/swiper-next.png);
  right: 0;
}
.index-a .swiper-pagination {
  position: relative;
  bottom: 0;
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: 25px -5px 0;
}
.index-a .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .index-a .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.index-a .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #999;
  box-shadow: 0;
  opacity: 1;
}
.index-a .swiper-pagination-bullet-active {
  background-color: #99d2e6;
  opacity: 1;
}

.index-b {
  background-color: #99d2e6;
}
.index-b .bg {
  background-image: url(../images/index-b-bg.png);
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 1300px auto;
  animation: marquee 30s infinite linear;
}
.index-b .container {
  padding: 0 20px;
  padding-top: 58px;
  padding-bottom: 44px;
}
.index-b .box {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 1007px;
  margin: 0 auto;
  height: 525px;
  position: relative;
}
.index-b .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stage-1 .box {
  background-image: url(../images/index-b1-bg.png);
}
.stage-1 .action {
  position: absolute;
  top: 52%;
  left: 38%;
}
.stage-1 .btn {
  width: 132px;
  animation: swing 2s infinite;
}

.stage-2 .box {
  background-image: url(../images/index-b1-bg.png);
}
.stage-2 .layer-2 {
  opacity: 0;
}
.stage-2.active .layer-1 {
  animation: swing 2s infinite;
}
.stage-2.active .layer-2 {
  animation: b_zoomIn 2s;
  animation-delay: 2.5s;
}
.stage-2.active .layer-2 img {
  animation: b_rotateIn 2s infinite;
  animation-delay: 2.5s;
}

@keyframes b_zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
@keyframes b_rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -180deg);
  }
  to {
    transform-origin: center;
    transform: none;
  }
}
.stage-3 {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: .075em;
}
.stage-3 .inner {
  opacity: 0;
}
.stage-3.active .inner {
  animation: fadeIn 1s forwards;
  animation-delay: .5s;
}
.stage-3 .box {
  background-image: url(../images/index-b3-bg.png);
  padding: 60px 27px 0;
}
.stage-3 .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.stage-3 .grid-left {
  width: 460px;
  position: relative;
  margin-top: 30px;
}
.stage-3 .grid-left:before {
  content: "";
  position: absolute;
  top: calc(50% - 460px / 2);
  left: calc(50% - 460px / 2);
  width: 460px;
  height: 460px;
  background-image: url(../images/index-b3-0.png);
  background-size: 100% auto;
  animation: rotate 36s infinite;
}
.stage-3 .grid-right {
  width: calc(100% - 460px);
  padding-right: 15px;
}
.stage-3 .image {
  width: 270px;
  margin: 0 auto;
  border: 2px solid #333;
  position: relative;
}
.stage-3 .content {
  width: 100%;
  max-width: 410px;
  margin-left: 15px;
  margin-bottom: 36px;
}
.stage-3 .main-text {
  font-size: 60px;
  line-height: 72px;
  font-weight: 700;
  color: #f8af41;
  text-align: center;
  border-bottom: 2px solid #fff;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.stage-3 .btn-link {
  width: 137px;
  display: block;
  margin-top: 10px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.stage-3 .btn-link:active {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
@media (hover: hover) {
  .stage-3 .btn-link:hover {
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.stage-3 .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;
  margin: 0 -3px;
}
.stage-3 .action .btn {
  width: 138px;
  margin: 0 3px;
}
.stage-3 .action .btn:active {
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
@media (hover: hover) {
  .stage-3 .action .btn:hover {
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform-origin: center;
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes marquee {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 1300px bottom;
  }
}
@media (max-width: 1300px) and (min-width: 768px) {
  .page-left {
    width: 3.846153846vw;
  }

  .page-right {
    width: 2.692307692vw;
  }

  .index-kv .container {
    padding: 0 7.307692307vw;
  }
  .index-kv .gallery-top {
    max-width: 58.461538461vw;
  }
  .index-kv .gallery-top .image:before {
    padding-top: 58.461538461vw;
  }
  .index-kv .gallery-top .image:after {
    background-size: 4.923076923vw auto;
  }
  .index-kv .gallery-thumbs {
    left: 60vw;
  }
  .index-kv .kv-slogan {
    width: 11.538461538vw;
    top: 8.461538461vw;
    right: 6vw;
  }
  .index-kv .kv-scroll {
    width: 4.923076923vw;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .index-b .lg-view {
    display: none;
  }
  .index-b .sm-view {
    display: block;
  }
  .index-b .bg {
    background-image: url(../images/index-b-bg_s.png);
    background-size: 542px auto;
  }
  .index-b .container {
    padding: 0 16px;
    padding-top: 60px;
    padding-bottom: 48px;
  }
  .index-b .box {
    background-size: 100% auto;
    width: 342px;
    height: 520px;
    display: block;
  }

  .stage-1 .box {
    background-image: url(../images/index-b1-bg_s.png);
  }
  .stage-1 .action {
    top: 60%;
    left: 15%;
  }
  .stage-1 .btn {
    width: 110px;
  }

  .stage-2 .box {
    background-image: url(../images/index-b1-bg_s.png);
  }

  .stage-3 {
    font-size: 15px;
    line-height: 24px;
  }
  .stage-3 .box {
    background-image: url(../images/index-b3-bg_s.png);
    padding: 25px 25px 0;
    width: 342px;
    height: 714px;
  }
  .stage-3 .grid {
    display: block;
  }
  .stage-3 .grid-left {
    width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .stage-3 .grid-left:before {
    top: calc(50% - 240px / 2);
    left: calc(50% - 240px / 2);
    width: 240px;
    height: 240px;
  }
  .stage-3 .grid-right {
    width: 100%;
    padding-right: 0;
  }
  .stage-3 .image {
    width: 100%;
    max-width: 284px;
    margin: 0 auto;
  }
  .stage-3 .content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 8px;
  }
  .stage-3 .main-text {
    font-size: 30px;
    line-height: 40px;
    text-align: left;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .stage-3 .btn-link {
    width: 110px;
    margin-top: 10px;
  }
  .stage-3 .action .btn {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .page-left {
    top: 173.333333333vw;
    width: 20px;
  }

  .page-right {
    top: 52px;
    width: 28px;
  }

  .index-section .container {
    max-width: 750px;
  }

  .index-kv .container {
    max-width: 100%;
    padding: 0;
  }
  .index-kv .gallery-top {
    max-width: 100%;
  }
  .index-kv .gallery-top .image:before {
    padding-top: 139.2%;
  }
  .index-kv .gallery-top .image:after {
    left: 0;
    background-size: 10.666666666vw auto;
    background-image: url(../images/changhua_s.png);
  }
  .index-kv .gallery-thumbs {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 12px;
  }
  .index-kv .gallery-thumbs .swiper-wrapper {
    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;
  }
  .index-kv .gallery-thumbs .swiper-slide + .swiper-slide {
    margin-top: 0;
    margin-left: 30px;
  }
  .index-kv .kv-slogan {
    width: 100%;
    top: 0;
    right: 0;
  }
  .index-kv .kv-scroll {
    width: 40px;
    margin: 28px auto 0;
  }

  .index-a .container {
    padding-top: 36px;
    padding-bottom: 54px;
  }
  .index-a .container:after {
    top: 10px;
    left: calc(50% + 136px);
    width: 24px;
    height: 24px;
  }
  .index-a .section-header .title {
    font-size: 36px;
    line-height: 50px;
  }
  .index-a .section-header .title:before {
    left: calc(50% - 77px / 2);
    width: 77px;
  }
  .index-a .section-header .top-text {
    font-size: 15px;
    line-height: 24px;
  }
  .index-a .item {
    margin: 0 20px;
  }
  .index-a .item .image {
    margin-bottom: 20px;
  }
  .index-a .l-swiper {
    max-width: 360px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 10px 0 0;
  }

  .index-b .bg {
    background-image: url(../images/index-b-bg_s.png);
    background-size: 542px auto;
  }
  .index-b .container {
    padding: 0 16px;
    padding-top: 60px;
    padding-bottom: 48px;
  }
  .index-b .box {
    background-size: 100% auto;
    width: 342px;
    height: 520px;
    display: block;
  }

  @keyframes marquee {
    0% {
      background-position: 0 bottom;
    }
    100% {
      background-position: 542px bottom;
    }
  }
  .stage-1 .box {
    background-image: url(../images/index-b1-bg_s.png);
  }
  .stage-1 .action {
    top: 60%;
    left: 15%;
  }
  .stage-1 .btn {
    width: 110px;
  }

  .stage-2 .box {
    background-image: url(../images/index-b1-bg_s.png);
  }

  .stage-3 {
    font-size: 15px;
    line-height: 24px;
  }
  .stage-3 .box {
    background-image: url(../images/index-b3-bg_s.png);
    padding: 25px 25px 0;
    width: 342px;
    height: 714px;
  }
  .stage-3 .grid {
    display: block;
  }
  .stage-3 .grid-left {
    width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .stage-3 .grid-left:before {
    top: calc(50% - 240px / 2);
    left: calc(50% - 240px / 2);
    width: 240px;
    height: 240px;
  }
  .stage-3 .grid-right {
    width: 100%;
    padding-right: 0;
  }
  .stage-3 .image {
    width: 100%;
    max-width: 284px;
    margin: 0 auto;
  }
  .stage-3 .content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 8px;
  }
  .stage-3 .main-text {
    font-size: 30px;
    line-height: 40px;
    text-align: left;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .stage-3 .btn-link {
    width: 110px;
    margin-top: 10px;
  }
  .stage-3 .action .btn {
    width: 100px;
  }
}
.page {
  min-height: calc(100vh - 70px - 55px);
  background-position: center bottom;
  background-image: url(../images/page-bottom.png);
  background-repeat: no-repeat;
  background-size: 1920px auto;
}
.page .container {
  padding: 0 20px;
  padding-top: 70px;
  padding-bottom: 160px;
}
.page .section-header {
  margin-bottom: 45px;
}
.page .section-header .title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
  letter-spacing: .075em;
  margin-bottom: 45px;
  text-align: center;
  position: relative;
}
.page .section-header .title:before {
  content: "";
  position: absolute;
  top: calc(100% + 20px);
  left: calc(50% - 110px / 2);
  width: 110px;
  height: 1px;
  background-color: #333;
}
.page .section-header .top-text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .075em;
  font-weight: 500;
  text-align: center;
}
.page .section-header .top-text strong {
  font-weight: 900;
  display: block;
  margin-bottom: 10px;
}

.page-form .page-left {
  top: 560px;
}
.page-form .section-content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}
.page-form .list {
  margin-bottom: 54px;
}
.page-form .list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .075em;
}
.page-form .list .item + .item {
  margin-top: 8px;
}
.page-form .list .item-header {
  width: 85px;
  background-color: #99d2e6;
  color: #fff;
  text-align: center;
  line-height: 33px;
  font-weight: 700;
}
.page-form .list .item-content {
  width: calc(100% - 85px);
  padding-top: 1px;
  padding-left: 20px;
  text-align: justify;
}

.page-vote .container {
  padding-bottom: 200px;
}
.page-vote .page-left {
  top: 560px;
}
.page-vote .section-header {
  position: relative;
  max-width: 940px;
  margin: 0 auto 20px;
}
.page-vote .section-header .top-text strong {
  margin-bottom: 0;
}
.page-vote .section-header .btn-primary {
  font-size: 24px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: .075em;
  height: 50px;
  padding: 0;
  width: 150px;
  border-radius: 10px;
  background: #0799fe;
  color: #fff;
  border: 2px solid #333;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
  box-shadow: 0 4px 0 4px #333;
  position: absolute;
  top: -40px;
  right: 0;
}
.page-vote .section-header .btn-primary img {
  width: 30px;
  margin-right: 10px;
}
.page-vote .section-header .btn-primary:active {
  color: #fff;
  background: #0799fe;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .page-vote .section-header .btn-primary:hover {
    color: #fff;
    background: #0799fe;
    filter: brightness(1.1);
  }
}
.page-vote .section-content {
  position: relative;
  max-width: 1110px;
  margin: 0 auto;
}

.step-section {
  position: relative;
}
.step-section__header {
  width: 210px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.step-section__content {
  position: relative;
  padding: 0 20px;
}

.vote-top {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: .075em;
  margin-bottom: 66px;
}
.vote-top .top-block {
  max-width: 920px;
  margin: 0 auto 20px;
}
.vote-top .top-block .main-text {
  width: 98px;
  background-color: #99d2e6;
  color: #fff;
  text-align: center;
  line-height: 33px;
  font-weight: 700;
  margin-bottom: 10px;
}
.vote-top .list {
  max-width: 920px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #99d0e4;
  font-size: 16px;
}
.vote-top .list .main-text {
  display: block;
  margin-bottom: 10px;
}
.vote-top .list ul {
  list-style: none;
}
.vote-top .list ul li {
  position: relative;
  padding-left: 20px;
}
.vote-top .list ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #99d2e6;
}
.vote-top .list ul li + li {
  margin-top: 6px;
}

.vote-finish {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: .075em;
  margin-bottom: 66px;
  text-align: center;
}
.vote-finish .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-top: 40px;
}
.vote-finish .btn-primary {
  max-width: 240px;
  margin: 0 15px;
}
.vote-finish .title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f00;
}
.vote-finish .title span {
  display: inline-block;
}
.vote-finish .text {
  color: #f00;
}

.step1 {
  margin-bottom: 120px;
}
.step1 .step-section__header {
  width: 210px;
  margin: 0 auto -20px;
}
.step1 .step-section__content {
  background-color: #d6dee0;
  padding-top: 55px;
  padding-bottom: 40px;
}
.step1 .step-section__content:before {
  content: "";
  position: absolute;
  left: calc(50% - 50px / 2);
  bottom: -74px;
  width: 50px;
  height: 105px;
  background-image: url(../images/step-section-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.step1 .step-form {
  max-width: 520px;
  margin: 0 auto 30px;
}
.step1 .step-form .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.step1 .step-form .form-section + .form-section {
  margin-top: 12px;
}
.step1 .step-form .form-label {
  font-weight: 500;
  text-transform: uppercase;
  width: 90px;
  font-size: 16px;
  line-height: 48px;
  letter-spacing: .075em;
  color: #333;
  margin: 0;
  text-align: right;
}
.step1 .step-form .form-content {
  width: calc(100% - 90px);
  padding-left: 30px;
}
.step1 .text {
  max-width: 920px;
  margin: 0 auto;
  color: #2d5968;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: .075em;
  text-align: justify;
}

.step2 {
  margin-bottom: 120px;
}
.step2 .step-section__header {
  width: 210px;
  margin: 0 auto -20px;
}
.step2 .step-section__content {
  background-color: #d6dee0;
  padding-top: 55px;
  padding-bottom: 70px;
}
.step2 .step-section__content:before {
  content: "";
  position: absolute;
  left: calc(50% - 50px / 2);
  bottom: -74px;
  width: 50px;
  height: 105px;
  background-image: url(../images/step-section-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.step2 .swiper-gallery {
  max-width: 920px;
  margin: 0 auto;
}
.step2 .gallery-top {
  margin-bottom: 50px;
}
.step2 .gallery-top .swiper-slide .list {
  opacity: 0;
}
.step2 .gallery-top .swiper-slide-active .list {
  opacity: 1;
}
.step2 .gallery-top .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: -24px -16px;
}
.step2 .gallery-top .item {
  position: relative;
  width: calc(100% / 3 - 16px * 2);
  margin: 24px 16px;
  padding-top: 14px;
}
.step2 .gallery-top .image {
  position: relative;
  border: 14px solid #cdf0f4;
  cursor: pointer;
}
.step2 .gallery-top .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.step2 .gallery-top .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step2 .gallery-top .image:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 14px * 2);
  height: calc(100% + 14px * 2);
  border: 2px solid #333;
}
.step2 .gallery-top .inner {
  cursor: pointer;
}
.step2 .gallery-top .top-text {
  padding: 5px 13px;
  font-size: 16px;
  line-height: 25px;
  background-color: #333;
  color: #fff;
  display: inline-block;
  letter-spacing: 0;
  position: absolute;
  top: 0;
}
.step2 .gallery-top .action {
  text-align: center;
  margin-top: -32px;
  margin-bottom: 20px;
}
.step2 .gallery-top .btn-vote {
  font-size: 24px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: .075em;
  height: 50px;
  padding: 0;
  width: 128px;
  margin: 0 auto;
  border-radius: 10px;
  background: #cdf0f4;
  color: #333;
  border: 2px solid #333;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
  box-shadow: 0 4px 0 4px #333;
}
.step2 .gallery-top .btn-vote:active {
  color: #333;
  background: #99d2e6;
}
@media (hover: hover) {
  .step2 .gallery-top .btn-vote:hover {
    color: #333;
    background: #99d2e6;
  }
}
.step2 .gallery-top .icon-vote {
  width: 36px;
  height: 36px;
  background-image: url(../images/icon-click.png);
  margin-left: 8px;
  margin-right: -8px;
}
.step2 .gallery-top .main-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
.step2 .gallery-top .group {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.step2 .gallery-top .sub-text {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  width: 94px;
  text-align: right;
  padding-right: 8px;
}
.step2 .gallery-top .sub-text .text-lg {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin-right: 10px;
  display: inline-block;
}
.step2 .gallery-top .text {
  width: calc(100% - 94px);
  font-size: 15px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  border-left: 1px solid #333;
  padding-left: 6px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 48px;
  -webkit-line-clamp: 2;
}
.step2 .swiper-control {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}
.step2 .swiper-button-prev,
.step2 .swiper-button-next {
  top: calc(50% - 30px / 2);
  width: 12px;
  height: 30px;
  margin-top: 0;
  background-size: 100% auto;
}
.step2 .swiper-button-prev {
  background-image: url(../images/swiper-prev2.png);
  left: 0;
}
.step2 .swiper-button-next {
  background-image: url(../images/swiper-next2.png);
  right: 0;
}
.step2 .gallery-thumbs .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.step2 .gallery-thumbs .swiper-slide {
  font-size: 15px;
  line-height: 27px;
  width: auto;
  position: relative;
  cursor: pointer;
  text-align: center;
  width: 36px;
}
.step2 .gallery-thumbs .swiper-slide-thumb-active .main-text {
  background-color: #99d2e6;
}
.step2 .gallery-thumbs .main-text {
  width: 27px;
  height: 27px;
  margin: 0 auto;
  display: block;
  font-weight: 600;
  line-height: 27px;
}
.step2 .gallery-thumbs .sub-text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  opacity: 0;
  display: none;
}
.step2 .bottom-text {
  text-align: center;
  margin-bottom: 40px;
  display: none;
}
.is-mobile .step2 .bottom-text {
  display: block;
}

.step3 .step-section__header {
  width: 210px;
  margin: 0 auto 40px;
}
.step3 .title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 900;
  letter-spacing: .075em;
  margin-bottom: 45px;
  text-align: center;
  position: relative;
}
.step3 .title:before {
  content: "";
  position: absolute;
  top: calc(100% + 20px);
  left: calc(50% - 110px / 2);
  width: 110px;
  height: 1px;
  background-color: #333;
}
.step3 .top-text {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .075em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 36px;
}
.step3 .list {
  max-width: 475px;
  margin: 0 auto;
}
.step3 .list .item + .item {
  margin-top: 30px;
}
.step3 .group {
  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;
  max-width: 410px;
  margin: 50px auto 0;
}
.step3 .code {
  width: 225px;
}
.step3 .btn-primary {
  width: 156px;
}
.step3 .form-checkbox .form-check-label {
  position: relative;
  padding: 0;
  padding-left: 64px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  color: #333;
}
.step3 .form-checkbox .form-check-label:before {
  background: #cdf0f4;
  width: 38px;
  height: 38px;
  border: 2px solid #333;
  box-shadow: 0 4px 0 4px #333;
  border-radius: 4px;
}
.step3 .form-checkbox .form-check-label:after {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  display: none;
  background-color: transparent;
  background-image: url(../images/icon-check.png);
  background-size: 32px auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.step3 .text-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  border-bottom: 1px solid #333;
}
.step3 .text-group .main-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 2px 0 8px;
  padding-left: 4px;
  width: 164px;
}
.step3 .text-group .sub-text {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  padding: 2px 0 8px;
  width: calc(100% - 164px);
}

.vote-results .vote-top {
  font-size: 16px;
  margin-bottom: 40px;
}
.vote-results .vote-top .top-block .main-text {
  width: 120px;
}
.vote-results .l-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.vote-results .l-list .item + .item {
  margin-top: 5px;
}
.vote-results .l-list .item-left {
  width: 300px;
}
.vote-results .l-list .item-right {
  width: calc(100% - 300px);
}
.vote-results .l-table {
  width: 100%;
  max-width: 640px;
  font-size: 16px;
}
.vote-results .l-table td {
  border: 1px solid #99d0e4;
  padding: 5px 10px;
}
.vote-results .l-table span {
  display: inline-block;
}
.vote-results .step2 {
  margin-bottom: 40px;
}
.vote-results .step2 .step-section__header {
  display: none;
}
.vote-results .step2 .step-section__content:before {
  display: none;
}
.vote-results .step2 .gallery-top {
  margin-bottom: 0;
}
.vote-results .step2 .gallery-top .swiper-slide .list {
  opacity: 1;
}
.vote-results .step2 .gallery-top .text {
  width: 100%;
  border: 0;
  padding: 0;
}
.vote-results .step2 .gallery-top .image {
  margin-bottom: 10px;
}
.vote-results .step2 .gallery-top .action {
  display: none;
}
.vote-results .step2 .swiper-control {
  display: none;
}

@media (max-width: 767px) {
  .page {
    min-height: calc(100vh - 52px - 70px);
    background-image: url(../images/page-bottom_s.png);
    background-size: 1000px auto;
  }
  .page .container {
    padding: 0 20px;
    padding-top: 40px;
    padding-bottom: 180px;
  }
  .page .section-header {
    max-width: 375px;
    margin: 0 auto 25px;
  }
  .page .section-header .title {
    font-size: 36px;
    line-height: 50px;
  }
  .page .section-header .title:before {
    left: calc(50% - 77px / 2);
    width: 77px;
  }
  .page .section-header .top-text {
    font-size: 15px;
    line-height: 24px;
  }
  .page .section-header .top-text span {
    display: inline-block;
  }

  .page-form .page-left {
    display: none;
  }
  .page-form .section-content {
    max-width: 320px;
  }
  .page-form .list {
    margin-bottom: 20px;
  }
  .page-form .list .item {
    display: block;
    font-size: 15px;
    line-height: 24px;
  }
  .page-form .list .item + .item {
    margin-top: 8px;
  }
  .page-form .list .item-header {
    width: 75px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .page-form .list .item-content {
    width: 100%;
    padding-top: 0;
    padding-left: 6px;
  }

  .form textarea.form-control {
    height: 130px;
  }
  .form .form-section {
    display: block;
  }
  .form .form-section + .form-section {
    margin-top: 10px;
  }
  .form .form-label {
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    margin: 0 0 10px;
    text-align: left;
  }
  .form .form-content {
    width: 100%;
    padding-left: 0;
  }
  .form .note {
    padding-left: 0;
    margin-top: 20px;
  }
  .form .group {
    display: block;
    padding-left: 0;
    margin-top: 25px;
  }
  .form .code {
    width: 224px;
    margin-bottom: 30px;
  }
  .form .btn-primary {
    width: 100%;
  }
  .form .upload {
    display: block;
  }
  .form .upload .text {
    width: 100%;
    padding-left: 0;
  }
  .form .btn-upload {
    margin-bottom: 15px;
  }

  .page-vote .container {
    padding-bottom: 236px;
  }
  .page-vote .page-left {
    display: none;
  }
  .page-vote .section-header {
    text-align: center;
  }
  .page-vote .section-header .top-text {
    font-size: 18px;
  }
  .page-vote .section-header .btn-primary {
    font-size: 18px;
    line-height: 40px;
    height: 40px;
    width: 121px;
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto 30px;
  }
  .page-vote .section-header .btn-primary img {
    width: 24px;
    margin-right: 8px;
  }
  .page-vote .section-content {
    max-width: 348px;
  }

  .step-section {
    position: relative;
  }
  .step-section__header {
    width: 210px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .step-section__content {
    position: relative;
  }

  .vote-top {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  .vote-top .top-block {
    max-width: 324px;
    margin: 0 auto 25px;
  }
  .vote-top .top-block .main-text {
    width: 75px;
    font-size: 15px;
    line-height: 29px;
    margin-bottom: 5px;
  }
  .vote-top .top-block p + p {
    margin-top: 10px;
  }
  .vote-top .list {
    max-width: 324px;
    padding-top: 25px;
    font-size: 15px;
    line-height: 24px;
  }
  .vote-top .list .main-text {
    margin-bottom: 0;
  }
  .vote-top .list ul li {
    padding-left: 15px;
  }
  .vote-top .list ul li:before {
    top: 8px;
  }

  .vote-finish {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  .vote-finish .action {
    display: block;
    margin-top: 20px;
  }
  .vote-finish .btn-primary {
    margin: 0 auto;
  }
  .vote-finish .btn-primary + .btn-primary {
    margin-top: 20px;
  }

  .step1 {
    margin-bottom: 88px;
  }
  .step1 .step-section__header {
    width: 156px;
  }
  .step1 .step-section__content {
    padding: 0 15px;
    padding-top: 40px;
    padding-bottom: 38px;
  }
  .step1 .step-section__content:before {
    left: calc(50% - 36px / 2);
    bottom: -57px;
    width: 36px;
    height: 83px;
  }
  .step1 .step-form {
    max-width: 100%;
    margin: 0 auto 26px;
  }
  .step1 .step-form .form-section {
    display: block;
  }
  .step1 .step-form .form-label {
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    text-align: left;
    margin-bottom: 6px;
  }
  .step1 .step-form .form-content {
    width: 100%;
    padding-left: 0;
  }
  .step1 .text {
    max-width: 100%;
    font-size: 13px;
    line-height: 24px;
  }

  .step2 {
    margin-bottom: 98px;
  }
  .step2 .step-section__header {
    width: 156px;
  }
  .step2 .step-section__content {
    padding: 0 12px;
    padding-top: 48px;
    padding-bottom: 54px;
  }
  .step2 .step-section__content:before {
    left: calc(50% - 36px / 2);
    bottom: -57px;
    width: 36px;
    height: 83px;
  }
  .step2 .swiper-gallery {
    max-width: 100%;
  }
  .step2 .gallery-top {
    margin-bottom: 45px;
  }
  .step2 .gallery-top .list {
    margin: -10px;
  }
  .step2 .gallery-top .item {
    width: calc(100% / 2 - 10px * 2);
    margin: 10px;
  }
  .step2 .gallery-top .image {
    border: 8px solid #cdf0f4;
  }
  .step2 .gallery-top .image:after {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 8px * 2);
    height: calc(100% + 8px * 2);
  }
  .step2 .gallery-top .top-text {
    padding: 8px 10px 5px;
    font-size: 12px;
    line-height: 16px;
  }
  .step2 .gallery-top .action {
    margin-top: -16px;
  }
  .step2 .gallery-top .btn-vote {
    font-size: 18px;
    line-height: 38px;
    height: 38px;
    width: 88px;
    box-shadow: 0 4px 0 2px #333;
  }
  .step2 .gallery-top .icon-vote {
    width: 24px;
    height: 24px;
    margin-left: 6px;
    margin-right: -6px;
  }
  .step2 .gallery-top .main-text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .step2 .gallery-top .group {
    display: block;
  }
  .step2 .gallery-top .sub-text {
    font-size: 12px;
    line-height: 24px;
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-bottom: 8px;
  }
  .step2 .gallery-top .sub-text .text-lg {
    font-size: 18px;
    line-height: 24px;
    margin-right: 6px;
  }
  .step2 .gallery-top .text {
    width: 100%;
    font-size: 12px;
    line-height: 18px;
    height: 36px;
    padding-left: 10px;
    max-height: 36px;
  }

  .step3 .step-section__header {
    width: 156px;
  }
  .step3 .top-text {
    margin-bottom: 30px;
  }
  .step3 .list {
    max-width: 320px;
  }
  .step3 .list .item + .item {
    margin-top: 25px;
  }
  .step3 .group {
    display: block;
    max-width: 100%;
    margin: 45px auto 0;
  }
  .step3 .action {
    margin-top: 32px;
  }
  .step3 .btn-primary {
    width: 100%;
  }
  .step3 .form-checkbox .form-check-label:before {
    top: 12px;
  }
  .step3 .form-checkbox .form-check-label:after {
    top: 12px;
  }
  .step3 .text-group {
    display: block;
    padding-bottom: 20px;
  }
  .step3 .text-group .main-text {
    padding: 0;
    width: 100%;
    margin-bottom: 6px;
  }
  .step3 .text-group .sub-text {
    padding: 0;
    width: 100%;
  }

  .vote-results .vote-top {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .vote-results .vote-top .top-block .main-text {
    width: 120px;
  }
  .vote-results .l-list .item {
    display: block;
  }
  .vote-results .l-list .item + .item {
    margin-top: 5px;
  }
  .vote-results .l-list .item-left {
    width: inherit;
  }
  .vote-results .l-list .item-right {
    width: inherit;
  }
  .vote-results .step2 {
    margin-bottom: 40px;
  }
  .vote-results .l-table {
    width: 100%;
    font-size: 16px;
  }
  .vote-results .l-table td {
    border: 1px solid #99d0e4;
    padding: 5px 10px;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
