@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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);
    -webkit-transform: translate3d(0, 0, 0);
    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);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  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);
    -webkit-transform: translate3d(0, 0, 0);
    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);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  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;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

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

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__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% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

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

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-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;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 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;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    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;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    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;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    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;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    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;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    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 {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    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 {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    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 {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    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;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

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

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

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

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    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);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    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);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 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 zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 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);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 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 zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 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);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@charset "UTF-8";
/* 基本設定群 */
/* #### 配色 #### */
/* #### レイアウト #### */
/* #### スクリーンサイズ #### */
/* #### レイアウト #### */
/* #### ユーザーインターフェース #### */
/* 基本設定群 */
/* #### 配色 #### */
/* #### レイアウト #### */
/* #### スクリーンサイズ #### */
/* #### レイアウト #### */
/* #### ユーザーインターフェース #### */
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Readex+Pro:wght@600&display=swap");
.column {
  width: auto;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  z-index: 50;
  position: relative;
}
.column.column-reverse {
  flex-wrap: wrap-reverse;
}
@media (min-width: 1280px) {
  .column {
    width: 1280px;
  }
  .column .column {
    width: auto;
  }
}
@media (max-width: 860px) {
  .column {
    padding: 0 7.5px;
  }
}
@media (max-width: 750px) {
  .column {
    padding: 0;
  }
}
.column img {
  max-width: 100%;
}

.panel,
.panel-dark {
  background-color: #fff;
  padding: 30px;
  margin: 7.5px;
  padding-top: 0.5em;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 750px) {
  .panel,
.panel-dark {
    padding: 15px;
  }
}
.panel.panel-dark,
.panel-dark.panel-dark {
  background-color: #595959;
}
.panel.panel-nopadding,
.panel-dark.panel-nopadding {
  padding: 0;
}
.panel.panel-noheading,
.panel-dark.panel-noheading {
  padding-top: 30px;
}

.panel-transparent {
  background-color: transparent;
  box-shadow: none;
}

@media (max-width: 860px) {
  #column-main,
#column-sub {
    float: none;
    width: auto;
    margin: 10px;
  }
}
.nopc {
  display: none !important;
}

@media (max-width: 860px) {
  .nopc {
    display: block !important;
  }
  .nosp {
    display: none !important;
  }
}
.column:after {
  content: "";
  display: block;
  clear: both;
}

/* カラム幅 */
[class^=col-],
[class*=" col-"] {
  box-sizing: border-box;
}
[class^=col-]:after,
[class*=" col-"]:after {
  content: "";
  display: block;
  clear: both;
}
[class^=col-].col-padding,
[class*=" col-"].col-padding {
  padding: 8px;
}
@media (max-width: 750px) {
  [class^=col-].col-sd-nopadding,
[class*=" col-"].col-sd-nopadding {
    padding: 8px;
  }
}

.col-full {
  width: 100%;
  padding: 1px 0;
}

.col-11 {
  width: 100%;
}

.col-12 {
  width: 200%;
}

.col-13 {
  width: 300%;
}

.col-14 {
  width: 400%;
}

.col-15 {
  width: 500%;
}

.col-16 {
  width: 600%;
}

.col-17 {
  width: 700%;
}

.col-18 {
  width: 800%;
}

.col-19 {
  width: 900%;
}

.col-21 {
  width: 50%;
}

.col-22 {
  width: 100%;
}

.col-23 {
  width: 150%;
}

.col-24 {
  width: 200%;
}

.col-25 {
  width: 250%;
}

.col-26 {
  width: 300%;
}

.col-27 {
  width: 350%;
}

.col-28 {
  width: 400%;
}

.col-29 {
  width: 450%;
}

.col-31 {
  width: 33.3333333333%;
}

.col-32 {
  width: 66.6666666667%;
}

.col-33 {
  width: 100%;
}

.col-34 {
  width: 133.3333333333%;
}

.col-35 {
  width: 166.6666666667%;
}

.col-36 {
  width: 200%;
}

.col-37 {
  width: 233.3333333333%;
}

.col-38 {
  width: 266.6666666667%;
}

.col-39 {
  width: 300%;
}

.col-41 {
  width: 25%;
}

.col-42 {
  width: 50%;
}

.col-43 {
  width: 75%;
}

.col-44 {
  width: 100%;
}

.col-45 {
  width: 125%;
}

.col-46 {
  width: 150%;
}

.col-47 {
  width: 175%;
}

.col-48 {
  width: 200%;
}

.col-49 {
  width: 225%;
}

.col-51 {
  width: 20%;
}

.col-52 {
  width: 40%;
}

.col-53 {
  width: 60%;
}

.col-54 {
  width: 80%;
}

.col-55 {
  width: 100%;
}

.col-56 {
  width: 120%;
}

.col-57 {
  width: 140%;
}

.col-58 {
  width: 160%;
}

.col-59 {
  width: 180%;
}

.col-61 {
  width: 16.6666666667%;
}

.col-62 {
  width: 33.3333333333%;
}

.col-63 {
  width: 50%;
}

.col-64 {
  width: 66.6666666667%;
}

.col-65 {
  width: 83.3333333333%;
}

.col-66 {
  width: 100%;
}

.col-67 {
  width: 116.6666666667%;
}

.col-68 {
  width: 133.3333333333%;
}

.col-69 {
  width: 150%;
}

.col-71 {
  width: 14.2857142857%;
}

.col-72 {
  width: 28.5714285714%;
}

.col-73 {
  width: 42.8571428571%;
}

.col-74 {
  width: 57.1428571429%;
}

.col-75 {
  width: 71.4285714286%;
}

.col-76 {
  width: 85.7142857143%;
}

.col-77 {
  width: 100%;
}

.col-78 {
  width: 114.2857142857%;
}

.col-79 {
  width: 128.5714285714%;
}

.col-81 {
  width: 12.5%;
}

.col-82 {
  width: 25%;
}

.col-83 {
  width: 37.5%;
}

.col-84 {
  width: 50%;
}

.col-85 {
  width: 62.5%;
}

.col-86 {
  width: 75%;
}

.col-87 {
  width: 87.5%;
}

.col-88 {
  width: 100%;
}

.col-89 {
  width: 112.5%;
}

.col-91 {
  width: 11.1111111111%;
}

.col-92 {
  width: 22.2222222222%;
}

.col-93 {
  width: 33.3333333333%;
}

.col-94 {
  width: 44.4444444444%;
}

.col-95 {
  width: 55.5555555556%;
}

.col-96 {
  width: 66.6666666667%;
}

.col-97 {
  width: 77.7777777778%;
}

.col-98 {
  width: 88.8888888889%;
}

.col-99 {
  width: 100%;
}

.col-shift-11 {
  margin-left: 100%;
}

.col-shift-12 {
  margin-left: 200%;
}

.col-shift-13 {
  margin-left: 300%;
}

.col-shift-14 {
  margin-left: 400%;
}

.col-shift-15 {
  margin-left: 500%;
}

.col-shift-16 {
  margin-left: 600%;
}

.col-shift-17 {
  margin-left: 700%;
}

.col-shift-18 {
  margin-left: 800%;
}

.col-shift-19 {
  margin-left: 900%;
}

.col-shift-21 {
  margin-left: 50%;
}

.col-shift-22 {
  margin-left: 100%;
}

.col-shift-23 {
  margin-left: 150%;
}

.col-shift-24 {
  margin-left: 200%;
}

.col-shift-25 {
  margin-left: 250%;
}

.col-shift-26 {
  margin-left: 300%;
}

.col-shift-27 {
  margin-left: 350%;
}

.col-shift-28 {
  margin-left: 400%;
}

.col-shift-29 {
  margin-left: 450%;
}

.col-shift-31 {
  margin-left: 33.3333333333%;
}

.col-shift-32 {
  margin-left: 66.6666666667%;
}

.col-shift-33 {
  margin-left: 100%;
}

.col-shift-34 {
  margin-left: 133.3333333333%;
}

.col-shift-35 {
  margin-left: 166.6666666667%;
}

.col-shift-36 {
  margin-left: 200%;
}

.col-shift-37 {
  margin-left: 233.3333333333%;
}

.col-shift-38 {
  margin-left: 266.6666666667%;
}

.col-shift-39 {
  margin-left: 300%;
}

.col-shift-41 {
  margin-left: 25%;
}

.col-shift-42 {
  margin-left: 50%;
}

.col-shift-43 {
  margin-left: 75%;
}

.col-shift-44 {
  margin-left: 100%;
}

.col-shift-45 {
  margin-left: 125%;
}

.col-shift-46 {
  margin-left: 150%;
}

.col-shift-47 {
  margin-left: 175%;
}

.col-shift-48 {
  margin-left: 200%;
}

.col-shift-49 {
  margin-left: 225%;
}

.col-shift-51 {
  margin-left: 20%;
}

.col-shift-52 {
  margin-left: 40%;
}

.col-shift-53 {
  margin-left: 60%;
}

.col-shift-54 {
  margin-left: 80%;
}

.col-shift-55 {
  margin-left: 100%;
}

.col-shift-56 {
  margin-left: 120%;
}

.col-shift-57 {
  margin-left: 140%;
}

.col-shift-58 {
  margin-left: 160%;
}

.col-shift-59 {
  margin-left: 180%;
}

.col-shift-61 {
  margin-left: 16.6666666667%;
}

.col-shift-62 {
  margin-left: 33.3333333333%;
}

.col-shift-63 {
  margin-left: 50%;
}

.col-shift-64 {
  margin-left: 66.6666666667%;
}

.col-shift-65 {
  margin-left: 83.3333333333%;
}

.col-shift-66 {
  margin-left: 100%;
}

.col-shift-67 {
  margin-left: 116.6666666667%;
}

.col-shift-68 {
  margin-left: 133.3333333333%;
}

.col-shift-69 {
  margin-left: 150%;
}

.col-shift-71 {
  margin-left: 14.2857142857%;
}

.col-shift-72 {
  margin-left: 28.5714285714%;
}

.col-shift-73 {
  margin-left: 42.8571428571%;
}

.col-shift-74 {
  margin-left: 57.1428571429%;
}

.col-shift-75 {
  margin-left: 71.4285714286%;
}

.col-shift-76 {
  margin-left: 85.7142857143%;
}

.col-shift-77 {
  margin-left: 100%;
}

.col-shift-78 {
  margin-left: 114.2857142857%;
}

.col-shift-79 {
  margin-left: 128.5714285714%;
}

.col-shift-81 {
  margin-left: 12.5%;
}

.col-shift-82 {
  margin-left: 25%;
}

.col-shift-83 {
  margin-left: 37.5%;
}

.col-shift-84 {
  margin-left: 50%;
}

.col-shift-85 {
  margin-left: 62.5%;
}

.col-shift-86 {
  margin-left: 75%;
}

.col-shift-87 {
  margin-left: 87.5%;
}

.col-shift-88 {
  margin-left: 100%;
}

.col-shift-89 {
  margin-left: 112.5%;
}

.col-shift-91 {
  margin-left: 11.1111111111%;
}

.col-shift-92 {
  margin-left: 22.2222222222%;
}

.col-shift-93 {
  margin-left: 33.3333333333%;
}

.col-shift-94 {
  margin-left: 44.4444444444%;
}

.col-shift-95 {
  margin-left: 55.5555555556%;
}

.col-shift-96 {
  margin-left: 66.6666666667%;
}

.col-shift-97 {
  margin-left: 77.7777777778%;
}

.col-shift-98 {
  margin-left: 88.8888888889%;
}

.col-shift-99 {
  margin-left: 100%;
}

.col-shift-none {
  margin-left: 0px;
}

@media (min-width: 751px) {
  .only-sd {
    display: none;
  }
}
@media (max-width: 950px) {
  .col-nd-11 {
    width: 100%;
  }
  .col-nd-12 {
    width: 200%;
  }
  .col-nd-13 {
    width: 300%;
  }
  .col-nd-14 {
    width: 400%;
  }
  .col-nd-15 {
    width: 500%;
  }
  .col-nd-16 {
    width: 600%;
  }
  .col-nd-17 {
    width: 700%;
  }
  .col-nd-18 {
    width: 800%;
  }
  .col-nd-19 {
    width: 900%;
  }
  .col-nd-21 {
    width: 50%;
  }
  .col-nd-22 {
    width: 100%;
  }
  .col-nd-23 {
    width: 150%;
  }
  .col-nd-24 {
    width: 200%;
  }
  .col-nd-25 {
    width: 250%;
  }
  .col-nd-26 {
    width: 300%;
  }
  .col-nd-27 {
    width: 350%;
  }
  .col-nd-28 {
    width: 400%;
  }
  .col-nd-29 {
    width: 450%;
  }
  .col-nd-31 {
    width: 33.3333333333%;
  }
  .col-nd-32 {
    width: 66.6666666667%;
  }
  .col-nd-33 {
    width: 100%;
  }
  .col-nd-34 {
    width: 133.3333333333%;
  }
  .col-nd-35 {
    width: 166.6666666667%;
  }
  .col-nd-36 {
    width: 200%;
  }
  .col-nd-37 {
    width: 233.3333333333%;
  }
  .col-nd-38 {
    width: 266.6666666667%;
  }
  .col-nd-39 {
    width: 300%;
  }
  .col-nd-41 {
    width: 25%;
  }
  .col-nd-42 {
    width: 50%;
  }
  .col-nd-43 {
    width: 75%;
  }
  .col-nd-44 {
    width: 100%;
  }
  .col-nd-45 {
    width: 125%;
  }
  .col-nd-46 {
    width: 150%;
  }
  .col-nd-47 {
    width: 175%;
  }
  .col-nd-48 {
    width: 200%;
  }
  .col-nd-49 {
    width: 225%;
  }
  .col-nd-51 {
    width: 20%;
  }
  .col-nd-52 {
    width: 40%;
  }
  .col-nd-53 {
    width: 60%;
  }
  .col-nd-54 {
    width: 80%;
  }
  .col-nd-55 {
    width: 100%;
  }
  .col-nd-56 {
    width: 120%;
  }
  .col-nd-57 {
    width: 140%;
  }
  .col-nd-58 {
    width: 160%;
  }
  .col-nd-59 {
    width: 180%;
  }
  .col-nd-61 {
    width: 16.6666666667%;
  }
  .col-nd-62 {
    width: 33.3333333333%;
  }
  .col-nd-63 {
    width: 50%;
  }
  .col-nd-64 {
    width: 66.6666666667%;
  }
  .col-nd-65 {
    width: 83.3333333333%;
  }
  .col-nd-66 {
    width: 100%;
  }
  .col-nd-67 {
    width: 116.6666666667%;
  }
  .col-nd-68 {
    width: 133.3333333333%;
  }
  .col-nd-69 {
    width: 150%;
  }
  .col-nd-71 {
    width: 14.2857142857%;
  }
  .col-nd-72 {
    width: 28.5714285714%;
  }
  .col-nd-73 {
    width: 42.8571428571%;
  }
  .col-nd-74 {
    width: 57.1428571429%;
  }
  .col-nd-75 {
    width: 71.4285714286%;
  }
  .col-nd-76 {
    width: 85.7142857143%;
  }
  .col-nd-77 {
    width: 100%;
  }
  .col-nd-78 {
    width: 114.2857142857%;
  }
  .col-nd-79 {
    width: 128.5714285714%;
  }
  .col-nd-81 {
    width: 12.5%;
  }
  .col-nd-82 {
    width: 25%;
  }
  .col-nd-83 {
    width: 37.5%;
  }
  .col-nd-84 {
    width: 50%;
  }
  .col-nd-85 {
    width: 62.5%;
  }
  .col-nd-86 {
    width: 75%;
  }
  .col-nd-87 {
    width: 87.5%;
  }
  .col-nd-88 {
    width: 100%;
  }
  .col-nd-89 {
    width: 112.5%;
  }
  .col-nd-91 {
    width: 11.1111111111%;
  }
  .col-nd-92 {
    width: 22.2222222222%;
  }
  .col-nd-93 {
    width: 33.3333333333%;
  }
  .col-nd-94 {
    width: 44.4444444444%;
  }
  .col-nd-95 {
    width: 55.5555555556%;
  }
  .col-nd-96 {
    width: 66.6666666667%;
  }
  .col-nd-97 {
    width: 77.7777777778%;
  }
  .col-nd-98 {
    width: 88.8888888889%;
  }
  .col-nd-99 {
    width: 100%;
  }
  .col-nd-shift-11 {
    margin-left: 100%;
  }
  .col-nd-shift-12 {
    margin-left: 200%;
  }
  .col-nd-shift-13 {
    margin-left: 300%;
  }
  .col-nd-shift-14 {
    margin-left: 400%;
  }
  .col-nd-shift-15 {
    margin-left: 500%;
  }
  .col-nd-shift-16 {
    margin-left: 600%;
  }
  .col-nd-shift-17 {
    margin-left: 700%;
  }
  .col-nd-shift-18 {
    margin-left: 800%;
  }
  .col-nd-shift-19 {
    margin-left: 900%;
  }
  .col-nd-shift-21 {
    margin-left: 50%;
  }
  .col-nd-shift-22 {
    margin-left: 100%;
  }
  .col-nd-shift-23 {
    margin-left: 150%;
  }
  .col-nd-shift-24 {
    margin-left: 200%;
  }
  .col-nd-shift-25 {
    margin-left: 250%;
  }
  .col-nd-shift-26 {
    margin-left: 300%;
  }
  .col-nd-shift-27 {
    margin-left: 350%;
  }
  .col-nd-shift-28 {
    margin-left: 400%;
  }
  .col-nd-shift-29 {
    margin-left: 450%;
  }
  .col-nd-shift-31 {
    margin-left: 33.3333333333%;
  }
  .col-nd-shift-32 {
    margin-left: 66.6666666667%;
  }
  .col-nd-shift-33 {
    margin-left: 100%;
  }
  .col-nd-shift-34 {
    margin-left: 133.3333333333%;
  }
  .col-nd-shift-35 {
    margin-left: 166.6666666667%;
  }
  .col-nd-shift-36 {
    margin-left: 200%;
  }
  .col-nd-shift-37 {
    margin-left: 233.3333333333%;
  }
  .col-nd-shift-38 {
    margin-left: 266.6666666667%;
  }
  .col-nd-shift-39 {
    margin-left: 300%;
  }
  .col-nd-shift-41 {
    margin-left: 25%;
  }
  .col-nd-shift-42 {
    margin-left: 50%;
  }
  .col-nd-shift-43 {
    margin-left: 75%;
  }
  .col-nd-shift-44 {
    margin-left: 100%;
  }
  .col-nd-shift-45 {
    margin-left: 125%;
  }
  .col-nd-shift-46 {
    margin-left: 150%;
  }
  .col-nd-shift-47 {
    margin-left: 175%;
  }
  .col-nd-shift-48 {
    margin-left: 200%;
  }
  .col-nd-shift-49 {
    margin-left: 225%;
  }
  .col-nd-shift-51 {
    margin-left: 20%;
  }
  .col-nd-shift-52 {
    margin-left: 40%;
  }
  .col-nd-shift-53 {
    margin-left: 60%;
  }
  .col-nd-shift-54 {
    margin-left: 80%;
  }
  .col-nd-shift-55 {
    margin-left: 100%;
  }
  .col-nd-shift-56 {
    margin-left: 120%;
  }
  .col-nd-shift-57 {
    margin-left: 140%;
  }
  .col-nd-shift-58 {
    margin-left: 160%;
  }
  .col-nd-shift-59 {
    margin-left: 180%;
  }
  .col-nd-shift-61 {
    margin-left: 16.6666666667%;
  }
  .col-nd-shift-62 {
    margin-left: 33.3333333333%;
  }
  .col-nd-shift-63 {
    margin-left: 50%;
  }
  .col-nd-shift-64 {
    margin-left: 66.6666666667%;
  }
  .col-nd-shift-65 {
    margin-left: 83.3333333333%;
  }
  .col-nd-shift-66 {
    margin-left: 100%;
  }
  .col-nd-shift-67 {
    margin-left: 116.6666666667%;
  }
  .col-nd-shift-68 {
    margin-left: 133.3333333333%;
  }
  .col-nd-shift-69 {
    margin-left: 150%;
  }
  .col-nd-shift-71 {
    margin-left: 14.2857142857%;
  }
  .col-nd-shift-72 {
    margin-left: 28.5714285714%;
  }
  .col-nd-shift-73 {
    margin-left: 42.8571428571%;
  }
  .col-nd-shift-74 {
    margin-left: 57.1428571429%;
  }
  .col-nd-shift-75 {
    margin-left: 71.4285714286%;
  }
  .col-nd-shift-76 {
    margin-left: 85.7142857143%;
  }
  .col-nd-shift-77 {
    margin-left: 100%;
  }
  .col-nd-shift-78 {
    margin-left: 114.2857142857%;
  }
  .col-nd-shift-79 {
    margin-left: 128.5714285714%;
  }
  .col-nd-shift-81 {
    margin-left: 12.5%;
  }
  .col-nd-shift-82 {
    margin-left: 25%;
  }
  .col-nd-shift-83 {
    margin-left: 37.5%;
  }
  .col-nd-shift-84 {
    margin-left: 50%;
  }
  .col-nd-shift-85 {
    margin-left: 62.5%;
  }
  .col-nd-shift-86 {
    margin-left: 75%;
  }
  .col-nd-shift-87 {
    margin-left: 87.5%;
  }
  .col-nd-shift-88 {
    margin-left: 100%;
  }
  .col-nd-shift-89 {
    margin-left: 112.5%;
  }
  .col-nd-shift-91 {
    margin-left: 11.1111111111%;
  }
  .col-nd-shift-92 {
    margin-left: 22.2222222222%;
  }
  .col-nd-shift-93 {
    margin-left: 33.3333333333%;
  }
  .col-nd-shift-94 {
    margin-left: 44.4444444444%;
  }
  .col-nd-shift-95 {
    margin-left: 55.5555555556%;
  }
  .col-nd-shift-96 {
    margin-left: 66.6666666667%;
  }
  .col-nd-shift-97 {
    margin-left: 77.7777777778%;
  }
  .col-nd-shift-98 {
    margin-left: 88.8888888889%;
  }
  .col-nd-shift-99 {
    margin-left: 100%;
  }
  .col-nd-full {
    width: 100%;
  }
  .col-nd-shift-none {
    margin-left: 0px;
  }
}
@media (max-width: 750px) {
  .no-sd {
    display: none;
  }
  .col-sd-11 {
    width: 100%;
  }
  .col-sd-12 {
    width: 200%;
  }
  .col-sd-13 {
    width: 300%;
  }
  .col-sd-14 {
    width: 400%;
  }
  .col-sd-15 {
    width: 500%;
  }
  .col-sd-16 {
    width: 600%;
  }
  .col-sd-17 {
    width: 700%;
  }
  .col-sd-18 {
    width: 800%;
  }
  .col-sd-19 {
    width: 900%;
  }
  .col-sd-21 {
    width: 50%;
  }
  .col-sd-22 {
    width: 100%;
  }
  .col-sd-23 {
    width: 150%;
  }
  .col-sd-24 {
    width: 200%;
  }
  .col-sd-25 {
    width: 250%;
  }
  .col-sd-26 {
    width: 300%;
  }
  .col-sd-27 {
    width: 350%;
  }
  .col-sd-28 {
    width: 400%;
  }
  .col-sd-29 {
    width: 450%;
  }
  .col-sd-31 {
    width: 33.3333333333%;
  }
  .col-sd-32 {
    width: 66.6666666667%;
  }
  .col-sd-33 {
    width: 100%;
  }
  .col-sd-34 {
    width: 133.3333333333%;
  }
  .col-sd-35 {
    width: 166.6666666667%;
  }
  .col-sd-36 {
    width: 200%;
  }
  .col-sd-37 {
    width: 233.3333333333%;
  }
  .col-sd-38 {
    width: 266.6666666667%;
  }
  .col-sd-39 {
    width: 300%;
  }
  .col-sd-41 {
    width: 25%;
  }
  .col-sd-42 {
    width: 50%;
  }
  .col-sd-43 {
    width: 75%;
  }
  .col-sd-44 {
    width: 100%;
  }
  .col-sd-45 {
    width: 125%;
  }
  .col-sd-46 {
    width: 150%;
  }
  .col-sd-47 {
    width: 175%;
  }
  .col-sd-48 {
    width: 200%;
  }
  .col-sd-49 {
    width: 225%;
  }
  .col-sd-51 {
    width: 20%;
  }
  .col-sd-52 {
    width: 40%;
  }
  .col-sd-53 {
    width: 60%;
  }
  .col-sd-54 {
    width: 80%;
  }
  .col-sd-55 {
    width: 100%;
  }
  .col-sd-56 {
    width: 120%;
  }
  .col-sd-57 {
    width: 140%;
  }
  .col-sd-58 {
    width: 160%;
  }
  .col-sd-59 {
    width: 180%;
  }
  .col-sd-61 {
    width: 16.6666666667%;
  }
  .col-sd-62 {
    width: 33.3333333333%;
  }
  .col-sd-63 {
    width: 50%;
  }
  .col-sd-64 {
    width: 66.6666666667%;
  }
  .col-sd-65 {
    width: 83.3333333333%;
  }
  .col-sd-66 {
    width: 100%;
  }
  .col-sd-67 {
    width: 116.6666666667%;
  }
  .col-sd-68 {
    width: 133.3333333333%;
  }
  .col-sd-69 {
    width: 150%;
  }
  .col-sd-71 {
    width: 14.2857142857%;
  }
  .col-sd-72 {
    width: 28.5714285714%;
  }
  .col-sd-73 {
    width: 42.8571428571%;
  }
  .col-sd-74 {
    width: 57.1428571429%;
  }
  .col-sd-75 {
    width: 71.4285714286%;
  }
  .col-sd-76 {
    width: 85.7142857143%;
  }
  .col-sd-77 {
    width: 100%;
  }
  .col-sd-78 {
    width: 114.2857142857%;
  }
  .col-sd-79 {
    width: 128.5714285714%;
  }
  .col-sd-81 {
    width: 12.5%;
  }
  .col-sd-82 {
    width: 25%;
  }
  .col-sd-83 {
    width: 37.5%;
  }
  .col-sd-84 {
    width: 50%;
  }
  .col-sd-85 {
    width: 62.5%;
  }
  .col-sd-86 {
    width: 75%;
  }
  .col-sd-87 {
    width: 87.5%;
  }
  .col-sd-88 {
    width: 100%;
  }
  .col-sd-89 {
    width: 112.5%;
  }
  .col-sd-91 {
    width: 11.1111111111%;
  }
  .col-sd-92 {
    width: 22.2222222222%;
  }
  .col-sd-93 {
    width: 33.3333333333%;
  }
  .col-sd-94 {
    width: 44.4444444444%;
  }
  .col-sd-95 {
    width: 55.5555555556%;
  }
  .col-sd-96 {
    width: 66.6666666667%;
  }
  .col-sd-97 {
    width: 77.7777777778%;
  }
  .col-sd-98 {
    width: 88.8888888889%;
  }
  .col-sd-99 {
    width: 100%;
  }
  .col-sd-shift-11 {
    margin-left: 100%;
  }
  .col-sd-shift-12 {
    margin-left: 200%;
  }
  .col-sd-shift-13 {
    margin-left: 300%;
  }
  .col-sd-shift-14 {
    margin-left: 400%;
  }
  .col-sd-shift-15 {
    margin-left: 500%;
  }
  .col-sd-shift-16 {
    margin-left: 600%;
  }
  .col-sd-shift-17 {
    margin-left: 700%;
  }
  .col-sd-shift-18 {
    margin-left: 800%;
  }
  .col-sd-shift-19 {
    margin-left: 900%;
  }
  .col-sd-shift-21 {
    margin-left: 50%;
  }
  .col-sd-shift-22 {
    margin-left: 100%;
  }
  .col-sd-shift-23 {
    margin-left: 150%;
  }
  .col-sd-shift-24 {
    margin-left: 200%;
  }
  .col-sd-shift-25 {
    margin-left: 250%;
  }
  .col-sd-shift-26 {
    margin-left: 300%;
  }
  .col-sd-shift-27 {
    margin-left: 350%;
  }
  .col-sd-shift-28 {
    margin-left: 400%;
  }
  .col-sd-shift-29 {
    margin-left: 450%;
  }
  .col-sd-shift-31 {
    margin-left: 33.3333333333%;
  }
  .col-sd-shift-32 {
    margin-left: 66.6666666667%;
  }
  .col-sd-shift-33 {
    margin-left: 100%;
  }
  .col-sd-shift-34 {
    margin-left: 133.3333333333%;
  }
  .col-sd-shift-35 {
    margin-left: 166.6666666667%;
  }
  .col-sd-shift-36 {
    margin-left: 200%;
  }
  .col-sd-shift-37 {
    margin-left: 233.3333333333%;
  }
  .col-sd-shift-38 {
    margin-left: 266.6666666667%;
  }
  .col-sd-shift-39 {
    margin-left: 300%;
  }
  .col-sd-shift-41 {
    margin-left: 25%;
  }
  .col-sd-shift-42 {
    margin-left: 50%;
  }
  .col-sd-shift-43 {
    margin-left: 75%;
  }
  .col-sd-shift-44 {
    margin-left: 100%;
  }
  .col-sd-shift-45 {
    margin-left: 125%;
  }
  .col-sd-shift-46 {
    margin-left: 150%;
  }
  .col-sd-shift-47 {
    margin-left: 175%;
  }
  .col-sd-shift-48 {
    margin-left: 200%;
  }
  .col-sd-shift-49 {
    margin-left: 225%;
  }
  .col-sd-shift-51 {
    margin-left: 20%;
  }
  .col-sd-shift-52 {
    margin-left: 40%;
  }
  .col-sd-shift-53 {
    margin-left: 60%;
  }
  .col-sd-shift-54 {
    margin-left: 80%;
  }
  .col-sd-shift-55 {
    margin-left: 100%;
  }
  .col-sd-shift-56 {
    margin-left: 120%;
  }
  .col-sd-shift-57 {
    margin-left: 140%;
  }
  .col-sd-shift-58 {
    margin-left: 160%;
  }
  .col-sd-shift-59 {
    margin-left: 180%;
  }
  .col-sd-shift-61 {
    margin-left: 16.6666666667%;
  }
  .col-sd-shift-62 {
    margin-left: 33.3333333333%;
  }
  .col-sd-shift-63 {
    margin-left: 50%;
  }
  .col-sd-shift-64 {
    margin-left: 66.6666666667%;
  }
  .col-sd-shift-65 {
    margin-left: 83.3333333333%;
  }
  .col-sd-shift-66 {
    margin-left: 100%;
  }
  .col-sd-shift-67 {
    margin-left: 116.6666666667%;
  }
  .col-sd-shift-68 {
    margin-left: 133.3333333333%;
  }
  .col-sd-shift-69 {
    margin-left: 150%;
  }
  .col-sd-shift-71 {
    margin-left: 14.2857142857%;
  }
  .col-sd-shift-72 {
    margin-left: 28.5714285714%;
  }
  .col-sd-shift-73 {
    margin-left: 42.8571428571%;
  }
  .col-sd-shift-74 {
    margin-left: 57.1428571429%;
  }
  .col-sd-shift-75 {
    margin-left: 71.4285714286%;
  }
  .col-sd-shift-76 {
    margin-left: 85.7142857143%;
  }
  .col-sd-shift-77 {
    margin-left: 100%;
  }
  .col-sd-shift-78 {
    margin-left: 114.2857142857%;
  }
  .col-sd-shift-79 {
    margin-left: 128.5714285714%;
  }
  .col-sd-shift-81 {
    margin-left: 12.5%;
  }
  .col-sd-shift-82 {
    margin-left: 25%;
  }
  .col-sd-shift-83 {
    margin-left: 37.5%;
  }
  .col-sd-shift-84 {
    margin-left: 50%;
  }
  .col-sd-shift-85 {
    margin-left: 62.5%;
  }
  .col-sd-shift-86 {
    margin-left: 75%;
  }
  .col-sd-shift-87 {
    margin-left: 87.5%;
  }
  .col-sd-shift-88 {
    margin-left: 100%;
  }
  .col-sd-shift-89 {
    margin-left: 112.5%;
  }
  .col-sd-shift-91 {
    margin-left: 11.1111111111%;
  }
  .col-sd-shift-92 {
    margin-left: 22.2222222222%;
  }
  .col-sd-shift-93 {
    margin-left: 33.3333333333%;
  }
  .col-sd-shift-94 {
    margin-left: 44.4444444444%;
  }
  .col-sd-shift-95 {
    margin-left: 55.5555555556%;
  }
  .col-sd-shift-96 {
    margin-left: 66.6666666667%;
  }
  .col-sd-shift-97 {
    margin-left: 77.7777777778%;
  }
  .col-sd-shift-98 {
    margin-left: 88.8888888889%;
  }
  .col-sd-shift-99 {
    margin-left: 100%;
  }
  .col-sd-full {
    width: 100%;
  }
  .col-sd-shift-none {
    margin-left: 0px;
  }
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
html {
  font-size: 62.5%;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  background-color: #F6F3EE;
  color: #422F08;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5em;
  font-family: "BIZ UDPGothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body a {
  color: inherit;
}
body .numeric {
  font-family: "Readex Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.global--nav {
  height: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px) brightness(1) contrast(1);
}
.global--nav > div {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  filter: drop-shadow(0 0 3px #fff);
}
.global--nav h1 {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.global--nav h1 svg {
  height: 25px;
}
.global--nav nav {
  flex-grow: 1;
  display: flex;
  justify-content: end;
}
.global--nav nav > ul {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  color: #666;
}
.global--nav nav > ul li {
  padding: 0 1em;
  font-size: 80%;
  line-height: 1.2em;
  border-left: 1px solid #666;
}
.global--nav nav > ul li a {
  color: inherit;
  text-decoration: none;
}
.global--nav nav > ul li:last-child {
  border-right: 1px solid #666;
}

.header--main {
  min-height: 85vh;
  padding-top: 50px;
  display: flex;
  align-items: center;
}
.header--main div {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
  width: 80%;
  background-repeat: no-repeat;
  text-shadow: rgb(255, 255, 255) 3px 0px 0px, rgb(255, 255, 255) 2.83487px 0.981584px 0px, rgb(255, 255, 255) 2.35766px 1.85511px 0px, rgb(255, 255, 255) 1.62091px 2.52441px 0px, rgb(255, 255, 255) 0.705713px 2.91581px 0px, rgb(255, 255, 255) -0.287171px 2.98622px 0px, rgb(255, 255, 255) -1.24844px 2.72789px 0px, rgb(255, 255, 255) -2.07227px 2.16926px 0px, rgb(255, 255, 255) -2.66798px 1.37182px 0px, rgb(255, 255, 255) -2.96998px 0.42336px 0px, rgb(255, 255, 255) -2.94502px -0.571704px 0px, rgb(255, 255, 255) -2.59586px -1.50383px 0px, rgb(255, 255, 255) -1.96093px -2.27041px 0px, rgb(255, 255, 255) -1.11013px -2.78704px 0px, rgb(255, 255, 255) -0.137119px -2.99686px 0px, rgb(255, 255, 255) 0.850987px -2.87677px 0px, rgb(255, 255, 255) 1.74541px -2.43999px 0px, rgb(255, 255, 255) 2.44769px -1.73459px 0px, rgb(255, 255, 255) 2.88051px -0.838247px 0px;
}
.header--main div > * {
  position: relative;
  z-index: 2;
}
.header--main div svg {
  filter: drop-shadow(0 3px 5px #fff);
}
.header--main div:after {
  content: "";
  display: block;
  background-image: url("hero.0cc63a3e.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  width: 50%;
  height: 100%;
  z-index: 1;
  position: absolute;
  animation: float 6s ease-in-out infinite;
  right: 0;
  bottom: 0;
}
.header--main h1 {
  text-align: left;
  width: 400px;
  max-width: 50%;
}
.header--main h1 .hide {
  display: none;
}
.header--main h1 svg {
  margin-bottom: 0.5em;
}
.header--main h1 .subtitle {
  display: block;
  line-height: 1.5em;
  font-size: 75%;
  transform: translateX(-2em);
  opacity: 0;
}
.header--main h1 .subtitle.first-line {
  transition: all 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.5s;
  margin-left: 0.5em;
}
.header--main h1 .subtitle.second-line {
  transition: all 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.7s;
  margin-left: 1em;
}
.header--main h1.active .subtitle {
  transform: translateX(0);
  opacity: 1;
}

.button {
  display: inline-block;
  padding: 0.75em 1.25em;
  border-radius: 0.25em;
  text-decoration: none;
  background-color: #333;
  color: #fff;
  line-height: 1.2em;
  box-shadow: 0 0.2em 0 rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: all 0.1s cubic-bezier(0.63, -0.43, 0.21, 1.64);
  text-shadow: none;
  position: relative;
  overflow: hidden;
}
@-webkit-keyframes shiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.button:hover {
  transform: translateY(0em) scale(105%);
}
.button:active {
  transform: translateY(0.2em);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}
.button::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny 3s ease-in-out infinite;
}
.button::after {
  content: "";
  display: inline-block;
  border: 2px solid #fff;
  border-color: #fff #fff transparent transparent;
  width: 0.4em;
  height: 0.4em;
  transform: rotate(45deg);
}
.button.button--enquery {
  background-color: #0c9;
}
.button.button--enquery::before {
  animation: shiny 3s ease-in-out infinite 0.75s;
}
.button.button--start {
  background-color: #6cf;
}
.button.button--start::before {
  animation: shiny 3s ease-in-out infinite 0.5s;
}

.overview--child {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin: 1em auto;
  background-color: #fff;
  padding: 1.5em 1.75em;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 1024px;
  width: calc(100% - 2em);
}
.overview--child > div {
  width: 50%;
}
.overview--child > div > h3 {
  color: #333;
}
.overview--child > div > h3:first-child {
  margin-top: 0;
}
.overview--child > div > h3 > span {
  display: inline-block;
  padding: 0.15em 0.25em;
  background: linear-gradient(transparent 60%, rgb(255, 252, 102) 60%);
}

.overview--checklist {
  margin: 0;
  padding: 0 0 0 1.5em;
  list-style: none;
}
.overview--checklist > li {
  position: relative;
  margin: 0.35em 0;
}
.overview--checklist > li > span {
  display: inline-block;
}
.overview--checklist > li::before, .overview--checklist > li::after {
  display: inline-block;
  height: 1em;
  width: 1em;
  box-sizing: border-box;
  vertical-align: baseline;
  position: absolute;
  content: "";
  left: -1.25em;
  top: 0.25em;
}
.overview--checklist > li::after {
  border-style: solid;
  border-width: 4.5px 4.5px 5px 4.5px;
  border-color: transparent transparent green green;
  transform: rotate(-45deg) scaleX(50%) scaleY(35%);
  top: 0.2em;
}
.overview--checklist > li::before {
  border: 2px solid green;
  border-radius: 100%;
}

.ctr--block {
  padding: 5em 0;
  text-align: center;
  background-color: #fff;
  transform: skewY(10deg);
  position: relative;
  z-index: 0;
}
.ctr--block > div {
  transform: skewY(-10deg);
  position: relative;
  z-index: 1;
}
.ctr--block .logo {
  width: 50%;
  max-width: 350px;
  margin: 0 auto;
  display: block;
}

.service--detail {
  position: relative;
  z-index: 5;
}
.service--detail h2 {
  text-align: center;
  margin-top: 2em;
  font-weight: bold;
}
.service--detail h2 > span {
  display: inline-block;
  border-bottom: 1px solid #333;
  letter-spacing: 0.5em;
  padding: 0.25em 0.75em;
  font-size: 0.8em;
}
.service--detail h3 {
  text-align: center;
  z-index: 6;
}
.service--detail h3 span {
  display: inline-block;
  background-color: #666;
  border-radius: 3em;
  padding: 0.75em 1.25em;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1em;
}
.service--detail > * {
  z-index: 5;
  position: relative;
}
.service--detail.service--detail--fee::after, .service--detail.service--detail--fee::before {
  content: "";
  height: 50%;
  width: 40%;
  position: absolute;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.service--detail.service--detail--fee::before {
  right: 1vw;
  top: 0;
  background-image: url(bg_fee01.37dd1104.png);
  animation: float 6s ease-in-out infinite 0.2s;
}
.service--detail.service--detail--fee::after {
  left: 1vw;
  bottom: 0;
  background-image: url(bg_fee02.4871cd23.png);
  animation: float 5s ease-in-out infinite -3s;
}

.service--detail--contain {
  margin: 0 auto;
  padding: 0.5em;
  display: flex;
  flex-direction: row;
  list-style: none;
  box-sizing: border-box;
  max-width: 960px;
}
.service--detail--contain li {
  margin: 0.5em;
  padding: 1.5em 1em;
  width: 33.3333333333%;
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0.25em;
  opacity: 0;
  transform: translateY(2em);
  filter: blur(20px);
}
.service--detail--contain li .label {
  font-weight: bold;
  height: 2.6em;
  line-height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service--detail--contain li .label span {
  display: inline-block;
}
.service--detail--contain li img {
  width: 100%;
  height: auto;
}
.service--detail--contain li:nth-child(1) {
  transition: all 1.25s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0s;
}
.service--detail--contain li:nth-child(2) {
  transition: all 1.25s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.2s;
}
.service--detail--contain li:nth-child(3) {
  transition: all 1.25s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.4s;
}
.service--detail--contain.active li {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.service--detail--flow {
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(100% - 2em);
  max-width: 640px;
  margin: 0 auto;
}
.service--detail--flow li {
  display: block;
  position: relative;
  margin-bottom: 3em;
  filter: blur(10px);
  opacity: 0;
  transform: translateY(2em);
  transition: all 0.5s ease-in-out 0.2s;
}
.service--detail--flow li.active {
  filter: blur(0);
  transform: translateY(0);
  opacity: 1;
}
.service--detail--flow li div {
  display: block;
  padding: 1em;
  border-radius: 0.5em;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  width: 80%;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.service--detail--flow li div small {
  display: inline-block;
  max-width: 100%;
}
.service--detail--flow li div::after, .service--detail--flow li div::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 0.6em;
  height: 0.6em;
  border: 0.125em solid #fff;
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
}
.service--detail--flow li div::after {
  margin: -0.24em -0.36em;
  right: 0;
  top: 50%;
}
.service--detail--flow li div::before {
  margin: -0.36em -0.21em;
  left: 2.5em;
  top: 0;
}
.service--detail--flow li:nth-child(even) div {
  margin-left: 20%;
}
.service--detail--flow li:nth-child(even) div::after {
  right: auto;
  left: 0;
}
.service--detail--flow li:nth-child(even) div::before {
  left: auto;
  right: 2.5em;
}
.service--detail--flow li:last-child div::after, .service--detail--flow li:first-child div::before {
  display: none;
}
.service--detail--flow li::after {
  content: "";
  display: block;
  width: calc(20% + 1em);
  height: calc(100% + 3em);
  position: absolute;
  border: 3px dashed;
  border-color: #ccc #ccc transparent transparent;
  top: 50%;
  z-index: 0;
  right: 2.5em;
  border-radius: 2em;
}
.service--detail--flow li:nth-child(even)::after {
  border-color: #ccc transparent transparent #ccc;
  left: 2.5em;
  right: auto;
}
.service--detail--flow li:last-child::after {
  display: none;
}
.service--detail--flow small {
  color: #ccc;
}

.service--detail--fee--overview {
  font-size: 4.5rem;
  text-align: center;
  margin-bottom: 1.5em;
}
.service--detail--fee--overview dl {
  background-color: #aaa;
  margin: 0;
  display: inline-block;
  padding: 0.45em 1em 0.45em 0.75em;
  transform: skewX(-15deg);
  box-shadow: 0.125em 0.125em 0 rgba(0, 0, 0, 0.5);
  position: relative;
}
.service--detail--fee--overview dl dt, .service--detail--fee--overview dl dd {
  transform: skewX(15deg);
  text-shadow: rgb(255, 255, 255) 3px 0px 0px, rgb(255, 255, 255) 2.83487px 0.981584px 0px, rgb(255, 255, 255) 2.35766px 1.85511px 0px, rgb(255, 255, 255) 1.62091px 2.52441px 0px, rgb(255, 255, 255) 0.705713px 2.91581px 0px, rgb(255, 255, 255) -0.287171px 2.98622px 0px, rgb(255, 255, 255) -1.24844px 2.72789px 0px, rgb(255, 255, 255) -2.07227px 2.16926px 0px, rgb(255, 255, 255) -2.66798px 1.37182px 0px, rgb(255, 255, 255) -2.96998px 0.42336px 0px, rgb(255, 255, 255) -2.94502px -0.571704px 0px, rgb(255, 255, 255) -2.59586px -1.50383px 0px, rgb(255, 255, 255) -1.96093px -2.27041px 0px, rgb(255, 255, 255) -1.11013px -2.78704px 0px, rgb(255, 255, 255) -0.137119px -2.99686px 0px, rgb(255, 255, 255) 0.850987px -2.87677px 0px, rgb(255, 255, 255) 1.74541px -2.43999px 0px, rgb(255, 255, 255) 2.44769px -1.73459px 0px, rgb(255, 255, 255) 2.88051px -0.838247px 0px;
}
.service--detail--fee--overview dl dt {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 50%;
}
.service--detail--fee--overview dl dt span.numeic {
  font-weight: 700;
}
.service--detail--fee--overview dl dd {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.service--detail--fee--overview dl p {
  margin: 0;
  padding: 0;
}
.service--detail--fee--overview dl p small {
  font-size: 50%;
  position: relative;
  bottom: 0.2em;
  left: 0.25em;
}
.service--detail--fee--overview dl {
  transition: all 1s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.3s;
  opacity: 0;
}
.service--detail--fee--overview dl.active {
  opacity: 1;
}
.service--detail--fee--overview dl:first-child {
  z-index: 5;
  left: -2.5em;
  background-color: #2fd9ce;
}
.service--detail--fee--overview dl:first-child.active {
  left: -0.5em;
}
.service--detail--fee--overview dl:last-child {
  background-color: #FDB663;
  font-size: 80%;
  left: 2.5em;
  top: -0.05em;
}
.service--detail--fee--overview dl:last-child.active {
  left: 0.5em;
}

.service--detail--fee--list {
  margin: -2em auto 0 auto;
  padding: 1.5em 0 1.25em 0;
  list-style: none;
  width: 100%;
  max-width: 450px;
  border: 2px dashed #666;
  border-radius: 0.5em;
  background-color: rgba(255, 255, 255, 0.75);
}
.service--detail--fee--list li {
  margin: 0em -0.5em -0.1em -0.5em;
  border: 1px solid #ccc;
  padding: 0.4em 0.25em 0.25em 0.25em;
  width: calc(100% - 3.75em + 1.75em);
  border-style: solid;
  border-width: 1px;
  font-size: 160%;
  font-weight: bold;
  background-color: #fff;
  position: relative;
  text-align: center;
  position: relative;
  display: block;
  transform: skewX(-15deg);
}
.service--detail--fee--list li > div {
  transform: skewX(15deg);
  font-weight: 700;
}
.service--detail--fee--list li small {
  font-size: 45%;
  position: relative;
  top: -0.1em;
}
.service--detail--fee--list li .fee--unit {
  font-size: 50%;
  background-color: #333;
  color: #fff;
  padding: 0.25em 0.75em;
  border-radius: 1.5em;
  margin-right: -0.5em;
  margin-left: 0.25em;
  position: relative;
  bottom: 0.2em;
}
.service--detail--fee--list li .badge {
  position: absolute;
  top: -1em;
  left: -2em;
  background-color: #F13227;
  transform: skewX(15deg);
  font-size: 50%;
  color: #fff;
  padding: 0.5em 1em;
  line-height: 1em;
  border-radius: 0.5em;
}
.service--detail--fee--list li.service--fee--tier-1 {
  border-color: #F13227;
  box-shadow: 0.125em 0.125em 0 #F13227;
  z-index: 9;
  transform: skewX(-15deg) translateX(-5em);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.15s, opacity 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.15s;
}
.service--detail--fee--list li.service--fee--tier-1 .fee--unit {
  background-color: #F13227;
}
.service--detail--fee--list li.service--fee--tier-2 {
  border-color: #ffab26;
  box-shadow: 0.125em 0.125em 0 #ffab26;
  z-index: 8;
  transform: skewX(-15deg) translateX(-4.5em);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.3s, opacity 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.3s;
}
.service--detail--fee--list li.service--fee--tier-2 .fee--unit {
  background-color: #ffab26;
}
.service--detail--fee--list li.service--fee--tier-3 {
  border-color: #0072d9;
  box-shadow: 0.125em 0.125em 0 #0072d9;
  z-index: 7;
  transform: skewX(-15deg) translateX(-4em);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.45s, opacity 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.45s;
}
.service--detail--fee--list li.service--fee--tier-3 .fee--unit {
  background-color: #0072d9;
}
.service--detail--fee--list li.service--fee--tier-4 {
  border-color: #10D2E1;
  box-shadow: 0.125em 0.125em 0 #10D2E1;
  z-index: 6;
  transform: skewX(-15deg) translateX(-3.5em);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.6s, opacity 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.6s;
}
.service--detail--fee--list li.service--fee--tier-4 .fee--unit {
  background-color: #10D2E1;
}
.service--detail--fee--list li.service--fee--tier-5 {
  border-color: #8236D7;
  box-shadow: 0.125em 0.125em 0 #8236D7;
  z-index: 5;
  transform: skewX(-15deg) translateX(-3em);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.75s, opacity 0.75s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.75s;
}
.service--detail--fee--list li.service--fee--tier-5 .fee--unit {
  background-color: #8236D7;
}
.service--detail--fee--list.active li.service--fee--tier-1 {
  transform: skewX(-15deg) translateX(0em);
  opacity: 1;
}
.service--detail--fee--list.active li.service--fee--tier-2 {
  transform: skewX(-15deg) translateX(0.5em);
  opacity: 1;
}
.service--detail--fee--list.active li.service--fee--tier-3 {
  transform: skewX(-15deg) translateX(1em);
  opacity: 1;
}
.service--detail--fee--list.active li.service--fee--tier-4 {
  transform: skewX(-15deg) translateX(1.5em);
  opacity: 1;
}
.service--detail--fee--list.active li.service--fee--tier-5 {
  transform: skewX(-15deg) translateX(2em);
  opacity: 1;
}

.footer--main {
  background-color: #333333;
  color: #fff;
  padding: 2.4rem;
  display: flex;
  align-items: center;
  margin-top: 2em;
  position: relative;
  z-index: 10;
}
.footer--main > div:first-child {
  flex-grow: 1;
}
.footer--main h1 {
  width: 120px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin: 0;
  position: relative;
  top: 0.25em;
}
.footer--main h1 svg {
  max-width: 50vw;
  margin-bottom: 0.25em;
  width: 100%;
  display: block;
  fill: #fff;
}
.footer--main .footer--nav {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  list-style: none;
  font-size: 1.25rem;
}
.footer--main .footer--nav img {
  display: inline-block;
  width: 2em;
  height: 2em;
  border-radius: 100%;
}
.footer--main .footer--nav li {
  margin: 0 0.25em;
  line-height: 2.5rem;
}
.footer--main .footer--nav li a {
  text-decoration: none;
}
.footer--main .footer--nav li a:hover {
  text-decoration: underline;
}

.logo {
  overflow: visible;
}
.logo .brand--part-1, .logo .brand--part-2, .logo .brand--part-3, .logo .brand--part-4, .logo .brand--part-5, .logo .brand--part-6, .logo .brand--part-7 {
  transform: translateX(3.7vw) translateY(-10vw);
  opacity: 0;
  filter: blur(5px);
}
.logo .brand--part-8 {
  transform: translateX(-3.7vw) translateY(-10vw);
  opacity: 0;
  filter: blur(5px);
}
.logo .brand--part-1 {
  transition: transform 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.1s, opacity 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.1s, filter 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.1s;
}
.logo .brand--part-2 {
  transition: transform 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.2s, opacity 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.2s, filter 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.2s;
}
.logo .brand--part-3 {
  transition: transform 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.3s, opacity 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.3s, filter 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.3s;
}
.logo .brand--part-4 {
  transition: transform 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.4s, opacity 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.4s, filter 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.4s;
}
.logo .brand--part-5 {
  transition: transform 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.5s, opacity 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.5s, filter 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.5s;
}
.logo .brand--part-6 {
  transition: transform 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.6s, opacity 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.6s, filter 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.6s;
}
.logo .brand--part-7 {
  transition: transform 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.7s, opacity 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.7s, filter 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.7s;
}
.logo .brand--part-8 {
  transition: transform 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.8s, opacity 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.8s, filter 0.5s cubic-bezier(0.71, -1.03, 0.32, 1.66) 0.8s;
}
.logo.active .brand--part-1, .logo.active .brand--part-2, .logo.active .brand--part-3, .logo.active .brand--part-4, .logo.active .brand--part-5, .logo.active .brand--part-6, .logo.active .brand--part-7, .logo.active .brand--part-8 {
  transform: translateX(0) translateY(0);
  opacity: 1;
  filter: blur(0);
}