/* Error de minimización. Devolviendo el contenido no minimizado.
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,38): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(19,30): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(32,49): run-time error CSS1039: Token not allowed after unary operator: '-animate-repeat'
(33,41): run-time error CSS1039: Token not allowed after unary operator: '-animate-repeat'
(39,54): run-time error CSS1039: Token not allowed after unary operator: '-animate-repeat'
(40,46): run-time error CSS1039: Token not allowed after unary operator: '-animate-repeat'
(46,54): run-time error CSS1039: Token not allowed after unary operator: '-animate-repeat'
(47,46): run-time error CSS1039: Token not allowed after unary operator: '-animate-repeat'
(52,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(53,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(58,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(59,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(64,39): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(65,31): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(71,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(72,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(78,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(79,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(85,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(86,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(92,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(93,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(98,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(99,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(104,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(105,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(110,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(111,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(117,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(118,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(124,44): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(125,36): run-time error CSS1039: Token not allowed after unary operator: '-animate-delay'
(130,47): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(131,39): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(137,47): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(138,39): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(144,47): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(145,39): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(151,47): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(152,39): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(890,43): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(891,35): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(1339,43): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(1340,35): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(1678,43): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(1679,35): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(2914,43): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(2915,35): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(2963,43): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(2964,35): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(3532,43): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
(3533,35): run-time error CSS1039: Token not allowed after unary operator: '-animate-duration'
 */
@charset "UTF-8"; /*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

    .animate__animated.animate__infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite
    }

    .animate__animated.animate__repeat-1 {
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-iteration-count: var(--animate-repeat);
        animation-iteration-count: var(--animate-repeat)
    }

    .animate__animated.animate__repeat-2 {
        -webkit-animation-iteration-count: 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-300ms {
        -webkit-animation-delay: 300ms;
        animation-delay: 300ms;
        -webkit-animation-delay: calc(var(--animate-delay)/3);
        animation-delay: calc(var(--animate-delay)/3)
    }
    .animate__animated.animate__delay-500ms {
        -webkit-animation-delay: 500ms;
        animation-delay: 500ms;
        -webkit-animation-delay: calc(var(--animate-delay)/2);
        animation-delay: calc(var(--animate-delay)/2)
    }
    .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__delay-6s {
        -webkit-animation-delay: 6s;
        animation-delay: 6s;
        -webkit-animation-delay: calc(var(--animate-delay)*6);
        animation-delay: calc(var(--animate-delay)*6)
    }
    .animate__animated.animate__delay-7s {
        -webkit-animation-delay: 7s;
        animation-delay: 7s;
        -webkit-animation-delay: calc(var(--animate-delay)*7);
        animation-delay: calc(var(--animate-delay)*7)
    }
    .animate__animated.animate__delay-8s {
        -webkit-animation-delay: 8s;
        animation-delay: 8s;
        -webkit-animation-delay: calc(var(--animate-delay)*8);
        animation-delay: calc(var(--animate-delay)*8)
    }
   
    .animate__animated.animate__delay-9s {
        -webkit-animation-delay: 9s;
        animation-delay: 9s;
        -webkit-animation-delay: calc(var(--animate-delay)*9);
        animation-delay: calc(var(--animate-delay)*9)
    }

    .animate__animated.animate__delay-10s {
        -webkit-animation-delay: 10s;
        animation-delay: 10s;
        -webkit-animation-delay: calc(var(--animate-delay)*10);
        animation-delay: calc(var(--animate-delay)*10)
    }
    .animate__animated.animate__faster {
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
        -webkit-animation-duration: calc(var(--animate-duration)/2);
        animation-duration: calc(var(--animate-duration)/2)
    }

    .animate__animated.animate__fast {
        -webkit-animation-duration: .8s;
        animation-duration: .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;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important
    }

        .animate__animated[class*=Out] {
            opacity: 0
        }
}

@-webkit-keyframes bounce {
    0%,20%,53%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0) scaleY(1.1);
        transform: translate3d(0,-30px,0) scaleY(1.1)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-15px,0) scaleY(1.05);
        transform: translate3d(0,-15px,0) scaleY(1.05)
    }

    80% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0) scaleY(1.02);
        transform: translate3d(0,-4px,0) scaleY(1.02)
    }
}

@keyframes bounce {
    0%,20%,53%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0) scaleY(1.1);
        transform: translate3d(0,-30px,0) scaleY(1.1)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-15px,0) scaleY(1.05);
        transform: translate3d(0,-15px,0) scaleY(1.05)
    }

    80% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0) scaleY(1.02);
        transform: translate3d(0,-4px,0) scaleY(1.02)
    }
}

.animate__bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    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% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        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% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shakeX {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

@keyframes shakeX {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

.animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX
}

@-webkit-keyframes shakeY {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }
}

@keyframes shakeY {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }
}

.animate__shakeY {
    -webkit-animation-name: shakeY;
    animation-name: shakeY
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.animate__headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.animate__swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate(3deg);
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate(2deg);
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate(3deg);
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate(2deg);
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {
    0%,11.1%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    0%,11.1%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.animate__jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 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% {
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInDown {
    0% {
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInDown {
    -webkit-animation-name: backInDown;
    animation-name: backInDown
}

@-webkit-keyframes backInLeft {
    0% {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInLeft {
    0% {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInLeft {
    -webkit-animation-name: backInLeft;
    animation-name: backInLeft
}

@-webkit-keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInRight {
    -webkit-animation-name: backInRight;
    animation-name: backInRight
}

@-webkit-keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7);
        opacity: .7
    }

    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp
}

@-webkit-keyframes backOutDown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutDown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7);
        opacity: .7
    }
}

.animate__backOutDown {
    -webkit-animation-name: backOutDown;
    animation-name: backOutDown
}

@-webkit-keyframes backOutLeft {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutLeft {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutLeft {
    -webkit-animation-name: backOutLeft;
    animation-name: backOutLeft
}

@-webkit-keyframes backOutRight {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutRight {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutRight {
    -webkit-animation-name: backOutRight;
    animation-name: backOutRight
}

@-webkit-keyframes backOutUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7);
        opacity: .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(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__bounceIn {
    -webkit-animation-duration: .75s;
    animation-duration: .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(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-3000px,0) scaleY(3);
        transform: translate3d(0,-3000px,0) scaleY(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,25px,0) scaleY(.9);
        transform: translate3d(0,25px,0) scaleY(.9)
    }

    75% {
        -webkit-transform: translate3d(0,-10px,0) scaleY(.95);
        transform: translate3d(0,-10px,0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,5px,0) scaleY(.985);
        transform: translate3d(0,5px,0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-3000px,0) scaleY(3);
        transform: translate3d(0,-3000px,0) scaleY(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,25px,0) scaleY(.9);
        transform: translate3d(0,25px,0) scaleY(.9)
    }

    75% {
        -webkit-transform: translate3d(0,-10px,0) scaleY(.95);
        transform: translate3d(0,-10px,0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,5px,0) scaleY(.985);
        transform: translate3d(0,5px,0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        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(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0) scaleX(3);
        transform: translate3d(-3000px,0,0) scaleX(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0) scaleX(1);
        transform: translate3d(25px,0,0) scaleX(1)
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0) scaleX(.98);
        transform: translate3d(-10px,0,0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0) scaleX(.995);
        transform: translate3d(5px,0,0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0) scaleX(3);
        transform: translate3d(-3000px,0,0) scaleX(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0) scaleX(1);
        transform: translate3d(25px,0,0) scaleX(1)
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0) scaleX(.98);
        transform: translate3d(-10px,0,0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0) scaleX(.995);
        transform: translate3d(5px,0,0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        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(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px,0,0) scaleX(3);
        transform: translate3d(3000px,0,0) scaleX(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px,0,0) scaleX(1);
        transform: translate3d(-25px,0,0) scaleX(1)
    }

    75% {
        -webkit-transform: translate3d(10px,0,0) scaleX(.98);
        transform: translate3d(10px,0,0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0) scaleX(.995);
        transform: translate3d(-5px,0,0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px,0,0) scaleX(3);
        transform: translate3d(3000px,0,0) scaleX(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px,0,0) scaleX(1);
        transform: translate3d(-25px,0,0) scaleX(1)
    }

    75% {
        -webkit-transform: translate3d(10px,0,0) scaleX(.98);
        transform: translate3d(10px,0,0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0) scaleX(.995);
        transform: translate3d(-5px,0,0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        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(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,3000px,0) scaleY(5);
        transform: translate3d(0,3000px,0) scaleY(5)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0) scaleY(.9);
        transform: translate3d(0,-20px,0) scaleY(.9)
    }

    75% {
        -webkit-transform: translate3d(0,10px,0) scaleY(.95);
        transform: translate3d(0,10px,0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0) scaleY(.985);
        transform: translate3d(0,-5px,0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,3000px,0) scaleY(5);
        transform: translate3d(0,3000px,0) scaleY(5)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0) scaleY(.9);
        transform: translate3d(0,-20px,0) scaleY(.9)
    }

    75% {
        -webkit-transform: translate3d(0,10px,0) scaleY(.95);
        transform: translate3d(0,10px,0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0) scaleY(.985);
        transform: translate3d(0,-5px,0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

.animate__bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .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% {
        -webkit-transform: translate3d(0,10px,0) scaleY(.985);
        transform: translate3d(0,10px,0) scaleY(.985)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0) scaleY(.9);
        transform: translate3d(0,-20px,0) scaleY(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0) scaleY(3);
        transform: translate3d(0,2000px,0) scaleY(3)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0,10px,0) scaleY(.985);
        transform: translate3d(0,10px,0) scaleY(.985)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0) scaleY(.9);
        transform: translate3d(0,-20px,0) scaleY(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0) scaleY(3);
        transform: translate3d(0,2000px,0) scaleY(3)
    }
}

.animate__bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0) scaleX(.9);
        transform: translate3d(20px,0,0) scaleX(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0) scaleX(2);
        transform: translate3d(-2000px,0,0) scaleX(2)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0) scaleX(.9);
        transform: translate3d(20px,0,0) scaleX(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0) scaleX(2);
        transform: translate3d(-2000px,0,0) scaleX(2)
    }
}

.animate__bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0) scaleX(.9);
        transform: translate3d(-20px,0,0) scaleX(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0) scaleX(2);
        transform: translate3d(2000px,0,0) scaleX(2)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0) scaleX(.9);
        transform: translate3d(-20px,0,0) scaleX(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0) scaleX(2);
        transform: translate3d(2000px,0,0) scaleX(2)
    }
}

.animate__bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0) scaleY(.985);
        transform: translate3d(0,-10px,0) scaleY(.985)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,20px,0) scaleY(.9);
        transform: translate3d(0,20px,0) scaleY(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0) scaleY(3);
        transform: translate3d(0,-2000px,0) scaleY(3)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0) scaleY(.985);
        transform: translate3d(0,-10px,0) scaleY(.985)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,20px,0) scaleY(.9);
        transform: translate3d(0,20px,0) scaleY(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0) scaleY(3);
        transform: translate3d(0,-2000px,0) scaleY(3)
    }
}

.animate__bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-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;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,-100%,0);
        transform: translate3d(-100%,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,-100%,0);
        transform: translate3d(-100%,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInTopLeft {
    -webkit-animation-name: fadeInTopLeft;
    animation-name: fadeInTopLeft
}

@-webkit-keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,-100%,0);
        transform: translate3d(100%,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,-100%,0);
        transform: translate3d(100%,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInTopRight {
    -webkit-animation-name: fadeInTopRight;
    animation-name: fadeInTopRight
}

@-webkit-keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,100%,0);
        transform: translate3d(-100%,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,100%,0);
        transform: translate3d(-100%,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft
}

@-webkit-keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,100%,0);
        transform: translate3d(100%,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,100%,0);
        transform: translate3d(100%,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        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;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

.animate__fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

.animate__fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

.animate__fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

.animate__fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

.animate__fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

.animate__fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

.animate__fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

.animate__fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,-100%,0);
        transform: translate3d(-100%,-100%,0)
    }
}

@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,-100%,0);
        transform: translate3d(-100%,-100%,0)
    }
}

.animate__fadeOutTopLeft {
    -webkit-animation-name: fadeOutTopLeft;
    animation-name: fadeOutTopLeft
}

@-webkit-keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,-100%,0);
        transform: translate3d(100%,-100%,0)
    }
}

@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,-100%,0);
        transform: translate3d(100%,-100%,0)
    }
}

.animate__fadeOutTopRight {
    -webkit-animation-name: fadeOutTopRight;
    animation-name: fadeOutTopRight
}

@-webkit-keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,100%,0);
        transform: translate3d(100%,100%,0)
    }
}

@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,100%,0);
        transform: translate3d(100%,100%,0)
    }
}

.animate__fadeOutBottomRight {
    -webkit-animation-name: fadeOutBottomRight;
    animation-name: fadeOutBottomRight
}

@-webkit-keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,100%,0);
        transform: translate3d(-100%,100%,0)
    }
}

@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,100%,0);
        transform: translate3d(-100%,100%,0)
    }
}

.animate__fadeOutBottomLeft {
    -webkit-animation-name: fadeOutBottomLeft;
    animation-name: fadeOutBottomLeft
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    to {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        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% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.animate__flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.animate__flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.animate__flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .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% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.animate__flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .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% {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedInRight {
    0% {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        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% {
        -webkit-transform: translate3d(-100%,0,0) skewX(30deg);
        transform: translate3d(-100%,0,0) skewX(30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0) skewX(30deg);
        transform: translate3d(-100%,0,0) skewX(30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        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 {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutRight {
    -webkit-animation-name: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-100%,0,0) skewX(-30deg);
        transform: translate3d(-100%,0,0) skewX(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-100%,0,0) skewX(-30deg);
        transform: translate3d(-100%,0,0) skewX(-30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutLeft {
    -webkit-animation-name: lightSpeedOutLeft;
    animation-name: lightSpeedOutLeft;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.animate__rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

.animate__rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.animate__rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.animate__rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.animate__rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0,700px,0);
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0,700px,0);
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.animate__hinge {
    -webkit-animation-duration: 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;
    -webkit-transform-origin: top left;
    transform-origin: top left
}

@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate(-120deg);
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate(-120deg);
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate(120deg);
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate(120deg);
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

.animate__rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.animate__zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0)
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0)
    }
}

.animate__zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0)
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0)
    }
}

.animate__zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    -webkit-transform-origin: right center;
    transform-origin: right center
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

.animate__slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

.animate__slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

.animate__slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

.animate__slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

/*****************************************************************/
/*1. CONTENEDORES GENERALES Y SCROLLVIEW */
/********************************************************************/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    /*cursor: none;*/
}

b{
    font-weight:bold;
}
p{
    line-height:1.3em;
}
.scrollView {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}


    


/*DISPOSITIVOS NO TOUCH*/
@media (hover: hover) {
    .scrollView::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #eee;
    }

    .scrollView::-webkit-scrollbar {
        width: 15px;
        background-color: #eee;
    }

    .scrollView::-webkit-scrollbar-thumb {
        background-color: #c3e40d;
        border: 0px solid #c3e40d;
    }
}


.containerWeb {
    width: 100%;
    /*max-width: 2048px;*/
    margin: 0 auto;
    min-height: 100%;
    position: relative;
}

::selection {
    background: #c3e40d;
}



/*****************************************************************/
/*2. CURSOR PERSONALIZADO*/
/********************************************************************/
/*.cursorWeb {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    background-color: #f5f5f5;
    mix-blend-mode: difference;
    z-index: 99999;
    transition: transform 0.2s;
}*/


/*devices touch*/
/*@media (hover: none) {
    .cursorWeb {
        display: none;
    }
}*/
/*si quito cursor customizado aplico css a estos cursos*/
.mouseActive, .btn, a, .submenuSection a, .slideSubmenu, .burgerMenu {
    cursor: pointer;
}
/*****************************************************************/
/*3. BOTÓN FIXED LLAMAR POR TELEFONO Y ACTIVAR IA*/
/********************************************************************/
.callBtnPosition {
    bottom: 90px;
    right: 40px;
    z-index: 900;
}
img#btnIA {
    width: 35px;
}
.callBtnPosition.IA{
    position:fixed;
}
.botonesIA {
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: auto;
  
}
.callBtn {
    font-size: 20px;
    background-color: #85b434;
    border: 1px solid #ffffff;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s;
    
}
.contactIA {
    width: 480px;
    /* height: 365px; */
    /* top: 85px; */
    bottom: 85px;
    margin: auto;
    z-index: 1000;
    /* box-shadow: 0px 0px 9px 4px #1580c2; */
    /* border-radius: 25px; */
    /* transition: 250ms; */
    display: flex;
    flex-direction: column;
}
.chatIAContaier {
    width: 480px;
    height: 500px;
    max-height: 500px;
    /* top: 85px; */
    bottom: 85px;
    right: 60px;
    margin: auto;
    z-index: 1000;
    box-shadow: 0px 0px 9px 4px #1580c2;
    border-radius: 25px;
    transition: 250ms;
    display: flex;
    flex-direction: column;
}
#ampliarIA:hover{
    cursor:pointer;
}
.linkIA {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
    a.linkIA:focus {
        background: #1580c2;
    }
.linkIA.ADVERGAMING {
    background-image: url(/images/IA/advergaming.png);
}
.linkIA.CONTACTO {
    background-image: url(/images/IA/contacto.png);
}
.linkIA.SOCIAL.MEDIA {
    background-image: url(/images/IA/social.png);
}
.linkIA.CREATIVIDAD.PUBLICITARIA {
    background-image: url(/images/IA/social.png);
}
.linkIA.ECOMMERCE {
    background-image: url(/images/IA/ecommerce.png);
}
.linkIA.WEBAPPS {
    background-image: url(/images/IA/site.png);
}
.linkIA.EXTERIOR.INTERACTIVO {
    background-image: url(/images/IA/exterior.png);
}
.linkIA.EVENTOS {
    background-image: url(/images/IA/eventos.png);
}
.linkIA.LIVE.STREAMING {
    background-image: url(/images/IA/streaming.png);
}
.linkIA.INTELIGENCIA.ARTIFICIAL {
    background-image: url(/images/IA/iaMini.png);
}
.linkIA.undefined{
    display:none;
}
.linkIA.APLICACIONES.DE.NEGOCIO {
    background-image: url(/images/IA/negocio.png);
}
.linkIA.FEEDBACK {
    background-image: url(/images/IA/feedback.png);
}
.linkIA.CLIMA.LABORAL {
    background-image: url(/images/IA/feedback.png);
}
.linkIA.GAMIFICACION {
    background-image: url(/images/IA/gamificacion.png);
}
.linkIA.SOLICITUD.DE.PRESUPUESTO {
    background-image: url(/images/IA/contacto.png);
}
.linkIA.KIT.DIGITAL {
    background-image: url(/images/IA/contacto.png);
}
.chatIAFooter {
    background: white;
    display: flex;
    padding: 10px 10px 10px 10px;
    justify-content: center;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top: 1px solid black;
}
.chatIAHeader i {
    position: absolute;
    right: 25px;
    top: 20px;
}
div#chatarea {
    position: relative;
}
.chatIAFooter form {
    width: 85%;
}
.chatIAFooter textarea {
    height: 45px;
    width: 95%;
    resize: none;
    font-size: 15px;
}
input#preguntaIA {
    height: 50px;
    padding: 10px 10px 10px 10px;
    width: 80%;
    border: none;
}
img#fotoIA {
    width: 85px;
    border: 4px solid white;
    border-radius: 45px;
    position: absolute;
    left: 25px;
    top: -35px;
}
img#ampliarIA {
    width: 25px;
}
img#cerrarrIA {
    width: 25px;
}
img#audioIA {
    width: 25px;
}
.linkIA {
    width: 50%;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px 10px 15px 10px;
    background: #1580c2;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-width: 195px;
}
    .linkIA:hover{
        cursor:pointer;
    }
    p#nombreIA {
        font-size: 25px;
        color: white;
        line-height: 18px;
        margin-left: 130px;
    }
.humanText {
    color: #1380C3;
    font-size: 17px;
    font-weight: bold;
    text-align:right;
}
.robotText {
    margin: 10px 0px 10px 0px;
    font-size: 16px;
    color: #636363;
    line-height: 21px;
}
img#enviarPreguntaIA:hover, #audioIA:hover, img#cerrarrIA:hover {
    cursor: pointer;
}
span#subtituloIA {
    font-size: 15px;
    font-weight: 100;
}
img#enviarPreguntaIA {
    width: 45px;
}

.contenedor {
    position: fixed;
    width: 400px;
    height: 400px;
    right: 15px;
    bottom: 80px;
}

.boton {
    display: inline-block;
    background: black;
    color: white;
    padding: 30px;
}

.contenido {
    background-color: aqua;
    width: 100%;
    HEIGHT: 100%;
}

.particles {
    position: relative;
    grid-area: 1 / 1 / 2 / 2;
}
.contenedorIA {
    position: fixed;
    z-index: 22222222222222222222;
    bottom: 95px;
    height: auto;
    width: 480px;
    right: 70px;
    
    border-radius: 30px;
}

.particles-canvas {
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
}

.particles-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    will-change: transform;
    width: 100%;
    height: 100%;
}


.chatIABody {
    /* height: 59%; */
    background: white;
    position: relative;
    height: 100%;
    padding: 10px 20px 10px 20px;
    overflow: auto;
    scrollbar-color: green;



}
.humanBox {
    margin-top: 10px;
}

    .chatIABody::-webkit-scrollbar {
        height: 12px;
        width: 12px;
        background: #fff;
    }

    .chatIABody::-webkit-scrollbar-thumb {
        background: #C3E40D;
    }

    .chatIABody::-webkit-scrollbar-corner {
        background: #000;
    }

.chatIAHeader {
    display: flex;
    background: #1580C2;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    align-items: center;
    gap: 30px;
    position: relative;
    min-height: 65px;
    color: white;
}

@media (max-height: 750px){
    .contactIA {
        max-height: 75vh;
    }
    img#btnIA {
        width: 25px;
    }
}
@media (max-width: 1000px) {
    img#btnIA {
        width: 25px;
    }
}

@media (max-width: 600px) {
    .chatIAHeader {
        gap: 15px;
    }
    .callBtnPosition {
        bottom: 100px;
        right: 25px;
        z-index: 900;
    }
    img#btnIA {
        width: 23px;
    }
    img#audioIA {
        width: 20px;
    }
    .contenedorIA {
        position: fixed;
        z-index: 22222222222222222222;
        top: 30px;
        height: 80vh;
        width: 98vw;
        right: 0;
        border-radius: 30px;
        left: 0;
    }
    .contactIA {
        width: 100%;
        height: 90vh;
        bottom: 85px;
        right: 0px;
        margin: auto;
        z-index: 1000;
        /* box-shadow: 0px 0px 9px 4px #1580c2; */
        /* border-radius: 25px; */
        /* transition: 250ms; */
        display: flex;
        flex-direction: column;
    }
    .botonesIA {
        height: 53px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width:95%;
        margin:auto;
        /* position: absolute; */
        bottom: 0;
        right: 21px;
        margin-right: 10px;
    }
    .particles-canvas {
        position: absolute;
        pointer-events: none;
        /* height: 97%; */
        /* top: 48%; */
        /* width: 100%; */
        /* left: 50%; */
        transform: translate3d(-50%,-50%,0);
    }
    .chatIAContaier {
        height: 85% !important;
        width: 95%;
        margin-left: auto;
        max-height: unset;
        margin-bottom: 0px;
        margin-right: auto;
        margin-top: 35px;
        left: 0;
        right: 0;
    }
    img#ampliarIA {
        display: none;
    }
    img#cerrarrIA {
        width: 20px;
        margin-right: 20px;
    }
    span#subtituloIA {
        font-size: 11px;
        white-space: nowrap;
    }
    p#nombreIA {
        font-size: 20px;

    }
}

.callBtn img {
    -webkit-animation: flashAnimation 3s infinite;
    animation: flashAnimation 3s infinite;
}
.callBtnPosition.IA .callBtn {
    -webkit-animation: pulseRadiosAnimation linear 1s infinite;
    animation: pulseRadiosAnimation linear 1s infinite;
}

@-webkit-keyframes pulseRadiosAnimation {
    0% {
        box-shadow: 0 8px 10px rgba(171,204,116,0.3),0 0 0 0 rgba(171,204,116,0.2),0 0 0 0 rgba(171,204,116,0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(171,204,116,0.3),0 0 0 15px rgba(171,204,116,0.2),0 0 0 0 rgba(171,204,116,0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(171,204,116,0.3),0 0 0 30px rgba(171,204,116,0),0 0 0 26.7px rgba(171,204,116,0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(171,204,116,0.3),0 0 0 30px rgba(171,204,116,0),0 0 0 40px rgba(171,204,116,0.0)
    }
}

@keyframes pulseRadiosAnimation {
    0% {
        box-shadow: 0 8px 10px rgba(171,204,116,0.3),0 0 0 0 rgba(171,204,116,0.2),0 0 0 0 rgba(171,204,116,0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(171,204,116,0.3),0 0 0 15px rgba(171,204,116,0.2),0 0 0 0 rgba(171,204,116,0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(171,204,116,0.3),0 0 0 30px rgba(171,204,116,0),0 0 0 26.7px rgba(171,204,116,0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(171,204,116,0.3),0 0 0 30px rgba(171,204,116,0),0 0 0 40px rgba(171,204,116,0.0)
    }
}

@keyframes flashAnimation {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes flashAnimation {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/***********************************************************************/
/*4. NAV BAR: LOGO + MENÚ BURGUER ***************************/
/***********************************************************************/
.separatorSections{
    height:60px;
    width:100%;
}
.navBar {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 5%;
    box-sizing: border-box;
    width: 100%;
    /*max-width: 2048px;*/
    transition: transform 0.4s ease-in-out;
}
.h80{
    min-height:80px;
}
.h60 {
    min-height: 60px;
}
.logoHeader {
    height: 60px;
    transition: linear all 0.5s;
}

@media(max-width:500px){
    .logoHeader {
        height: 50px;
        transition: linear all 0.5s;
    }
}


.navBar.navBarOpaca {
    background-color: #00000066;
    padding: 0 5%;
}
.bgTransparente {
    background-color: transparent!important;
}


    .navBar.navBarOpaca .logoHeader {
        height: 40px;
    }
@media(max-width:500px) {
    .navBar.navBarOpaca .logoHeader {
        height: 35px;
    }
}


.idiomasLandscape .linkIdioma {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.3em;
}

    .idiomasLandscape .linkIdioma:hover {
        color: #c0e135
    }


    .idiomasLandscape .linkIdioma.active {
        color: #c0e135
    }

.idiomasMobile .linkIdioma {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.3em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-gap: 10px;
    align-items: center;
    opacity: 0.6;
}

    .idiomasMobile .linkIdioma:hover {
        opacity: 1;
        color: #ffffff;
    }

    .idiomasMobile .linkIdioma.active {
        opacity: 1;
    }

    .gapIdiomas{
        grid-gap:20px;
    }
.gapIdomasBurger{
    grid-gap:10px;
}
/*.idiomasLandscape{
    display:none;
}*/
/*.idiomasMobile {
    display: block;
    margin-bottom:30px;
}*/
@media(orientation:landscape) and (min-width:900px) {
    /*.idiomasLandscape {
        display: block;
    }*/
    /*.idiomasMobile {
        display: none;
    }*/
    .gapIdiomas {
        grid-gap: 30px;
    }
    .gapIdomasBurger {
        grid-gap: 50px;
    }
}
/**********************burguer ICON  animation**********************************/
svg {
    height: 60px;
    position: absolute;
    width: 60px;
}

@media (max-width: 640px) {
    .plates {
        width: 320px;
    }
}

.burgerMenu {
    height: 60px;
    width: 60px;
}

.burger {
    /*filter: url(#gooeyness);*/
}

.x {
    transform: scale(0);
    transition: transform 400ms;
}

.line {
    fill: none;
    stroke: #ffffff;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: 50%;
    transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
}

.x .line {
    stroke-width: 5.5px;
}

.burgerMenu .line2 {
    stroke-dasharray: 40 200;
    stroke-dashoffset: 0px;
}

.burgerMenu .line3 {
    stroke-dasharray: 40 179;
    stroke-dashoffset: 0px;
}

.active .line {
    transition: stroke-dasharray 500ms, stroke-dashoffset 500ms, transform 500ms;
}

.active.burgerMenu .line1 {
    transform: scale(0, 1);
    transition: transform 500ms 100ms;
}

.active.burgerMenu .line2 {
    stroke-dasharray: 5px 200;
    stroke-dashoffset: -164px;
}

.active.burgerMenu .line3 {
    stroke-dasharray: 5px 179;
    stroke-dashoffset: -142px;
}

.active .x {
    transform: scale(1);
    transition: transform 400ms 350ms;
}



/**********************overlay MENU ANIMATION **********************************/
.overlayMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s, width 0.5s;
    z-index: 50;
}


    .overlayMenu:before {
        content: "";
        background: #0680c2;
        left: -55%;
        top: 0;
        width: 50%;
        height: 100%;
        position: absolute;
        transition: left 0.35s ease;
    }

    .overlayMenu:after {
        content: "";
        background: #0680c2;
        right: -55%;
        top: 0;
        width: 50%;
        height: 100%;
        position: absolute;
        transition: all 0.35s ease;
    }

    .overlayMenu.open:before {
        left: 0;
    }

    .overlayMenu.open {
        opacity: 1;
        visibility: visible;
        height: 100%;
    }

    .overlayMenu.open:after {
        right: 0;
    }

.contentMenu {
    position: relative;
}

.positionMenu {
    position: absolute;
    z-index: 99999;
    opacity: 0;
    transition: all 0.2s linear;
   
}

.overlayMenu.open .positionMenu{

    position: absolute;
    z-index: 99999;
    opacity: 1;
}

.menu{
    opacity:0;
}
.overlayMenu.open .positionMenu .menu {
    opacity: 1;
    transition: all 1s linear;
    transition-delay:0.4s;
}

/***********************************************************************/
/* 5. FOOTER ***************************/
/***********************************************************************/
footer {
    background-color: #3b7cb5;
    padding: 20px 5%;
}


    footer i {
        font-size: 25px;
        color: #3b7cb5;
    }

  .circleFooter{
      background-color:#ffffff;
      width:50px;
      height:50px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      border-radius:100%;
  }  

  .footer a{
      color:#ffffff;
  }



/*DISPOSITIVOS NO TOUCH*/

@media (hover: hover) {
    footer i:hover {
        font-size: 30px;
        color: #c3e40d;
    }

    .callBtn:hover {
        background-color: #3b7fbd;
    }
}

/*pantallas de pc*/

@media screen and (orientation:landscape) and ( min-width:1000px) {
    .callBtnPosition {
        bottom: 80px;
        right: 60px;
    }

    a.callBtnPosition.IA {
        bottom: 110px;
    }

    .callBtn {
        font-size: 24px;
        width: 60px;
        height: 60px;
    }
}


/*********************************************************************************************/
/*6. CLASES DE ESTRUCTURA GENERAL ( COLUMNAS, ROWS...) ****************************************/
/*********************************************************************************************/

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.gap10 {
    grid-gap: 10px;
}

.gap20 {
    grid-gap: 20px;
}

.gap30 {
    grid-gap: 20px;
}
.gap40 {
    grid-gap: 40px;
}
.gap50 {
    grid-gap: 50px;
}

.nowrap {
    flex-wrap: nowrap;
}

.row-space-between {
    justify-content: space-between;
}

.centerVerticalHorizontal{
    display:flex;
    justify-content:center;
    align-items:center;
}
.col-space-beetween {
    justify-content: space-between;
}
.col-space-evenly {
    justify-content: space-evenly;
}

.row-space-evenly {
    justify-content: space-evenly;
}

.row-flex-end {
    justify-content: flex-end;
}

.rowCenter {
    justify-content: center;
}

.rowCenterVertical {
    align-items: center;
}

.h100pc {
    height: 100%;
}
.w100{
    width:100%;
}
.flex1 {
    flex: 1;
}

.colTextLeft {
    align-items: flex-start;
}

.colTextCenter {
    align-items: center;
}

.colTextRight {
    align-items: flex-end;
}

.colVerticalTop {
    justify-content: flex-start;
}

.colVerticalCenter {
    justify-content: center;
}

.colVerticalBottom {
    justify-content: flex-end;
}



.col, .col-7, .col-8, .col-10, .col-11 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col-md, .col-md-7, .col-md-8, .col-md-10, .col-md-11 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.col {
    flex: 1
}

.col-7 {
    flex: 1.5
}


.col-8 {
    flex: 2
}

.col-10 {
    flex: 3.3;
}

.col-11 {
    flex: 4;
}

/*pantallas de pc*/

@media screen and (orientation:landscape) and ( min-width:1000px) {
    .col-md {
        flex: 1
    }

    .col-md-7 {
        flex: 1.5
    }


    .col-md-8 {
        flex: 2
    }

    .col-md-10 {
        flex: 3.3;
    }

    .col-md-11 {
        flex: 4;
    }
}






/**********************************************************************************/
/*7. CLASES DE ANCHOS, MÁRGENES, PADDINGS....  *********************/
/*********************************************************************************/

.rwd {
    max-width: 100%;
    height: auto;
}

.mauto {
    margin: auto;
}

.mlrauto {
    margin-left: auto;
    margin-right: auto;
}
.ml10{
    margin-left:10px;
}
.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt30Pc10Mv {
    margin-top: 30px;
}

.mt60Pc30Mv {
    margin-top: 60px;
}

.pb30{
    padding-bottom:30px;
}
.mb20{
    margin-bottom:20px;
}

@media(orientation:portrait) and (max-width:600px){
    .mt30Pc10Mv {
        margin-top: 10px;
    }

    .mt60Pc30Mv {
        margin-top: 30px;
    }
}
@media(orientation:landscape) and (max-width:1000px) {
    .mt30Pc10Mv {
        margin-top: 10px;
    }

    .mt60Pc30Mv {
        margin-top: 30px;
    }
}

.mt60 {
    margin-top: 60px;
}

.p0{
    padding:0!important;
}



/**********************************************************************/
/* 8. CLASES PARA TEXTOS, COLORES DE FONDO  *****************************/
/************************************************************************/

a {
    text-decoration: none;
    color: #c0e135
}

.iaLink {
    color: #c0e135 !important;
    font-size:0.8em;
}
.iaLink:hover {
    color: #c0e135 !important
}

  

a.whiteA{
    color:#ffffff;
}
    a.whiteA:hover {
        color: #c3e40d;
    }
.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.uppercase {
    text-transform: uppercase;
}

.whiteColor {
    color: #ffffff !important;
}
.redColor{
    color:red;
}
.orangeColor{
    color:orange;
}
.greyColor {
    color: #646769
}

.mainColor {
    color: #c3e40d!important;
}

.secondaryColor {
    color: #3b7fbd;
}
.greenColor {
    color: #c3e40d!important;
}
/*verde*/
.primaryBackground {
    background-color: #c3e40d;
}
/*azul*/
.secondaryBackground {
    background-color: #3b7fbd;
}


.psmall{
    font-size:0.8em;
}
/**********************************************************************/
/* 9. ELEMETOS botones **********************************************/
/***********************************************************************/

.btn {
    border-radius: 0;
    width: fit-content;
    padding: 0px 20px;
    min-height: 50px;
    display: flex;
    flex-direction: row;
    grid-gap: 8px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px
}

.btn-primary {
    background-color: #ffffff33;
    color: white;
}

.btn-secondary {
    background-color: #c3e40d;
    color: white;
}

.btn-blog1 {
    background-color: #ffffffee!important;
    color: #bee10e!important;
}

.btn-blog2 {
    background-color: #ffffffdd !important;
    color: #7ac41a !important;
}

.btn-blog3 {
    background-color: #ffffffdd !important;
    color: #0680c2 !important;
}






  









/*para pantallas de pc*/
@media screen and (orientation:landscape) and ( min-width:1000px) {
    .btn {
        font-size: 1.2vw;
        padding: 0px 30px;
    }
}

/*para móviles landscape*/
@media screen and (orientation:landscape) and ( max-width:1000px) and (max-height:500px) {
    .btn {
        min-height: 30px;
        font-size: 12px
    }
}

/**********************************************************************************************/
/* 10 . HOME: SECCIÓN INCIAL (EDIFICIOS + LOGOS )  **********************************************/
/*************************************************************************************************/

.sectionHeader {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    background-color: #FFFFFF;
}
/*para móviles landscape*/
@media screen and (orientation:landscape) and ( max-width:1000px) and (max-height:500px) {
    .sectionHeader {
        height: 200%;
    }
}


.containerBuilding {
    flex-direction: column;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position:relative;
    background-color: #000000;
}

.containerCabeceraLegales{
    flex-direction: column;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-color: #c3e40d;
}

.canvasSize {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: block;
}

.positionTextoCabecera {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index:2;
}
.containerTextCabecera {
    width: 90vw;
    color: #ffffff;
}

.sectionLogosHeader {
    height: auto;
    background-color: #222629;
    overflow: hidden;
    /*padding: 40px 0 10px 0;*/
    padding: 10px 0 10px 0;
    z-index:2;
}

.separatorLineShort {
    width: 50vw;
    height: 2px;
    background-color: #646769;
    margin: 0 auto;
}

.arrowBottom {
    margin: auto;
    width: 30px;
    height:30px;
    font-size: 30px;
    -webkit-animation: flashAnimation 2s infinite;
    animation: flashAnimation 2s infinite;
    margin-top:30px;

}


#sliderLogos .swiper-slide {
    width: auto;
}

#sliderLogos .swiper-wrapper {
   transition-timing-function: linear!important;
   align-items:center;
   
}

.logoCliente {
    /*max-width: 70%;*/
    max-width:100%;
}

  




    .titleCabecera {
        font-size: 50px;
        font-family: 'Poppins';
        font-weight: 900;
        color: #000000;
        text-transform: uppercase;
        line-height: 1em;
    }
    /*video fondo*/
    #myVideo {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    /*para pantallas de pc*/
    @media screen and (orientation:landscape) and ( min-width:800px) {
        .containerTextCabecera {
        width: 60vw;
    }

    .titleCabecera {
        font-size: 5vw;
       
    }
}
@media screen and (orientation:landscape) and ( min-width:1100px) {
    .containerTextCabecera {
        width: 40vw;
    }

    .titleCabecera {
        font-size: 5vw;
    }
}
@media screen and (orientation:landscape) and ( max-height:700px) {
    .containerTextCabecera {
        width: 55vw;
    }
}

@media screen and (orientation:portrait) and ( min-width:600px) {
    .containerTextCabecera {
        width: 70vw;
    }
}


/**********************************************************************************************************/
/* 12 . HOME: SECCIONES GENERALES DE LA HOME  (QUE SE REPITEN: MARKETING, ACTTIVACIÓN DIGITAL.. )  ********/
/*SECCIONES : MENU VERTICAL + SLIDER*************************** ****************/
/*********************************************************************************************************/

.sectionHome {
    display: flex;
    flex-direction: row;
    flex: 1;
    height: 100%;
    background-color: #FFFFFF;
}

/*para móviles landscape*/
@media screen and (orientation:landscape) and ( max-width:1000px) and (max-height:500px) {
    .sectionHome {
        display: flex;
        flex-direction: row;
        flex: 1;
        min-height: 200%;
        background-color: #FFFFFF;
    }
}

@media(orientation:portrait)  {


    .sectionHomeLarge {
        height: 120%;
    }
}


@media(orientation:portrait) and (max-height:700px) {


    .sectionHomeLarge {
        height: 140%;
    }
}

.containerSectionHome {
    padding: 20px 0px;
    width: 100%;
    display:flex;
    flex-direction:column;
}

.colPastilla {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 0 0 3vw;
    height: 9vw;
}

.titleSection {
    font-family: 'Poppins';
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1em;
}


.submenuSection {
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    margin-top: 30px;
}

    .submenuSection a {
        font-family: 'Poppins';
        font-weight: 600;
        color: #919699;
        text-transform: uppercase;
        font-size: 20px;
        line-height: 1em;
    }

    .nameMedialabs{
        font-family: 'Poppins';
        font-weight: 400;
        color: #000000;
        text-transform: uppercase;
        font-size: 20px;
        line-height: 1em;
    }

.nameMedialabsCabecera {
    font-weight: 900;
    font-size: 28px;
    color:#ffffff;
}

.pbArrowNext {
    padding-bottom: 20%;
    animation: flashAnimation 2s infinite;
}



    /*.pbArrowNext .titleSection {
        color: #919699;
    }*/

/*DISPOSITIVOS NO TOUCH*/
a.btn-primary {
    color: #ffffff;
    transition:all linear 0.5s;
}
@media (hover: hover) {
    a.subtitularForm:hover {
        color: #c3e40d;
    }
    .submenuSection a:hover {
        color: #000000;
        background-color:#ffffff;
    }
    a.btn-primary:hover {
        color: #3b7fbd;
        background-color: #ffffff
    }
}

.submenuSection a.active {
    color: #000000;
}

@media(orientation:portrait) {
    .heightSliderPortraitandMobileLandandMobileLand {
        height: 50%;
    }
    .pbArrowNext {
        padding-bottom: 20px;
    }
}
@media(orientation:portrait) and (max-height:700px) {
  
    .pbArrowNext {
        padding-bottom: 10px;
    }

   
}

@media(orientation:portrait) and (min-height:1100px) {
    .heightSliderPortraitandMobileLandandMobileLand {
        height: 60%;
    }

   
}

/*landscape bajitos*/


@media screen and (orientation:landscape) and ( max-height:700px){
    .pbArrowNext {
        padding-bottom: 10px;
    }
}


/*para móviles landscape*/

@media screen and (orientation:landscape) and ( max-width:1000px) and (max-height:500px) {
    .heightSliderPortraitandMobileLandandMobileLand {
        height: 40%;
    }
}

.containerSliderSection {
    overflow: hidden;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.slideSubmenu {
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  
}


/*zoom out al hacer hover sobre slide*/

.zoom-out::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    background-size: cover;
    transform-origin: center;
    transition: transform 0.4s ease-in-out;
}


.zoom-out::after {
    transform: scale(1.05);
}

.zoom-out:focus::after, .zoom-out:hover::after {
    transform: scale(1);
}


/*destelle diagonal al hacer hover sobre slide (Effect 1)*/

.slideSubmenuHoverEffect1::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 3;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}


.slideSubmenu:hover > .slideSubmenuHoverEffect1::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 100%;
    }
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

.slidetitle {
    font-family: 'Poppins';
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1em;
    transition: linear font-size 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    width: fit-content;
}

.slideSubmenu:hover > .slidetitle {
    font-size: 32px;
}


/*circulo al hacer hover sobre slide (Effect 2)*/


.slideSubmenuHoverEffect2::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255,255,255,.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.slideSubmenu:hover > .slideSubmenuHoverEffect2::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}



.iconOpenCloseMoreInfo:before {
    position: absolute;
    top: 3%;
    right: 5%;
    font-size: 30px;
    color: #ffffff;
    z-index: 4;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\2b";
}

.iconOpenCloseMoreInfo.open:before {
    content: "\f068";
}



.swiper.sliderSubmenu {
    height: 100%;
}


/*Capa más info de cada slide*/

.moreInfoLayer {
    background-color: #3b7fbd;
    position: absolute;
    top: 0;
    left: -100%;
    transition: linear left 0.5s;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 6% 12%;
    box-sizing: border-box;
    grid-gap: 20px;
    color: #ffffff;
}

    .moreInfoLayer.open {
        left: 0
    }

    .moreInfoLayer .title {
        font-size: 20px;
        font-weight: 900;
        line-height: 1.1em;
    }

    .moreInfoLayer .subtitle {
        font-size: 16px;
        line-height: 1.1em;
    }

    .moreInfoLayer .parrafoMoreInfoLayer p {
        line-height: 1.3em;
        font-size: 14px;
    }

.parrafoMoreInfoLayer {
    overflow-y: auto;
    padding: 10px 0px;
}

    .parrafoMoreInfoLayer::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #eee;
    }

    .parrafoMoreInfoLayer::-webkit-scrollbar {
        width: 6px;
        background-color: #ffffff22;
    }

    .parrafoMoreInfoLayer::-webkit-scrollbar-thumb {
        background-color: #ffffffff;
        border: 0px solid #ffffffff;
    }


@media screen and (orientation:landscape) and ( min-width:1000px) {
    .containerSectionHome {
        padding: 60px 0px;
    }

    .colPastilla {
        flex: 0 0 3vw;
        height: 9vw;
    }

    .titleSection {
        font-size: 3vw;
    }

    .iconOpenCloseMoreInfo:before {
        font-size: 3vw;
    }

    .submenuSection a {
        font-size: 1.2vw;
    }
    .nameMedialabs {
        font-size: 1.2vw;
    }
    .nameMedialabsCabecera {
        font-size: 2.2vw;
    }
    .slidetitle {
        font-size: 4vw;
    }

    .slideSubmenu:hover > .slidetitle {
        font-size: 4.3vw;
    }

    .moreInfoLayer .title {
        font-size: 2.5vw;
    }

    .moreInfoLayer .subtitle {
        font-size: 1.5vw;
    }

    .moreInfoLayer .parrafoMoreInfoLayer p {
        font-size: 16px;
    }

    .containerSliderSection {
        max-width: 66vw;
    }
}

/*para móviles landscape*/

@media screen and (orientation:landscape) and ( max-width:1000px) and (max-height:500px) {
    .moreInfoLayer {
        padding: 2% 8%;
        grid-gap: 10px;
    }
}
/*para móviles portrait*/
@media screen and (orientation:portrait) and ( max-width:500px)  {
    .moreInfoLayer {
        padding: 4% 10%;
        grid-gap: 10px;
    }
    
}


/*MARKETING DIGITAL*/

.advergamingBg {
    background-image: url("../../images/marketingDigital/1.jpg");
}

.disruptiveSocialMediagBg {
    background-image: url("../../images/marketingDigital/2.jpg");
}

.eCommerceBg {
    background-image: url("../../images/marketingDigital/3.jpg");
}

.sitesWebsAppsBg {
    background-image: url("../../images/marketingDigital/4.jpg");
}

.liveStreamingBg {
    background-image: url("../../images/marketingDigital/5.jpg");
}

.publiExteriorIntercBg {
    background-image: url("../../images/marketingDigital/6.jpg");
}

.actDigitalEventosBg {
    background-image: url("../../images/marketingDigital/7.jpg");
}


/*INTELIGENCIA ARTIFICIAL*/
.lenguajeIABg {
    background-image: url("../../images/inteligenciaArtificial/1.jpg");
}

.visionIABg {
    background-image: url("../../images/inteligenciaArtificial/2.jpg");
}
.creatividadVisualBg {
    background-image: url("../../images/inteligenciaArtificial/3.jpg");
}
/*APLICA- CIONES DE NEGOCIOH*/
.crmAndErpBg {
    background-image: url("../../images/aplicacionesDeNegocio/1.jpg");
}

.extranetsBg {
    background-image: url("../../images/aplicacionesDeNegocio/2.jpg");
}

.fidelizacionBg {
    background-image: url("../../images/aplicacionesDeNegocio/3.jpg");
}


/*GESTIÓN DE TALENTO*/

.feedback360Bg {
    background-image: url("../../images/gestionDeTalento/1.jpg");
}

.climaLaboralBg {
    background-image: url("../../images/gestionDeTalento/2.jpg");
}

.gamificacion2Bg {
    background-image: url("../../images/gestionDeTalento/3.jpg");
}

.portalEmpleoBg {
    background-image: url("../../images/gestionDeTalento/4.jpg");
}


/**********************************************************************************************/
/***************  13 . HOME: I+D+I  **********************************************/
/************************************************************************************************/

.content__left h1 {
    max-width: 90%;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 3.8vw;
    text-transform: uppercase;
}
.content__right .content__main p:last-child {
    text-transform: none;
    letter-spacing: 0.15em;
    font-size: 0.85em;
}

/*responsive slider i+d+i*/
@media ( max-width:1000px) {
    .spinner {
        width: calc(100vw);
        height: calc(50vh);
    }

    .spinner--right {
        right: 0;
        left: auto;
        top: 50vh;
    }

    .carousel__stage {
        left: 0;
        right: 0;
        bottom:unset;
    }
    .content__left {
        background-repeat: no-repeat;
        background-size: cover;
        padding:100px;
        top: 30%;
    }
        .content__left h1 {
            font-size: 30px;
            line-height: 35px;
            height: auto;
         
        }

        .content__left span {
            font-size: 14px;
            line-height: 16px;
            height: 30px;
        }

    .content__right .content__main {
        font-size: 14px;
        line-height: 16px;
    }
    .carousel__control {
      
        width: 60px;
        background:#ffffff88;
       
    }

    .content__right .content__index {
        font-size: 20vh;    
        top: 20vh;
        
    }
}

@media ( max-width:500px) {
  
   

   

    .content__left {
        top: 20%;
    }

     
}
/**********************************************************************************************/
/***************  14 . HOME: SECCIONES HABLAMOS  **********************************************/
/************************************************************************************************/




.sectionHablamos {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    background-color: #FFFFFF;
    justify-content: center;
    align-items: center;
}

.container50vhHablamos {
    min-height: 50vh;
}



.titularHablamos {
    font-family: 'Poppins';
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    font-size: 45px;
    line-height: 1em;
   
}
.hoverGreen:hover h2 {
    transition: all linear 0.3s;
}
.hoverGreen:hover h2 {
    color: #c3e40d;
}

.mano {
    margin-top: 15vh;
    animation-duration: 2s;
    animation-name: slidein;
    animation-iteration-count: infinite;
}

@keyframes slidein {
    from {
        margin-top: 15vh;
    }

    to {
        margin-top: 20px;
    }
}



.hablamoFormLayer {
    position: fixed;
    top: 100%;
    /*left: 100%;*/
    left: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background-color: red;
    width: 100%;
    height: 100%;
    transition: linear top 0.5s;
    background-image: url("../../images/hablamos/fondo-hablamos.jpg");
    background-size: cover;
    padding: 6vh 25px;
    box-sizing: border-box;
}

    .hablamoFormLayer.open {
        /*left: 0;*/
        left: 0;
        top:0;
    }





    .ptb6vh{padding:6vh 0;}

.scrollLayerHablamos {
    overflow-y: auto;
   
}

    .scrollLayerHablamos::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #eee;
    }

    .scrollLayerHablamos::-webkit-scrollbar {
        width: 6px;
        background-color: #ffffff22;
    }

    .scrollLayerHablamos::-webkit-scrollbar-thumb {
        background-color: #c3e40d;
        border: 0px solid #c3e40d;
    }

.titularForm {
    font-size: 30px;
    font-family: 'Poppins';
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1em;
}

.subtitularForm {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 300;
    color: #ffffff;
    line-height: 1em;
}

.closeFormIcon {
    font-size: 30px;
}

.pForm {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 300;
    line-height:1.2em;
}


form input,
form span,
form label,
form textarea {
    font-family: 'poppins', sans-serif;
    display: block;
    margin: 10px;
    padding: 5px;
    border: none;
    font-size: 20px;
}



textarea:focus,
input:focus {
    outline: 0;
}
/* Question */

input.question,
textarea.question {
    /*font-size: 28px;*/
    font-size: 18px;
    font-weight: 300;
    border-radius: 2px;
    margin: 0;
    border: none;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    transition: padding-top 0.2s ease, margin-top 0.2s ease;
    overflow-x: hidden; /* Hack to make "rows" attribute apply in Firefox. */
    color: #ffffff;
}
    /* Underline and Placeholder */

    input.question + label,
    textarea.question + label {
        display: block;
        position: relative;
        white-space: nowrap;
        padding: 0;
        margin: 0;
        /*width: 10%;*/
        width: 100%;
        border-top: 1px solid #3b7cb5;
        -webkit-transition: width 0.4s ease;
        transition: width 0.4s ease;
        height: 0px;
    }

    input.question:focus + label,
    textarea.question:focus + label {
        width: 80%;
    }

    input.question:focus/*,
    input.question:valid*/ {
        padding-top: 25px;
    }

    /*textarea.question:valid,*/
    textarea.question:focus {
        margin-top: 25px;
    }

    input.question:focus + label > span /*,
    input.question:valid + label > span*/ {
        /*top: -60px;*/
        top: -60px;
        font-size: 15px;
        color: #c3e40d;
    }

    textarea.question:focus + label > span /*,
   textarea.question:valid + label > span*/ {
        /*top: -150px;*/
        top: -125px;
        font-size: 18px;
        color: #c3e40d;
    }

    /*input.question:valid + label,
    textarea.question:valid + label {
        border-color: #c3e40d;
    }*/

    input.question:invalid,
    textarea.question:invalid {
        box-shadow: none;
    }

    input.question + label > span,
    textarea.question + label > span {
        font-weight: 300;
        margin: 0;
        position: absolute;
        color: #ffffff;
        /*font-size: 28px;*/
        font-size: 20px;
        /*top: -36px;*/
        top: -60px;
        left: 0px;
        z-index: -1;
        -webkit-transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
        transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
        color: #3b7cb5;
        font-size: 18px;
    }

input[type="submit"] {
    border-radius: 0;
    width: fit-content;
    padding: 0px 60px;
    min-height: 50px;
    display: flex;
    flex-direction: row;
    grid-gap: 8px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    background-color: #c3e40d;
    color: #222629;
    transition:all linear 0.5s;
    border:0;
}

    input[type="submit"]:hover {
        background: #3b7fbd;
    }

    input[type="submit"]:active {
        background: #3b7fbd;
    }

/*para pantallas de pc*/
@media screen and (orientation:landscape) and ( min-width:1000px) {
    .titularForm {
        font-size: 4.3vw;
    }
    .subtitularForm {
        font-size: 2vw;
        
    }

    .closeFormIcon {
        font-size: 3vw;
    }
    .pForm {
        font-size: 1.4vw;
    }


    .hablamoFormLayer {
     
        padding: 6vh 15vw;
       
    }
    .titularHablamos {
       
        font-size: 8vw;
      
    }
    input[type="submit"] {
      
        min-height: 80px;    
        font-size: 24px;
      
    }



}

/*para tablets portrait*/

@media screen and (orientation:portraits) and ( min-width:800) {
    

    .titularHablamos {
        font-size: 10vw;
    }

   
}

/**********************************MORE INFO FORM LAYER*************/
.moreInfoFormLayer {
    position: fixed;
    top: 0;
    right: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background-color: red;
    width: 100%;
    height: 100%;
    transition: linear right 0.5s;
    background-image: url("../../images/hablamos/fondo-hablamos.jpg");
    background-size: cover;
    padding: 6vh 25px;
    box-sizing: border-box;
}

    .moreInfoFormLayer.open {
        right: 0;
    }

/*para pantallas de pc*/
@media screen and (orientation:landscape) and ( min-width:1000px) {

    .moreInfoFormLayer {
        padding: 6vh 15vw;
    }

   
}


.infoEnvio {
 
    position: absolute;
    background-color: #000000dd;
    padding: 20px;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*p.textoInfoEnvio {
    color: #ffffff;
    margin-top:10px;
    text-transform:uppercase;
    font-size:20px;
    font-weight:bold;

  
}*/

.infoEnvio p {
    color: #ffffff;
    margin-top: 10px;
    /*text-transform: uppercase;*/
    font-size: 18px;
    font-weight: bold;
}

/*gif loadin para enviado email*/

.lds-default {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-default div {
        position: absolute;
        width: 6px;
        height: 6px;
        background: #fff;
        border-radius: 50%;
        animation: lds-default 1.2s linear infinite;
    }

        .lds-default div:nth-child(1) {
            animation-delay: 0s;
            top: 37px;
            left: 66px;
        }

        .lds-default div:nth-child(2) {
            animation-delay: -0.1s;
            top: 22px;
            left: 62px;
        }

        .lds-default div:nth-child(3) {
            animation-delay: -0.2s;
            top: 11px;
            left: 52px;
        }

        .lds-default div:nth-child(4) {
            animation-delay: -0.3s;
            top: 7px;
            left: 37px;
        }

        .lds-default div:nth-child(5) {
            animation-delay: -0.4s;
            top: 11px;
            left: 22px;
        }

        .lds-default div:nth-child(6) {
            animation-delay: -0.5s;
            top: 22px;
            left: 11px;
        }

        .lds-default div:nth-child(7) {
            animation-delay: -0.6s;
            top: 37px;
            left: 7px;
        }

        .lds-default div:nth-child(8) {
            animation-delay: -0.7s;
            top: 52px;
            left: 11px;
        }

        .lds-default div:nth-child(9) {
            animation-delay: -0.8s;
            top: 62px;
            left: 22px;
        }

        .lds-default div:nth-child(10) {
            animation-delay: -0.9s;
            top: 66px;
            left: 37px;
        }

        .lds-default div:nth-child(11) {
            animation-delay: -1s;
            top: 62px;
            left: 52px;
        }

        .lds-default div:nth-child(12) {
            animation-delay: -1.1s;
            top: 52px;
            left: 62px;
        }

@keyframes lds-default {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

/***************************************************************************************************************/
/******************************************LOADING intro medialabs*********************************************************************/
/***************************************************************************************************************/
.loading {
    position: fixed;
    top: 0;
    left: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    background-color: #00000000;
    display: flex;
    width: 100%;
    height: 100%;
    flex: 1;
    z-index: 99;
    color: #ffffff;
    /*display: none;*/
    /*background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/images/loading/fondoV2_1.jpg);*/
    animation: opacityLoading 6s linear;
    /*animation-delay:3s;*/
}

@keyframes fondoLoading {
    0% {
        background-image: url(/images/loading/fondoV2_1.jpg);
   

    }

    100% {
        background-image: url(/images/loading/fondoV2_2_opaca.jpg);
      
    }
}
@keyframes opacityLoading {
    0% {
        background-color: #000000ff;
    }

    100% {
        background-color: #00000000;
    }
}

/*capa velada video*/

.overlayTransp {
    background-color: #000000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/*animacion en si en otro documento logoAnimation.css*/



/********************PAGINAS SECUNDARIAS, POLÍTICA DE COOKIES, AVISO LEGAL************************************************************/

.containerSectionSecondaryPage {
    width: 90vw;
    max-width: 1200px;
    margin: 30px auto;
}


.titlePageLegales {
    font-size: 40px;
    font-family: 'Poppins';
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.1em;
    margin-top:80px;
    margin-bottom:30px;
    
}


.subTitlePageLegales {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.1em;
    margin-top: 30px;
    margin-bottom: 10px;
}
.subsubTitlePageLegales {
    font-size:16px;
    font-family: 'Poppins';
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.1em;
    margin-top: 30px;
    margin-bottom: 10px;
}
/*para pantallas de pc*/

@media screen and (orientation:landscape) and ( min-width:1000px) {
   

    .titlePageLegales {
        font-size: 3.4vw;
    }


    .subTitlePageLegales {
        font-size: 1.8vw;
    }
    .subsubTitlePageLegales {
        font-size: 1.2vw;
    }
}
.divListado {
   margin-left:20px;
   /*margin-bottom:20px;*/
}
.divListado p{
    margin-top:20px;
   display:flex;
   flex-direction:row;
   grid-gap:10px;
   flex-wrap:nowrap;
}


/********************************************************************************
    MODAL JUEGO 
*/
/*Capa más info de cada slide*/

.gameLayer {
    position: fixed;
    top: 0;
    right: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background-color: red;
    width: 100%;
    height: 100%;
    transition: linear right 0.5s;
    background-color:#000000ee;
  
    padding: 10px 25px;
    box-sizing: border-box;
}

    .gameLayer.open {
        right: 0
    }


.bgRecreativa {
    width: 512px;
    height: 953px;
    /*background-image: url(/images/recreativa/recreativa.png);*/
    background-image: url(/images/recreativa/recreativaNavidad.png);
    //NAVIDAD background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}
.containerGame {
    margin-top:-15px;
    width: 360px;
    height: 640px;
   
    background-color: #000000;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media screen and (orientation:portrait)  {
    .containerGame {
        border: 0px solid #ffffff;
        flex: 1;
        width: 100%;
        height: 100%;
        margin-top: 0;
    }
    .bgRecreativa {
        background-image: none;
        background-repeat: no-repeat;
        background-size: contain;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        width: 100%;
        height: 100%;
    }
}
@media screen and (orientation:portrait) and (min-width:600px) {
    .containerGame {
        border: 0px solid #ffffff;
        flex: 1;
        width: 100%;
        height: 100%;
        margin-top: 0;
    }
    .bgRecreativa {
        width: 512px;
        height: 953px;
        background-image: url(/images/recreativa/recreativa.png);
        background-repeat: no-repeat;
        background-size: contain;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


.grecaptcha-badge{
    opacity:0;
    z-index:111111;
}


/****************************************************************************/
/*********************PAGE NOT FOUND **************************************/
/****************************************************************************/
.containerPageNotFound {
    flex-direction: column;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-image: url("/images/pageNotFound/404.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.submenuSection.pageNotFound  {
 text-align:left;
}
.submenuSection.pageNotFound a{
    color:#ffffff;
    background-color:none;
    font-weight:400;
    text-decoration:underline;
}
   

    .submenuSection.pageNotFound a:hover {
        color: #c3e40d;
        background-color: transparent !important;
    }
    .line-height_1_2{
        line-height:1.2em;
    }



/******ANIMACIONES********/

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}


.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.loaderGame {
    width: 360px;
    height: 640px;
    background: black;
    position: absolute;
    margin-top: -15px;
    display: flex;
}
img#cargaGIF {
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: auto;
    margin-bottom: auto;
    width: 160px;
}
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
} 

.snow {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    z-index: 9;
    opacity: 0;
}

    .snow:nth-child(1) {
        opacity: 0.6064;
        transform: translate(56.5936vw, -10px) scale(0.1606);
        animation: fall-1 22s -16s linear infinite;
    }

@keyframes fall-1 {
    34.585% {
        transform: translate(57.9903vw, 34.585vh) scale(0.1606);
    }

    to {
        transform: translate(57.29195vw, 100vh) scale(0.1606);
    }
}

.snow:nth-child(2) {
    opacity: 0.0623;
    transform: translate(38.6106vw, -10px) scale(0.3982);
    animation: fall-2 17s -21s linear infinite;
}

@keyframes fall-2 {
    70.443% {
        transform: translate(37.0175vw, 70.443vh) scale(0.3982);
    }

    to {
        transform: translate(37.81405vw, 100vh) scale(0.3982);
    }
}

.snow:nth-child(3) {
    opacity: 0.7242;
    transform: translate(18.1453vw, -10px) scale(0.9984);
    animation: fall-3 10s -24s linear infinite;
}

@keyframes fall-3 {
    71.78% {
        transform: translate(22.1161vw, 71.78vh) scale(0.9984);
    }

    to {
        transform: translate(20.1307vw, 100vh) scale(0.9984);
    }
}

.snow:nth-child(4) {
    opacity: 0.7166;
    transform: translate(59.7326vw, -10px) scale(0.0443);
    animation: fall-4 26s -3s linear infinite;
}

@keyframes fall-4 {
    73% {
        transform: translate(51.3509vw, 73vh) scale(0.0443);
    }

    to {
        transform: translate(55.54175vw, 100vh) scale(0.0443);
    }
}

.snow:nth-child(5) {
    opacity: 0.4818;
    transform: translate(47.3488vw, -10px) scale(0.0922);
    animation: fall-5 20s -19s linear infinite;
}

@keyframes fall-5 {
    38.705% {
        transform: translate(42.8013vw, 38.705vh) scale(0.0922);
    }

    to {
        transform: translate(45.07505vw, 100vh) scale(0.0922);
    }
}

.snow:nth-child(6) {
    opacity: 0.6966;
    transform: translate(82.0968vw, -10px) scale(0.2105);
    animation: fall-6 16s -19s linear infinite;
}

@keyframes fall-6 {
    57.687% {
        transform: translate(83.8295vw, 57.687vh) scale(0.2105);
    }

    to {
        transform: translate(82.96315vw, 100vh) scale(0.2105);
    }
}

.snow:nth-child(7) {
    opacity: 0.1583;
    transform: translate(30.6433vw, -10px) scale(0.633);
    animation: fall-7 17s -27s linear infinite;
}

@keyframes fall-7 {
    32.969% {
        transform: translate(22.2786vw, 32.969vh) scale(0.633);
    }

    to {
        transform: translate(26.46095vw, 100vh) scale(0.633);
    }
}

.snow:nth-child(8) {
    opacity: 0.581;
    transform: translate(11.9714vw, -10px) scale(0.9446);
    animation: fall-8 10s -19s linear infinite;
}

@keyframes fall-8 {
    50.353% {
        transform: translate(6.2107vw, 50.353vh) scale(0.9446);
    }

    to {
        transform: translate(9.09105vw, 100vh) scale(0.9446);
    }
}

.snow:nth-child(9) {
    opacity: 0.5241;
    transform: translate(81.6951vw, -10px) scale(0.0775);
    animation: fall-9 13s -8s linear infinite;
}

@keyframes fall-9 {
    57.565% {
        transform: translate(74.2251vw, 57.565vh) scale(0.0775);
    }

    to {
        transform: translate(77.9601vw, 100vh) scale(0.0775);
    }
}

.snow:nth-child(10) {
    opacity: 0.7246;
    transform: translate(25.7857vw, -10px) scale(0.9998);
    animation: fall-10 24s -25s linear infinite;
}

@keyframes fall-10 {
    51.74% {
        transform: translate(31.8345vw, 51.74vh) scale(0.9998);
    }

    to {
        transform: translate(28.8101vw, 100vh) scale(0.9998);
    }
}

.snow:nth-child(11) {
    opacity: 0.5149;
    transform: translate(92.3636vw, -10px) scale(0.0578);
    animation: fall-11 27s -18s linear infinite;
}

@keyframes fall-11 {
    36.667% {
        transform: translate(99.7436vw, 36.667vh) scale(0.0578);
    }

    to {
        transform: translate(96.0536vw, 100vh) scale(0.0578);
    }
}

.snow:nth-child(12) {
    opacity: 0.9127;
    transform: translate(49.0414vw, -10px) scale(0.8844);
    animation: fall-12 16s -10s linear infinite;
}

@keyframes fall-12 {
    78.832% {
        transform: translate(54.1785vw, 78.832vh) scale(0.8844);
    }

    to {
        transform: translate(51.60995vw, 100vh) scale(0.8844);
    }
}

.snow:nth-child(13) {
    opacity: 0.3398;
    transform: translate(69.7404vw, -10px) scale(0.1702);
    animation: fall-13 11s -27s linear infinite;
}

@keyframes fall-13 {
    75.387% {
        transform: translate(66.2703vw, 75.387vh) scale(0.1702);
    }

    to {
        transform: translate(68.00535vw, 100vh) scale(0.1702);
    }
}

.snow:nth-child(14) {
    opacity: 0.2942;
    transform: translate(78.2498vw, -10px) scale(0.2558);
    animation: fall-14 18s -4s linear infinite;
}

@keyframes fall-14 {
    50.833% {
        transform: translate(77.4161vw, 50.833vh) scale(0.2558);
    }

    to {
        transform: translate(77.83295vw, 100vh) scale(0.2558);
    }
}

.snow:nth-child(15) {
    opacity: 0.9913;
    transform: translate(33.4796vw, -10px) scale(0.971);
    animation: fall-15 18s -4s linear infinite;
}

@keyframes fall-15 {
    68.342% {
        transform: translate(29.8375vw, 68.342vh) scale(0.971);
    }

    to {
        transform: translate(31.65855vw, 100vh) scale(0.971);
    }
}

.snow:nth-child(16) {
    opacity: 0.7887;
    transform: translate(82.2204vw, -10px) scale(0.4834);
    animation: fall-16 14s -27s linear infinite;
}

@keyframes fall-16 {
    54.051% {
        transform: translate(73.4595vw, 54.051vh) scale(0.4834);
    }

    to {
        transform: translate(77.83995vw, 100vh) scale(0.4834);
    }
}

.snow:nth-child(17) {
    opacity: 0.2261;
    transform: translate(63.7127vw, -10px) scale(0.2669);
    animation: fall-17 16s -12s linear infinite;
}

@keyframes fall-17 {
    59.314% {
        transform: translate(67.0833vw, 59.314vh) scale(0.2669);
    }

    to {
        transform: translate(65.398vw, 100vh) scale(0.2669);
    }
}

.snow:nth-child(18) {
    opacity: 0.2058;
    transform: translate(52.4074vw, -10px) scale(0.5879);
    animation: fall-18 22s -9s linear infinite;
}

@keyframes fall-18 {
    66.43% {
        transform: translate(48.9808vw, 66.43vh) scale(0.5879);
    }

    to {
        transform: translate(50.6941vw, 100vh) scale(0.5879);
    }
}

.snow:nth-child(19) {
    opacity: 0.6578;
    transform: translate(6.4349vw, -10px) scale(0.4305);
    animation: fall-19 17s -1s linear infinite;
}

@keyframes fall-19 {
    69.544% {
        transform: translate(15.8105vw, 69.544vh) scale(0.4305);
    }

    to {
        transform: translate(11.1227vw, 100vh) scale(0.4305);
    }
}

.snow:nth-child(20) {
    opacity: 0.3662;
    transform: translate(25.27vw, -10px) scale(0.3203);
    animation: fall-20 13s -27s linear infinite;
}

@keyframes fall-20 {
    68.355% {
        transform: translate(30.7754vw, 68.355vh) scale(0.3203);
    }

    to {
        transform: translate(28.0227vw, 100vh) scale(0.3203);
    }
}

.snow:nth-child(21) {
    opacity: 0.9667;
    transform: translate(47.2831vw, -10px) scale(0.4046);
    animation: fall-21 11s -9s linear infinite;
}

@keyframes fall-21 {
    43.906% {
        transform: translate(56.1966vw, 43.906vh) scale(0.4046);
    }

    to {
        transform: translate(51.73985vw, 100vh) scale(0.4046);
    }
}

.snow:nth-child(22) {
    opacity: 0.2889;
    transform: translate(42.054vw, -10px) scale(0.453);
    animation: fall-22 30s -8s linear infinite;
}

@keyframes fall-22 {
    79.61% {
        transform: translate(38.1079vw, 79.61vh) scale(0.453);
    }

    to {
        transform: translate(40.08095vw, 100vh) scale(0.453);
    }
}

.snow:nth-child(23) {
    opacity: 0.7727;
    transform: translate(94.2838vw, -10px) scale(0.2761);
    animation: fall-23 18s -8s linear infinite;
}

@keyframes fall-23 {
    37.825% {
        transform: translate(102.4486vw, 37.825vh) scale(0.2761);
    }

    to {
        transform: translate(98.3662vw, 100vh) scale(0.2761);
    }
}

.snow:nth-child(24) {
    opacity: 0.1066;
    transform: translate(39.0104vw, -10px) scale(0.9023);
    animation: fall-24 14s -20s linear infinite;
}

@keyframes fall-24 {
    61.656% {
        transform: translate(38.537vw, 61.656vh) scale(0.9023);
    }

    to {
        transform: translate(38.7737vw, 100vh) scale(0.9023);
    }
}

.snow:nth-child(25) {
    opacity: 0.2742;
    transform: translate(21.0901vw, -10px) scale(0.0122);
    animation: fall-25 18s -11s linear infinite;
}

@keyframes fall-25 {
    44.41% {
        transform: translate(28.6667vw, 44.41vh) scale(0.0122);
    }

    to {
        transform: translate(24.8784vw, 100vh) scale(0.0122);
    }
}

.snow:nth-child(26) {
    opacity: 0.9528;
    transform: translate(27.8171vw, -10px) scale(0.4968);
    animation: fall-26 20s -12s linear infinite;
}

@keyframes fall-26 {
    48.391% {
        transform: translate(26.7582vw, 48.391vh) scale(0.4968);
    }

    to {
        transform: translate(27.28765vw, 100vh) scale(0.4968);
    }
}

.snow:nth-child(27) {
    opacity: 0.8532;
    transform: translate(46.2107vw, -10px) scale(0.055);
    animation: fall-27 11s -29s linear infinite;
}

@keyframes fall-27 {
    37.526% {
        transform: translate(40.2169vw, 37.526vh) scale(0.055);
    }

    to {
        transform: translate(43.2138vw, 100vh) scale(0.055);
    }
}

.snow:nth-child(28) {
    opacity: 0.6639;
    transform: translate(82.2147vw, -10px) scale(0.4175);
    animation: fall-28 12s -29s linear infinite;
}

@keyframes fall-28 {
    67.938% {
        transform: translate(80.9578vw, 67.938vh) scale(0.4175);
    }

    to {
        transform: translate(81.58625vw, 100vh) scale(0.4175);
    }
}

.snow:nth-child(29) {
    opacity: 0.0234;
    transform: translate(85.2143vw, -10px) scale(0.1361);
    animation: fall-29 24s -28s linear infinite;
}

@keyframes fall-29 {
    54.599% {
        transform: translate(90.5724vw, 54.599vh) scale(0.1361);
    }

    to {
        transform: translate(87.89335vw, 100vh) scale(0.1361);
    }
}

.snow:nth-child(30) {
    opacity: 0.3478;
    transform: translate(40.1505vw, -10px) scale(0.8939);
    animation: fall-30 21s -19s linear infinite;
}

@keyframes fall-30 {
    32.248% {
        transform: translate(38.2824vw, 32.248vh) scale(0.8939);
    }

    to {
        transform: translate(39.21645vw, 100vh) scale(0.8939);
    }
}

.snow:nth-child(31) {
    opacity: 0.9036;
    transform: translate(80.2156vw, -10px) scale(0.1224);
    animation: fall-31 27s -20s linear infinite;
}

@keyframes fall-31 {
    74.255% {
        transform: translate(87.1581vw, 74.255vh) scale(0.1224);
    }

    to {
        transform: translate(83.68685vw, 100vh) scale(0.1224);
    }
}

.snow:nth-child(32) {
    opacity: 0.1539;
    transform: translate(84.4031vw, -10px) scale(0.8212);
    animation: fall-32 21s -12s linear infinite;
}

@keyframes fall-32 {
    72.907% {
        transform: translate(90.9293vw, 72.907vh) scale(0.8212);
    }

    to {
        transform: translate(87.6662vw, 100vh) scale(0.8212);
    }
}

.snow:nth-child(33) {
    opacity: 0.2517;
    transform: translate(6.5781vw, -10px) scale(0.5607);
    animation: fall-33 17s -28s linear infinite;
}

@keyframes fall-33 {
    55.111% {
        transform: translate(8.9221vw, 55.111vh) scale(0.5607);
    }

    to {
        transform: translate(7.7501vw, 100vh) scale(0.5607);
    }
}

.snow:nth-child(34) {
    opacity: 0.4501;
    transform: translate(21.1792vw, -10px) scale(0.5248);
    animation: fall-34 13s -2s linear infinite;
}

@keyframes fall-34 {
    31.071% {
        transform: translate(14.8032vw, 31.071vh) scale(0.5248);
    }

    to {
        transform: translate(17.9912vw, 100vh) scale(0.5248);
    }
}

.snow:nth-child(35) {
    opacity: 0.0339;
    transform: translate(65.657vw, -10px) scale(0.464);
    animation: fall-35 30s -20s linear infinite;
}

@keyframes fall-35 {
    75.576% {
        transform: translate(71.7128vw, 75.576vh) scale(0.464);
    }

    to {
        transform: translate(68.6849vw, 100vh) scale(0.464);
    }
}

.snow:nth-child(36) {
    opacity: 0.1276;
    transform: translate(45.0635vw, -10px) scale(0.559);
    animation: fall-36 13s -30s linear infinite;
}

@keyframes fall-36 {
    46.226% {
        transform: translate(49.2227vw, 46.226vh) scale(0.559);
    }

    to {
        transform: translate(47.1431vw, 100vh) scale(0.559);
    }
}

.snow:nth-child(37) {
    opacity: 0.486;
    transform: translate(26.9647vw, -10px) scale(0.8743);
    animation: fall-37 18s -5s linear infinite;
}

@keyframes fall-37 {
    70.658% {
        transform: translate(19.0636vw, 70.658vh) scale(0.8743);
    }

    to {
        transform: translate(23.01415vw, 100vh) scale(0.8743);
    }
}

.snow:nth-child(38) {
    opacity: 0.3881;
    transform: translate(36.5866vw, -10px) scale(0.4045);
    animation: fall-38 18s -12s linear infinite;
}

@keyframes fall-38 {
    50.331% {
        transform: translate(29.0733vw, 50.331vh) scale(0.4045);
    }

    to {
        transform: translate(32.82995vw, 100vh) scale(0.4045);
    }
}

.snow:nth-child(39) {
    opacity: 0.5738;
    transform: translate(68.9199vw, -10px) scale(0.9079);
    animation: fall-39 13s -25s linear infinite;
}

@keyframes fall-39 {
    44.464% {
        transform: translate(59.2672vw, 44.464vh) scale(0.9079);
    }

    to {
        transform: translate(64.09355vw, 100vh) scale(0.9079);
    }
}

.snow:nth-child(40) {
    opacity: 0.8051;
    transform: translate(41.5804vw, -10px) scale(0.2563);
    animation: fall-40 23s -9s linear infinite;
}

@keyframes fall-40 {
    36.71% {
        transform: translate(40.8262vw, 36.71vh) scale(0.2563);
    }

    to {
        transform: translate(41.2033vw, 100vh) scale(0.2563);
    }
}

.snow:nth-child(41) {
    opacity: 0.5795;
    transform: translate(23.5562vw, -10px) scale(0.5648);
    animation: fall-41 15s -26s linear infinite;
}

@keyframes fall-41 {
    77.492% {
        transform: translate(30.6245vw, 77.492vh) scale(0.5648);
    }

    to {
        transform: translate(27.09035vw, 100vh) scale(0.5648);
    }
}

.snow:nth-child(42) {
    opacity: 0.3249;
    transform: translate(60.5164vw, -10px) scale(0.2912);
    animation: fall-42 18s -2s linear infinite;
}

@keyframes fall-42 {
    58.099% {
        transform: translate(58.7125vw, 58.099vh) scale(0.2912);
    }

    to {
        transform: translate(59.61445vw, 100vh) scale(0.2912);
    }
}

.snow:nth-child(43) {
    opacity: 0.8615;
    transform: translate(66.5416vw, -10px) scale(0.4002);
    animation: fall-43 21s -5s linear infinite;
}

@keyframes fall-43 {
    46.714% {
        transform: translate(66.6631vw, 46.714vh) scale(0.4002);
    }

    to {
        transform: translate(66.60235vw, 100vh) scale(0.4002);
    }
}

.snow:nth-child(44) {
    opacity: 0.1714;
    transform: translate(82.5693vw, -10px) scale(0.4522);
    animation: fall-44 15s -29s linear infinite;
}

@keyframes fall-44 {
    43.05% {
        transform: translate(73.9236vw, 43.05vh) scale(0.4522);
    }

    to {
        transform: translate(78.24645vw, 100vh) scale(0.4522);
    }
}

.snow:nth-child(45) {
    opacity: 0.9257;
    transform: translate(66.0937vw, -10px) scale(0.1823);
    animation: fall-45 24s -20s linear infinite;
}

@keyframes fall-45 {
    75.74% {
        transform: translate(60.4165vw, 75.74vh) scale(0.1823);
    }

    to {
        transform: translate(63.2551vw, 100vh) scale(0.1823);
    }
}

.snow:nth-child(46) {
    opacity: 0.9213;
    transform: translate(7.9937vw, -10px) scale(0.2919);
    animation: fall-46 18s -18s linear infinite;
}

@keyframes fall-46 {
    54.824% {
        transform: translate(10.7416vw, 54.824vh) scale(0.2919);
    }

    to {
        transform: translate(9.36765vw, 100vh) scale(0.2919);
    }
}

.snow:nth-child(47) {
    opacity: 0.4547;
    transform: translate(22.2335vw, -10px) scale(0.9467);
    animation: fall-47 12s -17s linear infinite;
}

@keyframes fall-47 {
    32.897% {
        transform: translate(22.4189vw, 32.897vh) scale(0.9467);
    }

    to {
        transform: translate(22.3262vw, 100vh) scale(0.9467);
    }
}

.snow:nth-child(48) {
    opacity: 0.3634;
    transform: translate(84.9148vw, -10px) scale(0.131);
    animation: fall-48 26s -10s linear infinite;
}

@keyframes fall-48 {
    50.195% {
        transform: translate(80.6264vw, 50.195vh) scale(0.131);
    }

    to {
        transform: translate(82.7706vw, 100vh) scale(0.131);
    }
}

.snow:nth-child(49) {
    opacity: 0.191;
    transform: translate(37.4954vw, -10px) scale(0.3518);
    animation: fall-49 10s -8s linear infinite;
}

@keyframes fall-49 {
    32.707% {
        transform: translate(37.7114vw, 32.707vh) scale(0.3518);
    }

    to {
        transform: translate(37.6034vw, 100vh) scale(0.3518);
    }
}

.snow:nth-child(50) {
    opacity: 0.4465;
    transform: translate(23.9368vw, -10px) scale(0.5617);
    animation: fall-50 20s -2s linear infinite;
}

@keyframes fall-50 {
    76.161% {
        transform: translate(24.5436vw, 76.161vh) scale(0.5617);
    }

    to {
        transform: translate(24.2402vw, 100vh) scale(0.5617);
    }
}

.snow:nth-child(51) {
    opacity: 0.4058;
    transform: translate(94.7692vw, -10px) scale(0.2213);
    animation: fall-51 12s -4s linear infinite;
}

@keyframes fall-51 {
    78.217% {
        transform: translate(93.2119vw, 78.217vh) scale(0.2213);
    }

    to {
        transform: translate(93.99055vw, 100vh) scale(0.2213);
    }
}

.snow:nth-child(52) {
    opacity: 0.0511;
    transform: translate(91.9666vw, -10px) scale(0.1553);
    animation: fall-52 12s -27s linear infinite;
}

@keyframes fall-52 {
    62.641% {
        transform: translate(89.7822vw, 62.641vh) scale(0.1553);
    }

    to {
        transform: translate(90.8744vw, 100vh) scale(0.1553);
    }
}

.snow:nth-child(53) {
    opacity: 0.6866;
    transform: translate(35.7216vw, -10px) scale(0.5644);
    animation: fall-53 25s -14s linear infinite;
}

@keyframes fall-53 {
    58.894% {
        transform: translate(40.0317vw, 58.894vh) scale(0.5644);
    }

    to {
        transform: translate(37.87665vw, 100vh) scale(0.5644);
    }
}

.snow:nth-child(54) {
    opacity: 0.582;
    transform: translate(40.2074vw, -10px) scale(0.4455);
    animation: fall-54 14s -11s linear infinite;
}

@keyframes fall-54 {
    77.281% {
        transform: translate(33.1553vw, 77.281vh) scale(0.4455);
    }

    to {
        transform: translate(36.68135vw, 100vh) scale(0.4455);
    }
}

.snow:nth-child(55) {
    opacity: 0.7486;
    transform: translate(91.0881vw, -10px) scale(0.8975);
    animation: fall-55 22s -30s linear infinite;
}

@keyframes fall-55 {
    73.436% {
        transform: translate(95.8822vw, 73.436vh) scale(0.8975);
    }

    to {
        transform: translate(93.48515vw, 100vh) scale(0.8975);
    }
}

.snow:nth-child(56) {
    opacity: 0.9149;
    transform: translate(79.1348vw, -10px) scale(0.2446);
    animation: fall-56 13s -2s linear infinite;
}

@keyframes fall-56 {
    43.998% {
        transform: translate(71.3727vw, 43.998vh) scale(0.2446);
    }

    to {
        transform: translate(75.25375vw, 100vh) scale(0.2446);
    }
}

.snow:nth-child(57) {
    opacity: 0.7213;
    transform: translate(50.8729vw, -10px) scale(0.0504);
    animation: fall-57 25s -16s linear infinite;
}

@keyframes fall-57 {
    44.422% {
        transform: translate(57.3603vw, 44.422vh) scale(0.0504);
    }

    to {
        transform: translate(54.1166vw, 100vh) scale(0.0504);
    }
}

.snow:nth-child(58) {
    opacity: 0.1156;
    transform: translate(63.6074vw, -10px) scale(0.5649);
    animation: fall-58 11s -1s linear infinite;
}

@keyframes fall-58 {
    62.841% {
        transform: translate(73.2332vw, 62.841vh) scale(0.5649);
    }

    to {
        transform: translate(68.4203vw, 100vh) scale(0.5649);
    }
}

.snow:nth-child(59) {
    opacity: 0.0688;
    transform: translate(78.3657vw, -10px) scale(0.2561);
    animation: fall-59 17s -15s linear infinite;
}

@keyframes fall-59 {
    43.061% {
        transform: translate(84.7611vw, 43.061vh) scale(0.2561);
    }

    to {
        transform: translate(81.5634vw, 100vh) scale(0.2561);
    }
}

.snow:nth-child(60) {
    opacity: 0.8235;
    transform: translate(34.8727vw, -10px) scale(0.1058);
    animation: fall-60 23s -21s linear infinite;
}

@keyframes fall-60 {
    74.842% {
        transform: translate(31.7602vw, 74.842vh) scale(0.1058);
    }

    to {
        transform: translate(33.31645vw, 100vh) scale(0.1058);
    }
}

.snow:nth-child(61) {
    opacity: 0.0526;
    transform: translate(3.275vw, -10px) scale(0.6346);
    animation: fall-61 11s -10s linear infinite;
}

@keyframes fall-61 {
    38.158% {
        transform: translate(-1.029vw, 38.158vh) scale(0.6346);
    }

    to {
        transform: translate(1.123vw, 100vh) scale(0.6346);
    }
}

.snow:nth-child(62) {
    opacity: 0.8859;
    transform: translate(36.1158vw, -10px) scale(0.1344);
    animation: fall-62 22s -21s linear infinite;
}

@keyframes fall-62 {
    62.332% {
        transform: translate(33.6984vw, 62.332vh) scale(0.1344);
    }

    to {
        transform: translate(34.9071vw, 100vh) scale(0.1344);
    }
}

.snow:nth-child(63) {
    opacity: 0.1977;
    transform: translate(33.3671vw, -10px) scale(0.0632);
    animation: fall-63 15s -25s linear infinite;
}

@keyframes fall-63 {
    37.64% {
        transform: translate(43.0982vw, 37.64vh) scale(0.0632);
    }

    to {
        transform: translate(38.23265vw, 100vh) scale(0.0632);
    }
}

.snow:nth-child(64) {
    opacity: 0.6276;
    transform: translate(23.4037vw, -10px) scale(0.3789);
    animation: fall-64 29s -27s linear infinite;
}

@keyframes fall-64 {
    68.776% {
        transform: translate(18.5666vw, 68.776vh) scale(0.3789);
    }

    to {
        transform: translate(20.98515vw, 100vh) scale(0.3789);
    }
}

.snow:nth-child(65) {
    opacity: 0.7737;
    transform: translate(18.3928vw, -10px) scale(0.348);
    animation: fall-65 14s -26s linear infinite;
}

@keyframes fall-65 {
    79.243% {
        transform: translate(11.1482vw, 79.243vh) scale(0.348);
    }

    to {
        transform: translate(14.7705vw, 100vh) scale(0.348);
    }
}

.snow:nth-child(66) {
    opacity: 0.1562;
    transform: translate(23.4487vw, -10px) scale(0.4969);
    animation: fall-66 18s -7s linear infinite;
}

@keyframes fall-66 {
    70.921% {
        transform: translate(13.5305vw, 70.921vh) scale(0.4969);
    }

    to {
        transform: translate(18.4896vw, 100vh) scale(0.4969);
    }
}

.snow:nth-child(67) {
    opacity: 0.9507;
    transform: translate(8.2918vw, -10px) scale(0.8008);
    animation: fall-67 26s -6s linear infinite;
}

@keyframes fall-67 {
    41.042% {
        transform: translate(4.6277vw, 41.042vh) scale(0.8008);
    }

    to {
        transform: translate(6.45975vw, 100vh) scale(0.8008);
    }
}

.snow:nth-child(68) {
    opacity: 0.2859;
    transform: translate(4.4022vw, -10px) scale(0.4319);
    animation: fall-68 23s -11s linear infinite;
}

@keyframes fall-68 {
    30.449% {
        transform: translate(13.092vw, 30.449vh) scale(0.4319);
    }

    to {
        transform: translate(8.7471vw, 100vh) scale(0.4319);
    }
}

.snow:nth-child(69) {
    opacity: 0.9147;
    transform: translate(63.1398vw, -10px) scale(0.4155);
    animation: fall-69 28s -3s linear infinite;
}

@keyframes fall-69 {
    65.383% {
        transform: translate(65.1352vw, 65.383vh) scale(0.4155);
    }

    to {
        transform: translate(64.1375vw, 100vh) scale(0.4155);
    }
}

.snow:nth-child(70) {
    opacity: 0.8848;
    transform: translate(23.4444vw, -10px) scale(0.8146);
    animation: fall-70 13s -22s linear infinite;
}

@keyframes fall-70 {
    43.648% {
        transform: translate(17.8633vw, 43.648vh) scale(0.8146);
    }

    to {
        transform: translate(20.65385vw, 100vh) scale(0.8146);
    }
}

.snow:nth-child(71) {
    opacity: 0.7118;
    transform: translate(90.9626vw, -10px) scale(0.7588);
    animation: fall-71 18s -1s linear infinite;
}

@keyframes fall-71 {
    58.277% {
        transform: translate(98.2016vw, 58.277vh) scale(0.7588);
    }

    to {
        transform: translate(94.5821vw, 100vh) scale(0.7588);
    }
}

.snow:nth-child(72) {
    opacity: 0.5087;
    transform: translate(73.3722vw, -10px) scale(0.9993);
    animation: fall-72 18s -6s linear infinite;
}

@keyframes fall-72 {
    52.181% {
        transform: translate(72.7816vw, 52.181vh) scale(0.9993);
    }

    to {
        transform: translate(73.0769vw, 100vh) scale(0.9993);
    }
}

.snow:nth-child(73) {
    opacity: 0.9855;
    transform: translate(79.5455vw, -10px) scale(0.6813);
    animation: fall-73 21s -22s linear infinite;
}

@keyframes fall-73 {
    58.651% {
        transform: translate(81.0418vw, 58.651vh) scale(0.6813);
    }

    to {
        transform: translate(80.29365vw, 100vh) scale(0.6813);
    }
}

.snow:nth-child(74) {
    opacity: 0.5779;
    transform: translate(0.8084vw, -10px) scale(0.8054);
    animation: fall-74 29s -2s linear infinite;
}

@keyframes fall-74 {
    73.29% {
        transform: translate(-2.6132vw, 73.29vh) scale(0.8054);
    }

    to {
        transform: translate(-0.9024vw, 100vh) scale(0.8054);
    }
}

.snow:nth-child(75) {
    opacity: 0.9123;
    transform: translate(84.4454vw, -10px) scale(0.4911);
    animation: fall-75 26s -9s linear infinite;
}

@keyframes fall-75 {
    71.691% {
        transform: translate(75.9106vw, 71.691vh) scale(0.4911);
    }

    to {
        transform: translate(80.178vw, 100vh) scale(0.4911);
    }
}

.snow:nth-child(76) {
    opacity: 0.879;
    transform: translate(69.2109vw, -10px) scale(0.6467);
    animation: fall-76 10s -24s linear infinite;
}

@keyframes fall-76 {
    40.999% {
        transform: translate(71.1344vw, 40.999vh) scale(0.6467);
    }

    to {
        transform: translate(70.17265vw, 100vh) scale(0.6467);
    }
}

.snow:nth-child(77) {
    opacity: 0.9983;
    transform: translate(41.5932vw, -10px) scale(0.4618);
    animation: fall-77 17s -17s linear infinite;
}

@keyframes fall-77 {
    47.127% {
        transform: translate(45.8938vw, 47.127vh) scale(0.4618);
    }

    to {
        transform: translate(43.7435vw, 100vh) scale(0.4618);
    }
}

.snow:nth-child(78) {
    opacity: 0.1497;
    transform: translate(33.1912vw, -10px) scale(0.7018);
    animation: fall-78 17s -10s linear infinite;
}

@keyframes fall-78 {
    69.153% {
        transform: translate(36.1319vw, 69.153vh) scale(0.7018);
    }

    to {
        transform: translate(34.66155vw, 100vh) scale(0.7018);
    }
}

.snow:nth-child(79) {
    opacity: 0.1377;
    transform: translate(52.5935vw, -10px) scale(0.1223);
    animation: fall-79 13s -20s linear infinite;
}

@keyframes fall-79 {
    62.477% {
        transform: translate(48.3592vw, 62.477vh) scale(0.1223);
    }

    to {
        transform: translate(50.47635vw, 100vh) scale(0.1223);
    }
}

.snow:nth-child(80) {
    opacity: 0.7409;
    transform: translate(19.2156vw, -10px) scale(0.2645);
    animation: fall-80 16s -14s linear infinite;
}

@keyframes fall-80 {
    75.757% {
        transform: translate(21.354vw, 75.757vh) scale(0.2645);
    }

    to {
        transform: translate(20.2848vw, 100vh) scale(0.2645);
    }
}

.snow:nth-child(81) {
    opacity: 0.821;
    transform: translate(3.0341vw, -10px) scale(0.6898);
    animation: fall-81 15s -13s linear infinite;
}

@keyframes fall-81 {
    47.696% {
        transform: translate(-5.1028vw, 47.696vh) scale(0.6898);
    }

    to {
        transform: translate(-1.03435vw, 100vh) scale(0.6898);
    }
}

.snow:nth-child(82) {
    opacity: 0.8718;
    transform: translate(79.0731vw, -10px) scale(0.0889);
    animation: fall-82 28s -11s linear infinite;
}

@keyframes fall-82 {
    51.907% {
        transform: translate(84.9244vw, 51.907vh) scale(0.0889);
    }

    to {
        transform: translate(81.99875vw, 100vh) scale(0.0889);
    }
}

.snow:nth-child(83) {
    opacity: 0.2257;
    transform: translate(77.5689vw, -10px) scale(0.4153);
    animation: fall-83 27s -22s linear infinite;
}

@keyframes fall-83 {
    45.475% {
        transform: translate(80.1411vw, 45.475vh) scale(0.4153);
    }

    to {
        transform: translate(78.855vw, 100vh) scale(0.4153);
    }
}

.snow:nth-child(84) {
    opacity: 0.6003;
    transform: translate(38.2591vw, -10px) scale(0.1744);
    animation: fall-84 29s -13s linear infinite;
}

@keyframes fall-84 {
    63.595% {
        transform: translate(40.3118vw, 63.595vh) scale(0.1744);
    }

    to {
        transform: translate(39.28545vw, 100vh) scale(0.1744);
    }
}

.snow:nth-child(85) {
    opacity: 0.6428;
    transform: translate(43.6799vw, -10px) scale(0.7761);
    animation: fall-85 22s -6s linear infinite;
}

@keyframes fall-85 {
    52.47% {
        transform: translate(39.9986vw, 52.47vh) scale(0.7761);
    }

    to {
        transform: translate(41.83925vw, 100vh) scale(0.7761);
    }
}

.snow:nth-child(86) {
    opacity: 0.2203;
    transform: translate(11.8462vw, -10px) scale(0.4738);
    animation: fall-86 12s -27s linear infinite;
}

@keyframes fall-86 {
    37.162% {
        transform: translate(9.4196vw, 37.162vh) scale(0.4738);
    }

    to {
        transform: translate(10.6329vw, 100vh) scale(0.4738);
    }
}

.snow:nth-child(87) {
    opacity: 0.2042;
    transform: translate(68.1988vw, -10px) scale(0.3326);
    animation: fall-87 16s -2s linear infinite;
}

@keyframes fall-87 {
    50.915% {
        transform: translate(59.3551vw, 50.915vh) scale(0.3326);
    }

    to {
        transform: translate(63.77695vw, 100vh) scale(0.3326);
    }
}

.snow:nth-child(88) {
    opacity: 0.4405;
    transform: translate(66.7981vw, -10px) scale(0.143);
    animation: fall-88 15s -21s linear infinite;
}

@keyframes fall-88 {
    60.645% {
        transform: translate(76.7838vw, 60.645vh) scale(0.143);
    }

    to {
        transform: translate(71.79095vw, 100vh) scale(0.143);
    }
}

.snow:nth-child(89) {
    opacity: 0.8594;
    transform: translate(90.0449vw, -10px) scale(0.7175);
    animation: fall-89 24s -24s linear infinite;
}

@keyframes fall-89 {
    70.519% {
        transform: translate(87.4105vw, 70.519vh) scale(0.7175);
    }

    to {
        transform: translate(88.7277vw, 100vh) scale(0.7175);
    }
}

.snow:nth-child(90) {
    opacity: 0.0904;
    transform: translate(81.0178vw, -10px) scale(0.954);
    animation: fall-90 21s -14s linear infinite;
}

@keyframes fall-90 {
    66.779% {
        transform: translate(73.5897vw, 66.779vh) scale(0.954);
    }

    to {
        transform: translate(77.30375vw, 100vh) scale(0.954);
    }
}

.snow:nth-child(91) {
    opacity: 0.1728;
    transform: translate(97.0289vw, -10px) scale(0.8606);
    animation: fall-91 26s -15s linear infinite;
}

@keyframes fall-91 {
    36.443% {
        transform: translate(87.7748vw, 36.443vh) scale(0.8606);
    }

    to {
        transform: translate(92.40185vw, 100vh) scale(0.8606);
    }
}

.snow:nth-child(92) {
    opacity: 0.2311;
    transform: translate(5.3531vw, -10px) scale(0.5513);
    animation: fall-92 10s -30s linear infinite;
}

@keyframes fall-92 {
    61.957% {
        transform: translate(4.015vw, 61.957vh) scale(0.5513);
    }

    to {
        transform: translate(4.68405vw, 100vh) scale(0.5513);
    }
}

.snow:nth-child(93) {
    opacity: 0.384;
    transform: translate(95.485vw, -10px) scale(0.6726);
    animation: fall-93 27s -6s linear infinite;
}

@keyframes fall-93 {
    46.183% {
        transform: translate(91.9757vw, 46.183vh) scale(0.6726);
    }

    to {
        transform: translate(93.73035vw, 100vh) scale(0.6726);
    }
}

.snow:nth-child(94) {
    opacity: 0.3479;
    transform: translate(42.8071vw, -10px) scale(0.3889);
    animation: fall-94 25s -26s linear infinite;
}

@keyframes fall-94 {
    47.313% {
        transform: translate(41.6502vw, 47.313vh) scale(0.3889);
    }

    to {
        transform: translate(42.22865vw, 100vh) scale(0.3889);
    }
}

.snow:nth-child(95) {
    opacity: 0.2161;
    transform: translate(72.2974vw, -10px) scale(0.2408);
    animation: fall-95 10s -18s linear infinite;
}

@keyframes fall-95 {
    49.198% {
        transform: translate(73.5698vw, 49.198vh) scale(0.2408);
    }

    to {
        transform: translate(72.9336vw, 100vh) scale(0.2408);
    }
}

.snow:nth-child(96) {
    opacity: 0.7166;
    transform: translate(79.9389vw, -10px) scale(0.7145);
    animation: fall-96 24s -17s linear infinite;
}

@keyframes fall-96 {
    77.485% {
        transform: translate(85.7483vw, 77.485vh) scale(0.7145);
    }

    to {
        transform: translate(82.8436vw, 100vh) scale(0.7145);
    }
}

.snow:nth-child(97) {
    opacity: 0.2107;
    transform: translate(34.8164vw, -10px) scale(0.6583);
    animation: fall-97 24s -21s linear infinite;
}

@keyframes fall-97 {
    43.029% {
        transform: translate(44.7713vw, 43.029vh) scale(0.6583);
    }

    to {
        transform: translate(39.79385vw, 100vh) scale(0.6583);
    }
}

.snow:nth-child(98) {
    opacity: 0.2908;
    transform: translate(27.983vw, -10px) scale(0.7688);
    animation: fall-98 21s -6s linear infinite;
}

@keyframes fall-98 {
    52.02% {
        transform: translate(27.3045vw, 52.02vh) scale(0.7688);
    }

    to {
        transform: translate(27.64375vw, 100vh) scale(0.7688);
    }
}

.snow:nth-child(99) {
    opacity: 0.1482;
    transform: translate(14.9457vw, -10px) scale(0.0425);
    animation: fall-99 14s -29s linear infinite;
}

@keyframes fall-99 {
    58.215% {
        transform: translate(21.8648vw, 58.215vh) scale(0.0425);
    }

    to {
        transform: translate(18.40525vw, 100vh) scale(0.0425);
    }
}

.snow:nth-child(100) {
    opacity: 0.6941;
    transform: translate(4.312vw, -10px) scale(0.6985);
    animation: fall-100 16s -11s linear infinite;
}

@keyframes fall-100 {
    64.887% {
        transform: translate(-1.5017vw, 64.887vh) scale(0.6985);
    }

    to {
        transform: translate(1.40515vw, 100vh) scale(0.6985);
    }
}

.snow:nth-child(101) {
    opacity: 0.2655;
    transform: translate(9.9107vw, -10px) scale(0.2117);
    animation: fall-101 15s -2s linear infinite;
}

@keyframes fall-101 {
    38.315% {
        transform: translate(4.9562vw, 38.315vh) scale(0.2117);
    }

    to {
        transform: translate(7.43345vw, 100vh) scale(0.2117);
    }
}

.snow:nth-child(102) {
    opacity: 0.6411;
    transform: translate(35.7989vw, -10px) scale(0.0677);
    animation: fall-102 12s -2s linear infinite;
}

@keyframes fall-102 {
    40.935% {
        transform: translate(31.9013vw, 40.935vh) scale(0.0677);
    }

    to {
        transform: translate(33.8501vw, 100vh) scale(0.0677);
    }
}

.snow:nth-child(103) {
    opacity: 0.173;
    transform: translate(16.3894vw, -10px) scale(0.9221);
    animation: fall-103 15s -23s linear infinite;
}

@keyframes fall-103 {
    47.967% {
        transform: translate(20.624vw, 47.967vh) scale(0.9221);
    }

    to {
        transform: translate(18.5067vw, 100vh) scale(0.9221);
    }
}

.snow:nth-child(104) {
    opacity: 0.5854;
    transform: translate(40.164vw, -10px) scale(0.8623);
    animation: fall-104 28s -28s linear infinite;
}

@keyframes fall-104 {
    33.038% {
        transform: translate(42.974vw, 33.038vh) scale(0.8623);
    }

    to {
        transform: translate(41.569vw, 100vh) scale(0.8623);
    }
}

.snow:nth-child(105) {
    opacity: 0.4442;
    transform: translate(72.5666vw, -10px) scale(0.889);
    animation: fall-105 28s -21s linear infinite;
}

@keyframes fall-105 {
    30.243% {
        transform: translate(67.1893vw, 30.243vh) scale(0.889);
    }

    to {
        transform: translate(69.87795vw, 100vh) scale(0.889);
    }
}

.snow:nth-child(106) {
    opacity: 0.9278;
    transform: translate(2.9024vw, -10px) scale(0.9838);
    animation: fall-106 17s -19s linear infinite;
}

@keyframes fall-106 {
    48.778% {
        transform: translate(10.957vw, 48.778vh) scale(0.9838);
    }

    to {
        transform: translate(6.9297vw, 100vh) scale(0.9838);
    }
}

.snow:nth-child(107) {
    opacity: 0.2946;
    transform: translate(84.6703vw, -10px) scale(0.1176);
    animation: fall-107 26s -27s linear infinite;
}

@keyframes fall-107 {
    47.771% {
        transform: translate(87.3362vw, 47.771vh) scale(0.1176);
    }

    to {
        transform: translate(86.00325vw, 100vh) scale(0.1176);
    }
}

.snow:nth-child(108) {
    opacity: 0.7511;
    transform: translate(54.1105vw, -10px) scale(0.7076);
    animation: fall-108 17s -8s linear infinite;
}

@keyframes fall-108 {
    37.796% {
        transform: translate(48.0652vw, 37.796vh) scale(0.7076);
    }

    to {
        transform: translate(51.08785vw, 100vh) scale(0.7076);
    }
}

.snow:nth-child(109) {
    opacity: 0.2139;
    transform: translate(60.61vw, -10px) scale(0.2164);
    animation: fall-109 20s -17s linear infinite;
}

@keyframes fall-109 {
    71.703% {
        transform: translate(66.6319vw, 71.703vh) scale(0.2164);
    }

    to {
        transform: translate(63.62095vw, 100vh) scale(0.2164);
    }
}

.snow:nth-child(110) {
    opacity: 0.0409;
    transform: translate(24.236vw, -10px) scale(0.0995);
    animation: fall-110 11s -28s linear infinite;
}

@keyframes fall-110 {
    54.433% {
        transform: translate(18.0408vw, 54.433vh) scale(0.0995);
    }

    to {
        transform: translate(21.1384vw, 100vh) scale(0.0995);
    }
}

.snow:nth-child(111) {
    opacity: 0.0888;
    transform: translate(16.9777vw, -10px) scale(0.4807);
    animation: fall-111 14s -17s linear infinite;
}

@keyframes fall-111 {
    32.457% {
        transform: translate(20.8533vw, 32.457vh) scale(0.4807);
    }

    to {
        transform: translate(18.9155vw, 100vh) scale(0.4807);
    }
}

.snow:nth-child(112) {
    opacity: 0.5612;
    transform: translate(16.2678vw, -10px) scale(0.133);
    animation: fall-112 27s -21s linear infinite;
}

@keyframes fall-112 {
    52.456% {
        transform: translate(10.5542vw, 52.456vh) scale(0.133);
    }

    to {
        transform: translate(13.411vw, 100vh) scale(0.133);
    }
}

.snow:nth-child(113) {
    opacity: 0.8734;
    transform: translate(2.9566vw, -10px) scale(0.8338);
    animation: fall-113 29s -20s linear infinite;
}

@keyframes fall-113 {
    49.923% {
        transform: translate(7.0474vw, 49.923vh) scale(0.8338);
    }

    to {
        transform: translate(5.002vw, 100vh) scale(0.8338);
    }
}

.snow:nth-child(114) {
    opacity: 0.8291;
    transform: translate(14.99vw, -10px) scale(0.2383);
    animation: fall-114 11s -7s linear infinite;
}

@keyframes fall-114 {
    49.147% {
        transform: translate(12.1948vw, 49.147vh) scale(0.2383);
    }

    to {
        transform: translate(13.5924vw, 100vh) scale(0.2383);
    }
}

.snow:nth-child(115) {
    opacity: 0.9135;
    transform: translate(93.2031vw, -10px) scale(0.4367);
    animation: fall-115 25s -12s linear infinite;
}

@keyframes fall-115 {
    48.929% {
        transform: translate(89.9588vw, 48.929vh) scale(0.4367);
    }

    to {
        transform: translate(91.58095vw, 100vh) scale(0.4367);
    }
}

.snow:nth-child(116) {
    opacity: 0.6152;
    transform: translate(54.7649vw, -10px) scale(0.265);
    animation: fall-116 23s -15s linear infinite;
}

@keyframes fall-116 {
    42.988% {
        transform: translate(51.9764vw, 42.988vh) scale(0.265);
    }

    to {
        transform: translate(53.37065vw, 100vh) scale(0.265);
    }
}

.snow:nth-child(117) {
    opacity: 0.3368;
    transform: translate(41.1716vw, -10px) scale(0.2666);
    animation: fall-117 19s -29s linear infinite;
}

@keyframes fall-117 {
    33.44% {
        transform: translate(46.642vw, 33.44vh) scale(0.2666);
    }

    to {
        transform: translate(43.9068vw, 100vh) scale(0.2666);
    }
}

.snow:nth-child(118) {
    opacity: 0.4309;
    transform: translate(87.3638vw, -10px) scale(0.2669);
    animation: fall-118 17s -17s linear infinite;
}

@keyframes fall-118 {
    71.277% {
        transform: translate(95.757vw, 71.277vh) scale(0.2669);
    }

    to {
        transform: translate(91.5604vw, 100vh) scale(0.2669);
    }
}

.snow:nth-child(119) {
    opacity: 0.4446;
    transform: translate(2.1466vw, -10px) scale(0.7521);
    animation: fall-119 22s -16s linear infinite;
}

@keyframes fall-119 {
    50.39% {
        transform: translate(-3.2082vw, 50.39vh) scale(0.7521);
    }

    to {
        transform: translate(-0.5308vw, 100vh) scale(0.7521);
    }
}

.snow:nth-child(120) {
    opacity: 0.5929;
    transform: translate(51.9297vw, -10px) scale(0.353);
    animation: fall-120 22s -10s linear infinite;
}

@keyframes fall-120 {
    39.333% {
        transform: translate(54.8831vw, 39.333vh) scale(0.353);
    }

    to {
        transform: translate(53.4064vw, 100vh) scale(0.353);
    }
}

.snow:nth-child(121) {
    opacity: 0.1432;
    transform: translate(79.1121vw, -10px) scale(0.3649);
    animation: fall-121 13s -15s linear infinite;
}

@keyframes fall-121 {
    46.836% {
        transform: translate(72.5459vw, 46.836vh) scale(0.3649);
    }

    to {
        transform: translate(75.829vw, 100vh) scale(0.3649);
    }
}

.snow:nth-child(122) {
    opacity: 0.7405;
    transform: translate(87.7616vw, -10px) scale(0.9917);
    animation: fall-122 12s -12s linear infinite;
}

@keyframes fall-122 {
    35.435% {
        transform: translate(93.1391vw, 35.435vh) scale(0.9917);
    }

    to {
        transform: translate(90.45035vw, 100vh) scale(0.9917);
    }
}

.snow:nth-child(123) {
    opacity: 0.9654;
    transform: translate(19.1452vw, -10px) scale(0.6616);
    animation: fall-123 15s -21s linear infinite;
}

@keyframes fall-123 {
    66.58% {
        transform: translate(23.2683vw, 66.58vh) scale(0.6616);
    }

    to {
        transform: translate(21.20675vw, 100vh) scale(0.6616);
    }
}

.snow:nth-child(124) {
    opacity: 0.1651;
    transform: translate(75.9691vw, -10px) scale(0.0787);
    animation: fall-124 24s -24s linear infinite;
}

@keyframes fall-124 {
    52.105% {
        transform: translate(84.2255vw, 52.105vh) scale(0.0787);
    }

    to {
        transform: translate(80.0973vw, 100vh) scale(0.0787);
    }
}

.snow:nth-child(125) {
    opacity: 0.3378;
    transform: translate(99.7268vw, -10px) scale(0.8839);
    animation: fall-125 29s -17s linear infinite;
}

@keyframes fall-125 {
    37.426% {
        transform: translate(103.8323vw, 37.426vh) scale(0.8839);
    }

    to {
        transform: translate(101.77955vw, 100vh) scale(0.8839);
    }
}

.snow:nth-child(126) {
    opacity: 0.2255;
    transform: translate(38.173vw, -10px) scale(0.7555);
    animation: fall-126 24s -7s linear infinite;
}

@keyframes fall-126 {
    73.349% {
        transform: translate(43.6995vw, 73.349vh) scale(0.7555);
    }

    to {
        transform: translate(40.93625vw, 100vh) scale(0.7555);
    }
}

.snow:nth-child(127) {
    opacity: 0.1517;
    transform: translate(9.027vw, -10px) scale(0.6722);
    animation: fall-127 16s -28s linear infinite;
}

@keyframes fall-127 {
    66.931% {
        transform: translate(6.0099vw, 66.931vh) scale(0.6722);
    }

    to {
        transform: translate(7.51845vw, 100vh) scale(0.6722);
    }
}

.snow:nth-child(128) {
    opacity: 0.5383;
    transform: translate(46.003vw, -10px) scale(0.3891);
    animation: fall-128 25s -9s linear infinite;
}

@keyframes fall-128 {
    61.567% {
        transform: translate(50.3104vw, 61.567vh) scale(0.3891);
    }

    to {
        transform: translate(48.1567vw, 100vh) scale(0.3891);
    }
}

.snow:nth-child(129) {
    opacity: 0.6954;
    transform: translate(70.729vw, -10px) scale(0.1522);
    animation: fall-129 29s -7s linear infinite;
}

@keyframes fall-129 {
    42.384% {
        transform: translate(67.1801vw, 42.384vh) scale(0.1522);
    }

    to {
        transform: translate(68.95455vw, 100vh) scale(0.1522);
    }
}

.snow:nth-child(130) {
    opacity: 0.8818;
    transform: translate(0.2239vw, -10px) scale(0.5732);
    animation: fall-130 28s -4s linear infinite;
}

@keyframes fall-130 {
    56.322% {
        transform: translate(6.5223vw, 56.322vh) scale(0.5732);
    }

    to {
        transform: translate(3.3731vw, 100vh) scale(0.5732);
    }
}

.snow:nth-child(131) {
    opacity: 0.0111;
    transform: translate(16.1061vw, -10px) scale(0.2998);
    animation: fall-131 25s -9s linear infinite;
}

@keyframes fall-131 {
    60.491% {
        transform: translate(14.4009vw, 60.491vh) scale(0.2998);
    }

    to {
        transform: translate(15.2535vw, 100vh) scale(0.2998);
    }
}

.snow:nth-child(132) {
    opacity: 0.3851;
    transform: translate(73.6096vw, -10px) scale(0.1103);
    animation: fall-132 12s -10s linear infinite;
}

@keyframes fall-132 {
    47.914% {
        transform: translate(78.1664vw, 47.914vh) scale(0.1103);
    }

    to {
        transform: translate(75.888vw, 100vh) scale(0.1103);
    }
}

.snow:nth-child(133) {
    opacity: 0.2935;
    transform: translate(14.0252vw, -10px) scale(0.5924);
    animation: fall-133 13s -8s linear infinite;
}

@keyframes fall-133 {
    45.35% {
        transform: translate(8.1118vw, 45.35vh) scale(0.5924);
    }

    to {
        transform: translate(11.0685vw, 100vh) scale(0.5924);
    }
}

.snow:nth-child(134) {
    opacity: 0.968;
    transform: translate(72.3995vw, -10px) scale(0.3832);
    animation: fall-134 10s -24s linear infinite;
}

@keyframes fall-134 {
    35.68% {
        transform: translate(79.1341vw, 35.68vh) scale(0.3832);
    }

    to {
        transform: translate(75.7668vw, 100vh) scale(0.3832);
    }
}

.snow:nth-child(135) {
    opacity: 0.0304;
    transform: translate(89.5467vw, -10px) scale(0.7527);
    animation: fall-135 20s -26s linear infinite;
}

@keyframes fall-135 {
    34.363% {
        transform: translate(93.8397vw, 34.363vh) scale(0.7527);
    }

    to {
        transform: translate(91.6932vw, 100vh) scale(0.7527);
    }
}

.snow:nth-child(136) {
    opacity: 0.9148;
    transform: translate(57.3328vw, -10px) scale(0.9316);
    animation: fall-136 26s -28s linear infinite;
}

@keyframes fall-136 {
    42.415% {
        transform: translate(66.5063vw, 42.415vh) scale(0.9316);
    }

    to {
        transform: translate(61.91955vw, 100vh) scale(0.9316);
    }
}

.snow:nth-child(137) {
    opacity: 0.3371;
    transform: translate(77.8973vw, -10px) scale(0.1934);
    animation: fall-137 22s -9s linear infinite;
}

@keyframes fall-137 {
    30.252% {
        transform: translate(70.6699vw, 30.252vh) scale(0.1934);
    }

    to {
        transform: translate(74.2836vw, 100vh) scale(0.1934);
    }
}

.snow:nth-child(138) {
    opacity: 0.2501;
    transform: translate(63.3636vw, -10px) scale(0.2754);
    animation: fall-138 14s -1s linear infinite;
}

@keyframes fall-138 {
    60.866% {
        transform: translate(68.9816vw, 60.866vh) scale(0.2754);
    }

    to {
        transform: translate(66.1726vw, 100vh) scale(0.2754);
    }
}

.snow:nth-child(139) {
    opacity: 0.4896;
    transform: translate(34.4003vw, -10px) scale(0.8847);
    animation: fall-139 11s -25s linear infinite;
}

@keyframes fall-139 {
    79.87% {
        transform: translate(39.7115vw, 79.87vh) scale(0.8847);
    }

    to {
        transform: translate(37.0559vw, 100vh) scale(0.8847);
    }
}

.snow:nth-child(140) {
    opacity: 0.17;
    transform: translate(30.5296vw, -10px) scale(0.7586);
    animation: fall-140 21s -30s linear infinite;
}

@keyframes fall-140 {
    68.485% {
        transform: translate(34.2255vw, 68.485vh) scale(0.7586);
    }

    to {
        transform: translate(32.37755vw, 100vh) scale(0.7586);
    }
}

.snow:nth-child(141) {
    opacity: 0.0292;
    transform: translate(37.3772vw, -10px) scale(0.9827);
    animation: fall-141 17s -3s linear infinite;
}

@keyframes fall-141 {
    59.098% {
        transform: translate(41.0599vw, 59.098vh) scale(0.9827);
    }

    to {
        transform: translate(39.21855vw, 100vh) scale(0.9827);
    }
}

.snow:nth-child(142) {
    opacity: 0.896;
    transform: translate(55.6196vw, -10px) scale(0.0532);
    animation: fall-142 16s -6s linear infinite;
}

@keyframes fall-142 {
    60.633% {
        transform: translate(54.7343vw, 60.633vh) scale(0.0532);
    }

    to {
        transform: translate(55.17695vw, 100vh) scale(0.0532);
    }
}

.snow:nth-child(143) {
    opacity: 0.7804;
    transform: translate(60.8152vw, -10px) scale(0.9424);
    animation: fall-143 10s -16s linear infinite;
}

@keyframes fall-143 {
    33.254% {
        transform: translate(65.6851vw, 33.254vh) scale(0.9424);
    }

    to {
        transform: translate(63.25015vw, 100vh) scale(0.9424);
    }
}

.snow:nth-child(144) {
    opacity: 0.1452;
    transform: translate(89.8383vw, -10px) scale(0.1001);
    animation: fall-144 18s -23s linear infinite;
}

@keyframes fall-144 {
    30.391% {
        transform: translate(91.3511vw, 30.391vh) scale(0.1001);
    }

    to {
        transform: translate(90.5947vw, 100vh) scale(0.1001);
    }
}

.snow:nth-child(145) {
    opacity: 0.7184;
    transform: translate(48.5351vw, -10px) scale(0.3599);
    animation: fall-145 22s -22s linear infinite;
}

@keyframes fall-145 {
    59.345% {
        transform: translate(55.3838vw, 59.345vh) scale(0.3599);
    }

    to {
        transform: translate(51.95945vw, 100vh) scale(0.3599);
    }
}

.snow:nth-child(146) {
    opacity: 0.9699;
    transform: translate(35.3261vw, -10px) scale(0.4453);
    animation: fall-146 11s -1s linear infinite;
}

@keyframes fall-146 {
    66.551% {
        transform: translate(25.5637vw, 66.551vh) scale(0.4453);
    }

    to {
        transform: translate(30.4449vw, 100vh) scale(0.4453);
    }
}

.snow:nth-child(147) {
    opacity: 0.0402;
    transform: translate(98.9298vw, -10px) scale(0.7885);
    animation: fall-147 10s -9s linear infinite;
}

@keyframes fall-147 {
    76.874% {
        transform: translate(89.2414vw, 76.874vh) scale(0.7885);
    }

    to {
        transform: translate(94.0856vw, 100vh) scale(0.7885);
    }
}

.snow:nth-child(148) {
    opacity: 0.9046;
    transform: translate(80.2911vw, -10px) scale(0.7863);
    animation: fall-148 17s -19s linear infinite;
}

@keyframes fall-148 {
    53.319% {
        transform: translate(73.2848vw, 53.319vh) scale(0.7863);
    }

    to {
        transform: translate(76.78795vw, 100vh) scale(0.7863);
    }
}

.snow:nth-child(149) {
    opacity: 0.8538;
    transform: translate(38.0684vw, -10px) scale(0.7314);
    animation: fall-149 17s -23s linear infinite;
}

@keyframes fall-149 {
    78.633% {
        transform: translate(44.3407vw, 78.633vh) scale(0.7314);
    }

    to {
        transform: translate(41.20455vw, 100vh) scale(0.7314);
    }
}

.snow:nth-child(150) {
    opacity: 0.1531;
    transform: translate(37.3017vw, -10px) scale(0.1504);
    animation: fall-150 20s -26s linear infinite;
}

@keyframes fall-150 {
    31.113% {
        transform: translate(43.7078vw, 31.113vh) scale(0.1504);
    }

    to {
        transform: translate(40.50475vw, 100vh) scale(0.1504);
    }
}

.snow:nth-child(151) {
    opacity: 0.8722;
    transform: translate(91.9396vw, -10px) scale(0.0044);
    animation: fall-151 28s -20s linear infinite;
}

@keyframes fall-151 {
    43.603% {
        transform: translate(91.116vw, 43.603vh) scale(0.0044);
    }

    to {
        transform: translate(91.5278vw, 100vh) scale(0.0044);
    }
}

.snow:nth-child(152) {
    opacity: 0.0515;
    transform: translate(19.8939vw, -10px) scale(0.6684);
    animation: fall-152 28s -8s linear infinite;
}

@keyframes fall-152 {
    75.713% {
        transform: translate(25.0569vw, 75.713vh) scale(0.6684);
    }

    to {
        transform: translate(22.4754vw, 100vh) scale(0.6684);
    }
}

.snow:nth-child(153) {
    opacity: 0.8442;
    transform: translate(46.371vw, -10px) scale(0.798);
    animation: fall-153 30s -6s linear infinite;
}

@keyframes fall-153 {
    58.616% {
        transform: translate(41.7506vw, 58.616vh) scale(0.798);
    }

    to {
        transform: translate(44.0608vw, 100vh) scale(0.798);
    }
}

.snow:nth-child(154) {
    opacity: 0.1018;
    transform: translate(71.914vw, -10px) scale(0.6719);
    animation: fall-154 29s -5s linear infinite;
}

@keyframes fall-154 {
    57.744% {
        transform: translate(75.5014vw, 57.744vh) scale(0.6719);
    }

    to {
        transform: translate(73.7077vw, 100vh) scale(0.6719);
    }
}

.snow:nth-child(155) {
    opacity: 0.7877;
    transform: translate(6.6174vw, -10px) scale(0.1465);
    animation: fall-155 27s -1s linear infinite;
}

@keyframes fall-155 {
    34.019% {
        transform: translate(7.87vw, 34.019vh) scale(0.1465);
    }

    to {
        transform: translate(7.2437vw, 100vh) scale(0.1465);
    }
}

.snow:nth-child(156) {
    opacity: 0.0823;
    transform: translate(84.9517vw, -10px) scale(0.252);
    animation: fall-156 22s -16s linear infinite;
}

@keyframes fall-156 {
    69.189% {
        transform: translate(79.7376vw, 69.189vh) scale(0.252);
    }

    to {
        transform: translate(82.34465vw, 100vh) scale(0.252);
    }
}

.snow:nth-child(157) {
    opacity: 0.5158;
    transform: translate(81.6858vw, -10px) scale(0.1445);
    animation: fall-157 11s -10s linear infinite;
}

@keyframes fall-157 {
    60.542% {
        transform: translate(81.4995vw, 60.542vh) scale(0.1445);
    }

    to {
        transform: translate(81.59265vw, 100vh) scale(0.1445);
    }
}

.snow:nth-child(158) {
    opacity: 0.8579;
    transform: translate(28.5712vw, -10px) scale(0.2678);
    animation: fall-158 10s -8s linear infinite;
}

@keyframes fall-158 {
    55.26% {
        transform: translate(35.907vw, 55.26vh) scale(0.2678);
    }

    to {
        transform: translate(32.2391vw, 100vh) scale(0.2678);
    }
}

.snow:nth-child(159) {
    opacity: 0.7573;
    transform: translate(67.3108vw, -10px) scale(0.4085);
    animation: fall-159 25s -19s linear infinite;
}

@keyframes fall-159 {
    35.35% {
        transform: translate(63.9282vw, 35.35vh) scale(0.4085);
    }

    to {
        transform: translate(65.6195vw, 100vh) scale(0.4085);
    }
}

.snow:nth-child(160) {
    opacity: 0.0876;
    transform: translate(24.8646vw, -10px) scale(0.3773);
    animation: fall-160 27s -30s linear infinite;
}

@keyframes fall-160 {
    34.17% {
        transform: translate(34.5235vw, 34.17vh) scale(0.3773);
    }

    to {
        transform: translate(29.69405vw, 100vh) scale(0.3773);
    }
}

.snow:nth-child(161) {
    opacity: 0.0379;
    transform: translate(65.9665vw, -10px) scale(0.2408);
    animation: fall-161 21s -20s linear infinite;
}

@keyframes fall-161 {
    60.909% {
        transform: translate(61.5842vw, 60.909vh) scale(0.2408);
    }

    to {
        transform: translate(63.77535vw, 100vh) scale(0.2408);
    }
}

.snow:nth-child(162) {
    opacity: 0.0837;
    transform: translate(56.2788vw, -10px) scale(0.1306);
    animation: fall-162 28s -13s linear infinite;
}

@keyframes fall-162 {
    64.274% {
        transform: translate(61.3539vw, 64.274vh) scale(0.1306);
    }

    to {
        transform: translate(58.81635vw, 100vh) scale(0.1306);
    }
}

.snow:nth-child(163) {
    opacity: 0.8771;
    transform: translate(63.0696vw, -10px) scale(0.6597);
    animation: fall-163 21s -18s linear infinite;
}

@keyframes fall-163 {
    39.53% {
        transform: translate(59.5785vw, 39.53vh) scale(0.6597);
    }

    to {
        transform: translate(61.32405vw, 100vh) scale(0.6597);
    }
}

.snow:nth-child(164) {
    opacity: 0.9999;
    transform: translate(4.2825vw, -10px) scale(0.0717);
    animation: fall-164 14s -13s linear infinite;
}

@keyframes fall-164 {
    79.762% {
        transform: translate(-3.9735vw, 79.762vh) scale(0.0717);
    }

    to {
        transform: translate(0.1545vw, 100vh) scale(0.0717);
    }
}

.snow:nth-child(165) {
    opacity: 0.4714;
    transform: translate(99.4958vw, -10px) scale(0.3269);
    animation: fall-165 21s -21s linear infinite;
}

@keyframes fall-165 {
    39.387% {
        transform: translate(105.6757vw, 39.387vh) scale(0.3269);
    }

    to {
        transform: translate(102.58575vw, 100vh) scale(0.3269);
    }
}

.snow:nth-child(166) {
    opacity: 0.3746;
    transform: translate(53.0239vw, -10px) scale(0.3657);
    animation: fall-166 12s -24s linear infinite;
}

@keyframes fall-166 {
    70.631% {
        transform: translate(62.7074vw, 70.631vh) scale(0.3657);
    }

    to {
        transform: translate(57.86565vw, 100vh) scale(0.3657);
    }
}

.snow:nth-child(167) {
    opacity: 0.5709;
    transform: translate(79.2712vw, -10px) scale(0.4085);
    animation: fall-167 30s -15s linear infinite;
}

@keyframes fall-167 {
    46.51% {
        transform: translate(72.7296vw, 46.51vh) scale(0.4085);
    }

    to {
        transform: translate(76.0004vw, 100vh) scale(0.4085);
    }
}

.snow:nth-child(168) {
    opacity: 0.4179;
    transform: translate(36.2152vw, -10px) scale(0.1466);
    animation: fall-168 14s -6s linear infinite;
}

@keyframes fall-168 {
    76.242% {
        transform: translate(33.3566vw, 76.242vh) scale(0.1466);
    }

    to {
        transform: translate(34.7859vw, 100vh) scale(0.1466);
    }
}

.snow:nth-child(169) {
    opacity: 0.5992;
    transform: translate(59.5258vw, -10px) scale(0.1451);
    animation: fall-169 26s -21s linear infinite;
}

@keyframes fall-169 {
    75.926% {
        transform: translate(59.2684vw, 75.926vh) scale(0.1451);
    }

    to {
        transform: translate(59.3971vw, 100vh) scale(0.1451);
    }
}

.snow:nth-child(170) {
    opacity: 0.4882;
    transform: translate(69.8301vw, -10px) scale(0.6129);
    animation: fall-170 15s -17s linear infinite;
}

@keyframes fall-170 {
    48.217% {
        transform: translate(74.4212vw, 48.217vh) scale(0.6129);
    }

    to {
        transform: translate(72.12565vw, 100vh) scale(0.6129);
    }
}

.snow:nth-child(171) {
    opacity: 0.5528;
    transform: translate(38.7188vw, -10px) scale(0.0332);
    animation: fall-171 28s -17s linear infinite;
}

@keyframes fall-171 {
    44.117% {
        transform: translate(48.4211vw, 44.117vh) scale(0.0332);
    }

    to {
        transform: translate(43.56995vw, 100vh) scale(0.0332);
    }
}

.snow:nth-child(172) {
    opacity: 0.5346;
    transform: translate(52.394vw, -10px) scale(0.3339);
    animation: fall-172 25s -28s linear infinite;
}

@keyframes fall-172 {
    36.243% {
        transform: translate(57.8666vw, 36.243vh) scale(0.3339);
    }

    to {
        transform: translate(55.1303vw, 100vh) scale(0.3339);
    }
}

.snow:nth-child(173) {
    opacity: 0.8248;
    transform: translate(37.0368vw, -10px) scale(0.9866);
    animation: fall-173 29s -29s linear infinite;
}

@keyframes fall-173 {
    46.597% {
        transform: translate(31.2186vw, 46.597vh) scale(0.9866);
    }

    to {
        transform: translate(34.1277vw, 100vh) scale(0.9866);
    }
}

.snow:nth-child(174) {
    opacity: 0.6638;
    transform: translate(12.2055vw, -10px) scale(0.0138);
    animation: fall-174 22s -1s linear infinite;
}

@keyframes fall-174 {
    58.418% {
        transform: translate(9.5348vw, 58.418vh) scale(0.0138);
    }

    to {
        transform: translate(10.87015vw, 100vh) scale(0.0138);
    }
}

.snow:nth-child(175) {
    opacity: 0.179;
    transform: translate(86.1vw, -10px) scale(0.4803);
    animation: fall-175 16s -13s linear infinite;
}

@keyframes fall-175 {
    75.752% {
        transform: translate(89.5932vw, 75.752vh) scale(0.4803);
    }

    to {
        transform: translate(87.8466vw, 100vh) scale(0.4803);
    }
}

.snow:nth-child(176) {
    opacity: 0.2015;
    transform: translate(36.3738vw, -10px) scale(0.805);
    animation: fall-176 12s -15s linear infinite;
}

@keyframes fall-176 {
    36.014% {
        transform: translate(41.4468vw, 36.014vh) scale(0.805);
    }

    to {
        transform: translate(38.9103vw, 100vh) scale(0.805);
    }
}

.snow:nth-child(177) {
    opacity: 0.4943;
    transform: translate(47.0746vw, -10px) scale(0.4928);
    animation: fall-177 28s -8s linear infinite;
}

@keyframes fall-177 {
    47.345% {
        transform: translate(42.3207vw, 47.345vh) scale(0.4928);
    }

    to {
        transform: translate(44.69765vw, 100vh) scale(0.4928);
    }
}

.snow:nth-child(178) {
    opacity: 0.9426;
    transform: translate(99.3236vw, -10px) scale(0.2999);
    animation: fall-178 19s -3s linear infinite;
}

@keyframes fall-178 {
    48.536% {
        transform: translate(90.5529vw, 48.536vh) scale(0.2999);
    }

    to {
        transform: translate(94.93825vw, 100vh) scale(0.2999);
    }
}

.snow:nth-child(179) {
    opacity: 0.6399;
    transform: translate(15.7813vw, -10px) scale(0.7856);
    animation: fall-179 19s -20s linear infinite;
}

@keyframes fall-179 {
    30.132% {
        transform: translate(18.9399vw, 30.132vh) scale(0.7856);
    }

    to {
        transform: translate(17.3606vw, 100vh) scale(0.7856);
    }
}

.snow:nth-child(180) {
    opacity: 0.8503;
    transform: translate(10.9591vw, -10px) scale(0.7916);
    animation: fall-180 12s -7s linear infinite;
}

@keyframes fall-180 {
    36.703% {
        transform: translate(9.1547vw, 36.703vh) scale(0.7916);
    }

    to {
        transform: translate(10.0569vw, 100vh) scale(0.7916);
    }
}

.snow:nth-child(181) {
    opacity: 0.1348;
    transform: translate(53.1461vw, -10px) scale(0.8013);
    animation: fall-181 22s -19s linear infinite;
}

@keyframes fall-181 {
    50.387% {
        transform: translate(59.4317vw, 50.387vh) scale(0.8013);
    }

    to {
        transform: translate(56.2889vw, 100vh) scale(0.8013);
    }
}

.snow:nth-child(182) {
    opacity: 0.9543;
    transform: translate(58.2148vw, -10px) scale(0.0388);
    animation: fall-182 15s -14s linear infinite;
}

@keyframes fall-182 {
    75.531% {
        transform: translate(62.9471vw, 75.531vh) scale(0.0388);
    }

    to {
        transform: translate(60.58095vw, 100vh) scale(0.0388);
    }
}

.snow:nth-child(183) {
    opacity: 0.5708;
    transform: translate(82.0553vw, -10px) scale(0.485);
    animation: fall-183 10s -6s linear infinite;
}

@keyframes fall-183 {
    31.738% {
        transform: translate(76.427vw, 31.738vh) scale(0.485);
    }

    to {
        transform: translate(79.24115vw, 100vh) scale(0.485);
    }
}

.snow:nth-child(184) {
    opacity: 0.0712;
    transform: translate(0.9395vw, -10px) scale(0.6482);
    animation: fall-184 26s -7s linear infinite;
}

@keyframes fall-184 {
    48.022% {
        transform: translate(-4.1316vw, 48.022vh) scale(0.6482);
    }

    to {
        transform: translate(-1.59605vw, 100vh) scale(0.6482);
    }
}

.snow:nth-child(185) {
    opacity: 0.4314;
    transform: translate(73.6599vw, -10px) scale(0.9771);
    animation: fall-185 26s -21s linear infinite;
}

@keyframes fall-185 {
    31.231% {
        transform: translate(71.9023vw, 31.231vh) scale(0.9771);
    }

    to {
        transform: translate(72.7811vw, 100vh) scale(0.9771);
    }
}

.snow:nth-child(186) {
    opacity: 0.1247;
    transform: translate(17.9018vw, -10px) scale(0.482);
    animation: fall-186 17s -23s linear infinite;
}

@keyframes fall-186 {
    48.965% {
        transform: translate(21.7857vw, 48.965vh) scale(0.482);
    }

    to {
        transform: translate(19.84375vw, 100vh) scale(0.482);
    }
}

.snow:nth-child(187) {
    opacity: 0.6122;
    transform: translate(79.2544vw, -10px) scale(0.022);
    animation: fall-187 13s -18s linear infinite;
}

@keyframes fall-187 {
    57.741% {
        transform: translate(87.3109vw, 57.741vh) scale(0.022);
    }

    to {
        transform: translate(83.28265vw, 100vh) scale(0.022);
    }
}

.snow:nth-child(188) {
    opacity: 0.7029;
    transform: translate(54.5522vw, -10px) scale(0.7017);
    animation: fall-188 23s -23s linear infinite;
}

@keyframes fall-188 {
    73.241% {
        transform: translate(59.5396vw, 73.241vh) scale(0.7017);
    }

    to {
        transform: translate(57.0459vw, 100vh) scale(0.7017);
    }
}

.snow:nth-child(189) {
    opacity: 0.3526;
    transform: translate(75.9194vw, -10px) scale(0.6914);
    animation: fall-189 14s -15s linear infinite;
}

@keyframes fall-189 {
    35.731% {
        transform: translate(70.0908vw, 35.731vh) scale(0.6914);
    }

    to {
        transform: translate(73.0051vw, 100vh) scale(0.6914);
    }
}

.snow:nth-child(190) {
    opacity: 0.341;
    transform: translate(8.7055vw, -10px) scale(0.0739);
    animation: fall-190 25s -3s linear infinite;
}

@keyframes fall-190 {
    62.843% {
        transform: translate(9.0326vw, 62.843vh) scale(0.0739);
    }

    to {
        transform: translate(8.86905vw, 100vh) scale(0.0739);
    }
}

.snow:nth-child(191) {
    opacity: 0.2226;
    transform: translate(21.6214vw, -10px) scale(0.1503);
    animation: fall-191 24s -20s linear infinite;
}

@keyframes fall-191 {
    63.759% {
        transform: translate(27.6373vw, 63.759vh) scale(0.1503);
    }

    to {
        transform: translate(24.62935vw, 100vh) scale(0.1503);
    }
}

.snow:nth-child(192) {
    opacity: 0.2353;
    transform: translate(68.7895vw, -10px) scale(0.9739);
    animation: fall-192 15s -4s linear infinite;
}

@keyframes fall-192 {
    72.208% {
        transform: translate(65.2812vw, 72.208vh) scale(0.9739);
    }

    to {
        transform: translate(67.03535vw, 100vh) scale(0.9739);
    }
}

.snow:nth-child(193) {
    opacity: 0.7317;
    transform: translate(45.7966vw, -10px) scale(0.5618);
    animation: fall-193 29s -20s linear infinite;
}

@keyframes fall-193 {
    38.177% {
        transform: translate(48.9203vw, 38.177vh) scale(0.5618);
    }

    to {
        transform: translate(47.35845vw, 100vh) scale(0.5618);
    }
}

.snow:nth-child(194) {
    opacity: 0.1465;
    transform: translate(49.8403vw, -10px) scale(0.8306);
    animation: fall-194 14s -18s linear infinite;
}

@keyframes fall-194 {
    65.705% {
        transform: translate(56.8028vw, 65.705vh) scale(0.8306);
    }

    to {
        transform: translate(53.32155vw, 100vh) scale(0.8306);
    }
}

.snow:nth-child(195) {
    opacity: 0.2971;
    transform: translate(91.1086vw, -10px) scale(0.1813);
    animation: fall-195 17s -25s linear infinite;
}

@keyframes fall-195 {
    66.937% {
        transform: translate(85.2615vw, 66.937vh) scale(0.1813);
    }

    to {
        transform: translate(88.18505vw, 100vh) scale(0.1813);
    }
}

.snow:nth-child(196) {
    opacity: 0.8214;
    transform: translate(87.2935vw, -10px) scale(0.7893);
    animation: fall-196 10s -19s linear infinite;
}

@keyframes fall-196 {
    73.935% {
        transform: translate(94.7506vw, 73.935vh) scale(0.7893);
    }

    to {
        transform: translate(91.02205vw, 100vh) scale(0.7893);
    }
}

.snow:nth-child(197) {
    opacity: 0.1808;
    transform: translate(72.9409vw, -10px) scale(0.5116);
    animation: fall-197 23s -16s linear infinite;
}

@keyframes fall-197 {
    74.228% {
        transform: translate(67.1071vw, 74.228vh) scale(0.5116);
    }

    to {
        transform: translate(70.024vw, 100vh) scale(0.5116);
    }
}

.snow:nth-child(198) {
    opacity: 0.6675;
    transform: translate(9.2003vw, -10px) scale(0.7263);
    animation: fall-198 18s -25s linear infinite;
}

@keyframes fall-198 {
    58.882% {
        transform: translate(7.7747vw, 58.882vh) scale(0.7263);
    }

    to {
        transform: translate(8.4875vw, 100vh) scale(0.7263);
    }
}

.snow:nth-child(199) {
    opacity: 0.9878;
    transform: translate(6.1047vw, -10px) scale(0.4389);
    animation: fall-199 24s -10s linear infinite;
}

@keyframes fall-199 {
    76.544% {
        transform: translate(15.6042vw, 76.544vh) scale(0.4389);
    }

    to {
        transform: translate(10.85445vw, 100vh) scale(0.4389);
    }
}

.snow:nth-child(200) {
    opacity: 0.7186;
    transform: translate(74.5255vw, -10px) scale(0.2784);
    animation: fall-200 12s -4s linear infinite;
}

@keyframes fall-200 {
    63.902% {
        transform: translate(81.9179vw, 63.902vh) scale(0.2784);
    }

    to {
        transform: translate(78.2217vw, 100vh) scale(0.2784);
    }
}

