@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    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 {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-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);
  }
}

@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;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  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.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  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.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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 {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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 {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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);
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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);
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-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;
  }
}

@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 {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-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;
  }
}

@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-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-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;
  }
}

@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 {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-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;
  }
}

@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 {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

#footer {
  background: #333333;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 38px;
  overflow: hidden;
}
#footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
#footer a:hover,
#footer a:active {
  color: #fff;
}
#footer .footer-label {
  color: white;
  font-size: 14px;
}
#footer .footer-content {
  margin-top: 100px;
}
#footer .footer-content {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #565d68;
  padding-bottom: 40px;
}
#footer .footer-content hr {
  display: block;
  width: 120px;
  height: 1px;
  margin: 4px 0;
  background: rgba(255, 255, 255, 0.6);
  border: none;
}
#footer .footer-content > div {
  max-width: 18%;
}
#footer .links {
  display: flex;
}
#footer .links .footer-label {
  white-space: nowrap;
  line-height: 40px;
}
#footer .links .links-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  justify-content: center;
  align-items: center;
  line-height: 40px;
}
#footer .links .links-list li {
  position: relative;
  padding: 0 16px;
  flex: 1;
  white-space: nowrap;
  text-align: center;
}
#footer .links .links-list li::after {
  content: '';
  position: absolute;
  width: 0;
  height: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  right: 0;
  top: 13px;
}
#footer .links .links-list li:last-child::after {
  border-right: none;
}
#footer .links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
#footer .links a:hover,
#footer .links a:active {
  color: #fff;
}
#footer .footer-site-info {
  text-align: center;
}
#footer .footer-site-info > span + span::before {
  content: '\4E28';
  margin: 0 8px;
}
#footer .qrcode img {
  width: 100px;
  height: 100px;
}
#footer .lianxi img {
  width: 200px;
  height: 51px;
  zoom: 0.9;
}
@media screen and (max-width: 1260px) {
  #footer {
    font-size: 14px;
    word-break: break-all;
    line-height: 28px;
    overflow: hidden;
  }
  #footer .footer-content {
    margin-top: 40px;
  }
  #footer .footer-content {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #565d68;
    padding-bottom: 40px;
  }
  #footer .footer-content hr {
    display: block;
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    border: none;
  }
  #footer .footer-content > div {
    max-width: 18%;
  }
  #footer .links {
    padding: 0 24px;
    display: flex;
  }
  #footer .links .links-list {
    flex: 1;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #footer .links .links-list li {
    flex: unset;
    white-space: pre-wrap;
    margin-right: 16px;
  }
  #footer .links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
  }
  #footer .links a:hover,
  #footer .links a:active {
    color: #fff;
  }
  #footer .footer-site-info {
    text-align: center;
  }
  #footer .footer-site-info > span + span::before {
    content: '\4E28';
    margin: 0 8px;
  }
}
@media screen and (max-width: 1024px) {
  #footer {
    background: #333333;
    font-size: 3.2vw;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 38px;
    overflow: hidden;
  }
  #footer .footer-label {
    display: block;
    color: white;
    font-size: 3.73333333vw;
    margin: 5.33333333vw 0 1.06666667vw;
  }
  #footer .footer-content {
    margin-top: 0;
  }
  #footer .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #565d68;
    padding: 5.33333333vw 6.4vw;
    line-height: 7.46666667vw;
  }
  #footer .footer-content > div > hr {
    display: none;
  }
  #footer .footer-content > div > hr ~ div {
    display: inline-block;
    width: 33.33%;
    font-size: 3.2vw;
  }
  #footer .footer-content > div {
    max-width: unset;
  }
  #footer .footer-content > div:nth-of-type(1),
  #footer .footer-content > div:nth-of-type(5) {
    display: none;
  }
  #footer .links {
    display: block;
  }
  #footer .links .links-list {
    flex: unset;
    display: block;
    line-height: 6.4vw;
  }
  #footer .links .links-list li {
    display: inline-block;
    position: relative;
    padding: 0 10.66666667vw 0 0;
    margin: 0;
    flex: 1;
    white-space: nowrap;
    text-align: left;
    min-width: 33.33%;
  }
  #footer .links .links-list li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 14px;
    border-right: none;
    right: 0;
    top: 13px;
  }
  #footer .links .links-list li:last-child::after {
    border-right: none;
  }
  #footer .links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
  }
  #footer .links a:hover,
  #footer .links a:active {
    color: #fff;
  }
  #footer .footer-site-info {
    text-align: center;
    font-size: 3.2vw;
    line-height: 1;
  }
  #footer .footer-site-info > span {
    display: inline-block;
    margin: 0 0 5.33333333vw 0;
  }
  #footer .footer-site-info > span:first-child {
    margin-top: 5.33333333vw;
    display: block;
  }
  #footer .footer-site-info > span:first-child + span::before {
    display: none;
  }
  #footer .footer-site-info > span + span::before {
    content: '\4E28';
    margin: 0 8px;
  }
}

#header,
#header.header-theme--default {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(243, 246, 252, 0);
  box-shadow: 0 1px 10px rgba(221, 221, 221, 0);
  transition: background-color 0.4s, box-shadow 0.4s;
  z-index: 1000;
}
#header #logo {
  position: absolute;
  width: 56px;
  height: 56px;
  line-height: 80px;
  margin-left: 24px;
  align-self: center;
}
#header #logo img {
  width: 100%;
  height: 100%;
}
#header #logo-mobile {
  display: none;
}
#header .header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .nav {
  list-style: none;
  color: #6b7786;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  height: 80px;
  line-height: 80px;
  transition: color 0.4s;
}
#header .nav li.actived {
  color: #333;
}
#header .nav > li {
  position: relative;
  padding: 0;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color 0.4s;
}
#header .nav > li:hover .nav-item-menu {
  display: flex;
}
#header .nav > li .nav-item-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 48px;
  background: #ffffff;
  border: 1px solid #ebedf0;
  box-shadow: 0px 14px 28px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1;
}
#header .nav > li .nav-item-menu::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -10px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
#header .nav > li .nav-item-menu > li {
  position: relative;
  padding: 0;
  width: 100%;
  text-align: left;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color 0.4s;
  border-bottom: 1px solid #f2f4f5;
}
#header .nav > li .nav-item-menu > li:last-child {
  border-bottom: none;
}
#header .nav > li .nav-item-menu > li.actived > a {
  color: #2d80ff;
}
#header .nav > li .nav-item-menu > li > a {
  position: relative;
  padding: 0 8px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: unset;
  font-size: 16px;
  font-weight: 400;
  color: #3c4f62;
}
#header .nav > li .nav-item-menu > li > a .nav-item-menu-icon {
  display: inline-block;
  line-height: 1;
}
#header .nav > li .nav-item-menu > li > a .nav-item-menu-icon img {
  width: 16px;
  height: 16px;
  margin: 0 8px;
}
#header .nav > li .nav-item-menu > li > a .nav-item-menu-name {
  flex: 1;
}
#header .nav > li .nav-item-menu > li > a::after {
  content: '';
  display: inline-block;
  top: 0;
  right: 10px;
  margin: 0 8px 0 32px;
  width: 11px;
  height: 12px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAAsklEQVQoFW2RSw7CMAxEXVUg9Spsu6oESQvsIEk3ZkWalt/9jwAmbT6GSJHy4rGs8UDTYNUZNzSIFQAAZ/rLjlDTXurxuUFcU4FzJibY6fuJJgBi+Y95QyG1RaHcBQAKuoyZHrGUvbVCO/2tzCzNqJjSY12/Vq0ZHq25Heln4a53h58GXuQcG8JY68dyjsrF0DUzSCZnw1G6VcM5XR3noPQhWBZK5CCkeGldadwpB+Hn8QZcDEpRoIftiAAAAABJRU5ErkJggg==);
}
#header .nav > li .nav-item-menu > li > a:active,
#header .nav > li .nav-item-menu > li > a:hover {
  text-decoration: unset;
  color: #2d80ff;
}
#header .nav > li > a {
  padding: 0 20px;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: unset;
  color: inherit;
}
#header .nav > li > a:active,
#header .nav > li > a:hover {
  text-decoration: unset;
  color: inherit;
}
#header .nav > li:hover {
  color: #333;
  background: rgba(66, 130, 247, 0.071);
}
#header .nav > li:active {
  color: #333;
  background: rgba(66, 130, 247, 0.133);
}
#header .nav-mobile {
  display: none;
}
#header .login-btn {
  width: 72px;
  height: 32px;
  border: 1px solid #2d80ff;
  border-radius: 16px;
  background: none;
  color: #2d80ff;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s, color 0.2s;
}
#header .login-btn:hover {
  background-color: #2d80ff;
  color: #fff;
}
#header .login-btn:active {
  background-color: rgba(45, 129, 255, 0.8);
  border: 1px solid rgba(45, 129, 255, 0.8);
  color: #fff;
}
#header.header-theme--white #logo {
  position: absolute;
  width: 56px;
  height: 56px;
  line-height: 80px;
  margin-left: 24px;
  align-self: center;
}
#header.header-theme--white #logo img {
  width: 100%;
  height: 100%;
}
#header.header-theme--white .nav {
  color: rgba(255, 255, 255, 0.502);
}
#header.header-theme--white .nav li.actived {
  color: #fff;
}
#header.header-theme--white .nav li {
  transition: background-color 0.4s;
}
#header.header-theme--white .nav li:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.071);
}
#header.header-theme--white .nav li:active {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.133);
}
#header.header-theme--white .login-btn {
  border: 1px solid white;
  color: white;
  transition: background-color 0.2s, color 0.2s;
}
#header.header-theme--white .login-btn:hover {
  background-color: rgba(255, 255, 255, 0.502);
  color: #fff;
}
#header.header-theme--white .login-btn:active {
  background-color: white;
  border: 1px solid white;
  color: #fff;
}
#header.header-theme--white .nav-mobile .switch-btn::before {
  background: #fff;
}
#header.header-theme--white .nav-mobile .switch-btn::after {
  background: linear-gradient(to bottom, #fff, #fff 33.33%, transparent 33.33%, transparent 66.66%, #fff 66.66%);
}
#header.show-background {
  background-color: #f3f6fc;
  box-shadow: 0 1px 10px rgba(221, 221, 221, 0.502);
}
#header.show-background #logo {
  position: absolute;
  width: 56px;
  height: 56px;
  line-height: 80px;
  margin-left: 24px;
  align-self: center;
}
#header.show-background #logo img {
  width: 100%;
  height: 100%;
}
#header.show-background .header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header.show-background .nav {
  list-style: none;
  color: #6b7786;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  height: 80px;
  line-height: 80px;
}
#header.show-background .nav li.actived {
  color: #333;
}
#header.show-background .nav li {
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color 0.4s;
}
#header.show-background .nav li:hover {
  color: #333;
  background: rgba(66, 130, 247, 0.071);
}
#header.show-background .nav li:active {
  color: #333;
  background: rgba(66, 130, 247, 0.133);
}
#header.show-background .login-btn {
  width: 72px;
  height: 32px;
  border: 1px solid #2d80ff;
  border-radius: 16px;
  background: none;
  color: #2d80ff;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s, color 0.2s;
}
#header.show-background .login-btn:hover {
  background-color: #2d80ff;
  color: #fff;
}
#header.show-background .login-btn:active {
  background-color: rgba(45, 129, 255, 0.8);
  border: 1px solid rgba(45, 129, 255, 0.8);
  color: #fff;
}
#header.show-background .nav-mobile .switch-btn::before {
  background: #2d80ff;
}
#header.show-background .nav-mobile .switch-btn::after {
  background: linear-gradient(to bottom, #2d80ff, #2d80ff 33.33%, transparent 33.33%, transparent 66.66%, #2d80ff 66.66%);
}
@media screen and (max-width: 1450px) {
  #header .container {
    margin-left: 100px;
    margin-right: 24px;
  }
}
@media screen and (max-width: 1024px) {
  #header {
    height: 13.33333333vw !important;
  }
  #header .login-btn {
    display: none;
  }
  #header .container .nav {
    display: none;
  }
  #header #logo {
    display: none;
  }
  #header #logo-mobile {
    display: block;
    position: absolute;
    width: 19.6vw;
    height: 6.66666667vw;
    line-height: 10.66666667vw;
    margin-left: 3.2vw;
    align-self: center;
  }
  #header #logo-mobile img {
    width: 100%;
    height: 100%;
  }
  #header .nav-mobile {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    width: 10.66666667vw;
    height: 13.33333333vw;
    outline: none;
    overflow: hidden;
  }
  #header .nav-mobile #nav-mobile-logo {
    display: none;
    width: 19.6vw;
    height: 6.66666667vw;
    line-height: 13.33333333vw;
    margin-left: 3.2vw;
    align-self: center;
  }
  #header .nav-mobile #nav-mobile-logo img {
    display: block;
    width: 100%;
    height: 100%;
  }
  #header .nav-mobile .switch-btn {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  #header .nav-mobile .switch-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -10px;
    display: block;
    width: 20px;
    height: 3px;
    background: #2d80ff;
    transform: rotate(0);
    transform-origin: center;
    transition: all 0.4s;
  }
  #header .nav-mobile .switch-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 20px;
    height: 9px;
    background: linear-gradient(to bottom, #2d80ff, #2d80ff 33.33%, transparent 33.33%, transparent 66.66%, #2d80ff 66.66%);
    transform: rotate(0);
    transition: all 0.4s;
  }
  #header .nav-mobile.open {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    height: 100vh;
    width: 59.46666667vw;
    background-color: #fff;
  }
  #header .nav-mobile.open #nav-mobile-logo {
    display: inline-block;
  }
  #header .nav-mobile.open .switch-btn {
    position: relative;
    width: 40px;
    height: 40px;
  }
  #header .nav-mobile.open .switch-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 0;
    margin-left: -10px;
    display: block;
    width: 20px;
    height: 3px;
    background: #2d80ff;
    transform: rotate(45deg);
    transform-origin: center;
  }
  #header .nav-mobile.open .switch-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 20px;
    height: 3px;
    background: #2d80ff;
    transform: rotate(-45deg);
  }
  #header .nav-mobile-mask {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #333333;
    opacity: 0.5;
  }
  #header .nav-mobile-header {
    display: flex;
    flex: 0 0 13.33333333vw;
    justify-content: space-between;
    align-items: center;
    height: 13.33333333vw;
    line-height: 13.33333333vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.102);
  }
  #header .nav-mobile-list {
    display: flex;
    flex-direction: column;
    margin: 24px 0;
    line-height: 48px;
  }
  #header .nav-mobile-list a {
    position: relative;
    padding: 0 8px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: unset;
    font-size: 3.46666667vw;
    font-weight: 400;
    padding-left: 6.4vw;
    color: #3c4f62;
  }
  #header .nav-mobile-list a .nav-item-menu-icon {
    display: inline-block;
    line-height: 1;
  }
  #header .nav-mobile-list a .nav-item-menu-icon img {
    width: 16px;
    height: 16px;
    margin: 0 8px;
  }
  #header .nav-mobile-list a:active,
  #header .nav-mobile-list a:hover {
    text-decoration: unset;
    color: #fff;
    background: #9ec7fe;
  }
  #header .nav-mobile-list .parent-node:active,
  #header .nav-mobile-list .parent-node:hover {
    text-decoration: unset;
    color: #2d80ff;
    background: none;
  }
  #header .nav-mobile-list .parent-node::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: 0;
    display: block;
    width: 9px;
    height: 2px;
    background-color: #6b7786;
    transform: rotate(-45deg);
    transform-origin: center;
    transition: transform 0.4s;
  }
  #header .nav-mobile-list .parent-node::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: 0;
    display: block;
    width: 9px;
    height: 2px;
    background-color: #6b7786;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.4s;
  }
  #header .nav-mobile-list .parent-node--open::before {
    transform: rotate(45deg);
  }
  #header .nav-mobile-list .parent-node--open::after {
    transform: rotate(-45deg);
  }
  #header .nav-mobile-item-menu {
    display: none;
  }
  #header .nav-mobile-item-menu.open-menus {
    display: block;
  }
  #header .nav-mobile-item-menu a {
    position: relative;
    padding: 0 8px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: unset;
    font-size: 3.46666667vw;
    font-weight: 400;
    padding-left: 12.8vw;
    color: #3c4f62;
  }
  #header .nav-mobile-item-menu a .nav-item-menu-icon {
    display: inline-block;
    line-height: 1;
  }
  #header .nav-mobile-item-menu a .nav-item-menu-icon img {
    width: 16px;
    height: 16px;
    margin: 0 8px;
  }
  #header .nav-mobile-item-menu a:active,
  #header .nav-mobile-item-menu a:hover {
    text-decoration: unset;
    color: #fff;
    background: #a0c6ff;
  }
}

.advantage-section {
  background: white url(/static/assets/bg-advantage.png);
  background-size: 100% 100%;
  overflow: hidden;
}
.advantage-section .advantage-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 100px;
  font-size: 40px;
  font-weight: 500;
  color: #091622;
}
.advantage-section .advantage-title::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: -20px;
  height: 0.5em;
  bottom: 0;
  background: #2d80ff;
  opacity: 0.1;
}
.advantage-section .advantage-list {
  list-style: none;
  display: flex;
  margin-top: 96px;
  margin-bottom: 96px;
  justify-content: space-between;
}
.advantage-section .advantage-list li {
  margin: 0;
  padding: 0;
  width: 356px;
  text-align: center;
}
.advantage-section .advantage-list .advantage-icon {
  width: 136px;
  height: 136px;
  margin: 0 auto;
}
.advantage-section .advantage-list .advantage-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.advantage-section .advantage-list .advantage-name {
  margin-top: 56px;
  font-size: 24px;
  font-weight: bold;
  color: #091622;
}
.advantage-section .advantage-list .advantage-content {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 400;
  color: #6b7786;
  white-space: pre-wrap;
}
@media screen and (max-width: 1260px) {
  .advantage-section .advantage-title {
    margin-top: 40px;
    margin-left: 40px;
    font-size: 32px;
  }
  .advantage-section .advantage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: space-between;
  }
  .advantage-section .advantage-list li {
    display: inline-flex;
    justify-content: space-around;
    justify-content: space-evenly;
    align-items: center;
    margin: 24px 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .advantage-section .advantage-list li:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .advantage-section .advantage-list .advantage-icon {
    width: 120px;
    height: 120px;
    margin: 0 80px;
  }
  .advantage-section .advantage-list .advantage-icon img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .advantage-section .advantage-list .advantage-name {
    margin-top: 18px;
    font-size: 18px;
    font-weight: bold;
    color: #091622;
  }
  .advantage-section .advantage-list .advantage-content {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    color: #6b7786;
    white-space: pre-wrap;
  }
}
@media screen and (max-width: 1024px) {
  .advantage-section {
    background: white;
    background-size: 100% 9.06666667vw;
    background-repeat: no-repeat;
    position: relative;
  }
  .advantage-section::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-clip-path: ellipse(55vw 12.8vw at 50% 0);
    clip-path: ellipse(55vw 12.8vw at 50% 0);
  }
  .advantage-section .container {
    overflow: hidden;
    background-color: #f9f8fd;
  }
  .advantage-section .advantage-title {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 13.33333333vw;
    margin-left: 6.4vw;
    font-size: 6.4vw;
    font-weight: 500;
    color: #091622;
  }
  .advantage-section .advantage-title::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: -20px;
    height: 0.5em;
    bottom: 0;
    background: #2d80ff;
    opacity: 0.1;
  }
  .advantage-section .advantage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 8.53333333vw;
    justify-content: space-between;
    align-items: center;
  }
  .advantage-section .advantage-list li {
    flex-direction: column;
    margin: 0;
    padding: 0;
    margin-top: 10.66666667vw;
    width: 87.2vw;
    text-align: justify;
    background-color: #fff;
    padding: 6.4vw;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0px 2.66666667vw 8vw 0px rgba(0, 0, 0, 0.09);
  }
  .advantage-section .advantage-list li:nth-of-type(even) {
    flex-direction: column;
  }
  .advantage-section .advantage-list .advantage-icon {
    width: 26.93333333vw;
    height: 26.93333333vw;
    margin: 0;
  }
  .advantage-section .advantage-list .advantage-icon img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .advantage-section .advantage-list .advantage-name {
    margin-top: 6.66666667vw;
    font-size: 4.26666667vw;
    font-weight: bold;
    color: #091622;
  }
  .advantage-section .advantage-list .advantage-content {
    margin-top: 6.4vw;
    font-size: 3.46666667vw;
    line-height: 5.33333333vw;
    font-weight: 400;
    color: #6b7786;
    white-space: pre-wrap;
  }
}

.banner-anim {
  position: relative;
  overflow: hidden;
  min-height: 100px;
}
.banner-anim-elem {
  height: 100%;
}
.banner-anim-elem > * {
  position: relative;
}
.banner-anim-elem-mask {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner-anim-arrow {
  cursor: pointer;
  position: absolute;
  z-index: 10;
}
.banner-anim-arrow-default {
  position: absolute;
  width: 20px;
  height: 60px;
  margin-top: -30px;
  top: 50%;
  background: rgba(0, 0, 0, 0.3);
}
.banner-anim-arrow-default.next {
  right: 0;
}
.banner-anim-arrow-default.next:before,
.banner-anim-arrow-default.prev:before,
.banner-anim-arrow-default.next:after,
.banner-anim-arrow-default.prev:after {
  width: 2px;
  height: 15px;
  background: #fff;
  display: block;
  content: ' ';
  position: absolute;
}
.banner-anim-arrow-default.next:before {
  transform: rotate(-40deg);
  top: 18px;
  left: 10px;
}
.banner-anim-arrow-default.next:after {
  transform: rotate(40deg);
  bottom: 17px;
  left: 10px;
}
.banner-anim-arrow-default.prev:before {
  transform: rotate(40deg);
  top: 18px;
  left: 8px;
}
.banner-anim-arrow-default.prev:after {
  transform: rotate(-40deg);
  bottom: 17px;
  left: 8px;
}
.banner-anim-thumb {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  pointer-events: none;
  z-index: 10;
}
.banner-anim-thumb > span {
  pointer-events: auto;
  cursor: pointer;
  display: inline-block;
  list-style: none;
}
.banner-anim-thumb-default {
  height: 40px;
  line-height: 40px;
}
.banner-anim-thumb-default span {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  margin: 0 5px;
  background: rgba(102, 102, 102, 0.35);
  transition: background .3s;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}
.banner-anim-thumb-default span:active,
.banner-anim-thumb-default span.active {
  background: #fff;
}

.banner-section {
  height: 100vh;
  min-height: 740px;
  overflow: hidden;
  background-color: #f7f5ff;
}
.banner-section img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.banner-section .banner-anim-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #ffffff;
  box-shadow: 2px 3px 12px 0px rgba(6, 0, 1, 0.08);
  border-radius: 50%;
}
.banner-section .banner-anim-arrow.prev {
  margin-left: 64px;
}
.banner-section .banner-anim-arrow.next {
  margin-right: 64px;
}
.banner-section .banner-anim-arrow.prev::before {
  background: #333;
  top: 8px;
  left: 18px;
  transform: rotate(45deg);
}
.banner-section .banner-anim-arrow.prev::after {
  background: #333;
  top: 18px;
  left: 18px;
  transform: rotate(-45deg);
  z-index: 2;
}
.banner-section .banner-anim-arrow.next::before {
  background: #333;
  top: 8px;
  left: 22px;
  transform: rotate(-45deg);
}
.banner-section .banner-anim-arrow.next::after {
  background: #333;
  top: 18px;
  left: 22px;
  transform: rotate(45deg);
  z-index: 2;
}
.banner-section .banner-anim-thumb span {
  width: 32px;
  height: 2px;
  background-color: #E5E9FC;
  border-radius: 0;
  box-shadow: none;
}
.banner-section .banner-anim-thumb .active {
  background-color: #2D80FF;
}
.banner-section .banner {
  height: 100%;
}
.banner-section .banner-1 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.banner-section .banner-1 .text1 {
  font-size: 72px;
  font-weight: bold;
  white-space: pre-wrap;
  color: #0A1622;
}
.banner-section .banner-1 .text2 {
  margin-top: 96px;
  font-size: 40px;
  font-weight: 200;
  white-space: pre-wrap;
  color: #3C4F62;
}
.banner-section .banner-1 .img1 {
  display: inline-block;
  width: 728px;
  height: 614px;
}
.banner-section .banner-2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.banner-section .banner-2 .text1 {
  font-size: 72px;
  font-weight: bold;
  white-space: pre-wrap;
  color: #0A1622;
}
.banner-section .banner-2 .text2 {
  margin-top: 96px;
  font-size: 40px;
  font-weight: 200;
  white-space: pre-wrap;
  color: #3C4F62;
}
.banner-section .banner-2 .img1 {
  display: inline-block;
  width: 789px;
  height: 486px;
}
.banner-section .banner-3 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.banner-section .banner-3 .img1 {
  display: inline-block;
  width: 1131px;
  height: 670px;
}
.banner-section .banner-3 .text1 {
  font-size: 61px;
  font-weight: bold;
  white-space: pre-wrap;
  color: #0A1622;
  margin-left: -583px;
  line-height: 109px;
  margin-top: -163px;
  text-align: right;
}
@media screen and (max-width: 1260px) {
  .banner-section {
    height: 50vh;
    min-height: unset;
  }
  .banner-section .banner-1 .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
  }
  .banner-section .banner-1 .text1 {
    font-size: 48px;
    font-weight: bold;
    white-space: pre-wrap;
    color: #0A1622;
  }
  .banner-section .banner-1 .text2 {
    margin-top: 48px;
    font-size: 24px;
    font-weight: 200;
    white-space: pre-wrap;
    color: #3C4F62;
  }
  .banner-section .banner-1 .img1 {
    display: inline-block;
    width: 364px;
    height: 308px;
  }
  .banner-section .banner-2 .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
  }
  .banner-section .banner-2 .text1 {
    font-size: 48px;
    font-weight: bold;
    white-space: pre-wrap;
    color: #0A1622;
  }
  .banner-section .banner-2 .text2 {
    margin-top: 48px;
    font-size: 32px;
    font-weight: 200;
    white-space: pre-wrap;
    color: #3C4F62;
  }
  .banner-section .banner-2 .img1 {
    display: inline-block;
    width: 394.5px;
    height: 243px;
  }
  .banner-section .banner-3 .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
  }
  .banner-section .banner-3 .img1 {
    display: inline-block;
    width: 565.5px;
    height: 335px;
  }
  .banner-section .banner-3 .text1 {
    font-size: 48px;
    font-weight: bold;
    white-space: pre-wrap;
    color: #0A1622;
    margin-left: -291.5px;
    line-height: 80px;
    margin-top: 50%;
    transform: translateY(-50%);
    text-align: right;
  }
}
@media screen and (max-width: 1024px) {
  .banner-section {
    height: 145.33333333vw;
    min-height: unset;
  }
  .banner-section .banner-anim-arrow {
    display: none;
  }
  .banner-section .banner-anim-thumb span {
    width: 5.33333333vw;
    height: 0.53333333vw;
    background-color: #E5E9FC;
    border-radius: 0;
    box-shadow: none;
  }
  .banner-section .banner-anim-thumb .active {
    background-color: #2D80FF;
  }
  .banner-section .banner-1 .container {
    padding-top: 13.33333333vw;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .banner-section .banner-1 .text1 {
    font-size: 8vw;
    font-weight: bold;
    white-space: pre-wrap;
    color: #0A1622;
  }
  .banner-section .banner-1 .text2 {
    margin-top: 6.8vw;
    font-size: 4.26666667vw;
    font-weight: 200;
    white-space: pre-wrap;
    color: #3C4F62;
  }
  .banner-section .banner-1 .img1 {
    margin-top: 8.26666667vw;
    display: inline-block;
    width: 94.4vw;
    height: 79.46666667vw;
  }
  .banner-section .banner-2 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }
  .banner-section .banner-2 .text1 {
    font-size: 8vw;
    font-weight: bold;
    white-space: nowrap;
    color: #0A1622;
  }
  .banner-section .banner-2 .text2 {
    margin-top: 6.8vw;
    font-size: 4.26666667vw;
    font-weight: 200;
    white-space: pre-wrap;
    color: #3C4F62;
  }
  .banner-section .banner-2 .img1 {
    margin-top: 18.4vw;
    display: inline-block;
    width: 90.53333333vw;
    height: 55.73333333vw;
  }
  .banner-section .banner-3 .container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }
  .banner-section .banner-3 .img1 {
    display: inline-block;
    width: 84.66666667vw;
    height: 89.33333333vw;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0 0;
    object-position: 0 0;
    margin-top: 5.46666667vw;
  }
  .banner-section .banner-3 .text1 {
    font-size: 8vw;
    font-weight: bold;
    white-space: pre-wrap;
    text-align: center;
    color: #0A1622;
    margin-left: 0;
    line-height: 1.2;
    margin-top: 5.33333333vw;
    transform: unset;
  }
}

.business-case-section {
  background-color: #FAFBFC;
  overflow: hidden;
}
.business-case-section .business-case-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 100px;
  font-size: 40px;
  font-weight: 500;
  color: #091622;
}
.business-case-section .business-case-title::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: -20px;
  height: 0.5em;
  bottom: 0;
  background: #2d80ff;
  opacity: 0.1;
}
.business-case-section .business-case-list {
  list-style: none;
  padding: 0;
  margin: 80px 0 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.business-case-section .business-case-list > li {
  position: relative;
  align-items: center;
  width: 400px;
  height: 632px;
  margin: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: 0px 26px 40px 0px rgba(0, 0, 0, 0.149);
  border-radius: 2px;
  text-align: center;
  transition: box-shadow 0.4s;
}
.business-case-section .business-case-list > li:hover {
  box-shadow: 0px 26px 80px 0px rgba(0, 0, 0, 0.149);
}
.business-case-section .business-case-list > li > hr {
  display: block;
  width: 329px;
  height: 1px;
  background: #26272d;
  opacity: 0.05;
  margin-top: 24px;
}
.business-case-section .business-case-list .business-case-icon {
  width: 100px;
  height: 100px;
  margin: 80px auto 0;
}
.business-case-section .business-case-list .business-case-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.business-case-section .business-case-list .business-case-name {
  margin-top: 24px;
  font-size: 24px;
  font-weight: bold;
  color: #2d80ff;
}
.business-case-section .business-case-list .business-case-brief {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  white-space: pre-wrap;
  color: #6b7786;
}
.business-case-section .business-case-list .business-case-description {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  white-space: pre-wrap;
  color: #6b7786;
}
.business-case-section .business-case-list .business-case-customers-label {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #3c4f62;
}
.business-case-section .business-case-list .business-case-customers {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #6b7786;
}
.business-case-section .business-case-list .business-case-customers > li {
  margin-top: 16px;
}
.business-case-section .business-case-list .business-case-button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  margin-top: 40px;
  background: #2d80ff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #2D80FF;
  background: none;
  color: #2D80FF;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s, color 0.2s;
}
.business-case-section .business-case-list .business-case-button:hover {
  background-color: #2D80FF;
  color: #fff;
}
.business-case-section .business-case-list .business-case-button:active {
  background-color: rgba(45, 129, 255, 0.8);
  border: 1px solid rgba(45, 129, 255, 0.8);
  color: #fff;
}
@media screen and (max-width: 1260px) {
  .business-case-section .business-case-title {
    margin-top: 40px;
    margin-left: 40px;
    font-size: 32px;
  }
  .business-case-section .business-case-list {
    margin: 40px 0;
    display: flex;
    justify-content: space-around;
    justify-content: space-evenly;
    align-items: center;
  }
  .business-case-section .business-case-list > li {
    align-items: center;
    width: 300px;
    height: 474px;
    margin: 0;
    padding: 0;
    background: #ffffff;
    box-shadow: 0px 26px 80px 0px rgba(0, 0, 0, 0.149);
    border-radius: 2px;
    text-align: center;
  }
  .business-case-section .business-case-list > li > hr {
    width: 246.75px;
    margin-top: 16px;
  }
  .business-case-section .business-case-list .business-case-icon {
    width: 75px;
    height: 75px;
    margin: 40px auto 0;
  }
  .business-case-section .business-case-list .business-case-name {
    margin-top: 16px;
    font-size: 20px;
    font-weight: bold;
    color: #2d80ff;
  }
  .business-case-section .business-case-list .business-case-brief {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    white-space: pre-wrap;
    color: #6b7786;
  }
  .business-case-section .business-case-list .business-case-description {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 400;
    white-space: pre-wrap;
    color: #6b7786;
  }
  .business-case-section .business-case-list .business-case-customers-label {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #3c4f62;
  }
  .business-case-section .business-case-list .business-case-customers {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #6b7786;
  }
  .business-case-section .business-case-list .business-case-customers > li {
    margin-top: 8px;
  }
  .business-case-section .business-case-list .business-case-button {
    bottom: 40px;
    width: 120px;
    height: 40px;
    margin-top: 40px;
    background: #2d80ff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    border: none;
  }
}
@media screen and (max-width: 1024px) {
  .business-case-section {
    background-color: #FAFBFC;
    overflow: hidden;
  }
  .business-case-section .business-case-title {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 13.33333333vw;
    margin-left: 6.4vw;
    font-size: 6.4vw;
    font-weight: 500;
    color: #091622;
  }
  .business-case-section .business-case-title::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: -20px;
    height: 0.5em;
    bottom: 0;
    background: #2d80ff;
    opacity: 0.1;
  }
  .business-case-section .business-case-list {
    list-style: none;
    padding: 0;
    margin: 6.4vw 0 13.33333333vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .business-case-section .business-case-list > li {
    position: relative;
    align-items: center;
    width: 87.2vw;
    height: unset;
    margin: 0;
    padding: 6.4vw;
    margin-top: 5.33333333vw;
    background: #ffffff;
    box-shadow: 0px 2.66666667vw 4vw 0px rgba(0, 0, 0, 0.071);
    border-radius: 2px;
    text-align: left;
    transition: box-shadow 0.4s;
  }
  .business-case-section .business-case-list > li:hover {
    box-shadow: 0px 2.66666667vw 4vw 0px rgba(0, 0, 0, 0.071);
  }
  .business-case-section .business-case-list > li > hr {
    display: block;
    width: 100%;
    height: 1px;
    background: #26272d;
    opacity: 0.05;
    margin: 5.33333333vw 0;
  }
  .business-case-section .business-case-list .business-case-icon {
    width: 13.33333333vw;
    height: 14.8vw;
    margin: 0;
    float: left;
  }
  .business-case-section .business-case-list .business-case-icon img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .business-case-section .business-case-list .business-case-name {
    display: inline-block;
    margin-left: 6.4vw;
    margin-top: 0;
    font-size: 5.33333333vw;
    line-height: 9.86666667vw;
    font-weight: bold;
    color: #2d80ff;
  }
  .business-case-section .business-case-list .business-case-brief {
    display: inline-block;
    margin-left: 6.4vw;
    margin-top: 0;
    font-size: 3.46666667vw;
    font-weight: 400;
    white-space: pre-wrap;
    color: #6b7786;
  }
  .business-case-section .business-case-list .business-case-description {
    margin-top: 6.4vw;
    font-size: 3.46666667vw;
    line-height: 5.33333333vw;
    font-weight: 400;
    white-space: pre-wrap;
    color: #6b7786;
  }
  .business-case-section .business-case-list .business-case-customers-label {
    margin-top: 5.33333333vw;
    font-size: 3.2vw;
    font-weight: 500;
    color: #3c4f62;
  }
  .business-case-section .business-case-list .business-case-customers {
    list-style: none;
    padding: 0;
    margin: 4.26666667vw 0 0 0;
    font-size: 3.46666667vw;
    font-weight: 400;
    color: #6b7786;
    line-height: 5.33333333vw;
  }
  .business-case-section .business-case-list .business-case-customers > li {
    margin-top: 0;
  }
  .business-case-section .business-case-list .business-case-button {
    position: absolute;
    bottom: unset;
    top: 9.06666667vw;
    right: 0;
    left: unset;
    transform: translateX(-50%);
    width: 17.86666667vw;
    height: 4.8vw;
    margin-top: 0;
    background: #2d80ff;
    border-radius: 0.53333333vw;
    font-size: 2.93333333vw;
    font-weight: 500;
    border: 1px solid #2D80FF;
    background: none;
    color: #2D80FF;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s, color 0.2s;
  }
  .business-case-section .business-case-list .business-case-button:hover {
    background-color: #2D80FF;
    color: #fff;
  }
  .business-case-section .business-case-list .business-case-button:active {
    background-color: rgba(45, 129, 255, 0.8);
    border: 1px solid rgba(45, 129, 255, 0.8);
    color: #fff;
  }
}

.company-news-section {
  background-color: #FFF;
  overflow: hidden;
}
.company-news-section .company-news-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 100px;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
  color: #091622;
}
.company-news-section .company-news-title::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: -20px;
  height: 0.5em;
  bottom: 0;
  background: #2d80ff;
  opacity: 0.1;
}
.company-news-section .company-news-readmore {
  margin-top: 32px;
  width: 120px;
  height: 40px;
  line-height: 40px;
  background: #2d80ff;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
}
.company-news-section .company-news-list {
  position: relative;
  min-height: 468px;
  list-style: none;
  padding: 0;
  margin: 40px 0 100px;
  background: #ffffff;
  box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.09);
}
.company-news-section .company-news-list > li {
  display: flex;
  height: 117px;
  align-items: center;
}
.company-news-section .company-news-list .news-item-cover {
  width: 64px;
  height: 64px;
  margin-left: 80px;
  background-color: #ddd;
  overflow: hidden;
}
.company-news-section .company-news-list .news-item-cover img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 1s;
}
.company-news-section .company-news-list .news-item-info {
  display: inline-flex;
  flex: 1;
  flex-direction: column;
  margin-left: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #6b7786;
  z-index: 1;
}
.company-news-section .company-news-list .news-item-title {
  width: 248px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 16px;
  color: #091622;
}
.company-news-section .company-news-list .news-item-type {
  margin-right: 16px;
}
@media screen and (min-width: 1260px) {
  .company-news-section .company-news-list > li {
    cursor: pointer;
    transition: background-color 0.4s;
  }
  .company-news-section .company-news-list > li:hover {
    background-color: #f6f6f6;
  }
  .company-news-section .company-news-list > li:nth-of-type(1) {
    position: relative;
    float: left;
    width: 740px;
    height: 468px;
  }
  .company-news-section .company-news-list > li:nth-of-type(1):hover .news-item-cover img {
    transform: scale(1.05);
  }
  .company-news-section .company-news-list > li:nth-of-type(1):only-child {
    width: 100%;
  }
  .company-news-section .company-news-list > li:nth-of-type(1):only-child .news-item-cover {
    width: 100%;
  }
  .company-news-section .company-news-list > li:nth-of-type(1) .news-item-cover {
    top: 0;
    left: 0;
    margin: 0;
    position: absolute;
    width: 740px;
    height: 468px;
  }
  .company-news-section .company-news-list > li:nth-of-type(1) .news-item-info {
    position: absolute;
    height: 117px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 80px;
    margin: 0;
    display: inline-flex;
    flex: 1;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    z-index: 1;
    justify-content: center;
    background-image: linear-gradient(0deg, rgba(4, 0, 1, 0.71) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .company-news-section .company-news-list > li:nth-of-type(1) .news-item-title {
    color: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
  }
}
@media screen and (max-width: 1260px) {
  .company-news-section .company-news-title {
    margin-top: 40px;
    margin-left: 40px;
    margin-bottom: 0;
    font-size: 32px;
  }
  .company-news-section .company-news-readmore {
    margin-top: 24px;
    margin-left: 40px;
    width: 120px;
    height: 40px;
    line-height: 40px;
    background: #2d80ff;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
  }
  .company-news-section .company-news-list {
    position: relative;
    list-style: none;
    min-height: unset;
    padding: 0;
    margin: 40px;
    background: #ffffff;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.09);
  }
  .company-news-section .company-news-list > li {
    display: flex;
    height: 117px;
    align-items: center;
    padding-right: 40px;
    border-bottom: 1px solid #ddd;
  }
  .company-news-section .company-news-list > li:last-child {
    border-bottom: none;
  }
  .company-news-section .company-news-list .news-item-cover {
    width: 64px;
    height: 64px;
    margin-left: 40px;
    background-color: #ddd;
  }
  .company-news-section .company-news-list .news-item-cover img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .company-news-section .company-news-list .news-item-info {
    display: inline-flex;
    flex: 1;
    flex-direction: column;
    margin-left: 24px;
    font-size: 14px;
    font-weight: 400;
    color: #6b7786;
  }
  .company-news-section .company-news-list .news-item-title {
    width: unset;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 16px;
    color: #091622;
  }
}

.feature-section {
  background-color: #f7f5fe;
  overflow: hidden;
}
.feature-section .feature-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 150px 0;
}
.feature-section .feature-list > li {
  text-align: center;
}
.feature-section .feature-list > li img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.feature-section .feature-list > li > div {
  margin-top: 48px;
  font-size: 24px;
  font-weight: 500;
  color: #3c4f62;
}
@media screen and (max-width: 1260px) {
  .feature-section .feature-list {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 40px 0;
  }
  .feature-section .feature-list > li {
    text-align: center;
  }
  .feature-section .feature-list > li img {
    display: block;
    width: 75px;
    height: 75px;
    margin: 0 auto;
  }
  .feature-section .feature-list > li > div {
    margin-top: 40px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .feature-section {
    background-color: #fff;
    overflow: hidden;
  }
  .feature-section .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0 4.8vw 13.33333333vw;
  }
  .feature-section .feature-list > li {
    text-align: center;
    width: 33.33%;
    margin-top: 10.66666667vw;
  }
  .feature-section .feature-list > li img {
    display: block;
    width: 19.46666667vw;
    height: 19.46666667vw;
    margin: 0 auto;
  }
  .feature-section .feature-list > li > div {
    margin-top: 6.4vw;
    font-size: 3.73333333vw;
    font-weight: 500;
    color: #3c4f62;
  }
}

.partners-section {
  background-color: #fcfbff;
  overflow: hidden;
}
.partners-section .partners-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 100px;
  font-size: 40px;
  font-weight: 500;
  color: #091622;
}
.partners-section .partners-title::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: -20px;
  height: 0.5em;
  bottom: 0;
  background: #2d80ff;
  opacity: 0.1;
}
.partners-section .partners-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 80px;
  list-style: none;
  padding: 0;
  margin: 0 0 80px 0;
}
.partners-section .partners-list > li img {
  display: block;
  width: 186px;
  height: 72px;
  margin: 0 auto;
}
@media screen and (max-width: 1260px) {
  .partners-section .partners-title {
    margin-top: 40px;
    margin-left: 40px;
    font-size: 32px;
  }
  .partners-section .partners-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
  }
  .partners-section .partners-list > li img {
    display: block;
    width: 148.8px;
    height: 57.6px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .partners-section .partners-title {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 13.33333333vw;
    margin-left: 6.4vw;
    font-size: 6.4vw;
    font-weight: 500;
    color: #091622;
  }
  .partners-section .partners-title::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: -20px;
    height: 0.5em;
    bottom: 0;
    background: #2d80ff;
    opacity: 0.1;
  }
  .partners-section .partners-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8vw 3.2vw;
    list-style: none;
    padding: 0;
    margin: 0 6.4vw 13.33333333vw;
  }
  .partners-section .partners-list > li img {
    display: block;
    width: 26.93333333vw;
    height: 10.4vw;
    margin: 0 auto;
  }
}

.product-info-section {
  background: #2D80FF;
  background-image: url(/static/assets/bg-product-info1.png), url(/static/assets/bg-product-info2.png);
  background-size: 46.98vw 37.45vw, 24.74vw 24.95vw;
  background-position: -5vw 2.92vw, 100% 0;
  background-repeat: no-repeat;
  overflow: hidden;
}
.product-info-section .container {
  display: flex;
  padding: 160px 0 100px;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.product-info-section .product-info-picture {
  position: relative;
  width: 420px;
  height: 632px;
  background: rgba(221, 221, 221, 0.459);
  margin-left: 80px;
  z-index: 1;
}
.product-info-section .product-info-picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
.product-info-section .product-info-picture::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  display: block;
  width: 194px;
  height: 194px;
  background: rgba(255, 255, 255, 0.502);
  z-index: -1;
}
.product-info-section .product-info-content {
  width: 600px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 36px;
}
.product-info-section .product-info-title-en {
  font-size: 20px;
}
.product-info-section .product-info-title {
  font-size: 64px;
  margin-top: 24px;
}
.product-info-section .product-info-description {
  text-align: justify;
  margin-top: 60px;
}
.product-info-section .product-info-button {
  width: 240px;
  height: 64px;
  font-size: 20px;
  border: 1px solid #ffffff;
  color: white;
  background: none;
  margin-top: 48px;
}
.product-info-section .product-info-button:hover {
  background: rgba(255, 255, 255, 0.314);
}
.product-info-section .product-info-button:active {
  background: rgba(255, 255, 255, 0.502);
}
@media screen and (max-width: 1288px) {
  .product-info-section .container {
    display: flex;
    padding: 160px 0 100px;
    justify-content: center;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
  }
  .product-info-section .product-info-picture {
    position: relative;
    width: 25vw;
    height: 37.61904762vw;
    background: rgba(221, 221, 221, 0.459);
    z-index: 1;
  }
  .product-info-section .product-info-picture img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
  }
  .product-info-section .product-info-picture::before {
    content: '';
    position: absolute;
    top: -4.76190476vw;
    left: -4.76190476vw;
    display: block;
    width: 11.42857143vw;
    height: 11.42857143vw;
    background: rgba(255, 255, 255, 0.502);
    z-index: -1;
  }
  .product-info-section .product-info-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 36px;
  }
  .product-info-section .product-info-title-en {
    font-size: 16px;
  }
  .product-info-section .product-info-title {
    font-size: 32px;
    margin-top: 16px;
  }
  .product-info-section .product-info-description {
    margin-top: 32px;
  }
  .product-info-section .product-info-button {
    width: 120px;
    height: 32px;
    font-size: 16px;
    border: 1px solid #ffffff;
    color: white;
    background: none;
    margin-top: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .product-info-section {
    background-image: url(/static/assets/bg-product-info1.png), url(/static/assets/bg-product-info2.png);
    background-size: 46.98vw 37.45vw, 24.74vw 24.95vw;
    background-position: -5vw 2.92vw, 106% 92%;
  }
  .product-info-section .container {
    display: flex;
    padding: 18.8vw 6.4vw 13.33333333vw;
    flex-direction: column;
    justify-content: center;
    justify-content: space-evenly;
    align-items: center;
  }
  .product-info-section .product-info-picture {
    position: relative;
    width: 100%;
    height: 51.2vw;
    background: rgba(221, 221, 221, 0.459);
    margin-left: 0;
    z-index: 1;
  }
  .product-info-section .product-info-picture img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
  }
  .product-info-section .product-info-picture::before {
    content: '';
    position: absolute;
    top: -4.76190476vw;
    left: -4.76190476vw;
    display: block;
    width: 11.42857143vw;
    height: 11.42857143vw;
    background: rgba(255, 255, 255, 0.502);
    z-index: -1;
  }
  .product-info-section .product-info-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 3.73333333vw;
    font-weight: 400;
    color: #ffffff;
    line-height: 5.33333333vw;
    margin-top: 6.4vw;
  }
  .product-info-section .product-info-title-en {
    font-size: 2.66666667vw;
    line-height: 1;
  }
  .product-info-section .product-info-title {
    font-size: 6.4vw;
    margin-top: 4.26666667vw;
    line-height: 1;
  }
  .product-info-section .product-info-description {
    margin-top: 32px;
  }
  .product-info-section .product-info-button {
    width: 32vw;
    height: 8vw;
    font-size: 2.66666667vw;
    border: 1px solid #ffffff;
    color: white;
    background: none;
    margin: 24px auto 0;
  }
}

.service-section {
  background-color: white;
  overflow: hidden;
}
.service-section .service-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 100px;
  font-size: 40px;
  font-weight: 500;
  color: #091622;
}
.service-section .service-title::after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: -20px;
  height: 0.5em;
  bottom: 0;
  background: #2d80ff;
  opacity: 0.1;
}
.service-section .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  margin-top: 96px;
  margin-bottom: 96px;
  justify-content: space-between;
}
.service-section .service-list > li {
  display: flex;
  padding: 0;
  margin: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.service-section .service-list > li:nth-child(even) {
  flex-direction: row-reverse;
}
.service-section .service-list .service-picture {
  position: relative;
  flex: 0 0 616px;
  width: 616px;
  height: 388px;
  margin: 40px 0;
  z-index: 1;
}
.service-section .service-list .service-picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
.service-section .service-list .service-picture::after {
  content: '';
  position: absolute;
  display: block;
  top: -40px;
  left: -40px;
  width: 232px;
  height: 360px;
  background-image: radial-gradient(#ddd 25%, transparent 0);
  background-size: 8px 8px;
  z-index: -1;
}
.service-section .service-list > li:nth-of-type(2) .service-picture::after {
  top: 40px;
  left: -60px;
  width: 264px;
  height: 232px;
}
.service-section .service-list > li:nth-of-type(3) .service-picture::after {
  top: unset;
  bottom: -56px;
  left: -70px;
  width: 264px;
  height: 232px;
}
.service-section .service-list .service-info {
  width: 500px;
  z-index: 1;
}
.service-section .service-list .service-name-en {
  position: absolute;
  width: 500px;
  z-index: -1;
}
.service-section .service-list .service-name-en img {
  width: 100%;
  -o-object-fit: none;
  object-fit: none;
  -o-object-position: 0 0;
  object-position: 0 0;
}
.service-section .service-list .service-name {
  margin-top: 68px;
  font-size: 24px;
  font-weight: 500;
  color: #091622;
}
.service-section .service-list .service-name::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #2d80ff;
  margin-top: 24px;
}
.service-section .service-list .service-content {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #6b7786;
}
.service-section .service-list .serivce-label {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 500;
  color: #3c4f62;
}
.service-section .service-list .service-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-section .service-list .service-items li {
  margin-top: 16px;
}
@media screen and (max-width: 1260px) {
  .service-section .service-title {
    margin-top: 40px;
    margin-left: 40px;
    font-size: 32px;
    font-weight: 500;
    color: #091622;
  }
  .service-section .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: space-evenly;
  }
  .service-section .service-list > li {
    display: flex;
    padding: 0;
    margin: 0;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
  }
  .service-section .service-list > li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .service-section .service-list .service-picture {
    position: relative;
    flex: 0 0 40vw;
    width: 40vw;
    height: 25.2vw;
    margin: 40px 0;
    z-index: 1;
  }
  .service-section .service-list .service-picture img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
  }
  .service-section .service-list .service-picture::after {
    content: '';
    position: absolute;
    display: block;
    top: -3.24675325vw;
    left: -3.24675325vw;
    width: 18.83116883vw;
    height: 29.22077922vw;
    background-image: radial-gradient(#ddd 25%, transparent 0);
    background-size: 8px 8px;
    z-index: -1;
  }
  .service-section .service-list > li:nth-of-type(2) .service-picture::after {
    top: -2.5974026vw;
    left: -3.8961039vw;
    width: 17.14285714vw;
    height: 15.06493506vw;
  }
  .service-section .service-list > li:nth-of-type(3) .service-picture::after {
    top: unset;
    bottom: -3.63636364vw;
    left: -4.54545455vw;
    width: 17.14285714vw;
    height: 15.06493506vw;
  }
  .service-section .service-list .service-info {
    width: 50vw;
    z-index: 1;
  }
  .service-section .service-list .service-name-en {
    position: absolute;
    width: 50vw;
    z-index: -1;
  }
  .service-section .service-list .service-name-en img {
    width: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: 0 0;
    object-position: 0 0;
  }
  .service-section .service-list .service-name {
    margin-top: 6.8vw;
    font-size: 20px;
    font-weight: 500;
    color: #091622;
  }
  .service-section .service-list .service-name::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #2d80ff;
    margin-top: 16px;
  }
  .service-section .service-list .service-content {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 400;
    color: #6b7786;
  }
  .service-section .service-list .serivce-label {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #3c4f62;
  }
  .service-section .service-list .service-items li {
    margin-top: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .service-section {
    background-color: white;
    overflow: hidden;
  }
  .service-section .service-title {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 13.33333333vw;
    margin-left: 6.4vw;
    font-size: 6.4vw;
    font-weight: 500;
    color: #091622;
  }
  .service-section .service-title::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: -20px;
    height: 0.5em;
    bottom: 0;
    background: #2d80ff;
    opacity: 0.1;
  }
  .service-section .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-top: 6.4vw;
    margin-bottom: 13.33333333vw;
    justify-content: space-between;
    align-items: center;
  }
  .service-section .service-list > li {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 87.2vw;
    margin-top: 5.33333333vw;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 2.66666667vw 8vw 0px rgba(0, 0, 0, 0.09);
  }
  .service-section .service-list > li:nth-child(even) {
    flex-direction: column;
  }
  .service-section .service-list .service-picture {
    position: relative;
    flex: 0 0 31.2vw;
    width: 87.2vw;
    height: 31.2vw;
    margin: 0;
    z-index: 1;
  }
  .service-section .service-list .service-picture img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .service-section .service-list > li:nth-of-type(1) .service-picture img {
    -o-object-position: 0 0;
    object-position: 0 0;
  }
  .service-section .service-list > li:nth-of-type(1) .service-picture::after {
    display: none;
  }
  .service-section .service-list > li:nth-of-type(2) .service-picture::after {
    display: none;
  }
  .service-section .service-list > li:nth-of-type(3) .service-picture::after {
    display: none;
  }
  .service-section .service-list .service-info {
    position: relative;
    width: 100%;
    padding: 6.4vw;
    z-index: 1;
  }
  .service-section .service-list .service-name-en {
    position: absolute;
    z-index: -1;
  }
  .service-section .service-list .service-name-en img {
    width: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    -o-object-position: 0 0;
    object-position: 0 0;
  }
  .service-section .service-list > li:nth-of-type(1) .service-name-en {
    width: 71.2vw;
  }
  .service-section .service-list > li:nth-of-type(2) .service-name-en {
    width: 37.46666667vw;
  }
  .service-section .service-list > li:nth-of-type(3) .service-name-en {
    width: 72vw;
  }
  .service-section .service-list .service-name {
    margin-top: 10vw;
    font-size: 4.26666667vw;
    font-weight: 500;
    color: #091622;
  }
  .service-section .service-list .service-name::after {
    content: '';
    display: block;
    width: 3.6vw;
    height: 0.53333333vw;
    background: #2d80ff;
    margin-top: 1.46666667vw;
  }
  .service-section .service-list .service-content {
    margin-top: 24px;
    font-size: 3.46666667vw;
    font-weight: 400;
    line-height: 5.33333333vw;
    color: #6b7786;
  }
  .service-section .service-list .serivce-label {
    margin-top: 5.33333333vw;
    font-size: 3.46666667vw;
    font-weight: 500;
    color: #3c4f62;
  }
  .service-section .service-list .service-items {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .service-section .service-list .service-items li {
    margin-top: 16px;
  }
}


@font-face {
  font-family: 'www-icon';
  src:  url(/static/assets/www-icon.eot);
  src:  url(/static/assets/www-icon.eot#iefix) format('embedded-opentype'),
    url(/static/assets/www-icon.ttf) format('truetype'),
    url(/static/assets/www-icon.woff) format('woff'),
    url(/static/assets/www-icon.svg#www-icon) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'www-icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-product-zhineng:before {
  content: "\E900";
}
.icon-product-ronghe:before {
  content: "\E901";
}
.icon-product-chuangxin:before {
  content: "\E902";
}
.icon-product-anquan:before {
  content: "\E903";
}
.icon-home-xinyongjiazhi:before {
  content: "\E904";
}
.icon-home-securities:before {
  content: "\E905";
}
.icon-home-jiazhizhengquan:before {
  content: "\E906";
}
.icon-home-credit:before {
  content: "\E907";
}
.icon-home-assets:before {
  content: "\E908";
}
.icon-banner-left:before {
  content: "\E909";
}

body {
  font-family: Chinese Quote, -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 13px;
}
* {
  box-sizing: border-box;
}
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
input[type=button] {
  border: none;
  outline: none;
  cursor: pointer;
}
.container {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1288px) {
  .container {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1288px) {
  .container {
    padding: 0 24px;
  }
}

