/*!
* 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: 2;
  animation-iteration-count: 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: 3;
  animation-iteration-count: 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: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 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);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) 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);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 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);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) 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);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(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 {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.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% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -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;
}

@-webkit-keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

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

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

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

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

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

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

@-webkit-keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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 {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(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 {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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 {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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;
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    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 {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    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;
}

@-webkit-keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

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

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

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

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

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

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

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

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

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

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

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

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

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

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

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

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

.parallax {
  z-index: -999;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax img {
  display: none;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe, .gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gclose, .gnext, .gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gclose svg, .gnext svg, .gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
  opacity: 0.1;
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
} /* https://github.com/alex-e-leon/reset-css-complete */
/* General reset */
html, body, div, span, applet, object, iframe,
input, button, select, optgroup, textarea,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  background: none;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  /* line-height is set by :root */
  line-height: inherit;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

s, u {
  text-decoration: none;
}

select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

input[type=submit],
button {
  width: auto;
  overflow: visible;
  cursor: pointer;
  line-height: inherit;
  color: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button::-moz-focus-inner {
  /* Remove excess padding and border in Firefox 4+ */
  border: 0;
  padding: 0;
}

/* safari requires some special resets for input type="search" */
input[type=search] {
  -webkit-appearance: textfield;
}

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

/* ie 11 has it's own magic font-size rules for sub and sup */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  sub, sup {
    font-size: 120%;
  }
}
/* some sensible global styles */
:root {
  /* prevents mobile browsers from sometimes scaling text */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* sets box-sizing back to the sane border-box for all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*! tailwindcss v3.0.24 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

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

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

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

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

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

progress {
  vertical-align: baseline;
}

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

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

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

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

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

::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-translate-x:0;
  --tw-translate-y:0;
  --tw-rotate:0;
  --tw-skew-x:0;
  --tw-skew-y:0;
  --tw-scale-x:1;
  --tw-scale-y:1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness:proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width:0px;
  --tw-ring-offset-color:#fff;
  --tw-ring-color:rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow:0 0 #0000;
  --tw-ring-shadow:0 0 #0000;
  --tw-shadow:0 0 #0000;
  --tw-shadow-colored:0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}
.container {
  width:100%;
}
@media (min-width: 350px) {
  .container {
    max-width:350px;
  }
}
@media (min-width: 400px) {
  .container {
    max-width:400px;
  }
}
@media (min-width: 450px) {
  .container {
    max-width:450px;
  }
}
@media (min-width: 640px) {
  .container {
    max-width:640px;
  }
}
@media (min-width: 700px) {
  .container {
    max-width:700px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width:768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width:1024px;
  }
}
@media (min-width: 1120px) {
  .container {
    max-width:1120px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width:1280px;
  }
}
@media (min-width: 1450px) {
  .container {
    max-width:1450px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width:1536px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width:1600px;
  }
}
@media (min-width: 1700px) {
  .container {
    max-width:1700px;
  }
}
@media (min-width: 1800px) {
  .container {
    max-width:1800px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width:1920px;
  }
}
.pointer-events-none {
  pointer-events:none;
}
.pointer-events-auto {
  pointer-events:auto;
}
.visible {
  visibility:visible;
}
.static {
  position:static;
}
.fixed {
  position:fixed;
}
.absolute {
  position:absolute;
}
.relative {
  position:relative;
}
.\!relative {
  position:relative !important;
}
.sticky {
  position:-webkit-sticky;
  position:sticky;
}
.top-\[50\%\] {
  top:50%;
}
.left-\[50\%\] {
  left:50%;
}
.left-\[50vw\] {
  left:50vw;
}
.top-0 {
  top:0px;
}
.right-0 {
  right:0px;
}
.right-\[-100vw\] {
  right:-100vw;
}
.top-\[10px\] {
  top:10px;
}
.right-\[10px\] {
  right:10px;
}
.top-\[-100vh\] {
  top:-100vh;
}
.bottom-\[10px\] {
  bottom:10px;
}
.left-\[-5px\] {
  left:-5px;
}
.left-\[8vw\] {
  left:8vw;
}
.bottom-\[1px\] {
  bottom:1px;
}
.top-\[0\] {
  top:0;
}
.left-\[2rem\] {
  left:2rem;
}
.left-0 {
  left:0px;
}
.top-\[5px\] {
  top:5px;
}
.right-\[calc\(max\(2rem\2c 5vw\)\+5px\)\] {
  right:calc(max(2rem,5vw) + 5px);
}
.top-\[2rem\] {
  top:2rem;
}
.left-\[max\(2rem\2c 5vw\)\] {
  left:max(2rem,5vw);
}
.bottom-0 {
  bottom:0px;
}
.right-\[20px\] {
  right:20px;
}
.top-\[20px\] {
  top:20px;
}
.left-\[calc\(50\%-9px\)\] {
  left:calc(50% - 9px);
}
.left-\[20px\] {
  left:20px;
}
.top-\[10vh\] {
  top:10vh;
}
.left-\[max\(2rem\2c 2vw\)\] {
  left:max(2rem,2vw);
}
.z-\[-10\] {
  z-index:-10;
}
.z-\[999\] {
  z-index:999;
}
.z-\[1010\] {
  z-index:1010;
}
.z-\[99\] {
  z-index:99;
}
.z-\[10\] {
  z-index:10;
}
.z-\[97\] {
  z-index:97;
}
.z-\[98\] {
  z-index:98;
}
.z-\[-1\] {
  z-index:-1;
}
.order-2 {
  order:2;
}
.order-1 {
  order:1;
}
.float-left {
  float:left;
}
.clear-both {
  clear:both;
}
.m-0 {
  margin:0px;
}
.mx-auto {
  margin-left:auto;
  margin-right:auto;
}
.mx-\[5px\] {
  margin-left:5px;
  margin-right:5px;
}
.\!mb-0 {
  margin-bottom:0px !important;
}
.mb-\[50px\] {
  margin-bottom:50px;
}
.mb-\[20px\] {
  margin-bottom:20px;
}
.mr-\[50px\] {
  margin-right:50px;
}
.mt-\[32px\] {
  margin-top:32px;
}
.ml-\[max\(2rem\2c 5vw\)\] {
  margin-left:max(2rem,5vw);
}
.mr-\[max\(2rem\2c 5vw\)\] {
  margin-right:max(2rem,5vw);
}
.mb-\[16px\] {
  margin-bottom:16px;
}
.mt-\[-1px\] {
  margin-top:-1px;
}
.ml-\[-50vw\] {
  margin-left:-50vw;
}
.mb-\[40px\] {
  margin-bottom:40px;
}
.mt-\[20px\] {
  margin-top:20px;
}
.ml-1 {
  margin-left:0.25rem;
}
.mt-2 {
  margin-top:0.5rem;
}
.mr-2 {
  margin-right:0.5rem;
}
.ml-2 {
  margin-left:0.5rem;
}
.mt-4 {
  margin-top:1rem;
}
.ml-4 {
  margin-left:1rem;
}
.mt-8 {
  margin-top:2rem;
}
.ml-12 {
  margin-left:3rem;
}
.-mt-px {
  margin-top:-1px;
}
.mr-\[5px\] {
  margin-right:5px;
}
.mb-\[7px\] {
  margin-bottom:7px;
}
.mt-\[15px\] {
  margin-top:15px;
}
.mb-\[10px\] {
  margin-bottom:10px;
}
.ml-\[-2px\] {
  margin-left:-2px;
}
.ml-\[-1px\] {
  margin-left:-1px;
}
.mb-\[1em\] {
  margin-bottom:1em;
}
.mr-\[16px\] {
  margin-right:16px;
}
.mt-\[30px\] {
  margin-top:30px;
}
.mb-\[14px\] {
  margin-bottom:14px;
}
.mt-\[80px\] {
  margin-top:80px;
}
.mb-\[30px\] {
  margin-bottom:30px;
}
.mb-\[5rem\] {
  margin-bottom:5rem;
}
.mb-\[4rem\] {
  margin-bottom:4rem;
}
.mb-\[0\.5em\] {
  margin-bottom:0.5em;
}
.mt-\[3em\] {
  margin-top:3em;
}
.mr-\[10px\] {
  margin-right:10px;
}
.mb-\[15px\] {
  margin-bottom:15px;
}
.mb-\[32px\] {
  margin-bottom:32px;
}
.ml-0 {
  margin-left:0px;
}
.mr-auto {
  margin-right:auto;
}
.mt-\[16px\] {
  margin-top:16px;
}
.mt-\[1em\] {
  margin-top:1em;
}
.mb-0 {
  margin-bottom:0px;
}
.mt-\[10px\] {
  margin-top:10px;
}
.mt-\[60px\] {
  margin-top:60px;
}
.mt-\[35px\] {
  margin-top:35px;
}
.mt-\[40px\] {
  margin-top:40px;
}
.mb-\[25px\] {
  margin-bottom:25px;
}
.mt-\[45px\] {
  margin-top:45px;
}
.ml-\[25px\] {
  margin-left:25px;
}
.mr-\[25px\] {
  margin-right:25px;
}
.mt-\[max\(2rem\2c 5vw\)\] {
  margin-top:max(2rem,5vw);
}
.block {
  display:block;
}
.inline-block {
  display:inline-block;
}
.inline {
  display:inline;
}
.flex {
  display:flex;
}
.table {
  display:table;
}
.grid {
  display:grid;
}
.contents {
  display:contents;
}
.hidden {
  display:none;
}
.aspect-video {
  aspect-ratio:16 / 9;
}
.aspect-\[662\/400\] {
  aspect-ratio:662 / 400;
}
.aspect-\[278\/46\] {
  aspect-ratio:278 / 46;
}
.aspect-\[482\/448\] {
  aspect-ratio:482 / 448;
}
.aspect-\[655\/544\] {
  aspect-ratio:655 / 544;
}
.aspect-square {
  aspect-ratio:1 / 1;
}
.aspect-\[500\/443\] {
  aspect-ratio:500 / 443;
}
.aspect-\[25\/54\] {
  aspect-ratio:25 / 54;
}
.aspect-\[575\/545\] {
  aspect-ratio:575 / 545;
}
.aspect-\[650\/645\] {
  aspect-ratio:650 / 645;
}
.aspect-\[635\/800\] {
  aspect-ratio:635 / 800;
}
.aspect-\[540\/447\] {
  aspect-ratio:540 / 447;
}
.aspect-\[328\/358\] {
  aspect-ratio:328 / 358;
}
.h-\[100\%\] {
  height:100%;
}
.h-\[1px\] {
  height:1px;
}
.h-\[32px\] {
  height:32px;
}
.h-5 {
  height:1.25rem;
}
.h-8 {
  height:2rem;
}
.h-16 {
  height:4rem;
}
.h-10 {
  height:2.5rem;
}
.\!h-auto {
  height:auto !important;
}
.h-\[100vh\] {
  height:100vh;
}
.h-\[60px\] {
  height:60px;
}
.h-\[2px\] {
  height:2px;
}
.h-\[0\] {
  height:0;
}
.h-\[20px\] {
  height:20px;
}
.h-1 {
  height:0.25rem;
}
.h-0 {
  height:0px;
}
.h-12 {
  height:3rem;
}
.h-\[100px\] {
  height:100px;
}
.h-\[120px\] {
  height:120px;
}
.h-4 {
  height:1rem;
}
.h-auto {
  height:auto;
}
.h-\[40px\] {
  height:40px;
}
.h-\[30px\] {
  height:30px;
}
.h-6 {
  height:1.5rem;
}
.h-\[300px\] {
  height:300px;
}
.h-\[115px\] {
  height:115px;
}
.h-\[14px\] {
  height:14px;
}
.h-\[85px\] {
  height:85px;
}
.h-\[70px\] {
  height:70px;
}
.h-\[15px\] {
  height:15px;
}
.h-\[50px\] {
  height:50px;
}
.h-\[47px\] {
  height:47px;
}
.max-h-0 {
  max-height:0px;
}
.max-h-\[100vh\] {
  max-height:100vh;
}
.min-h-\[767px\] {
  min-height:767px;
}
.min-h-\[250px\] {
  min-height:250px;
}
.min-h-\[16px\] {
  min-height:16px;
}
.min-h-\[32px\] {
  min-height:32px;
}
.min-h-\[0\] {
  min-height:0;
}
.min-h-screen {
  min-height:100vh;
}
.min-h-\[max\(426px\2c 109vw\)\] {
  min-height:max(426px,109vw);
}
.min-h-\[8em\] {
  min-height:8em;
}
.min-h-\[300px\] {
  min-height:300px;
}
.min-h-\[320px\] {
  min-height:320px;
}
.min-h-\[572px\] {
  min-height:572px;
}
.min-h-\[max\(310px\2c 102vw\)\] {
  min-height:max(310px,102vw);
}
.min-h-\[530px\] {
  min-height:530px;
}
.min-h-\[20rem\] {
  min-height:20rem;
}
.min-h-\[500px\] {
  min-height:500px;
}
.min-h-\[100vh\] {
  min-height:100vh;
}
.min-h-\[max\(285px\2c 89vw\)\] {
  min-height:max(285px,89vw);
}
.min-h-\[33vw\] {
  min-height:33vw;
}
.min-h-\[14px\] {
  min-height:14px;
}
.min-h-\[220px\] {
  min-height:220px;
}
.min-h-\[661px\] {
  min-height:661px;
}
.min-h-\[max\(563px\2c 150vw\)\] {
  min-height:max(563px,150vw);
}
.min-h-\[max\(680px\2c 175vw\)\] {
  min-height:max(680px,175vw);
}
.min-h-\[80vh\] {
  min-height:80vh;
}
.w-\[100\%\] {
  width:100%;
}
.w-\[260px\] {
  width:260px;
}
.w-fit {
  width:-webkit-fit-content;
  width:-moz-fit-content;
  width:fit-content;
}
.w-\[33\.333\%\] {
  width:33.333%;
}
.w-\[80px\] {
  width:80px;
}
.w-\[calc\(100vw-20px-20px\)\] {
  width:calc(100vw - 20px - 20px);
}
.w-\[70px\] {
  width:70px;
}
.w-full {
  width:100%;
}
.w-\[calc\(100\%\+25px\)\] {
  width:calc(100% + 25px);
}
.w-\[22px\] {
  width:22px;
}
.w-5 {
  width:1.25rem;
}
.w-8 {
  width:2rem;
}
.w-auto {
  width:auto;
}
.w-\[100vw\] {
  width:100vw;
}
.w-\[60px\] {
  width:60px;
}
.w-\[30px\] {
  width:30px;
}
.w-\[0\] {
  width:0;
}
.w-\[20px\] {
  width:20px;
}
.w-\[150px\] {
  width:150px;
}
.w-\[40px\] {
  width:40px;
}
.w-\[1px\] {
  width:1px;
}
.w-\[14px\] {
  width:14px;
}
.w-\[135px\] {
  width:135px;
}
.w-\[85px\] {
  width:85px;
}
.w-\[calc\(100\%-20px-20px\)\] {
  width:calc(100% - 20px - 20px);
}
.w-\[15px\] {
  width:15px;
}
.w-\[18px\] {
  width:18px;
}
.w-\[50px\] {
  width:50px;
}
.w-\[95px\] {
  width:95px;
}
.w-\[calc\(100\%-\(\(50px\*0\.6\)\*3\)\)\] {
  width:calc(100% - ((50px * 0.6) * 3));
}
.min-w-\[140px\] {
  min-width:140px;
}
.min-w-\[100\%\] {
  min-width:100%;
}
.max-w-\[100vw\] {
  max-width:100vw;
}
.max-w-\[calc\(1920px-var\(--menu-width\)\)\] {
  max-width:calc(1920px - var(--menu-width));
}
.max-w-\[300px\] {
  max-width:300px;
}
.max-w-\[30px\] {
  max-width:30px;
}
.max-w-6xl {
  max-width:72rem;
}
.max-w-xl {
  max-width:36rem;
}
.max-w-\[1024px\] {
  max-width:1024px;
}
.max-w-\[655px\] {
  max-width:655px;
}
.max-w-\[248px\] {
  max-width:248px;
}
.max-w-\[500px\] {
  max-width:500px;
}
.max-w-1920 {
  max-width:1920px;
}
.max-w-\[620px\] {
  max-width:620px;
}
.max-w-\[635px\] {
  max-width:635px;
}
.max-w-\[540px\] {
  max-width:540px;
}
.max-w-\[1240px\] {
  max-width:1240px;
}
.flex-none {
  flex:none;
}
.flex-1 {
  flex:1 1 0%;
}
.shrink {
  flex-shrink:1;
}
.flex-grow {
  flex-grow:1;
}
.grow {
  flex-grow:1;
}
.grow-\[1\.1\] {
  flex-grow:1.1;
}
.basis-0 {
  flex-basis:0px;
}
.origin-center {
  transform-origin:center;
}
.origin-\[right_center\] {
  transform-origin:right center;
}
.translate-y-\[0\] {
  --tw-translate-y:0;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-50\%\] {
  --tw-translate-x:-50%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\] {
  --tw-translate-y:-50%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[calc\(-50\%-12\%\)\] {
  --tw-translate-x:calc(-50% - 12%);
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[calc\(-50\%-25px\)\] {
  --tw-translate-y:calc(-50% - 25px);
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[0px\] {
  --tw-translate-y:0px;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[calc\(-50\%-14\%\)\] {
  --tw-translate-x:calc(-50% - 14%);
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-48\%\] {
  --tw-translate-x:-48%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-45\%\] {
  --tw-translate-x:-45%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\.5\%\] {
  --tw-translate-y:-50.5%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-100\%\] {
  --tw-translate-y:-100%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[5px\] {
  --tw-translate-y:5px;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-10\%\] {
  --tw-translate-x:-10%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-40\%\] {
  --tw-translate-y:-40%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-40\%\] {
  --tw-translate-x:-40%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-80\%\] {
  --tw-translate-x:-80%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-120\%\] {
  --tw-translate-x:-120%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-30\%\] {
  --tw-translate-x:-30%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-60\%\] {
  --tw-translate-x:-60%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-90\%\] {
  --tw-translate-x:-90%;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[calc\(-30\%\*1\)\] {
  --tw-translate-x:calc(-30% * 1);
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[calc\(-30\%\*2\)\] {
  --tw-translate-x:calc(-30% * 2);
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[calc\(-30\%\*3\)\] {
  --tw-translate-x:calc(-30% * 3);
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[calc\(100\%-\(\(50px\*0\.6\)\*3\)\)\] {
  --tw-translate-x:calc(100% - ((50px * 0.6) * 3));
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[calc\(-1\*\(\(50px\*0\.6\)\*3\)\)\] {
  --tw-translate-x:calc(-1 * ((50px * 0.6) * 3));
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[calc\(-1\*\(\(50px\*0\.6\)\*1\)\)\] {
  --tw-translate-x:calc(-1 * ((50px * 0.6) * 1));
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[180deg\] {
  --tw-rotate:180deg;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[45deg\] {
  --tw-rotate:45deg;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[-45deg\] {
  --tw-rotate:-45deg;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[90deg\] {
  --tw-rotate:90deg;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[0\.75\] {
  --tw-scale-x:0.75;
  --tw-scale-y:0.75;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[1\.57\] {
  --tw-scale-x:1.57;
  --tw-scale-y:1.57;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-0 {
  --tw-scale-x:0;
  --tw-scale-y:0;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-x-\[-1\] {
  --tw-scale-x:-1;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor:pointer;
}
.cursor-opencursor {
  cursor:url('../images/botao-vermais-new-newest.svg') 25 25, pointer;
}
.cursor-seemorecursor {
  cursor:url('../images/botao-vermais-new-newest.svg') 25 25, pointer;
}
.resize {
  resize:both;
}
.list-none {
  list-style-type:none;
}
.appearance-none {
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none;
}
.grid-cols-1 {
  grid-template-columns:repeat(1, minmax(0, 1fr));
}
.flex-row {
  flex-direction:row;
}
.flex-col {
  flex-direction:column;
}
.flex-wrap {
  flex-wrap:wrap;
}
.items-end {
  align-items:flex-end;
}
.items-center {
  align-items:center;
}
.justify-center {
  justify-content:center;
}
.justify-between {
  justify-content:space-between;
}
.gap-y-\[20px\] {
  row-gap:20px;
}
.gap-y-\[40px\] {
  row-gap:40px;
}
.gap-y-\[80px\] {
  row-gap:80px;
}
.gap-x-\[10px\] {
  -moz-column-gap:10px;
       column-gap:10px;
}
.self-baseline {
  align-self:baseline;
}
.overflow-hidden {
  overflow:hidden;
}
.overflow-clip {
  overflow:clip;
}
.overflow-scroll {
  overflow:scroll;
}
.whitespace-nowrap {
  white-space:nowrap;
}
.rounded-\[25rem\] {
  border-radius:25rem;
}
.rounded-\[20em\] {
  border-radius:20em;
}
.rounded-\[50\%\] {
  border-radius:50%;
}
.rounded-\[2em\] {
  border-radius:2em;
}
.rounded-\[20px\] {
  border-radius:20px;
}
.rounded-\[22px\] {
  border-radius:22px;
}
.rounded-\[2\.5em\] {
  border-radius:2.5em;
}
.rounded-\[33px\] {
  border-radius:33px;
}
.rounded-full {
  border-radius:9999px;
}
.rounded-\[5px\] {
  border-radius:5px;
}
.border {
  border-width:1px;
}
.border-t-\[1px\] {
  border-top-width:1px;
}
.border-b-\[1px\] {
  border-bottom-width:1px;
}
.border-t {
  border-top-width:1px;
}
.border-r {
  border-right-width:1px;
}
.border-b {
  border-bottom-width:1px;
}
.border-solid {
  border-style:solid;
}
.border-white {
  --tw-border-opacity:1;
  border-color:rgb(255 255 255 / var(--tw-border-opacity));
}
.border-human2bebordercolor {
  --tw-border-opacity:1;
  border-color:rgb(86 54 146 / var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity:1;
  border-color:rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-400 {
  --tw-border-opacity:1;
  border-color:rgb(156 163 175 / var(--tw-border-opacity));
}
.border-transparent {
  border-color:transparent;
}
.border-\[\#6415C2\] {
  --tw-border-opacity:1;
  border-color:rgb(100 21 194 / var(--tw-border-opacity));
}
.border-t-human2bebordercolor {
  --tw-border-opacity:1;
  border-top-color:rgb(86 54 146 / var(--tw-border-opacity));
}
.border-b-human2bebordercolor {
  --tw-border-opacity:1;
  border-bottom-color:rgb(86 54 146 / var(--tw-border-opacity));
}
.border-b-lpborder {
  --tw-border-opacity:1;
  border-bottom-color:rgb(100 21 194 / var(--tw-border-opacity));
}
.bg-human2bebordercolor {
  --tw-bg-opacity:1;
  background-color:rgb(86 54 146 / var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity:1;
  background-color:rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity:1;
  background-color:rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-gray-100 {
  --tw-bg-opacity:1;
  background-color:rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-\[\#0a0a0f\] {
  --tw-bg-opacity:1;
  background-color:rgb(10 10 15 / var(--tw-bg-opacity));
}
.bg-\[\#222\] {
  --tw-bg-opacity:1;
  background-color:rgb(34 34 34 / var(--tw-bg-opacity));
}
.bg-\[\#8f8f8f\] {
  --tw-bg-opacity:1;
  background-color:rgb(143 143 143 / var(--tw-bg-opacity));
}
.bg-transparent {
  background-color:transparent;
}
.bg-lpborder {
  --tw-bg-opacity:1;
  background-color:rgb(100 21 194 / var(--tw-bg-opacity));
}
.bg-\[\#6415C2\] {
  --tw-bg-opacity:1;
  background-color:rgb(100 21 194 / var(--tw-bg-opacity));
}
.bg-red-500 {
  --tw-bg-opacity:1;
  background-color:rgb(239 68 68 / var(--tw-bg-opacity));
}
.bg-\[url\(\'\.\.\/images\/tchelo-on-right-mobile\.jpg\'\)\] {
  background-image:url('../images/tchelo-on-right-mobile.jpg');
}
.bg-\[url\(\'\.\.\/images\/solutions-on-right-mobile\.jpg\'\)\] {
  background-image:url('../images/solutions-on-right-mobile.jpg');
}
.\!bg-contain {
  background-size:contain !important;
}
.bg-cover {
  background-size:cover;
}
.\!bg-scroll {
  background-attachment:scroll !important;
}
.bg-center {
  background-position:center;
}
.fill-white {
  fill:#fff;
}
.fill-human2bebackground {
  fill:#291C51;
}
.fill-\[\#1ACFC0\] {
  fill:#1ACFC0;
}
.fill-transparent {
  fill:transparent;
}
.fill-\[\#ED147F\] {
  fill:#ED147F;
}
.fill-black {
  fill:#000;
}
.fill-gray-500 {
  fill:#6b7280;
}
.fill-human2belightblue {
  fill:#0bd8ca;
}
.object-contain {
  -o-object-fit:contain;
     object-fit:contain;
}
.object-cover {
  -o-object-fit:cover;
     object-fit:cover;
}
.object-center {
  -o-object-position:center;
     object-position:center;
}
.object-bottom {
  -o-object-position:bottom;
     object-position:bottom;
}
.object-top {
  -o-object-position:top;
     object-position:top;
}
.object-left {
  -o-object-position:left;
     object-position:left;
}
.p-\[max\(2rem\2c 2vw\)\] {
  padding:max(2rem,2vw);
}
.p-6 {
  padding:1.5rem;
}
.p-\[10px\] {
  padding:10px;
}
.p-\[max\(2rem\2c 5vw\)\] {
  padding:max(2rem,5vw);
}
.py-\[10px\] {
  padding-top:10px;
  padding-bottom:10px;
}
.px-\[30px\] {
  padding-left:30px;
  padding-right:30px;
}
.py-\[30px\] {
  padding-top:30px;
  padding-bottom:30px;
}
.py-4 {
  padding-top:1rem;
  padding-bottom:1rem;
}
.px-6 {
  padding-left:1.5rem;
  padding-right:1.5rem;
}
.py-\[1em\] {
  padding-top:1em;
  padding-bottom:1em;
}
.px-\[3\.5em\] {
  padding-left:3.5em;
  padding-right:3.5em;
}
.px-4 {
  padding-left:1rem;
  padding-right:1rem;
}
.py-\[80px\] {
  padding-top:80px;
  padding-bottom:80px;
}
.py-\[20px\] {
  padding-top:20px;
  padding-bottom:20px;
}
.py-\[16px\] {
  padding-top:16px;
  padding-bottom:16px;
}
.px-\[38px\] {
  padding-left:38px;
  padding-right:38px;
}
.py-\[15px\] {
  padding-top:15px;
  padding-bottom:15px;
}
.px-\[60px\] {
  padding-left:60px;
  padding-right:60px;
}
.px-\[100px\] {
  padding-left:100px;
  padding-right:100px;
}
.py-\[45px\] {
  padding-top:45px;
  padding-bottom:45px;
}
.px-\[20px\] {
  padding-left:20px;
  padding-right:20px;
}
.py-\[0\.5rem\] {
  padding-top:0.5rem;
  padding-bottom:0.5rem;
}
.px-\[0\.75rem\] {
  padding-left:0.75rem;
  padding-right:0.75rem;
}
.pt-\[160px\] {
  padding-top:160px;
}
.pb-\[160px\] {
  padding-bottom:160px;
}
.pt-\[120px\] {
  padding-top:120px;
}
.pb-\[50px\] {
  padding-bottom:50px;
}
.pr-\[max\(2rem\2c 5vw\)\] {
  padding-right:max(2rem,5vw);
}
.pb-\[calc\(160px-max\(2rem\2c 5vw\)\)\] {
  padding-bottom:calc(160px - max(2rem,5vw));
}
.pt-\[max\(2rem\2c 5vw\)\] {
  padding-top:max(2rem,5vw);
}
.pr-\[6vw\] {
  padding-right:6vw;
}
.pl-\[20px\] {
  padding-left:20px;
}
.pr-\[20px\] {
  padding-right:20px;
}
.pt-\[40px\] {
  padding-top:40px;
}
.pb-\[40px\] {
  padding-bottom:40px;
}
.pl-\[10px\] {
  padding-left:10px;
}
.pr-\[10px\] {
  padding-right:10px;
}
.pb-\[max\(2rem\2c 5vw\)\] {
  padding-bottom:max(2rem,5vw);
}
.pt-8 {
  padding-top:2rem;
}
.pr-\[2rem\] {
  padding-right:2rem;
}
.pl-\[50px\] {
  padding-left:50px;
}
.pl-\[18px\] {
  padding-left:18px;
}
.pl-\[16vw\] {
  padding-left:16vw;
}
.pb-\[20px\] {
  padding-bottom:20px;
}
.pt-\[20px\] {
  padding-top:20px;
}
.pb-\[6rem\] {
  padding-bottom:6rem;
}
.pb-\[4rem\] {
  padding-bottom:4rem;
}
.pb-0 {
  padding-bottom:0px;
}
.pt-\[150px\] {
  padding-top:150px;
}
.pl-\[max\(2rem\2c 5vw\)\] {
  padding-left:max(2rem,5vw);
}
.pt-\[56\.25\%\] {
  padding-top:56.25%;
}
.pl-\[4rem\] {
  padding-left:4rem;
}
.pr-\[4rem\] {
  padding-right:4rem;
}
.pb-\[100px\] {
  padding-bottom:100px;
}
.pl-\[5px\] {
  padding-left:5px;
}
.pt-\[10px\] {
  padding-top:10px;
}
.pt-\[115px\] {
  padding-top:115px;
}
.pb-\[125px\] {
  padding-bottom:125px;
}
.pb-\[25px\] {
  padding-bottom:25px;
}
.pt-\[25px\] {
  padding-top:25px;
}
.pb-\[calc\(max\(2rem\2c 5vw\)-max\(2rem\2c 5vw\)\)\] {
  padding-bottom:calc(max(2rem,5vw) - max(2rem,5vw));
}
.pt-\[60px\] {
  padding-top:60px;
}
.pt-\[100px\] {
  padding-top:100px;
}
.pb-\[150px\] {
  padding-bottom:150px;
}
.pl-\[max\(2rem\2c 2vw\)\] {
  padding-left:max(2rem,2vw);
}
.pr-\[calc\(max\(2rem\2c 5vw\)\)\] {
  padding-right:calc(max(2rem,5vw));
}
.text-left {
  text-align:left;
}
.text-center {
  text-align:center;
}
.text-right {
  text-align:right;
}
.font-lp {
  font-family:Raleway, sans-serif;
}
.text-\[14px\] {
  font-size:14px;
}
.text-\[20px\] {
  font-size:20px;
}
.text-\[16px\] {
  font-size:16px;
}
.text-\[13px\] {
  font-size:13px;
}
.text-\[max\(14px\2c 4\.6vw\)\] {
  font-size:max(14px,4.6vw);
}
.text-\[40px\] {
  font-size:40px;
}
.text-\[18px\] {
  font-size:18px;
}
.text-sm {
  font-size:0.875rem;
  line-height:1.25rem;
}
.text-lg {
  font-size:1.125rem;
  line-height:1.75rem;
}
.text-\[max\(14px\2c 5\.6vw\)\] {
  font-size:max(14px,5.6vw);
}
.text-\[32px\] {
  font-size:32px;
}
.text-\[35px\] {
  font-size:35px;
}
.text-\[max\(14px\2c 4\.2vw\)\] {
  font-size:max(14px,4.2vw);
}
.text-\[28px\] {
  font-size:28px;
}
.text-\[26px\] {
  font-size:26px;
}
.text-\[24px\] {
  font-size:24px;
}
.text-\[12px\] {
  font-size:12px;
}
.text-\[45px\] {
  font-size:45px;
}
.text-\[22px\] {
  font-size:22px;
}
.text-\[17px\] {
  font-size:17px;
}
.text-\[50px\] {
  font-size:50px;
}
.text-\[max\(16px\2c 5vw\)\] {
  font-size:max(16px,5vw);
}
.text-\[15px\] {
  font-size:15px;
}
.text-\[max\(14px\2c 4\.4vw\)\] {
  font-size:max(14px,4.4vw);
}
.font-semibold {
  font-weight:600;
}
.font-extralight {
  font-weight:200;
}
.font-medium {
  font-weight:500;
}
.font-bold {
  font-weight:700;
}
.font-normal {
  font-weight:400;
}
.uppercase {
  text-transform:uppercase;
}
.italic {
  font-style:italic;
}
.leading-none {
  line-height:1;
}
.leading-\[1\.2\] {
  line-height:1.2;
}
.leading-tight {
  line-height:1.25;
}
.leading-relaxed {
  line-height:1.625;
}
.leading-7 {
  line-height:1.75rem;
}
.leading-\[1\.1\] {
  line-height:1.1;
}
.leading-\[1\.5\] {
  line-height:1.5;
}
.leading-\[1\] {
  line-height:1;
}
.leading-snug {
  line-height:1.375;
}
.leading-\[1\.25\] {
  line-height:1.25;
}
.tracking-wider {
  letter-spacing:0.05em;
}
.tracking-wide {
  letter-spacing:0.025em;
}
.text-white {
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity));
}
.text-human2belightblue {
  --tw-text-opacity:1;
  color:rgb(11 216 202 / var(--tw-text-opacity));
}
.text-gray-200 {
  --tw-text-opacity:1;
  color:rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-300 {
  --tw-text-opacity:1;
  color:rgb(209 213 219 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity:1;
  color:rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity:1;
  color:rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity:1;
  color:rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity:1;
  color:rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity:1;
  color:rgb(17 24 39 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity:1;
  color:rgb(0 0 0 / var(--tw-text-opacity));
}
.text-\[\#ED147D\] {
  --tw-text-opacity:1;
  color:rgb(237 20 125 / var(--tw-text-opacity));
}
.text-\[\#1ACFC0\] {
  --tw-text-opacity:1;
  color:rgb(26 207 192 / var(--tw-text-opacity));
}
.underline {
  -webkit-text-decoration-line:underline;
          text-decoration-line:underline;
}
.antialiased {
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.opacity-\[0\] {
  opacity:0;
}
.opacity-0 {
  opacity:0;
}
.opacity-\[0\.4\] {
  opacity:0.4;
}
.opacity-\[1\] {
  opacity:1;
}
.shadow {
  --tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline:2px solid transparent;
  outline-offset:2px;
}
.outline {
  outline-style:solid;
}
.blur {
  --tw-blur:blur(8px);
  filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.brightness-\[2\] {
  --tw-brightness:brightness(2);
  filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.brightness-\[0\.9\] {
  --tw-brightness:brightness(0.9);
  filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter {
  -webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property:color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}
.transition-all {
  transition-property:all;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}
.transition-colors {
  transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}
.transition-transform {
  transition-property:transform;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}
.delay-150 {
  transition-delay:150ms;
}
.delay-\[100ms\] {
  transition-delay:100ms;
}
.delay-\[2000ms\] {
  transition-delay:2000ms;
}
.delay-\[1500ms\] {
  transition-delay:1500ms;
}
.delay-1000 {
  transition-delay:1000ms;
}
.duration-200 {
  transition-duration:200ms;
}
.duration-300 {
  transition-duration:300ms;
}
.duration-500 {
  transition-duration:500ms;
}
.duration-150 {
  transition-duration:150ms;
}
.duration-\[700ms\] {
  transition-duration:700ms;
}
.duration-\[500ms\] {
  transition-duration:500ms;
}
.duration-700 {
  transition-duration:700ms;
}
.duration-\[100ms\] {
  transition-duration:100ms;
}
.duration-\[1000ms\] {
  transition-duration:1000ms;
}
.duration-\[600ms\] {
  transition-duration:600ms;
}
.ease-in-out {
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-\[cubic-bezier\(\.4\2c 0\2c 0\2c 1\)\] {
  transition-timing-function:cubic-bezier(.4,0,0,1);
}
.\[background\:linear-gradient\(135deg\2c _rgba\(237\2c 20\2c 127\2c 1\)_0\%\2c _rgba\(3\2c 177\2c 153\2c 1\)_71\%\)\] {
  background:linear-gradient(135deg, rgba(237,20,127,1) 0%, rgba(3,177,153,1) 71%);
}
:root {
  --menu-width: 0rem;
}

@media (min-width: 1024px) {
  :root {
    --menu-width: 5rem;
  }
}
/*!
 * 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: 2;
  animation-iteration-count: 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: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-minus300ms {
  -webkit-animation-delay: -300ms;
  animation-delay: -300ms;
  -webkit-animation-delay: calc(-1 * var(--animate-delay) * 0.3);
  animation-delay: calc(-1 * var(--animate-delay) * 0.3);
}

.animate__animated.animate__delay-minus100ms {
  -webkit-animation-delay: calc(-1 * var(--animate-delay) * 0.2);
  animation-delay: calc(-1 * var(--animate-delay) * 0.2);
  -webkit-animation-delay: -100ms;
  animation-delay: -100ms;
  -webkit-animation-delay: calc(-1 * var(--animate-delay) * 0.1);
  animation-delay: calc(-1 * var(--animate-delay) * 0.1);
}

.animate__animated.animate__delay-100ms {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
  -webkit-animation-delay: calc(var(--animate-delay) * 0.1);
  animation-delay: calc(var(--animate-delay) * 0.1);
}

.animate__animated.animate__delay-300ms {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
  -webkit-animation-delay: calc(var(--animate-delay) * 0.3);
  animation-delay: calc(var(--animate-delay) * 0.3);
}

.animate__animated.animate__delay-500ms {
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
  -webkit-animation-delay: calc(var(--animate-delay) * 0.5);
  animation-delay: calc(var(--animate-delay) * 0.5);
}

.animate__animated.animate__delay-600ms {
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
  -webkit-animation-delay: calc(var(--animate-delay) * 0.6);
  animation-delay: calc(var(--animate-delay) * 0.6);
}

.animate__animated.animate__delay-750ms {
  -webkit-animation-delay: 750ms;
  animation-delay: 750ms;
  -webkit-animation-delay: calc(var(--animate-delay) * 0.75);
  animation-delay: calc(var(--animate-delay) * 0.75);
}

.animate__animated.animate__delay-800ms {
  -webkit-animation-delay: 800ms;
  animation-delay: 800ms;
  -webkit-animation-delay: calc(var(--animate-delay) * 0.8);
  animation-delay: calc(var(--animate-delay) * 0.8);
}

.animate__animated.animate__delay-900ms {
  -webkit-animation-delay: 900ms;
  animation-delay: 900ms;
  -webkit-animation-delay: calc(var(--animate-delay) * 0.9);
  animation-delay: calc(var(--animate-delay) * 0.9);
}

.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-1200ms {
  -webkit-animation-delay: 1200ms;
  animation-delay: 1200ms;
  -webkit-animation-delay: calc(var(--animate-delay) * 1.2);
  animation-delay: calc(var(--animate-delay) * 1.2);
}

.animate__animated.animate__delay-1500ms {
  -webkit-animation-delay: 1500ms;
  animation-delay: 1500ms;
  -webkit-animation-delay: calc(var(--animate-delay) * 1.5);
  animation-delay: calc(var(--animate-delay) * 1.5);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__kindaslow {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.5);
  animation-duration: calc(var(--animate-duration) * 1.5);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 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);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) 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);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 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);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) 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);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(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 {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.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% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -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;
}

@-webkit-keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

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

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

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

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

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

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

@-webkit-keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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 {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(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 {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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 {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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;
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    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 {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    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;
}

@-webkit-keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

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

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

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

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

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

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

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

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

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

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

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

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

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

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

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

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

@font-face {
  font-family: BariolRegular;
  src: url(../fonts/BariolRegular.eot?ebe17569a42dacea478b69ec8f157a56);
  src: local("BariolRegular"), url(../fonts/BariolRegular.woff?565752f3d8882aa154c8e9285d22f267) format("woff"), url(../fonts/BariolRegular.ttf?92fbcbbdd315523451f66fb7dd895f7d) format("truetype");
}
@font-face {
  font-family: BariolBold;
  src: url(../fonts/Bariol_Bold.otf) format("opentype");
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway.ttf");
}
html {
  font-family: BariolRegular, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #291C51;
}

.font-bold {
  font-family: BariolBold;
}

@media (max-width: 768px) {
  .until-md-bg-left {
    background-position: left !important;
  }
}
.app-container {
  position: relative;
}

.simple-grid {
  position: relative;
  margin-left: var(--menu-width);
}

.great-grid {
  position: relative;
  padding-left: max(2rem, 5vw);
  padding-right: max(2rem, 5vw);
}

@media (min-width: 1024px) {
  .great-grid {
    padding-left: 17vw;
    padding-right: 17vw;
  }
}
.general-grid {
  position: relative;
  margin-left: var(--menu-width);
  padding-left: max(2rem, 5vw);
  padding-right: max(2rem, 5vw);
}

.general-grid.top-and-bottom {
  padding-top: max(2rem, 5vw);
  padding-bottom: max(2rem, 5vw);
}

@media (min-width: 1024px) {
  .general-grid {
    padding-left: max(2rem, 2vw);
    padding-right: max(2rem, 2vw);
  }
  .general-grid.top-and-bottom {
    padding-top: max(2rem, 2vw);
    padding-bottom: max(2rem, 2vw);
  }
}
footer {
  position: relative;
}
footer .flex-container-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .flex-container-content {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}
footer .flex-container-content .content-title {
  display: block;
  color: white;
  margin-bottom: 2em;
  font-size: 14px;
}
footer .flex-container-content .footer-contact .footer-contact-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
footer .flex-container-content .footer-contact .footer-contact-item .footer-contact-item-info span {
  color: white;
}
footer .flex-container-content .footer-projects {
  margin-left: 0;
  margin-top: 3rem;
}
footer .flex-container-content .footer-projects .footer-projects-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
footer .flex-container-content .footer-projects .footer-projects-item .footer-projects-item-info span {
  color: white;
}
footer .flex-container-down {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 2rem;
  font-size: 18px;
}
footer .flex-container-down .footer-down-item {
  margin-left: 0;
  margin-top: 1rem;
}
footer .flex-container-down .footer-down-item span {
  color: white;
}
footer nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
footer nav a {
  margin-right: 1rem;
}

@media (min-width: 640px) {
  footer .flex-container-content {
    flex-direction: row;
  }
  footer .flex-container-content .footer-projects {
    margin-top: 0;
    margin-left: 1rem;
  }
  footer .flex-container-down {
    flex-direction: row;
    margin-top: 8rem;
  }
  footer .flex-container-down .footer-down-item {
    margin-left: 2rem;
    margin-top: 0;
  }
  footer .flex-container-down :nth-child(1) {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  footer .flex-container-content {
    font-size: 20px;
  }
  footer .flex-container-content .content-title {
    font-size: 16px;
  }
  footer .flex-container-down {
    font-size: 20px;
  }
}
.icon {
  padding: 0.625rem;
  display: block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  box-shadow: 0 0 2px #fff;
  transition: box-shadow ease 0.3s;
}
.icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: black;
}
.icon path {
  width: 1.25rem;
  height: 1.25rem;
}

@media (hover: hover) and (pointer: fine) {
  .icon:hover {
    box-shadow: 0 0 5px #0bd8ca, 0 0 0px #0bd8ca, 0 0 1px #0bd8ca, 0 0 2px #0bd8ca, 0 0 2px #0bd8ca, 0 0 25px #0bd8ca, 0 0 4px #0bd8ca;
  }
}
.app-scrollbar {
  transition: all 100ms;
}

@media (max-width: 1023px) {
  .appmenu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 0;
  }
  .appmenu .appmenu-container {
    position: relative;
    background-color: transparent;
    width: 5rem;
    height: 100vh;
    width: 0;
  }
  .appmenu .appmenu-container.active {
    background-color: black;
  }
  .appmenu .appmenu-container .menu-border {
    display: none;
  }
  .appmenu .appmenu-container .app-scrollbar {
    display: none;
  }
  .appmenu .appmenu-container .menu-button-position {
    position: fixed;
    bottom: 2rem;
    right: max(2rem, 5vw);
    background-color: black;
    border-radius: 30px;
  }
  .appmenu .appmenu-container .menu-button-position.transition {
    transition: all calc(800ms * 0.875);
    transition-timing-function: cubic-bezier(0.78, 0.06, 0.46, 0.9);
  }
  .appmenu .appmenu-container .menu-button-position.active {
    background-color: white;
  }
  .appmenu .appmenu-container .menu-button {
    margin: 0 auto;
    cursor: pointer;
    padding: 12px 20px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
  }
  .appmenu .appmenu-container .menu-button div {
    width: 27px;
    height: 3px;
    background-color: white;
    margin: 4px auto;
    transform: none;
  }
  .appmenu .appmenu-container .menu-button.transition div {
    transition: all calc(800ms * 1);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .appmenu .appmenu-container .menu-button.active {
    transform: translateY(2px);
  }
  .appmenu .appmenu-container .menu-button.active div:nth-child(1) {
    transform: translateY(150%) rotate(135deg);
    background-color: black;
  }
  .appmenu .appmenu-container .menu-button.active div:nth-child(2) {
    transform: translateY(-200%) rotate(225deg);
    background-color: black;
  }
  .appmenu .appmenu-container .menu-links-position {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 2rem;
    padding-top: 10vh;
    width: 100vw;
    height: 100vh;
    background-color: #111;
    margin-left: -150vw;
  }
  .appmenu .appmenu-container .menu-links-position.transition-enter {
    transition: margin-left calc(800ms * 1);
    transition-timing-function: cubic-bezier(0.58, 0.2, 0.42, 0.8);
  }
  .appmenu .appmenu-container .menu-links-position.transition-leave {
    transition: margin-left calc(800ms * 1);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .appmenu .appmenu-container .menu-links-position.active {
    margin-left: 0;
  }
  .appmenu .appmenu-container .menu-links {
    position: absolute;
    top: 140px;
  }
  .appmenu .appmenu-container .menu-links nav .menu-link {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .appmenu .appmenu-container .menu-links nav .menu-link a {
    transition: all 200ms;
    margin-left: -100%;
    opacity: 0;
    color: white;
    font-size: 32px;
    white-space: nowrap;
  }
}
@media (max-width: 1023px) and (max-width: 370px) {
  .appmenu .appmenu-container .menu-links nav .menu-link a {
    font-size: 24px;
  }
}
@media (max-width: 1023px) and (hover: hover) and (pointer: fine) {
  .appmenu .appmenu-container .menu-links nav .menu-link a:hover {
    filter: drop-shadow(0 0 3px #0bd8ca);
    color: #0bd8ca;
  }
}
@media (max-width: 1023px) {
  .appmenu .appmenu-container .menu-links nav .menu-link-social {
    opacity: 0;
    transition: all 300ms;
    position: relative;
    overflow: visible;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(1) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 0));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(2) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 1));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(3) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 2));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(4) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 3));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(5) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 4));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(6) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 5));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(7) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 6));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(8) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 7));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(9) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 8));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(10) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 9));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(11) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 10));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(12) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 11));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(13) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 12));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(14) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 13));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(15) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 14));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(16) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 15));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(17) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 16));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(18) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 17));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(19) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 18));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(20) a {
    transition: all calc((800ms * 0.25) + (calc(800ms * 0.3125) * 19));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(1) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(2) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(3) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(4) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(5) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(6) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(7) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(8) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(9) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(10) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(11) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(12) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(13) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(14) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(15) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(16) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(17) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(18) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(19) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(20) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.active nav .menu-link a {
    margin-left: 0%;
    opacity: 1;
  }
  .appmenu .appmenu-container .menu-links.active nav .menu-link-social {
    opacity: 1;
  }
  .appmenu .appmenu-container .menu-links.active.transition-enter .menu-link-social {
    opacity: 0;
  }
}
@media (min-width: 1024px) {
  .appmenu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .appmenu .appmenu-container {
    position: relative;
    background-color: transparent;
    width: 5rem;
    height: 100vh;
  }
  .appmenu .appmenu-container.active {
    background-color: black;
  }
  .appmenu .appmenu-container .menu-border {
    position: absolute;
    left: calc(100% - 1px);
    width: 1px;
    height: 100%;
    background-color: #563692;
  }
  .appmenu .appmenu-container .menu-border.transition-enter {
    transition: all calc(800ms * 1.25);
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
  }
  .appmenu .appmenu-container .menu-border.transition-leave {
    transition: height calc(800ms * 1.25);
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
  }
  .appmenu .appmenu-container .menu-border.retracted {
    height: 0%;
    background-color: white;
  }
  .appmenu .appmenu-container .app-scrollbar {
    position: absolute;
    left: calc(100% - 1px);
    width: 1px;
    height: 70px;
    background-color: white;
    opacity: 1;
    max-height: 100vh;
  }
  .appmenu .appmenu-container .app-scrollbar.transition-enter {
    transition: all calc(800ms * 0.625);
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
  }
  .appmenu .appmenu-container .app-scrollbar.transition-leave {
    transition: all calc(800ms * 0.625);
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
  }
  .appmenu .appmenu-container .app-scrollbar.deactivated {
    max-height: 0;
  }
  .appmenu .appmenu-container .menu-button-position {
    position: absolute;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
  }
  .appmenu .appmenu-container .menu-button-position.transition {
    transition: all calc(800ms * 0.875);
    transition-timing-function: cubic-bezier(0.78, 0.06, 0.46, 0.9);
  }
  .appmenu .appmenu-container .menu-button-position.active {
    left: 150%;
  }
  .appmenu .appmenu-container .menu-button {
    margin: 0 auto;
    cursor: pointer;
    padding: 0 5px;
    width: 30px;
    display: flex;
    justify-content: space-around;
  }
  .appmenu .appmenu-container .menu-button div {
    width: 2px;
    height: 35px;
    background-color: white;
    margin: 5px 0;
    transform: none;
  }
  .appmenu .appmenu-container .menu-button.transition div {
    transition: all calc(800ms * 1);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .appmenu .appmenu-container .menu-button.active div:nth-child(1) {
    height: 50px;
    transform: translateX(300%) rotate(135deg);
    background-color: white;
  }
  .appmenu .appmenu-container .menu-button.active div:nth-child(2) {
    height: 50px;
    transform: translateX(-300%) rotate(225deg);
    background-color: white;
  }
  .appmenu .appmenu-container .menu-links-position {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 300%;
    padding-top: 10vh;
    width: 100vw;
    height: 100vh;
    background-color: #111;
    margin-left: -150vw;
  }
  .appmenu .appmenu-container .menu-links-position.transition-enter {
    transition: margin-left calc(800ms * 1);
    transition-timing-function: cubic-bezier(0.58, 0.2, 0.42, 0.8);
  }
  .appmenu .appmenu-container .menu-links-position.transition-leave {
    transition: margin-left calc(800ms * 1);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .appmenu .appmenu-container .menu-links-position.active {
    margin-left: 0;
  }
  .appmenu .appmenu-container .menu-links nav .menu-link {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .appmenu .appmenu-container .menu-links nav .menu-link a {
    transition: all 200ms;
    margin-left: -100%;
    opacity: 0;
    color: white;
    font-size: 52px;
    white-space: nowrap;
  }
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .appmenu .appmenu-container .menu-links nav .menu-link a:hover {
    filter: drop-shadow(0 0 3px #0bd8ca);
    color: #0bd8ca;
  }
}
@media (min-width: 1024px) {
  .appmenu .appmenu-container .menu-links nav .menu-link-social {
    margin-top: 20px;
    opacity: 0;
    transition: all 300ms;
    position: relative;
    overflow: visible;
    margin-bottom: 10px;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(1) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 0));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(2) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 1));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(3) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 2));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(4) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 3));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(5) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 4));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(6) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 5));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(7) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 6));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(8) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 7));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(9) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 8));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(10) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 9));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(11) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 10));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(12) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 11));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(13) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 12));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(14) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 13));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(15) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 14));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(16) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 15));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(17) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 16));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(18) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 17));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(19) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 18));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-enter nav .menu-link:nth-child(20) a {
    transition: all calc((800ms * 0.75) + (calc(800ms * 0.3125) * 19));
    transition-timing-function: ease-out;
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(1) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(2) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(3) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(4) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(5) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(6) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(7) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(8) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(9) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(10) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(11) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(12) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(13) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(14) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(15) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(16) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(17) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(18) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(19) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.transition-leave nav .menu-link:nth-child(20) a {
    transition: all calc(800ms * 1.875);
  }
  .appmenu .appmenu-container .menu-links.active nav .menu-link a {
    margin-left: 0%;
    opacity: 1;
  }
  .appmenu .appmenu-container .menu-links.active nav .menu-link-social {
    opacity: 1;
  }
  .appmenu .appmenu-container .menu-links.active.transition-enter .menu-link-social {
    opacity: 0;
  }
}
.wallpaper-video {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.bg-video {
  position: absolute;
  height: 100%;
  min-width: 177.77777778vh;
  min-height: 56.25vw;
  left: 49.99%;
  transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
}

.gallery {
  position: relative;
  overflow: hidden;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: url(../images/a790h-ew0rp.svg) 59 64, ew-resize;
}
.gallery .external-bar {
  z-index: 99;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
}
.gallery .external-bar .sub-bar {
  height: 1px;
  transition: transform 200ms;
}
.gallery .external-bar .sub-bar.up-delay {
  transition: transform 1000ms;
  transition-timing-function: cubic-bezier(0.3, 1.03, 0.93, 0.99);
}
.gallery .gallery-flex-container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  overflow: hidden;
  transition: transform 200ms;
}
.gallery .gallery-flex-container.up-delay {
  transition: transform 1000ms;
  transition-timing-function: cubic-bezier(0.3, 1.03, 0.93, 0.99);
}
.gallery .gallery-flex-container.up-delay.extremes-delay {
  transition: transform 2000ms !important;
  transition-timing-function: cubic-bezier(0.3, 1.03, 0.93, 0.99);
}
.gallery .gallery-flex-container.extremes-delay {
  transition: transform 2000ms !important;
}
.gallery .gallery-flex-container .gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item {
  line-height: 1.1;
}
.gallery-item .gallery-item-logo {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  z-index: 99;
}
.gallery-item .gallery-item-logo img {
  max-width: 100%;
}
.gallery-item .gallery-item-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-item .gallery-item-image img {
  transition: all 400ms;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.gallery-item .gallery-item-content {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 1.5rem;
}
.gallery-item .gallery-item-content .gallery-item-title {
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 1em;
}
.gallery-item .gallery-item-content .gallery-item-title p {
  font-size: 22px;
  font-weight: bold;
  font-family: BariolBold;
  color: white;
  transform: translateY(3em);
  transition: 0.3s;
}
.gallery-item .gallery-item-content .gallery-item-text {
  max-width: 100%;
  overflow: hidden;
}
.gallery-item .gallery-item-content .gallery-item-text p {
  font-size: 20px;
  color: white;
  transform: translateY(1em);
  transition: transform 0.3s;
  margin-bottom: 1em;
}

@media (max-width: 1024px) {
  .gallery-item .gallery-item-content {
    padding: 2rem;
  }
  .gallery-item .gallery-item-content .gallery-item-title {
    margin-bottom: 1em;
  }
  .gallery-item .gallery-item-content .gallery-item-title p {
    transform: translateY(0);
  }
  .gallery-item .gallery-item-content .gallery-item-text p {
    transform: translateY(0);
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .gallery-item .gallery-item-content .gallery-item-title p {
    font-size: 20px;
  }
  .gallery-item .gallery-item-content .gallery-item-text p {
    font-size: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover .gallery-item-image img {
    transform: scale(1.05);
  }
  .gallery-item:hover .gallery-item-content .gallery-item-title p {
    transform: translateY(0);
  }
  .gallery-item:hover .gallery-item-content .gallery-item-text p {
    transform: translateY(0);
  }
}
.js-word-sequence {
  display: flex;
  flex-wrap: nowrap;
}
.js-word-sequence .js-wordsequencing-lastword-div {
  display: block;
}
.js-word-sequence .js-wordsequencing-initial {
  transition: all 500ms;
  opacity: 0;
  display: block;
  transform: translateY(50px);
}
.js-word-sequence .js-wordsequencing-opacity {
  opacity: 0;
  transform: translateY(0) scale(0.75);
}
.js-word-sequence .js-wordsequencing-initial.duration-50 {
  transition: all 50ms;
}
.js-word-sequence .js-wordsequencing-initial.duration-100 {
  transition: all 100ms;
}
.js-word-sequence .js-wordsequencing-initial.duration-150 {
  transition: all 150ms;
}
.js-word-sequence .js-wordsequencing-initial.duration-200 {
  transition: all 200ms;
}
.js-word-sequence .js-wordsequencing-initial.duration-300 {
  transition: all 300ms;
}
.js-word-sequence .js-wordsequencing-initial.duration-400 {
  transition: all 400ms;
}
.js-word-sequence .js-wordsequencing-initial.duration-500 {
  transition: all 500ms;
}
.js-word-sequence .js-wordsequencing-initial.duration-1000 {
  transition: all 1000ms;
}
.js-word-sequence .js-wordsequencing-final {
  opacity: 1;
  transform: translateY(0);
}
.js-word-sequence .js-wordsequencing-final-text.js-wordsequencing-opacity {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.js-word-sequence .js-wordsequencing-cancel-transitions {
  transition: all 0s !important;
}

.human2beloader-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  opacity: 1;
  background-color: #291C51;
}

.human2beloader-cover.transition-enter {
  transition: all 1s;
}

.human2beloader-cover.fade {
  opacity: 0;
}

.dank-ass-loader {
  position: absolute;
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dank-ass-loader .row {
  display: flex;
}
.dank-ass-loader .arrow {
  width: 0;
  height: 0;
  margin: 0 -6px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 21.6px solid #fd7000;
  filter: drop-shadow(0 0 18px #fd7000);
  -webkit-animation: blink 1s infinite, rainbow 2s infinite, rain 2s infinite;
          animation: blink 1s infinite, rainbow 2s infinite, rain 2s infinite;
}
.dank-ass-loader .arrow.down {
  transform: rotate(180deg);
}
.dank-ass-loader .arrow.outer-1 {
  -webkit-animation-delay: -0.0555555556s;
          animation-delay: -0.0555555556s;
}
.dank-ass-loader .arrow.outer-2 {
  -webkit-animation-delay: -0.1111111111s;
          animation-delay: -0.1111111111s;
}
.dank-ass-loader .arrow.outer-3 {
  -webkit-animation-delay: -0.1666666667s;
          animation-delay: -0.1666666667s;
}
.dank-ass-loader .arrow.outer-4 {
  -webkit-animation-delay: -0.2222222222s;
          animation-delay: -0.2222222222s;
}
.dank-ass-loader .arrow.outer-5 {
  -webkit-animation-delay: -0.2777777778s;
          animation-delay: -0.2777777778s;
}
.dank-ass-loader .arrow.outer-6 {
  -webkit-animation-delay: -0.3333333333s;
          animation-delay: -0.3333333333s;
}
.dank-ass-loader .arrow.outer-7 {
  -webkit-animation-delay: -0.3888888889s;
          animation-delay: -0.3888888889s;
}
.dank-ass-loader .arrow.outer-8 {
  -webkit-animation-delay: -0.4444444444s;
          animation-delay: -0.4444444444s;
}
.dank-ass-loader .arrow.outer-9 {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.dank-ass-loader .arrow.outer-10 {
  -webkit-animation-delay: -0.5555555556s;
          animation-delay: -0.5555555556s;
}
.dank-ass-loader .arrow.outer-11 {
  -webkit-animation-delay: -0.6111111111s;
          animation-delay: -0.6111111111s;
}
.dank-ass-loader .arrow.outer-12 {
  -webkit-animation-delay: -0.6666666667s;
          animation-delay: -0.6666666667s;
}
.dank-ass-loader .arrow.outer-13 {
  -webkit-animation-delay: -0.7222222222s;
          animation-delay: -0.7222222222s;
}
.dank-ass-loader .arrow.outer-14 {
  -webkit-animation-delay: -0.7777777778s;
          animation-delay: -0.7777777778s;
}
.dank-ass-loader .arrow.outer-15 {
  -webkit-animation-delay: -0.8333333333s;
          animation-delay: -0.8333333333s;
}
.dank-ass-loader .arrow.outer-16 {
  -webkit-animation-delay: -0.8888888889s;
          animation-delay: -0.8888888889s;
}
.dank-ass-loader .arrow.outer-17 {
  -webkit-animation-delay: -0.9444444444s;
          animation-delay: -0.9444444444s;
}
.dank-ass-loader .arrow.outer-18 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.dank-ass-loader .arrow.inner-1 {
  -webkit-animation-delay: -0.1666666667s;
          animation-delay: -0.1666666667s;
}
.dank-ass-loader .arrow.inner-2 {
  -webkit-animation-delay: -0.3333333333s;
          animation-delay: -0.3333333333s;
}
.dank-ass-loader .arrow.inner-3 {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.dank-ass-loader .arrow.inner-4 {
  -webkit-animation-delay: -0.6666666667s;
          animation-delay: -0.6666666667s;
}
.dank-ass-loader .arrow.inner-5 {
  -webkit-animation-delay: -0.8333333333s;
          animation-delay: -0.8333333333s;
}
.dank-ass-loader .arrow.inner-6 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0.1;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
  0% {
    opacity: 0.1;
  }
  30% {
    opacity: 1;
  }
  to {
    opacity: 0.1;
  }
}
@keyframes blink {
  0% {
    opacity: 0.1;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
  0% {
    opacity: 0.1;
  }
  30% {
    opacity: 1;
  }
  to {
    opacity: 0.1;
  }
}
@-webkit-keyframes rain {
  0% {
    filter: drop-shadow(0 0 18px #0ae6d4);
  }
  to {
    filter: drop-shadow(0 0 18px #f21885);
  }
}
@keyframes rain {
  0% {
    filter: drop-shadow(0 0 18px #0ae6d4);
  }
  to {
    filter: drop-shadow(0 0 18px #f21885);
  }
}
@-webkit-keyframes rainbow {
  0% {
    border-bottom-color: #0ae6d4;
  }
  to {
    border-bottom-color: #f21885;
  }
}
@keyframes rainbow {
  0% {
    border-bottom-color: #0ae6d4;
  }
  to {
    border-bottom-color: #f21885;
  }
}

.dank-ass-loader.transition-enter {
  transition: all 1s;
}

.dank-ass-loader.fade {
  opacity: 0;
}

.wearephygital-position {
  padding-top: 40vh;
}

.phygital .js-word-sequence {
  white-space: nowrap;
  color: white;
  line-height: 1.1;
}
.phygital .js-word-sequence:nth-child(1) {
  font-size: 50px;
}
.phygital .js-word-sequence:nth-child(2) {
  color: #0bd8ca;
  font-size: 75px;
  text-shadow: 0 0 5px #0bd8ca, 0 0 0 #0bd8ca, 0 0 1px #0bd8ca, 0 0 2px #0bd8ca, 0 0 2px #0bd8ca, 0 0 25px #0bd8ca, 0 0 4px #0bd8ca;
}
.phygital .js-word-sequence:nth-child(3) {
  font-size: 75px;
}
.phygital .js-word-sequence:nth-child(4) {
  font-size: 38px;
}
@media (max-width: 470px) {
  .phygital .js-word-sequence:nth-child(1) {
    font-size: max(30px, 10vw);
  }
  .phygital .js-word-sequence:nth-child(2) {
    color: #0bd8ca;
    font-size: max(50px, 16vw);
    text-shadow: 0 0 5px #0bd8ca, 0 0 0 #0bd8ca, 0 0 1px #0bd8ca, 0 0 2px #0bd8ca, 0 0 2px #0bd8ca, 0 0 25px #0bd8ca, 0 0 4px #0bd8ca;
  }
  .phygital .js-word-sequence:nth-child(3) {
    font-size: max(50px, 16vw);
  }
  .phygital .js-word-sequence:nth-child(4) {
    font-size: max(20px, 7vw);
  }
}
@media (min-width: 1024px) {
  .phygital .js-word-sequence:nth-child(1) {
    font-size: 60px;
  }
  .phygital .js-word-sequence:nth-child(2) {
    font-size: 90px;
  }
  .phygital .js-word-sequence:nth-child(3) {
    font-size: 90px;
  }
  .phygital .js-word-sequence:nth-child(4) {
    font-size: 42px;
  }
}

.applogo {
  position: fixed;
  z-index: 999;
  right: max(2rem, 5vw);
  top: 2rem;
}
.applogo .logo-container {
  position: relative;
  width: 70px;
  height: 70px;
}
.applogo .logo-container img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.applogo .logo-container .human2belogo .h2be_b {
  fill: #0bd8ca;
}
.applogo .logo-container .human2belogo .h2be_2 {
  fill: #0bd8ca;
}
.applogo .logo-container .human2belogo .h2be_h {
  fill: white;
}
.applogo .logo-container .human2belogo .h2be_circle {
  fill: #0bd8ca;
}
.applogo .logo-container .human2belogo .h2be_dot {
  fill: white;
}

@media (min-width: 1024px) {
  .applogo {
    top: 10vh;
    right: 3rem;
  }
  .applogo .logo-container {
    width: 100px;
    height: 100px;
  }
}
.js-render-on-time {
  opacity: 0;
}

.js-render-on-time-terminated {
  opacity: 1;
}

@-webkit-keyframes logoanimation {
  0% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white);
  }
  1% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca);
  }
  2% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca);
  }
  3% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  4% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  5% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  6% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  7% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  8% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  9% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  10% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  11% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  12% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  13% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  14% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  15% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  16% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  17% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  18% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  19% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  20% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  21% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  22% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  23% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  24% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  25% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  26% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  27% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  28% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  29% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  30% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  31% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  32% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  33% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  34% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  35% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  36% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  37% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  38% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  39% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  40% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  41% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  42% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  43% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  44% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  45% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  46% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  47% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  48% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  49% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  50% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  51% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  52% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  53% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  54% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  55% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  56% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  57% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  58% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  59% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  60% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  61% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  62% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  63% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  64% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  65% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  66% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  67% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  68% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  69% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  70% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  71% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  72% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  73% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  74% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  75% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  76% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  77% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  78% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  79% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  80% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  81% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  82% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  83% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  84% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  85% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  86% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  87% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  88% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  89% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  90% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  91% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  92% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  93% {
    background-image: linear-gradient(white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  94% {
    background-image: linear-gradient(white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  95% {
    background-image: linear-gradient(white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  96% {
    background-image: linear-gradient(white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  97% {
    background-image: linear-gradient(white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  98% {
    background-image: linear-gradient(white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  99% {
    background-image: linear-gradient(white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  100% {
    background-image: linear-gradient(#0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
}

@keyframes logoanimation {
  0% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white);
  }
  1% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca);
  }
  2% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca);
  }
  3% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  4% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  5% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  6% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  7% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  8% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  9% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  10% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  11% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  12% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  13% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  14% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  15% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  16% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  17% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  18% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  19% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  20% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  21% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  22% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  23% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  24% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  25% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  26% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  27% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  28% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  29% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  30% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  31% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  32% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  33% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  34% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  35% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  36% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  37% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  38% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  39% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  40% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  41% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  42% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  43% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  44% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  45% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  46% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  47% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  48% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  49% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  50% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  51% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  52% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  53% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  54% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  55% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  56% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  57% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  58% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  59% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  60% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  61% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  62% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  63% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  64% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  65% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  66% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  67% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  68% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  69% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  70% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  71% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  72% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  73% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  74% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  75% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  76% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  77% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  78% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  79% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  80% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  81% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  82% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  83% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  84% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  85% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  86% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  87% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  88% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  89% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  90% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  91% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  92% {
    background-image: linear-gradient(white, white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  93% {
    background-image: linear-gradient(white, white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  94% {
    background-image: linear-gradient(white, white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  95% {
    background-image: linear-gradient(white, white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  96% {
    background-image: linear-gradient(white, white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  97% {
    background-image: linear-gradient(white, white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  98% {
    background-image: linear-gradient(white, white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  99% {
    background-image: linear-gradient(white, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
  100% {
    background-image: linear-gradient(#0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca, #0bd8ca);
  }
}
@-webkit-keyframes buttonanimation {
  0% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222);
  }
  1% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858);
  }
  2% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858);
  }
  3% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858);
  }
  4% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858);
  }
  5% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858);
  }
  6% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  7% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  8% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  9% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  10% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  11% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  12% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  13% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  14% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  15% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  16% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  17% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  18% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  19% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  20% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  21% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  22% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  23% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  24% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  25% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  26% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  27% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  28% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  29% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  30% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  31% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  32% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  33% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  34% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  35% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  36% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  37% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  38% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  39% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  40% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  41% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  42% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  43% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  44% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  45% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  46% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  47% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  48% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  49% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  50% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  51% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  52% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  53% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  54% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  55% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  56% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  57% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  58% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  59% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  60% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  61% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  62% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  63% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  64% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  65% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  66% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  67% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  68% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  69% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  70% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  71% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  72% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  73% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  74% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  75% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  76% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  77% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  78% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  79% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  80% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  81% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  82% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  83% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  84% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  85% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  86% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  87% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  88% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  89% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  90% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  91% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  92% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  93% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  94% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  95% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  96% {
    background-image: linear-gradient(#222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  97% {
    background-image: linear-gradient(#222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  98% {
    background-image: linear-gradient(#222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  99% {
    background-image: linear-gradient(#222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  100% {
    background-image: linear-gradient(#585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
}
@keyframes buttonanimation {
  0% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222);
  }
  1% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858);
  }
  2% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858);
  }
  3% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858);
  }
  4% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858);
  }
  5% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858);
  }
  6% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  7% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  8% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  9% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  10% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  11% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  12% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  13% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  14% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  15% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  16% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  17% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  18% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  19% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  20% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  21% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  22% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  23% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  24% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  25% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  26% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  27% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  28% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  29% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  30% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  31% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  32% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  33% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  34% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  35% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  36% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  37% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  38% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  39% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  40% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  41% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  42% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  43% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  44% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  45% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  46% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  47% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  48% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  49% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  50% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  51% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  52% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  53% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  54% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  55% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  56% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  57% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  58% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  59% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  60% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  61% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  62% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  63% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  64% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  65% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  66% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  67% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  68% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  69% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  70% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  71% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  72% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  73% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  74% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  75% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  76% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  77% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  78% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  79% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  80% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  81% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  82% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  83% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  84% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  85% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  86% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  87% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  88% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  89% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  90% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  91% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  92% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  93% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  94% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  95% {
    background-image: linear-gradient(#222, #222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  96% {
    background-image: linear-gradient(#222, #222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  97% {
    background-image: linear-gradient(#222, #222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  98% {
    background-image: linear-gradient(#222, #222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  99% {
    background-image: linear-gradient(#222, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
  100% {
    background-image: linear-gradient(#585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858, #585858);
  }
}
.article-description h1 {
  margin-bottom: 1em;
}
.article-description h2 {
  margin-bottom: 1em;
}
.article-description h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 1em;
  margin-top: 2em;
  color: #0bd8ca;
}
.article-description h4 {
  margin-bottom: 1em;
}
.article-description p {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 1em;
}
.article-description p:last-child {
  margin-bottom: 0;
}
.article-description ul {
  list-style: initial;
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.article-description ul li {
  font-size: 20px;
  margin-bottom: 0.5em;
}
.article-description ul li:last-child {
  margin-bottom: 0;
}
.article-description a {
  transition: all 200ms;
  text-decoration: underline;
  font-weight: bold;
  font-family: BariolBold;
}
@media (hover: hover) and (pointer: fine) {
  .article-description a:hover {
    color: #0bd8ca;
  }
}
.article-description .js-trigger-contact-form {
  transition: all 200ms;
  text-decoration: underline;
  font-weight: bold;
  font-family: BariolBold;
}
@media (hover: hover) and (pointer: fine) {
  .article-description .js-trigger-contact-form:hover {
    color: #0bd8ca;
  }
}

@media (min-width: 768px) {
  .article-description h3 {
    font-size: 32px;
  }
  .article-description p {
    font-size: 24px;
  }
  .article-description ul li {
    font-size: 24px;
  }
}

.before\:absolute::before {
  content:var(--tw-content);
  position:absolute;
}

.before\:top-\[0\.1em\]::before {
  content:var(--tw-content);
  top:0.1em;
}

.before\:left-\[-1em\]::before {
  content:var(--tw-content);
  left:-1em;
}

.before\:block::before {
  content:var(--tw-content);
  display:block;
}

.before\:h-\[7px\]::before {
  content:var(--tw-content);
  height:7px;
}

.before\:w-\[7px\]::before {
  content:var(--tw-content);
  width:7px;
}

.before\:text-white::before {
  content:var(--tw-content);
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity));
}

.before\:content-\[\'\2022\'\]::before {
  --tw-content:'•';
  content:var(--tw-content);
}

.after\:block::after {
  content:var(--tw-content);
  display:block;
}

.after\:pt-\[50\%\]::after {
  content:var(--tw-content);
  padding-top:50%;
}

.after\:content-\[\'\'\]::after {
  --tw-content:'';
  content:var(--tw-content);
}

.hover\:animate-\[buttonanimation_200ms_ease-in-out\]:hover {
  -webkit-animation:buttonanimation 200ms ease-in-out;
          animation:buttonanimation 200ms ease-in-out;
}

.hover\:border-white:hover {
  --tw-border-opacity:1;
  border-color:rgb(255 255 255 / var(--tw-border-opacity));
}

.hover\:fill-human2belightblue:hover {
  fill:#0bd8ca;
}

.hover\:text-human2belightblue:hover {
  --tw-text-opacity:1;
  color:rgb(11 216 202 / var(--tw-text-opacity));
}

.hover\:shadow-human2bebluelight:hover {
  --tw-shadow:0 0 5px #0bd8ca, 0 0 0px #0bd8ca, 0 0 1px #0bd8ca, 0 0 2px #0bd8ca, 0 0 2px #0bd8ca, 0 0 25px #0bd8ca, 0 0 4px #0bd8ca;
  --tw-shadow-colored:0 0 5px var(--tw-shadow-color), 0 0 0px var(--tw-shadow-color), 0 0 1px var(--tw-shadow-color), 0 0 2px var(--tw-shadow-color), 0 0 2px var(--tw-shadow-color), 0 0 25px var(--tw-shadow-color), 0 0 4px var(--tw-shadow-color);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-human2beblue:hover {
  --tw-shadow:0 0 5px #0bd8ca, 0 0 0px #0bd8ca, 0 0 1px #0bd8ca, 0 0 2px #0bd8ca, 0 0 2px #0bd8ca, 0 0 25px #0bd8ca, 0 0 4px #0bd8ca;
  --tw-shadow-colored:0 0 5px var(--tw-shadow-color), 0 0 0px var(--tw-shadow-color), 0 0 1px var(--tw-shadow-color), 0 0 2px var(--tw-shadow-color), 0 0 2px var(--tw-shadow-color), 0 0 25px var(--tw-shadow-color), 0 0 4px var(--tw-shadow-color);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:h-\[85px\] {
  height:85px;
}

.group:hover .group-hover\:w-\[85px\] {
  width:85px;
}

.group:hover .group-hover\:origin-\[left_center\] {
  transform-origin:left center;
}

.group:hover .group-hover\:scale-100 {
  --tw-scale-x:1;
  --tw-scale-y:1;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.peer:checked ~ .peer-checked\:bg-human2bepurple {
  --tw-bg-opacity:1;
  background-color:rgb(41 28 81 / var(--tw-bg-opacity));
}

.peer:checked ~ .peer-checked\:hover\:animate-none:hover {
  -webkit-animation:none;
          animation:none;
}

.opacity-parent .opacity-child {
  opacity:0;
}

.opacity-parent:hover .opacity-child {
  opacity:0.1;
}

.parent:not(.js-active):hover .parent-hover\:rotate-\[135deg\] {
  --tw-rotate:135deg;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.parent:not(.js-active):hover .parent-hover\:rotate-\[45deg\] {
  --tw-rotate:45deg;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.parent:not(.js-active):hover .parent-hover\:rotate-\[180deg\] {
  --tw-rotate:180deg;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.parent:not(.js-active):hover .parent-hover\:rotate-\[90deg\] {
  --tw-rotate:90deg;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.parent:not(.js-active):hover .parent-hover\:scale-\[1\.1\] {
  --tw-scale-x:1.1;
  --tw-scale-y:1.1;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.parent:not(.js-active):hover .parent-hover\:pr-\[calc\(6vw\+1\.5rem\)\] {
  padding-right:calc(6vw + 1.5rem);
}

.js-active .js-active\:right-0 {
  right:0px;
}

.js-active .js-active\:max-h-\[1080px\] {
  max-height:1080px;
}

.js-active .js-active\:min-h-\[350px\] {
  min-height:350px;
}

.js-active .js-active\:min-h-\[850px\] {
  min-height:850px;
}

.js-active .js-active\:min-h-\[550px\] {
  min-height:550px;
}

.js-active .js-active\:min-h-\[430px\] {
  min-height:430px;
}

.js-active .js-active\:min-h-\[300px\] {
  min-height:300px;
}

.js-active .js-active\:min-h-\[500px\] {
  min-height:500px;
}

.js-active .js-active\:min-h-\[280px\] {
  min-height:280px;
}

.js-active .js-active\:min-h-\[580px\] {
  min-height:580px;
}

.js-active .js-active\:min-h-\[380px\] {
  min-height:380px;
}

.js-active .js-active\:min-h-\[330px\] {
  min-height:330px;
}

.js-active .js-active\:min-h-\[450px\] {
  min-height:450px;
}

.js-active .js-active\:rotate-0 {
  --tw-rotate:0deg;
  transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.js-active .js-active\:cursor-closedcursor {
  cursor:url('../images/botao-fechar-new-newest.svg') 25 25, pointer;
}

.js-active .js-active\:fill-white {
  fill:#fff;
}

.js-active .js-active\:pl-\[16vw\] {
  padding-left:16vw;
}

.js-active .js-active\:pr-\[6vw\] {
  padding-right:6vw;
}

.js-active .js-active\:pt-\[50px\] {
  padding-top:50px;
}

.js-active .js-active\:opacity-\[1\] {
  opacity:1;
}

.js-active .js-active\:transition-all {
  transition-property:all;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}

.js-active .js-active\:delay-\[1ms\] {
  transition-delay:1ms;
}

.js-active .js-active\:delay-300 {
  transition-delay:300ms;
}

.js-active .js-active\:duration-500 {
  transition-duration:500ms;
}

.js-active .js-active\:duration-\[500ms\] {
  transition-duration:500ms;
}

.js-card-active .js-card-active\:pointer-events-auto {
  pointer-events:auto;
}

.js-card-active .js-card-active\:top-0 {
  top:0px;
}

.js-card-active .js-card-active\:opacity-\[1\] {
  opacity:1;
}

.js-card-active .js-card-active\:transition-all {
  transition-property:all;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms;
}

.js-card-active .js-card-active\:delay-500 {
  transition-delay:500ms;
}

.js-card-active .js-card-active\:duration-\[500ms\] {
  transition-duration:500ms;
}

.js-contact-card:not(.js-card-active) .js-card-not-active\:pointer-events-auto {
  pointer-events:auto;
}

.js-contact-card:not(.js-card-active) .js-card-not-active\:opacity-\[1\] {
  opacity:1;
}

.js-generic-loader-active .js-generic-loader-active\:max-h-\[1px\] {
  max-height:1px;
}

.js-generic-loader-active .js-generic-loader-active\:opacity-\[0\] {
  opacity:0;
}

.js-project_type-next-active .js-project_type-next-active\:pointer-events-auto {
  pointer-events:auto;
}

.js-project_type-next-active .js-project_type-next-active\:opacity-\[1\] {
  opacity:1;
}

.js-feedback .js-feedback\:\!pointer-events-none {
  pointer-events:none !important;
}

.js-feedback .js-feedback\:\!opacity-0 {
  opacity:0 !important;
}

@media (prefers-color-scheme: dark) {
  .dark\:border-gray-700 {
    --tw-border-opacity:1;
    border-color:rgb(55 65 81 / var(--tw-border-opacity));
  }
  .dark\:bg-gray-900 {
    --tw-bg-opacity:1;
    background-color:rgb(17 24 39 / var(--tw-bg-opacity));
  }
  .dark\:bg-gray-800 {
    --tw-bg-opacity:1;
    background-color:rgb(31 41 55 / var(--tw-bg-opacity));
  }
  .dark\:text-gray-500 {
    --tw-text-opacity:1;
    color:rgb(107 114 128 / var(--tw-text-opacity));
  }
  .dark\:text-white {
    --tw-text-opacity:1;
    color:rgb(255 255 255 / var(--tw-text-opacity));
  }
  .dark\:text-gray-400 {
    --tw-text-opacity:1;
    color:rgb(156 163 175 / var(--tw-text-opacity));
  }
}

@media (min-width: 350px) {
  .\33 50px\:text-\[18px\] {
    font-size:18px;
  }
}

@media (min-width: 400px) {
  .xsm\:block {
    display:block;
  }
  .xsm\:hidden {
    display:none;
  }
  .xsm\:aspect-auto {
    aspect-ratio:auto;
  }
  .xsm\:h-\[80vh\] {
    height:80vh;
  }
  .xsm\:h-\[90vh\] {
    height:90vh;
  }
  .xsm\:min-h-\[max\(434px\2c 68vw\)\] {
    min-height:max(434px,68vw);
  }
  .xsm\:min-h-\[270px\] {
    min-height:270px;
  }
  .xsm\:min-h-\[max\(340px\2c 79vw\)\] {
    min-height:max(340px,79vw);
  }
  .xsm\:min-h-\[max\(315px\2c 79vw\)\] {
    min-height:max(315px,79vw);
  }
  .xsm\:min-h-\[min\(33vw\2c 200px\)\] {
    min-height:min(33vw,200px);
  }
  .xsm\:min-h-\[250px\] {
    min-height:250px;
  }
  .xsm\:min-h-\[max\(600px\2c 110vw\)\] {
    min-height:max(600px,110vw);
  }
  .xsm\:min-h-\[max\(700px\2c 126vw\)\] {
    min-height:max(700px,126vw);
  }
  .xsm\:w-\[280px\] {
    width:280px;
  }
  .xsm\:whitespace-nowrap {
    white-space:nowrap;
  }
  .xsm\:py-\[1\.5em\] {
    padding-top:1.5em;
    padding-bottom:1.5em;
  }
  .xsm\:px-\[5em\] {
    padding-left:5em;
    padding-right:5em;
  }
  .xsm\:py-\[25px\] {
    padding-top:25px;
    padding-bottom:25px;
  }
  .xsm\:px-\[35px\] {
    padding-left:35px;
    padding-right:35px;
  }
  .xsm\:pl-\[max\(2rem\2c 5vw\)\] {
    padding-left:max(2rem,5vw);
  }
  .xsm\:pr-\[max\(2rem\2c 5vw\)\] {
    padding-right:max(2rem,5vw);
  }
  .xsm\:text-\[20px\] {
    font-size:20px;
  }
  .xsm\:text-\[48px\] {
    font-size:48px;
  }
  .xsm\:text-\[35px\] {
    font-size:35px;
  }
  .xsm\:text-\[max\(20px\2c 5vw\)\] {
    font-size:max(20px,5vw);
  }
  .js-active .xsm\:js-active\:min-h-\[350px\] {
    min-height:350px;
  }
  .js-active .xsm\:js-active\:min-h-\[680px\] {
    min-height:680px;
  }
  .js-active .xsm\:js-active\:min-h-\[500px\] {
    min-height:500px;
  }
  .js-active .xsm\:js-active\:min-h-\[300px\] {
    min-height:300px;
  }
  .js-active .xsm\:js-active\:min-h-\[470px\] {
    min-height:470px;
  }
  .js-active .xsm\:js-active\:min-h-\[580px\] {
    min-height:580px;
  }
  .js-active .xsm\:js-active\:min-h-\[400px\] {
    min-height:400px;
  }
}

@media (min-width: 450px) {
  .\34 50px\:text-\[max\(20px\2c 4\.6vw\)\] {
    font-size:max(20px,4.6vw);
  }
  .\34 50px\:text-\[max\(20px\2c 4\.5vw\)\] {
    font-size:max(20px,4.5vw);
  }
}

@media (min-width: 640px) {
  .sm\:mx-auto {
    margin-left:auto;
    margin-right:auto;
  }
  .sm\:ml-0 {
    margin-left:0px;
  }
  .sm\:block {
    display:block;
  }
  .sm\:h-20 {
    height:5rem;
  }
  .sm\:min-h-\[800px\] {
    min-height:800px;
  }
  .sm\:min-h-\[250px\] {
    min-height:250px;
  }
  .sm\:min-h-\[462px\] {
    min-height:462px;
  }
  .sm\:min-h-\[320px\] {
    min-height:320px;
  }
  .sm\:min-h-\[702px\] {
    min-height:702px;
  }
  .sm\:min-h-\[452px\] {
    min-height:452px;
  }
  .sm\:min-h-\[674px\] {
    min-height:674px;
  }
  .sm\:min-h-\[400px\] {
    min-height:400px;
  }
  .sm\:min-h-\[225px\] {
    min-height:225px;
  }
  .sm\:min-h-\[767px\] {
    min-height:767px;
  }
  .sm\:min-h-\[max\(703px\2c 95vw\)\] {
    min-height:max(703px,95vw);
  }
  .sm\:w-\[100px\] {
    width:100px;
  }
  .sm\:w-\[150px\] {
    width:150px;
  }
  .sm\:w-\[140px\] {
    width:140px;
  }
  .sm\:w-\[120px\] {
    width:120px;
  }
  .sm\:w-\[80px\] {
    width:80px;
  }
  .sm\:w-\[280px\] {
    width:280px;
  }
  .sm\:flex-row {
    flex-direction:row;
  }
  .sm\:items-center {
    align-items:center;
  }
  .sm\:justify-start {
    justify-content:flex-start;
  }
  .sm\:justify-between {
    justify-content:space-between;
  }
  .sm\:rounded-lg {
    border-radius:0.5rem;
  }
  .sm\:px-6 {
    padding-left:1.5rem;
    padding-right:1.5rem;
  }
  .sm\:pt-0 {
    padding-top:0px;
  }
  .sm\:text-left {
    text-align:left;
  }
  .sm\:text-right {
    text-align:right;
  }
  .sm\:text-\[32px\] {
    font-size:32px;
  }
  .sm\:text-\[30px\] {
    font-size:30px;
  }
  .sm\:text-\[20px\] {
    font-size:20px;
  }
  .js-active .sm\:js-active\:min-h-\[550px\] {
    min-height:550px;
  }
  .js-active .sm\:js-active\:min-h-\[350px\] {
    min-height:350px;
  }
  .js-active .sm\:js-active\:min-h-\[300px\] {
    min-height:300px;
  }
  .js-active .sm\:js-active\:min-h-\[250px\] {
    min-height:250px;
  }
  .js-active .sm\:js-active\:min-h-\[230px\] {
    min-height:230px;
  }
}

@media (min-width: 700px) {
  .\37 00px\:text-\[32px\] {
    font-size:32px;
  }
}

@media (min-width: 768px) {
  .md\:float-left {
    float:left;
  }
  .md\:mb-\[10px\] {
    margin-bottom:10px;
  }
  .md\:mt-\[10px\] {
    margin-top:10px;
  }
  .md\:mr-\[70px\] {
    margin-right:70px;
  }
  .md\:mr-\[105px\] {
    margin-right:105px;
  }
  .md\:mb-\[30px\] {
    margin-bottom:30px;
  }
  .md\:mr-\[60px\] {
    margin-right:60px;
  }
  .md\:ml-auto {
    margin-left:auto;
  }
  .md\:mr-\[calc\(30\%-1rem\)\] {
    margin-right:calc(30% - 1rem);
  }
  .md\:mt-\[100px\] {
    margin-top:100px;
  }
  .md\:block {
    display:block;
  }
  .md\:flex {
    display:flex;
  }
  .md\:hidden {
    display:none;
  }
  .md\:h-\[30px\] {
    height:30px;
  }
  .md\:min-h-\[581px\] {
    min-height:581px;
  }
  .md\:min-h-\[250px\] {
    min-height:250px;
  }
  .md\:min-h-\[295px\] {
    min-height:295px;
  }
  .md\:min-h-\[450px\] {
    min-height:450px;
  }
  .md\:min-h-\[547px\] {
    min-height:547px;
  }
  .md\:min-h-\[426px\] {
    min-height:426px;
  }
  .md\:min-h-\[600px\] {
    min-height:600px;
  }
  .md\:min-h-\[500px\] {
    min-height:500px;
  }
  .md\:min-h-\[225px\] {
    min-height:225px;
  }
  .md\:min-h-\[525px\] {
    min-height:525px;
  }
  .md\:w-\[200px\] {
    width:200px;
  }
  .md\:w-\[50\%\] {
    width:50%;
  }
  .md\:w-\[30px\] {
    width:30px;
  }
  .md\:w-\[100px\] {
    width:100px;
  }
  .md\:grid-cols-2 {
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction:row;
  }
  .md\:items-end {
    align-items:flex-end;
  }
  .md\:justify-between {
    justify-content:space-between;
  }
  .md\:border-t-0 {
    border-top-width:0px;
  }
  .md\:border-l {
    border-left-width:1px;
  }
  .md\:\!bg-contain {
    background-size:contain !important;
  }
  .md\:pt-\[100px\] {
    padding-top:100px;
  }
  .md\:pb-\[100px\] {
    padding-bottom:100px;
  }
  .md\:pb-\[calc\(100px-max\(2rem\2c 5vw\)\)\] {
    padding-bottom:calc(100px - max(2rem,5vw));
  }
  .md\:pt-\[150px\] {
    padding-top:150px;
  }
  .md\:pl-\[50px\] {
    padding-left:50px;
  }
  .md\:pr-\[50px\] {
    padding-right:50px;
  }
  .md\:text-\[64px\] {
    font-size:64px;
  }
  .md\:text-\[24px\] {
    font-size:24px;
  }
  .md\:text-\[32px\] {
    font-size:32px;
  }
  .md\:text-\[52px\] {
    font-size:52px;
  }
  .md\:text-\[22px\] {
    font-size:22px;
  }
  .md\:text-\[18px\] {
    font-size:18px;
  }
  .md\:text-\[20px\] {
    font-size:20px;
  }
  .md\:leading-none {
    line-height:1;
  }
  .parent:not(.js-active):hover .md\:parent-hover\:translate-x-\[calc\(-50\%\+1\.5rem\)\] {
    --tw-translate-x:calc(-50% + 1.5rem);
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .parent:not(.js-active):hover .md\:parent-hover\:pl-\[calc\(16vw\+1\.5rem\)\] {
    padding-left:calc(16vw + 1.5rem);
  }
  .js-active .md\:js-active\:min-h-\[270px\] {
    min-height:270px;
  }
  .js-active .md\:js-active\:min-h-\[650px\] {
    min-height:650px;
  }
  .js-active .md\:js-active\:min-h-\[380px\] {
    min-height:380px;
  }
  .js-active .md\:js-active\:min-h-\[330px\] {
    min-height:330px;
  }
  .js-active .md\:js-active\:min-h-\[400px\] {
    min-height:400px;
  }
}

@media (min-width: 1024px) {
  .lg\:absolute {
    position:absolute;
  }
  .lg\:sticky {
    position:-webkit-sticky;
    position:sticky;
  }
  .lg\:top-\[50\%\] {
    top:50%;
  }
  .lg\:top-\[80px\] {
    top:80px;
  }
  .lg\:right-\[80px\] {
    right:80px;
  }
  .lg\:bottom-\[80px\] {
    bottom:80px;
  }
  .lg\:right-\[calc\(80px\+30px\)\] {
    right:calc(80px + 30px);
  }
  .lg\:left-\[80px\] {
    left:80px;
  }
  .lg\:top-\[0\] {
    top:0;
  }
  .lg\:left-\[1\.5rem\] {
    left:1.5rem;
  }
  .lg\:top-\[min\(150px\2c 7\.8125vw\)\] {
    top:min(150px,7.8125vw);
  }
  .lg\:top-\[10vh\] {
    top:10vh;
  }
  .lg\:left-\[max\(2rem\2c 2vw\)\] {
    left:max(2rem,2vw);
  }
  .lg\:right-auto {
    right:auto;
  }
  .lg\:left-\[4vw\] {
    left:4vw;
  }
  .lg\:left-\[17vw\] {
    left:17vw;
  }
  .lg\:right-\[20px\] {
    right:20px;
  }
  .lg\:top-\[1\.5rem\] {
    top:1.5rem;
  }
  .lg\:top-\[60px\] {
    top:60px;
  }
  .lg\:left-\[50\%\] {
    left:50%;
  }
  .lg\:left-\[calc\(var\(--menu-width\)\+min\(230px\2c 11\.97915vw\)\)\] {
    left:calc(var(--menu-width) + min(230px,11.97915vw));
  }
  .lg\:order-1 {
    order:1;
  }
  .lg\:order-2 {
    order:2;
  }
  .lg\:order-3 {
    order:3;
  }
  .lg\:mx-auto {
    margin-left:auto;
    margin-right:auto;
  }
  .lg\:mx-0 {
    margin-left:0px;
    margin-right:0px;
  }
  .lg\:ml-\[210px\] {
    margin-left:210px;
  }
  .lg\:ml-\[max\(2rem\2c 2vw\)\] {
    margin-left:max(2rem,2vw);
  }
  .lg\:mr-\[max\(2rem\2c 2vw\)\] {
    margin-right:max(2rem,2vw);
  }
  .lg\:mb-0 {
    margin-bottom:0px;
  }
  .lg\:mb-\[50px\] {
    margin-bottom:50px;
  }
  .lg\:mr-\[30px\] {
    margin-right:30px;
  }
  .lg\:mb-\[15px\] {
    margin-bottom:15px;
  }
  .lg\:mr-\[10px\] {
    margin-right:10px;
  }
  .lg\:mt-\[30px\] {
    margin-top:30px;
  }
  .lg\:mt-\[40px\] {
    margin-top:40px;
  }
  .lg\:mr-\[5rem\] {
    margin-right:5rem;
  }
  .lg\:mt-0 {
    margin-top:0px;
  }
  .lg\:mt-\[60px\] {
    margin-top:60px;
  }
  .lg\:mb-\[20px\] {
    margin-bottom:20px;
  }
  .lg\:mt-\[200px\] {
    margin-top:200px;
  }
  .lg\:ml-\[50px\] {
    margin-left:50px;
  }
  .lg\:mb-\[100px\] {
    margin-bottom:100px;
  }
  .lg\:mr-0 {
    margin-right:0px;
  }
  .lg\:ml-auto {
    margin-left:auto;
  }
  .lg\:ml-\[40px\] {
    margin-left:40px;
  }
  .lg\:mb-\[1rem\] {
    margin-bottom:1rem;
  }
  .lg\:mt-\[50px\] {
    margin-top:50px;
  }
  .lg\:mb-\[30px\] {
    margin-bottom:30px;
  }
  .lg\:mt-\[100px\] {
    margin-top:100px;
  }
  .lg\:block {
    display:block;
  }
  .lg\:h-\[90vh\] {
    height:90vh;
  }
  .lg\:h-\[100\%\] {
    height:100%;
  }
  .lg\:h-\[calc\(100\%-min\(95px\2c 4\.947915vw\)-50px-40px\)\] {
    height:calc(100% - min(95px,4.947915vw) - 50px - 40px);
  }
  .lg\:min-h-\[886px\] {
    min-height:886px;
  }
  .lg\:min-h-\[470px\] {
    min-height:470px;
  }
  .lg\:min-h-\[670px\] {
    min-height:670px;
  }
  .lg\:min-h-\[600px\] {
    min-height:600px;
  }
  .lg\:min-h-\[915px\] {
    min-height:915px;
  }
  .lg\:min-h-\[608px\] {
    min-height:608px;
  }
  .lg\:min-h-\[500px\] {
    min-height:500px;
  }
  .lg\:min-h-\[840px\] {
    min-height:840px;
  }
  .lg\:min-h-\[365px\] {
    min-height:365px;
  }
  .lg\:min-h-\[16px\] {
    min-height:16px;
  }
  .lg\:min-h-\[819px\] {
    min-height:819px;
  }
  .lg\:min-h-\[64vh\] {
    min-height:64vh;
  }
  .lg\:min-h-\[943px\] {
    min-height:943px;
  }
  .lg\:w-\[320px\] {
    width:320px;
  }
  .lg\:w-\[20\%\] {
    width:20%;
  }
  .lg\:w-\[calc\(100vw-40px-min\(370px\2c 19\.27085vw\)-min\(415px\2c 21\.6146vw\)-var\(--scrollbar-width\)\)\] {
    width:calc(100vw - 40px - min(370px,19.27085vw) - min(415px,21.6146vw) - var(--scrollbar-width));
  }
  .lg\:w-\[calc\(100\%\+32px\+32px\+25px\+25px\)\] {
    width:calc(100% + 32px + 32px + 25px + 25px);
  }
  .lg\:w-\[25\%\] {
    width:25%;
  }
  .lg\:w-\[calc\(50\%-30px\)\] {
    width:calc(50% - 30px);
  }
  .lg\:w-auto {
    width:auto;
  }
  .lg\:w-\[calc\(100vw-80px-min\(370px\2c 19\.27085vw\)-min\(415px\2c 21\.6146vw\)-var\(--scrollbar-width\)\)\] {
    width:calc(100vw - 80px - min(370px,19.27085vw) - min(415px,21.6146vw) - var(--scrollbar-width));
  }
  .lg\:w-\[66\.667\%\] {
    width:66.667%;
  }
  .lg\:w-\[150\%\] {
    width:150%;
  }
  .lg\:w-fit {
    width:-webkit-fit-content;
    width:-moz-fit-content;
    width:fit-content;
  }
  .lg\:w-\[50\%\] {
    width:50%;
  }
  .lg\:w-\[25vw\] {
    width:25vw;
  }
  .lg\:w-\[550px\] {
    width:550px;
  }
  .lg\:w-\[min\(280px\2c 14\.584vw\)\] {
    width:min(280px,14.584vw);
  }
  .lg\:w-\[100px\] {
    width:100px;
  }
  .lg\:w-\[1px\] {
    width:1px;
  }
  .lg\:w-\[100\%\] {
    width:100%;
  }
  .lg\:w-\[calc\(100vw-5rem-min\(315px\2c 16\.40625vw\)-min\(270px\2c 14\.0625vw\)\)\] {
    width:calc(100vw - 5rem - min(315px,16.40625vw) - min(270px,14.0625vw));
  }
  .lg\:min-w-\[min\(655px\2c 34\.115vw\)\] {
    min-width:min(655px,34.115vw);
  }
  .lg\:min-w-\[min\(520px\2c 27\.1vw\)\] {
    min-width:min(520px,27.1vw);
  }
  .lg\:min-w-\[25vw\] {
    min-width:25vw;
  }
  .lg\:max-w-\[600px\] {
    max-width:600px;
  }
  .lg\:max-w-\[calc\(calc\(100vw-6vw-16vw-max\(2rem\2c 2vw\)-max\(2rem\2c 2vw\)\)\/2\)\] {
    max-width:calc(calc(100vw - 6vw - 16vw - max(2rem,2vw) - max(2rem,2vw)) / 2);
  }
  .lg\:max-w-\[760px\] {
    max-width:760px;
  }
  .lg\:max-w-\[570px\] {
    max-width:570px;
  }
  .lg\:max-w-\[610px\] {
    max-width:610px;
  }
  .lg\:max-w-\[70\%\] {
    max-width:70%;
  }
  .lg\:max-w-\[1200px\] {
    max-width:1200px;
  }
  .lg\:max-w-\[500px\] {
    max-width:500px;
  }
  .lg\:max-w-\[50\%\] {
    max-width:50%;
  }
  .lg\:max-w-\[640px\] {
    max-width:640px;
  }
  .lg\:max-w-\[410px\] {
    max-width:410px;
  }
  .lg\:max-w-\[370px\] {
    max-width:370px;
  }
  .lg\:max-w-\[530px\] {
    max-width:530px;
  }
  .lg\:max-w-\[560px\] {
    max-width:560px;
  }
  .lg\:translate-y-\[10px\] {
    --tw-translate-y:10px;
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:translate-y-\[calc\(-50\%-25px\)\] {
    --tw-translate-y:calc(-50% - 25px);
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:translate-y-\[-40px\] {
    --tw-translate-y:-40px;
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:translate-x-\[calc\(-50\%-1\.5rem\)\] {
    --tw-translate-x:calc(-50% - 1.5rem);
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:translate-y-\[-50\%\] {
    --tw-translate-y:-50%;
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:translate-x-\[-40\%\] {
    --tw-translate-x:-40%;
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:translate-y-\[-40\%\] {
    --tw-translate-y:-40%;
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:translate-x-\[-50\%\] {
    --tw-translate-x:-50%;
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:translate-y-\[calc\(-50\%\+50px\)\] {
    --tw-translate-y:calc(-50% + 50px);
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:scale-\[1\] {
    --tw-scale-x:1;
    --tw-scale-y:1;
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .lg\:flex-row {
    flex-direction:row;
  }
  .lg\:items-start {
    align-items:flex-start;
  }
  .lg\:items-end {
    align-items:flex-end;
  }
  .lg\:items-center {
    align-items:center;
  }
  .lg\:items-stretch {
    align-items:stretch;
  }
  .lg\:justify-between {
    justify-content:space-between;
  }
  .lg\:gap-x-\[min\(100px\2c 5\.20835vw\)\] {
    -moz-column-gap:min(100px,5.20835vw);
         column-gap:min(100px,5.20835vw);
  }
  .lg\:gap-x-\[min\(80px\2c 4\.166666vw\)\] {
    -moz-column-gap:min(80px,4.166666vw);
         column-gap:min(80px,4.166666vw);
  }
  .lg\:gap-y-\[75vh\] {
    row-gap:75vh;
  }
  .lg\:gap-x-\[25px\] {
    -moz-column-gap:25px;
         column-gap:25px;
  }
  .lg\:gap-x-\[max\(80px\2c min\(200px\2c 10\.41666vw\)\)\] {
    -moz-column-gap:max(80px,min(200px,10.41666vw));
         column-gap:max(80px,min(200px,10.41666vw));
  }
  .lg\:gap-x-\[20px\] {
    -moz-column-gap:20px;
         column-gap:20px;
  }
  .lg\:gap-x-\[min\(50px\2c 2\.604165vw\)\] {
    -moz-column-gap:min(50px,2.604165vw);
         column-gap:min(50px,2.604165vw);
  }
  .lg\:self-start {
    align-self:flex-start;
  }
  .lg\:self-end {
    align-self:flex-end;
  }
  .lg\:self-center {
    align-self:center;
  }
  .lg\:overflow-auto {
    overflow:auto;
  }
  .lg\:bg-\[\#2E2051\] {
    --tw-bg-opacity:1;
    background-color:rgb(46 32 81 / var(--tw-bg-opacity));
  }
  .lg\:bg-\[url\(\'\.\.\/images\/tchelo-on-right-1450\.jpg\'\)\] {
    background-image:url('../images/tchelo-on-right-1450.jpg');
  }
  .lg\:bg-\[url\(\'\.\.\/images\/solutions-on-right-1450\.jpg\'\)\] {
    background-image:url('../images/solutions-on-right-1450.jpg');
  }
  .lg\:\!bg-auto {
    background-size:auto !important;
  }
  .lg\:\!bg-fixed {
    background-attachment:fixed !important;
  }
  .lg\:bg-fixed {
    background-attachment:fixed;
  }
  .lg\:object-top {
    -o-object-position:top;
       object-position:top;
  }
  .lg\:p-0 {
    padding:0px;
  }
  .lg\:px-8 {
    padding-left:2rem;
    padding-right:2rem;
  }
  .lg\:px-\[80px\] {
    padding-left:80px;
    padding-right:80px;
  }
  .lg\:px-\[55px\] {
    padding-left:55px;
    padding-right:55px;
  }
  .lg\:px-\[50px\] {
    padding-left:50px;
    padding-right:50px;
  }
  .lg\:pt-\[200px\] {
    padding-top:200px;
  }
  .lg\:pb-\[200px\] {
    padding-bottom:200px;
  }
  .lg\:pb-\[100px\] {
    padding-bottom:100px;
  }
  .lg\:pb-\[calc\(200px-max\(2rem\2c 5vw\)\)\] {
    padding-bottom:calc(200px - max(2rem,5vw));
  }
  .lg\:pl-\[min\(370px\2c 19\.27085vw\)\] {
    padding-left:min(370px,19.27085vw);
  }
  .lg\:pr-\[min\(415px\2c 21\.6146vw\)\] {
    padding-right:min(415px,21.6146vw);
  }
  .lg\:pt-\[min\(150px\2c 7\.8125vw\)\] {
    padding-top:min(150px,7.8125vw);
  }
  .lg\:pb-\[60px\] {
    padding-bottom:60px;
  }
  .lg\:pl-\[calc\(min\(370px\2c 19\.27085vw\)\)\] {
    padding-left:calc(min(370px,19.27085vw));
  }
  .lg\:pr-\[calc\(min\(415px\2c 21\.6146vw\)\)\] {
    padding-right:calc(min(415px,21.6146vw));
  }
  .lg\:pb-\[min\(150px\2c 7\.8125vw\)\] {
    padding-bottom:min(150px,7.8125vw);
  }
  .lg\:pt-\[50px\] {
    padding-top:50px;
  }
  .lg\:pb-\[50px\] {
    padding-bottom:50px;
  }
  .lg\:pr-0 {
    padding-right:0px;
  }
  .lg\:pb-\[0\] {
    padding-bottom:0;
  }
  .lg\:pt-\[10px\] {
    padding-top:10px;
  }
  .lg\:pb-\[10px\] {
    padding-bottom:10px;
  }
  .lg\:pl-\[calc\(min\(370px\2c 19\.27085vw\)-15px\)\] {
    padding-left:calc(min(370px,19.27085vw) - 15px);
  }
  .lg\:pr-\[calc\(min\(415px\2c 21\.6146vw\)-15px\)\] {
    padding-right:calc(min(415px,21.6146vw) - 15px);
  }
  .lg\:pl-\[min\(110px\2c 5\.72915vw\)\] {
    padding-left:min(110px,5.72915vw);
  }
  .lg\:pb-\[min\(95px\2c 4\.947915vw\)\] {
    padding-bottom:min(95px,4.947915vw);
  }
  .lg\:pt-\[min\(95px\2c 4\.947915vw\)\] {
    padding-top:min(95px,4.947915vw);
  }
  .lg\:pl-\[calc\(min\(315px\2c 16\.40625vw\)-min\(55px\2c 2\.864585vw\)\)\] {
    padding-left:calc(min(315px,16.40625vw) - min(55px,2.864585vw));
  }
  .lg\:pr-\[min\(270px\2c 14\.0625vw\)\] {
    padding-right:min(270px,14.0625vw);
  }
  .lg\:pb-0 {
    padding-bottom:0px;
  }
  .lg\:pt-\[20px\] {
    padding-top:20px;
  }
  .lg\:pb-\[5rem\] {
    padding-bottom:5rem;
  }
  .lg\:pl-\[5rem\] {
    padding-left:5rem;
  }
  .lg\:pr-\[5rem\] {
    padding-right:5rem;
  }
  .lg\:pt-\[5rem\] {
    padding-top:5rem;
  }
  .lg\:pt-\[65px\] {
    padding-top:65px;
  }
  .lg\:pl-\[min\(315px\2c 16\.40625vw\)\] {
    padding-left:min(315px,16.40625vw);
  }
  .lg\:pl-\[8vw\] {
    padding-left:8vw;
  }
  .lg\:pl-\[100px\] {
    padding-left:100px;
  }
  .lg\:pr-\[100px\] {
    padding-right:100px;
  }
  .lg\:pr-\[50px\] {
    padding-right:50px;
  }
  .lg\:pl-0 {
    padding-left:0px;
  }
  .lg\:pl-\[min\(230px\2c 11\.97915vw\)\] {
    padding-left:min(230px,11.97915vw);
  }
  .lg\:pr-\[min\(230px\2c 11\.97915vw\)\] {
    padding-right:min(230px,11.97915vw);
  }
  .lg\:pt-\[230px\] {
    padding-top:230px;
  }
  .lg\:pt-\[115px\] {
    padding-top:115px;
  }
  .lg\:pb-\[125px\] {
    padding-bottom:125px;
  }
  .lg\:pr-\[40px\] {
    padding-right:40px;
  }
  .lg\:pt-\[calc\(200px-max\(2rem\2c 5vw\)\)\] {
    padding-top:calc(200px - max(2rem,5vw));
  }
  .lg\:pb-\[max\(2rem\2c 2vw\)\] {
    padding-bottom:max(2rem,2vw);
  }
  .lg\:pr-\[min\(315px\2c 16\.40625vw\)\] {
    padding-right:min(315px,16.40625vw);
  }
  .lg\:pl-\[min\(50px\2c 2\.604165vw\)\] {
    padding-left:min(50px,2.604165vw);
  }
  .lg\:pl-\[min\(70px\2c 3\.645835vw\)\] {
    padding-left:min(70px,3.645835vw);
  }
  .lg\:text-center {
    text-align:center;
  }
  .lg\:text-right {
    text-align:right;
  }
  .lg\:text-\[16px\] {
    font-size:16px;
  }
  .lg\:text-\[44px\] {
    font-size:44px;
  }
  .lg\:text-\[46px\] {
    font-size:46px;
  }
  .lg\:text-\[32px\] {
    font-size:32px;
  }
  .lg\:text-\[max\(20px\2c min\(35px\2c 1\.822915vw\)\)\] {
    font-size:max(20px,min(35px,1.822915vw));
  }
  .lg\:text-\[max\(30px\2c min\(50px\2c 2\.604166vw\)\)\] {
    font-size:max(30px,min(50px,2.604166vw));
  }
  .lg\:text-\[max\(14px\2c min\(24px\2c 1\.25vw\)\)\] {
    font-size:max(14px,min(24px,1.25vw));
  }
  .lg\:text-\[52px\] {
    font-size:52px;
  }
  .lg\:text-\[64px\] {
    font-size:64px;
  }
  .lg\:text-\[24px\] {
    font-size:24px;
  }
  .lg\:leading-none {
    line-height:1;
  }
  .lg\:leading-\[1\.1\] {
    line-height:1.1;
  }
  .lg\:opacity-0 {
    opacity:0;
  }
  .lg\:hover\:text-black:hover {
    --tw-text-opacity:1;
    color:rgb(0 0 0 / var(--tw-text-opacity));
  }
  .lg\:hover\:text-human2belightblue:hover {
    --tw-text-opacity:1;
    color:rgb(11 216 202 / var(--tw-text-opacity));
  }
  .parent:not(.js-active):hover .lg\:parent-hover\:ml-\[50px\] {
    margin-left:50px;
  }
  .parent:not(.js-active):hover .lg\:parent-hover\:translate-x-\[calc\(-50\%\)\] {
    --tw-translate-x:calc(-50%);
    transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .parent:not(.js-active):hover .lg\:parent-hover\:opacity-\[1\] {
    opacity:1;
  }
  .js-active .lg\:js-active\:min-h-\[350px\] {
    min-height:350px;
  }
  .js-active .lg\:js-active\:min-h-\[880px\] {
    min-height:880px;
  }
  .js-active .lg\:js-active\:min-h-\[550px\] {
    min-height:550px;
  }
  .js-active .lg\:js-active\:min-h-\[450px\] {
    min-height:450px;
  }
}

@media (min-width: 1120px) {
  .\31 120px\:min-h-\[942px\] {
    min-height:942px;
  }
  .\31 120px\:min-h-\[670px\] {
    min-height:670px;
  }
  .\31 120px\:min-h-\[883px\] {
    min-height:883px;
  }
  .\31 120px\:text-\[52px\] {
    font-size:52px;
  }
}

@media (min-width: 1280px) {
  .xl\:block {
    display:block;
  }
  .xl\:max-w-\[500px\] {
    max-width:500px;
  }
  .xl\:whitespace-nowrap {
    white-space:nowrap;
  }
  .xl\:pr-\[150px\] {
    padding-right:150px;
  }
  .js-active .xl\:js-active\:min-h-\[300px\] {
    min-height:300px;
  }
  .js-active .xl\:js-active\:min-h-\[750px\] {
    min-height:750px;
  }
}

@media (min-width: 1450px) {
  .hdtv\:max-w-\[50\%\] {
    max-width:50%;
  }
  .hdtv\:bg-\[url\(\'\.\.\/images\/tchelo-on-right\.jpg\'\)\] {
    background-image:url('../images/tchelo-on-right.jpg');
  }
  .hdtv\:bg-\[url\(\'\.\.\/images\/solutions-on-right\.jpg\'\)\] {
    background-image:url('../images/solutions-on-right.jpg');
  }
  .hdtv\:pl-\[200px\] {
    padding-left:200px;
  }
  .hdtv\:pr-\[200px\] {
    padding-right:200px;
  }
  .hdtv\:text-\[52px\] {
    font-size:52px;
  }
  .js-active .hdtv\:js-active\:min-h-\[700px\] {
    min-height:700px;
  }
  .js-active .hdtv\:js-active\:min-h-\[450px\] {
    min-height:450px;
  }
  .js-active .hdtv\:js-active\:min-h-\[350px\] {
    min-height:350px;
  }
}

@media (min-width: 1536px) {
  .\32xl\:right-\[min\(230px\2c 11\.97915vw\)\] {
    right:min(230px,11.97915vw);
  }
  .\32xl\:w-\[635px\] {
    width:635px;
  }
}

@media (min-width: 1600px) {
  .\31 600px\:block {
    display:block;
  }
  .\31 600px\:whitespace-nowrap {
    white-space:nowrap;
  }
}

@media (min-width: 1700px) {
  .\31 700px\:min-h-\[600px\] {
    min-height:600px;
  }
}

@media (min-width: 1800px) {
  .js-active .almostfullhd\:js-active\:min-h-\[600px\] {
    min-height:600px;
  }
  .js-active .almostfullhd\:js-active\:min-h-\[400px\] {
    min-height:400px;
  }
  .js-active .almostfullhd\:js-active\:min-h-\[350px\] {
    min-height:350px;
  }
}

@media (min-width: 1920px) {
  .fullhd\:w-\[calc\(1920px-40px-min\(370px\2c 19\.27085vw\)-min\(415px\2c 21\.6146vw\)\)\] {
    width:calc(1920px - 40px - min(370px,19.27085vw) - min(415px,21.6146vw));
  }
  .fullhd\:w-\[calc\(1920px-80px-min\(370px\2c 19\.27085vw\)-min\(415px\2c 21\.6146vw\)\)\] {
    width:calc(1920px - 80px - min(370px,19.27085vw) - min(415px,21.6146vw));
  }
  .fullhd\:w-\[calc\(1920px-5rem-min\(315px\2c 16\.40625vw\)-min\(270px\2c 14\.0625vw\)\)\] {
    width:calc(1920px - 5rem - min(315px,16.40625vw) - min(270px,14.0625vw));
  }
  .fullhd\:bg-\[url\(\'\.\.\/images\/tchelo-diretor-human2be\.jpg\'\)\] {
    background-image:url('../images/tchelo-diretor-human2be.jpg');
  }
  .fullhd\:bg-\[url\(\'\.\.\/images\/solutions-diretor-human2be\.jpg\'\)\] {
    background-image:url('../images/solutions-diretor-human2be.jpg');
  }
}
