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

@keyframes fadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
}
.fadeIn { animation-name: fadeIn }

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


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


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

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

.fadeInUpBig {
    animation-name: fadeInUpBig
}



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

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

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

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

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

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

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

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

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

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

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

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