@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: -5px;
}

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

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

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

.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: 15px;
  line-height: 44px;
  height: 44px;
  padding: 0;
  width: 100%;
  border-radius: 44px;
  background: #057895;
  display: block;
}
.btn-primary:active {
  background: #057895;
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn-primary:hover {
    background: #057895;
    filter: brightness(1.2);
  }
}

.btn-secondary {
  font-size: 15px;
  line-height: 44px;
  height: 44px;
  padding: 0;
  width: 100%;
  border-radius: 44px;
  background: #FF7D00;
  display: block;
}
.btn-secondary:active {
  background: #FF7D00;
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn-secondary:hover {
    background: #FF7D00;
    filter: brightness(1.2);
  }
}

.btn-dark {
  font-size: 15px;
  line-height: 44px;
  height: 44px;
  padding: 0;
  width: 100%;
  border-radius: 44px;
  background: #838e97;
  display: block;
}
.btn-dark:active {
  background: #838e97;
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn-dark:hover {
    background: #838e97;
    filter: brightness(1.2);
  }
}

.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 22px;
  font-size: 15px;
  line-height: 21px;
  height: 37px;
  letter-spacing: .22em;
  color: #6E4E0D;
  background-color: #FFF3F3;
  border: 0;
  border-radius: 10px;
  width: 100%;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
.form-control::placeholder {
  color: #F8B99B;
  opacity: 1;
}
.form-control::focus {
  background-color: #FFF3F3;
}

.checkbox-item {
  position: relative;
  display: block;
}
.checkbox-item input {
  display: none;
}
.checkbox-item label {
  padding: 0 0 0 24px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  display: block;
  cursor: pointer;
}
.checkbox-item label:before {
  content: '';
  display: inline-block;
  background-color: #fff;
  border: 0;
  position: absolute;
  top: 2px;
  left: 0;
  box-sizing: border-box;
  border-radius: 0;
  width: 14px;
  height: 14px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  border-radius: 3px;
  border: 1px solid #6E4E0D;
}
.checkbox-item label:after {
  content: '';
  background-image: url(../images/check.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  border-radius: 0;
  width: 14px;
  height: 14px;
  background-color: transparent;
  box-sizing: border-box;
  top: 2px;
  left: 0;
  display: none;
  border-radius: 3px;
}
.checkbox-item input:checked + label:after {
  display: block;
}
.checkbox-item input + label {
  transition: .7s ease;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: 38px;
  padding: 0 1.75em 0 .75em;
  font-weight: 400;
  line-height: 38px;
  color: #333;
  font-size: 15px;
  vertical-align: middle;
  background: #fff url(../images/select-arrow.png) right 0.75rem center/6px auto no-repeat;
  border: 1px solid #CED4DA;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
}
.form .form-control {
  border-radius: 10px;
}
.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: 86px;
  font-size: 15px;
  line-height: 37px;
  letter-spacing: .12em;
  color: #6E4E0D;
  margin: 0;
}
.form .form-content {
  width: calc(100% - 86px);
}
.form .check-row {
  margin-top: 20px;
}
.form .check-row .checkbox-item label {
  font-size: 12px;
  line-height: 18px;
  color: #6E4E0D;
}

html {
  min-width: 100%;
}

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

* {
  -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: 1280px;
  padding: 0 20px;
  position: relative;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.in-view {
  opacity: 0;
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
}

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

.scroll-hidden {
  overflow: hidden;
}

.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: 750px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .container {
    padding: 0 15px;
  }
}
.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: 25px;
  left: 80px;
  width: 171px;
  height: 80px;
  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: 2;
}
@media (min-width: 768px) {
  .site-header.sticky {
    top: 40px;
  }
  .site-header.sticky .container {
    margin: 0 auto;
    width: 676px;
  }
  .site-header.sticky .logo {
    display: block;
    top: 18px;
    left: 40px;
    width: 129px;
    height: 60px;
  }
  .site-header.sticky .site-menu {
    top: 0;
    right: calc(50% - 676px / 2);
    width: 676px;
  }
  .site-header.sticky .menu-panel {
    border-radius: 96px;
    padding: 33px 16px;
    padding-left: 164px;
    min-height: 96px;
  }
}
@media (max-width: 767px) {
  .site-header.sticky .logo {
    top: 14px;
    left: 32px;
    width: 86px;
    height: 40px;
    display: none;
  }
  .site-header.sticky .site-menu {
    top: 0;
    right: 0;
    background-color: transparent;
    border-radius: none;
    padding: 0;
  }
  .site-header.sticky .site-menu .menu-toggle {
    display: block;
  }
  .site-header.sticky .site-menu.is-view .menu-panel {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding-top: 90px;
    padding-bottom: 65px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
  }
  .site-header.sticky .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-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(5) {
    animation-delay: 0.5s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(6) {
    animation-delay: 0.6s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(7) {
    animation-delay: 0.7s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(8) {
    animation-delay: 0.8s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(9) {
    animation-delay: 0.9s;
  }
  .site-header.sticky .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;
  }
  .site-header.sticky .menu-panel {
    display: none;
  }
  .site-header.sticky .main-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .site-header.sticky .main-menu li {
    position: relative;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
  }
  .site-header.sticky .main-menu li + li {
    margin-top: 0;
  }
  .site-header.sticky .main-menu li:before {
    width: 14px;
    height: 1px;
    top: 0;
    left: calc(50% - 14px / 2);
  }
  .site-header.sticky .main-menu a {
    font-size: 19px;
    line-height: 27px;
    width: auto;
    height: 53px;
    padding: 12px 20px;
    border-radius: 28px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.menu-panel {
  background-color: #2D27AF;
  background-image: url(../images/menu-bg.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 65px;
  padding: 18px 16px;
  border: 1px solid #fff;
  min-height: 65px;
}

.site-menu {
  position: absolute;
  top: 32px;
  right: 40px;
}
.site-menu .menu-close {
  display: none;
}
.site-menu .menu-toggle {
  display: none;
}

.main-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.main-menu li {
  position: relative;
  padding: 0 24px;
}
.main-menu li:before {
  content: "";
  position: absolute;
  top: calc(50% - 14px / 2);
  left: 0;
  width: 1px;
  height: 14px;
  background-color: #fff;
}
.main-menu li:first-child:before {
  display: none;
}
.main-menu a {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}
.main-menu a.highlight {
  color: #FFF100;
}
.main-menu a:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .main-menu a:hover {
    filter: brightness(1.05);
  }
}
.main-menu .active,
.main-menu .mPS2id-highlight-first {
  color: #FFF100;
}

.menu-toggle {
  position: fixed;
  top: 26px;
  right: 26px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  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);
  display: none;
}
.menu-toggle:active {
  filter: brightness(1.1);
}

.menu-close {
  position: fixed;
  top: 26px;
  right: 26px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  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 .logo {
    top: 20px;
    left: 24px;
    width: 129px;
    height: 60px;
  }

  .site-menu {
    top: 0;
    right: 0;
    background-color: transparent;
    border-radius: none;
    padding: 0;
  }
  .site-menu .menu-toggle {
    display: block;
  }
  .site-menu.is-view .menu-panel {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding-top: 90px;
    padding-bottom: 65px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
  }
  .site-menu.is-view .menu-panel .main-menu li {
    -moz-animation: fadeInUp 0.3s both;
    -webkit-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(5) {
    animation-delay: 0.5s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(6) {
    animation-delay: 0.6s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(7) {
    animation-delay: 0.7s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(8) {
    animation-delay: 0.8s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(9) {
    animation-delay: 0.9s;
  }
  .site-menu.is-view .menu-panel .menu-close {
    display: block;
    -moz-animation: fadeInDown 0.3s both;
    -webkit-animation: fadeInDown 0.3s both;
    animation: fadeInDown 0.3s both;
  }

  .menu-panel {
    display: none;
    background-image: none;
    background-color: rgba(22, 9, 63, 0.8);
    border-radius: 0;
    min-height: 100%;
    padding: 0;
    border: 0;
  }

  .main-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .main-menu li {
    position: relative;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
  }
  .main-menu li + li {
    margin-top: 0;
  }
  .main-menu li:before {
    width: 14px;
    height: 1px;
    top: 0;
    left: calc(50% - 14px / 2);
  }
  .main-menu a {
    font-size: 19px;
    line-height: 27px;
    width: auto;
    height: 53px;
    padding: 12px 20px;
    border-radius: 28px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.site-footer {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .1em;
  color: #fff;
  background-color: #000;
  text-align: center;
}
.site-footer a {
  color: #fff;
}
.site-footer__top {
  padding-top: 90px;
  padding-bottom: 45px;
}
.site-footer__bottom {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #515151;
  color: #787878;
}
.site-footer .footer-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 90px;
}
.site-footer .footer-logo li + li {
  margin-left: 32px;
}
.site-footer .footer-logo img {
  max-height: 62px;
}
.site-footer .menu {
  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: 0 -32px;
}
.site-footer .menu li {
  margin: 0 32px;
}
.site-footer .menu a {
  color: #fff;
}
.site-footer .menu a:active {
  color: #F0EA3C;
}
@media (hover: hover) {
  .site-footer .menu a:hover {
    color: #F0EA3C;
  }
}

.side-sticky {
  position: fixed;
  bottom: 20px;
  right: -3px;
  -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 .totop {
  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 .cta {
  -moz-animation: pulse 1s infinite;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
}
.side-sticky .icon-cta {
  width: 73px;
  height: 165px;
  background-size: 100% auto;
  background-image: url(../images/btn-cta.png);
}
.side-sticky .totop {
  width: 60px;
  margin: 15px auto 0;
  display: none;
}
.side-sticky .icon-top {
  width: 60px;
  height: 90px;
  background-size: 100% auto;
  background-image: url(../images/btn-top.png);
}

@media (max-width: 767px) {
  .site-footer .container {
    max-width: 375px;
    padding: 0 15px;
  }
  .site-footer__top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .site-footer__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: .05em;
  }
  .site-footer__bottom .container {
    padding: 0;
  }
  .site-footer__bottom span {
    display: inline-block;
  }
  .site-footer .footer-logo {
    display: block;
    max-width: 260px;
    margin: 0 auto 50px;
  }
  .site-footer .footer-logo li + li {
    margin: 20px 0 0;
  }
  .site-footer .footer-logo img {
    max-height: 65px;
    margin: 0 auto;
  }
  .site-footer .menu {
    margin: -4px -10px;
  }
  .site-footer .menu li {
    margin: 4px 10px;
  }

  .side-sticky {
    right: -2px;
  }
  .side-sticky .icon-cta {
    width: 57px;
    height: 149px;
    background-image: url(../images/btn-cta_s.png);
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 1007px;
  margin: 0 auto;
}
.modal-content {
  position: relative;
  border: 1px solid #fff;
  border-radius: 32px;
  padding: 40px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  background: #6876EE;
  background: linear-gradient(135deg, #6876ee 0%, #878dd5 100%);
}
.modal .btn-close {
  width: 40px;
  height: 40px;
  padding: 0;
  background: url(../images/modal-close.png);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
}

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

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

.winner-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 491px;
}
.winner-modal .modal-content {
  background-color: transparent;
}
.winner-modal .inner {
  border-radius: 35px;
  overflow: hidden;
  position: relative;
}
.winner-modal .btn-close {
  width: 56px;
  height: 56px;
  background-size: 100% auto;
  top: -28px;
  right: -28px;
}
.winner-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 {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .winner-modal a:hover {
    filter: brightness(1.05);
  }
}

.d-modal .grid {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.d-modal .grid-left {
  width: 47.66633565%;
}
.d-modal .grid-right {
  width: calc(100% - 47.66633565%);
  padding-left: 40px;
}
.d-modal .image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.d-modal .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.d-modal .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.d-modal .main-text {
  margin-bottom: 12px;
}
.d-modal .main-text img {
  max-height: 36px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
.d-modal .heading {
  margin-bottom: 8px;
}
.d-modal .heading img {
  max-height: 48px;
}
.d-modal .block + .block {
  margin-top: 28px;
}
.d-modal .l-swiper {
  margin: 0;
}
.d-modal .swiper-wrapper {
  margin-bottom: 16px;
}
.d-modal .swiper-slide {
  padding: 0;
}
.d-modal .swiper-slide .image {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  opacity: 0;
}
.d-modal .swiper-slide-active .image {
  opacity: 1;
}
.d-modal .swiper-pagination {
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  bottom: 0;
}
.d-modal p + p {
  margin-top: 20px;
}
.d-modal .text-small {
  font-size: 12px;
  line-height: 18px;
}
.d-modal a,
.d-modal .link {
  color: #1989B9;
  text-decoration: underline;
}
.d-modal ol {
  list-style: decimal;
  padding-left: 1.25em;
}

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

  .winner-modal .modal-dialog {
    max-width: 344px;
  }
  .winner-modal .inner {
    border-radius: 30px;
  }
  .winner-modal .btn-close {
    width: 48px;
    height: 48px;
    background-size: 100% auto;
    top: -24px;
    right: 0;
  }

  .d-modal .modal-dialog {
    max-width: 345px;
    margin: 20px auto;
  }
  .d-modal .modal-content {
    padding: 56px 16px;
  }
  .d-modal .modal-content:after {
    display: none;
  }
  .d-modal .btn-close {
    top: 8px;
    right: 12px;
  }
  .d-modal .grid {
    display: block;
  }
  .d-modal .grid-left {
    width: 100%;
    margin-bottom: 24px;
  }
  .d-modal .grid-right {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
  .d-modal .swiper-wrapper {
    margin-bottom: 16px;
  }
  .d-modal .image {
    border-radius: 16px;
  }
  .d-modal .main-text img {
    max-height: 32px;
  }
  .d-modal .block + .block {
    margin-top: 24px;
  }
}
/* index */
.l-section {
  position: relative;
  z-index: 0;
  font-size: 20px;
  line-height: 1.6;
  word-break: break-all;
  color: #fff;
}
.l-section .section-anchor {
  position: absolute;
  top: -160px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.l-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-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;
}
.l-section .container {
  max-width: 1280px;
}
.l-section ul {
  list-style: disc;
  padding-left: 1.75em;
}
.l-section ol {
  list-style: decimal;
  padding-left: 1.75em;
}

.l-kv {
  position: relative;
  background: #0e1339;
}
.l-kv .bg {
  background-image: url(../images/kv-bg.png);
  background-position: center top;
  background-size: auto 100%;
  -moz-animation: fadeIn 0.6s both;
  -webkit-animation: fadeIn 0.6s both;
  animation: fadeIn 0.6s both;
}
.l-kv .bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/kv-bottom.png);
  background-size: 100% 100%;
}
.l-kv .container {
  padding: 0;
}
.l-kv img {
  width: 100%;
  display: block;
}
.l-kv .layer-1 {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  animation-delay: .25s;
  transform-origin: center 25%;
}
.l-kv .layer-2 {
  -moz-animation: fadeInUp 0.5s both;
  -webkit-animation: fadeInUp 0.5s both;
  animation: fadeInUp 0.5s both;
  animation-delay: .5s;
}
.l-kv .layer-3 {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: 1s;
}
.l-kv .layer-4 {
  -moz-animation: bounceInLeft 0.8s both;
  -webkit-animation: bounceInLeft 0.8s both;
  animation: bounceInLeft 0.8s both;
  animation-delay: 1s;
}
.l-kv .layer-4 img {
  -moz-animation: flash 0.5s both;
  -webkit-animation: flash 0.5s both;
  animation: flash 0.5s both;
  animation-delay: 2.2s;
}
.l-kv .layer-5 {
  -moz-animation: bounceInUp 0.8s both;
  -webkit-animation: bounceInUp 0.8s both;
  animation: bounceInUp 0.8s both;
  animation-delay: 1.2s;
}
.l-kv .layer-5 img {
  -moz-animation: flash 0.5s both;
  -webkit-animation: flash 0.5s both;
  animation: flash 0.5s both;
  animation-delay: 2.2s;
}
.l-kv .layer-6 {
  -moz-animation: bounceInRight 0.8s both;
  -webkit-animation: bounceInRight 0.8s both;
  animation: bounceInRight 0.8s both;
  animation-delay: 1.4s;
}
.l-kv .layer-6 img {
  -moz-animation: flash 0.5s both;
  -webkit-animation: flash 0.5s both;
  animation: flash 0.5s both;
  animation-delay: 2.2s;
}

.section-a {
  background-color: #0e1339;
}
.section-a .container {
  padding: 0;
}
.section-a .bg {
  background-image: url(../images/a-bg.png);
  background-size: cover;
  background-position: center center;
}
.section-a .bg-2 {
  background-image: url(../images/a-bg2.png);
  background-size: auto 100%;
  background-position: center center;
}
.section-a .layer-top {
  position: absolute;
  top: 0;
  left: calc(50% - 1240px / 2);
  width: 100%;
}
.section-a .floating {
  animation-duration: 1.2s;
}
.section-a .animated .layer-1 {
  -moz-animation: zoomIn 0.5s both;
  -webkit-animation: zoomIn 0.5s both;
  animation: zoomIn 0.5s both;
  animation-delay: .5s;
  transform-origin: center bottom;
}
.section-a .box {
  position: relative;
}

.section-b {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #26155a;
}
.section-b .container {
  padding: 0;
}
.section-b .bg {
  background-image: url(../images/b-bg.png);
  height: 420px;
  background-size: 100% 100%;
}
.section-b .section-header {
  position: relative;
  margin-bottom: 40px;
  min-height: 360px;
}
.section-b .section-header .title {
  margin-bottom: 40px;
}
.section-b .section-header .title img {
  display: block;
  max-height: 108px;
  margin: 0 auto;
}
.section-b .section-header .text {
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
}
.section-b .sub-section + .sub-section {
  margin-top: 80px;
}
.section-b .sub-section .text {
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}
.section-b .video {
  max-width: 800px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
  margin: 0 auto 24px;
}

.section-c {
  padding-top: 60px;
  padding-bottom: 80px;
  background: #7789EF;
  background: linear-gradient(180deg, #7789ef 0%, #979ff2 52%, #8f9af3 100%);
}
.section-c .bg-ripple {
  background-image: url(../images/c-ripple.png);
  background-position: left 85px;
  background-size: 382px auto;
}
.section-c .bg-ripple2 {
  background-image: url(../images/c-ripple2.png);
  background-position: right bottom;
  background-size: 382px auto;
}
.section-c .container {
  padding: 0;
}
.section-c .section-header {
  position: relative;
  margin-bottom: 40px;
  min-height: 246px;
}
.section-c .section-header .title {
  margin-bottom: 40px;
}
.section-c .section-header .title img {
  display: block;
  max-height: 108px;
  margin: 0 auto;
}
.section-c .section-header .text {
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
}
.section-c .section-content {
  max-width: 1086px;
  margin: 0 auto;
}
.section-c .list {
  margin: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section-c .list .item {
  margin: 20px;
  width: calc(50% - 20px * 2);
}
.section-c .action {
  margin-top: 40px;
}
.section-c .action .btn {
  max-width: 441px;
  margin: 0 auto;
  display: block;
  cursor: default;
}

.section-d {
  position: relative;
  background: #919BF3;
  background: linear-gradient(180deg, #8f9af3 0%, #3a94d2 100%);
}
.section-d .bg-ripple {
  background-image: url(../images/d-ripple.png);
  background-position: left 150px;
  background-size: 382px auto;
}
.section-d .container {
  padding: 0;
}
.section-d .section-top {
  padding-top: 40px;
  padding-bottom: 60px;
}
.section-d .section-top .section-header {
  position: relative;
  margin-bottom: 40px;
  min-height: 300px;
}
.section-d .section-top .section-header .title {
  margin-bottom: 40px;
}
.section-d .section-top .section-header .title img {
  display: block;
  max-height: 108px;
  margin: 0 auto;
}
.section-d .section-top .section-header .text {
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
}
.section-d .section-top .section-content {
  max-width: 1086px;
  margin: 0 auto;
}
.section-d .section-top .list {
  margin: -16px -12px;
  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;
}
.section-d .section-top .list .item {
  margin: 16px 12px;
  width: calc(25% - 12px * 2);
}
.section-d .section-top .item {
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
}
.section-d .section-top .item .image {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
}
.section-d .section-top .item .content {
  min-height: 76px;
  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;
}
.section-d .section-top .pointer {
  position: absolute;
  top: calc(100% - 100px);
  right: -20px;
  width: 70px;
  pointer-events: none;
  display: none;
  z-index: 1;
}
.section-d .section-top .floating {
  animation-duration: 1s;
}
.section-d .section-top .action {
  margin-top: 40px;
}
.section-d .section-top .action .btn {
  max-width: 441px;
  margin: 0 auto;
  display: block;
  cursor: default;
}
.section-d .section-bottom {
  padding-top: 0;
  padding-bottom: 80px;
}
.section-d .section-bottom .section-header {
  position: relative;
  margin-bottom: 40px;
}
.section-d .section-bottom .section-header .title {
  margin-bottom: 40px;
}
.section-d .section-bottom .section-header .title img {
  display: block;
  max-height: 76px;
  margin: 0 auto;
}
.section-d .section-bottom .section-header .text {
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
}

.section-e {
  background: #3A94D2;
  background: linear-gradient(180deg, #3a94d2 0%, #8f9af3 100%);
}
.section-e .container {
  padding: 0;
}
.section-e .section-top {
  padding-top: 40px;
  padding-bottom: 80px;
}
.section-e .section-top .section-header {
  position: relative;
  margin-bottom: 60px;
}
.section-e .section-top .section-header .title img {
  display: block;
  max-height: 108px;
  margin: 0 auto;
}
.section-e .section-top .section-content {
  max-width: 1122px;
  margin: 0 auto;
}
.section-e .section-top .item {
  position: relative;
}
.section-e .section-top .item + .item {
  margin-top: 24px;
}
.section-e .section-top .item .btn {
  position: absolute;
  top: 128px;
  right: 32px;
  width: 174px;
}
.section-e .section-top .item .btn:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .section-e .section-top .item .btn:hover {
    filter: brightness(1.2);
  }
}
.section-e .section-top .action {
  margin-top: 40px;
}
.section-e .section-top .action .btn {
  max-width: 1042px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(4px 4px 15px rgba(11, 11, 49, 0.2));
}
.section-e .section-top .action .btn:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .section-e .section-top .action .btn:hover {
    filter: brightness(1.1);
  }
}
.section-e .section-bottom {
  padding-bottom: 80px;
}
.section-e .section-bottom .section-header {
  position: relative;
  margin-bottom: 40px;
}
.section-e .section-bottom .section-header .title {
  margin-bottom: 40px;
}
.section-e .section-bottom .section-header .title img {
  display: block;
  margin: 0 auto;
}

.section-f {
  padding-top: 0;
  padding-bottom: 40px;
  background: #3A94D2;
  background: linear-gradient(180deg, #8f9af3 0%, #8f9bf4 100%);
}
.section-f .container {
  padding: 0;
}
.section-f .section-header {
  position: relative;
  margin-bottom: 60px;
}
.section-f .section-header .title img {
  display: block;
  max-height: 108px;
  margin: 0 auto;
}
.section-f .section-content {
  max-width: 1122px;
  margin: 0 auto;
}
.section-f .item {
  position: relative;
}
.section-f .item + .item {
  margin-top: 24px;
}
.section-f .item .btn {
  position: absolute;
  top: 80px;
  right: 32px;
  width: 174px;
}
.section-f .item .btn:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .section-f .item .btn:hover {
    filter: brightness(1.2);
  }
}

.l-section-group {
  background: #8F9BF4;
  background: linear-gradient(180deg, #8f9bf4 0%, #2a0e63 100%);
}

.section-g {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-g .container {
  padding: 0;
}
.section-g .section-header {
  position: relative;
  margin-bottom: 40px;
}
.section-g .section-header .title img {
  display: block;
  max-height: 108px;
  margin: 0 auto;
}
.section-g .section-content {
  max-width: 1122px;
  margin: 0 auto;
}
.section-g .item {
  position: relative;
  padding: 32px 40px;
  background-color: rgba(41, 42, 106, 0.6);
  border-radius: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
.section-g .item-header {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  padding-right: 44px;
}
.section-g .item-header[aria-expanded="true"] .icon-arrow {
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.section-g .item .icon-arrow {
  position: absolute;
  top: calc(50% - 24px / 2);
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/g-arrow.png);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.section-g .item + .item {
  margin-top: 12px;
}
.section-g .item .inner {
  padding-top: 12px;
  max-width: 960px;
}
.section-g .item a {
  color: #FFF100;
  text-decoration: underline;
}
.section-g .item a:active {
  text-decoration: none;
}
@media (hover: hover) {
  .section-g .item a:hover {
    text-decoration: none;
  }
}
.section-g .bottom-text {
  padding: 32px 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}
.section-g .action .btn {
  max-width: 792px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(4px 4px 15px rgba(11, 11, 49, 0.2));
}
.section-g .action .btn:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .section-g .action .btn:hover {
    filter: brightness(1.1);
  }
}

.section-h {
  padding-top: 60px;
  padding-bottom: 80px;
}
.section-h .container {
  padding: 0;
}
.section-h .section-header {
  position: relative;
  margin-bottom: 40px;
}
.section-h .section-header .title img {
  display: block;
  max-height: 108px;
  margin: 0 auto;
}
.section-h .section-content {
  max-width: 900px;
  margin: 0 auto;
}
.section-h .map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 16px;
}
.section-h .block {
  font-size: 20px;
  font-weight: 500;
}
.section-h .block + .block {
  margin-top: 40px;
}
.section-h .main-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-h .main-text img {
  width: 80px;
  margin-right: 12px;
}
.section-h .text + .text {
  margin-top: 8px;
}

.section-i {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
  color: #000;
}
.section-i .section-content {
  max-width: 1122px;
  margin: 0 auto;
}
.section-i .section-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin: 0 -25px 60px;
}
.section-i .section-group .brand-section {
  margin: 0 25px;
  width: calc(50% - 25px * 2);
}
.section-i .section-group .brand-section__content {
  margin: 0;
  padding: 0 25px;
}
.section-i .brand-section__header {
  position: relative;
  margin: 0 25px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.section-i .brand-section__header:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #707070;
}
.section-i .brand-section__header span {
  background-color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding-right: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
}
.section-i .brand-section__content {
  margin: 0 -25px;
}
.section-i .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -15px;
}
.section-i .item {
  margin: 15px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.section-i .item:active {
  opacity: .8;
}
@media (hover: hover) {
  .section-i .item:hover {
    opacity: .8;
  }
}
.section-i .item img {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.section-i .brand-a {
  margin-bottom: 40px;
}
.section-i .brand-a .list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.section-i .brand-a .i1-1 {
  max-width: 235px;
}
.section-i .brand-a .i1-2 {
  max-width: 192px;
}
.section-i .brand-b {
  margin-bottom: 40px;
}
.section-i .brand-b .i2-1 {
  max-width: 214px;
}
.section-i .brand-c {
  margin-bottom: 40px;
}
.section-i .brand-c .list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0;
}
.section-i .brand-c .item {
  margin: 0;
  width: calc(100% / 6);
}
.section-i .brand-c .item img {
  max-height: 90px;
}
.section-i .brand-d .list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0;
}
.section-i .brand-d .item {
  margin: 0;
  width: calc(100% / 6);
}
.section-i .brand-d .item img {
  max-height: 90px;
}

@media (max-width: 1280px) and (min-width: 751px) {
  .l-kv .container {
    max-width: 100%;
  }

  .section-a .container {
    max-width: 100%;
  }

  .section-b .section-header {
    min-height: 28.125vw;
  }
  .section-b .section-header .title {
    margin-bottom: 3.125vw;
  }
  .section-b .section-header .title img {
    max-height: 8.4375vw;
  }
  .section-b .section-header .text {
    font-size: 1.875vw;
  }

  .section-c .section-header {
    min-height: 19.21875vw;
  }
  .section-c .section-header .title {
    margin-bottom: 3.125vw;
  }
  .section-c .section-header .title img {
    max-height: 8.4375vw;
  }
  .section-c .section-header .text {
    font-size: 1.875vw;
  }
  .section-c .section-content {
    max-width: calc(100% - 20px * 2);
  }

  .section-d .section-top .section-header {
    min-height: 23.4375vw;
  }
  .section-d .section-top .section-header .title {
    margin-bottom: 3.125vw;
  }
  .section-d .section-top .section-header .title img {
    max-height: 8.4375vw;
  }
  .section-d .section-top .section-header .text {
    font-size: 1.875vw;
  }
  .section-d .section-top .section-content {
    max-width: calc(100% - 20px * 2);
  }
  .section-d .section-top .item {
    font-size: 1.875vw;
  }
  .section-d .section-top .item .content {
    min-height: 5.9375vw;
  }
  .section-d .section-bottom .section-header .title {
    margin-bottom: 3.125vw;
  }
  .section-d .section-bottom .section-header .text {
    font-size: 1.875vw;
  }

  .section-e .section-top .section-header .title img {
    max-height: 8.4375vw;
  }
  .section-e .section-top .section-content {
    max-width: calc(100% - 20px * 2);
  }
  .section-e .section-top .item .btn {
    top: 10vw;
    right: 2.5vw;
    width: 13.59375vw;
  }

  .section-f .section-header .title img {
    max-height: 8.4375vw;
  }
  .section-f .section-content {
    max-width: calc(100% - 20px * 2);
  }
  .section-f .item + .item {
    margin-top: 24px;
  }
  .section-f .item .btn {
    top: 6.25vw;
    right: 2.5vw;
    width: 13.59375vw;
  }

  .section-g .section-header .title {
    margin-bottom: 3.125vw;
  }
  .section-g .section-header .title img {
    max-height: 8.4375vw;
  }
  .section-g .section-content {
    max-width: calc(100% - 20px * 2);
  }

  .section-h .section-header {
    margin-bottom: 3.125vw;
  }
  .section-h .section-header .title img {
    max-height: 8.4375vw;
  }
  .section-h .section-content {
    max-width: calc(100% - 20px * 2);
  }

  .section-i .brand-section__header {
    margin-left: 25px;
  }
}
@media (max-width: 750px) {
  .l-section .section-anchor {
    top: 0;
  }
  .l-section .bg {
    background-size: 750px auto;
  }
  .l-section .container {
    max-width: 375px;
  }

  .l-kv .bg {
    background-image: url(../images/kv-bg_s.png);
    background-size: auto 100%;
  }
  .l-kv .bg:before {
    background-image: url(../images/kv-bottom_s.png);
  }
  .l-kv .container {
    padding: 0;
    max-width: 100%;
  }

  .section-a .container {
    overflow: hidden;
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-a .bg {
    background-image: url(../images/a-bg_s.png);
    background-size: 100% auto;
  }
  .section-a .bg-2 {
    background-image: url(../images/a-bg2_s.png);
    background-size: 100% auto;
  }

  .section-b {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-b .container {
    padding: 0;
  }
  .section-b .bg {
    background-image: url(../images/b-bg.png);
    height: 284px;
  }
  .section-b .section-header {
    margin-bottom: 24px;
    min-height: inherit;
  }
  .section-b .section-header .title {
    margin-bottom: 24px;
  }
  .section-b .section-header .title img {
    max-height: 64px;
  }
  .section-b .section-header .text {
    font-size: 16px;
  }
  .section-b .section-header .text span {
    display: inline-block;
  }
  .section-b .sub-section + .sub-section {
    margin-top: 40px;
  }
  .section-b .sub-section .text {
    font-size: 14px;
  }
  .section-b .video {
    max-width: 333px;
    border-radius: 12px;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
    margin: 0 auto 12px;
  }

  .section-c {
    padding-top: 40px;
    padding-bottom: 0;
  }
  .section-c .bg-ripple {
    display: none;
  }
  .section-c .bg-ripple2 {
    display: none;
  }
  .section-c .container {
    padding: 0;
  }
  .section-c .section-header {
    margin-bottom: 24px;
    min-height: inherit;
  }
  .section-c .section-header .title {
    margin-bottom: 24px;
  }
  .section-c .section-header .title img {
    max-height: 64px;
  }
  .section-c .section-header .text {
    font-size: 16px;
  }
  .section-c .section-content {
    max-width: 343px;
  }
  .section-c .list {
    margin: 0;
    display: block;
  }
  .section-c .list .item {
    margin: 0;
    width: 100%;
  }
  .section-c .list .item + .item {
    margin-top: 24px;
  }
  .section-c .action {
    margin-top: 24px;
  }
  .section-c .action .btn {
    max-width: 360px;
  }

  .section-d .bg-ripple {
    display: none;
  }
  .section-d .container {
    padding: 0;
  }
  .section-d .section-top {
    padding-top: 40px;
    padding-bottom: 24px;
  }
  .section-d .section-top .section-header {
    margin-bottom: 24px;
    min-height: inherit;
  }
  .section-d .section-top .section-header .title {
    margin-bottom: 24px;
  }
  .section-d .section-top .section-header .title img {
    max-height: 64px;
  }
  .section-d .section-top .section-header .text {
    font-size: 16px;
  }
  .section-d .section-top .section-header .text span {
    display: inline-block;
  }
  .section-d .section-top .section-content {
    max-width: 343px;
  }
  .section-d .section-top .list {
    margin: -8px -4px;
  }
  .section-d .section-top .list .item {
    margin: 8px 4px;
    width: calc(50% - 4px * 2);
  }
  .section-d .section-top .item {
    font-size: 16px;
  }
  .section-d .section-top .item .image {
    border-radius: 12px;
    margin-bottom: 4px;
  }
  .section-d .section-top .item .content {
    min-height: 44px;
  }
  .section-d .section-top .pointer {
    display: block;
  }
  .section-d .section-top .action {
    margin-top: 24px;
  }
  .section-d .section-top .action .btn {
    max-width: 360px;
  }
  .section-d .section-bottom {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-d .section-bottom .section-header {
    margin-bottom: 24px;
  }
  .section-d .section-bottom .section-header .title {
    margin-bottom: 24px;
  }
  .section-d .section-bottom .section-header .title img {
    max-height: 56px;
  }
  .section-d .section-bottom .section-header .text {
    font-size: 16px;
  }

  .section-e .container {
    padding: 0;
  }
  .section-e .section-top {
    padding-top: 40px;
    padding-bottom: 24px;
  }
  .section-e .section-top .section-header {
    margin-bottom: 24px;
  }
  .section-e .section-top .section-header .title img {
    max-height: 64px;
  }
  .section-e .section-top .section-content {
    max-width: 100%;
  }
  .section-e .section-top .list {
    max-width: 345px;
    margin: 0 auto;
  }
  .section-e .section-top .item + .item {
    margin-top: 16px;
  }
  .section-e .section-top .item .btn {
    top: calc(100% - 32px - 56px);
    right: calc(50% - 226px / 2);
    width: 226px;
  }
  .section-e .section-top .action {
    margin-top: 24px;
  }
  .section-e .section-top .action .btn {
    max-width: 345px;
  }
  .section-e .section-bottom {
    padding-bottom: 24px;
  }
  .section-e .section-bottom .section-header {
    margin-bottom: 24px;
  }
  .section-e .section-bottom .section-header .title {
    margin-bottom: 0;
  }

  .section-f {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-f .container {
    padding: 0;
  }
  .section-f .section-header {
    margin-bottom: 24px;
    min-height: inherit;
  }
  .section-f .section-header .title {
    margin-bottom: 24px;
  }
  .section-f .section-header .title img {
    max-height: 64px;
  }
  .section-f .section-content {
    max-width: 100%;
  }
  .section-f .list {
    max-width: 345px;
    margin: 0 auto;
  }
  .section-f .item + .item {
    margin-top: 16px;
  }
  .section-f .item .btn {
    top: calc(100% - 32px - 56px);
    right: calc(50% - 315px / 2);
    width: 315px;
  }
  .section-f .action {
    margin-top: 24px;
  }
  .section-f .action .btn {
    max-width: 345px;
  }

  .section-g {
    padding-top: 40px;
    padding-bottom: 0;
  }
  .section-g .container {
    padding: 0;
  }
  .section-g .section-header {
    margin-bottom: 24px;
    min-height: inherit;
  }
  .section-g .section-header .title {
    margin-bottom: 24px;
  }
  .section-g .section-header .title img {
    max-height: 64px;
  }
  .section-g .section-content {
    max-width: 345px;
  }
  .section-g .item {
    padding: 16px 24px;
    border-radius: 16px;
  }
  .section-g .item-header {
    font-size: 20px;
  }
  .section-g .item .inner {
    max-width: 100%;
  }
  .section-g .bottom-text {
    padding: 24px 0;
    font-size: 14px;
  }
  .section-g .bottom-text span {
    display: inline-block;
  }
  .section-g .action .btn {
    max-width: 345px;
  }

  .section-h {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-h .container {
    padding: 0;
  }
  .section-h .section-header {
    margin-bottom: 24px;
    min-height: inherit;
  }
  .section-h .section-header .title {
    margin-bottom: 24px;
  }
  .section-h .section-header .title img {
    max-height: 64px;
  }
  .section-h .section-content {
    max-width: 345px;
  }
  .section-h .map {
    border-radius: 10px;
    margin-bottom: 4px;
  }
  .section-h .block {
    font-size: 16px;
    line-height: 1.5;
  }
  .section-h .block + .block {
    margin-top: 24px;
  }
  .section-h .main-text {
    font-size: 20px;
  }
  .section-h .main-text img {
    width: 48px;
    margin-right: 4px;
  }

  .section-i {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .section-i .section-content {
    max-width: 345px;
  }
  .section-i .section-group {
    display: block;
    margin: 0;
    margin-bottom: 24px;
  }
  .section-i .section-group .brand-section {
    margin: 0;
    width: 100%;
  }
  .section-i .section-group .brand-section__content {
    margin: 0;
    padding: 0;
  }
  .section-i .section-group .brand-a {
    margin-bottom: 24px;
  }
  .section-i .brand-section__header {
    margin: 0;
    margin-bottom: 20px;
  }
  .section-i .brand-section__content {
    margin: 0;
  }
  .section-i .list {
    margin: 0;
  }
  .section-i .item {
    margin: 0;
    width: calc(100% / 2);
  }
  .section-i .brand-a {
    margin-bottom: 24px;
  }
  .section-i .brand-a .i1-1 {
    max-width: 136px;
    max-height: 64px;
  }
  .section-i .brand-a .i1-2 {
    max-width: 136px;
    max-height: 32px;
  }
  .section-i .brand-b .i2-1 {
    max-width: 154px;
    max-height: 75px;
  }
  .section-i .brand-c {
    margin-bottom: 24px;
  }
  .section-i .brand-c .item {
    margin: 0;
    width: calc(100% / 3);
  }
  .section-i .brand-c .item img {
    max-height: 70px;
  }
  .section-i .brand-d .item {
    margin: 0;
    width: calc(100% / 3);
  }
  .section-i .brand-d .item img {
    max-height: 70px;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
