@charset "UTF-8";



/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

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

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

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

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    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-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    40%,
    43%,
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06)
    }
    70% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    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-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    40%,
    43%,
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06)
    }
    70% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-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
    }
}

.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)
    }
}

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

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

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

@-webkit-keyframes shake {
    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 shake {
    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)
    }
}

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

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

.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(0);
        transform: rotate(0)
    }
}

@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(0);
        transform: rotate(0)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-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)
    }
}

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

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }
    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: none;
        transform: none
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }
    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: none;
        transform: none
    }
}

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

@-webkit-keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }
    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(.39063deg) skewY(.39063deg);
        transform: skewX(.39063deg) skewY(.39063deg)
    }
    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

@keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }
    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(.39063deg) skewY(.39063deg);
        transform: skewX(.39063deg) skewY(.39063deg)
    }
    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

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

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

.bounceIn {
    -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);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@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);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

.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);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@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);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

.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);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@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);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

.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);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    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);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.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)
    }
}

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

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.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
    }
}

.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: none;
        transform: none
    }
}

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

.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: none;
        transform: none
    }
}

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

.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: none;
        transform: none
    }
}

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

.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: none;
        transform: none
    }
}

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

.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: none;
        transform: none
    }
}

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

.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: none;
        transform: none
    }
}

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

.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: none;
        transform: none
    }
}

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

.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: none;
        transform: none
    }
}

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

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

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

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

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }
    0%,
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg)
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }
    50%,
    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }
    0%,
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg)
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }
    50%,
    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    0%,
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }
    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);
        opacity: 0
    }
    0%,
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }
    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)
    }
}

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

.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
    }
}

.flipOutX {
    -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
    }
}

.flipOutY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    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)
    }
    60%,
    80% {
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    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)
    }
    60%,
    80% {
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

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

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

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: center
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: center
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: left bottom
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: left bottom
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: right bottom
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: right bottom
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: left bottom
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: left bottom
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: right bottom
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    0%,
    to {
        -webkit-transform-origin: right bottom
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left
    }
    0%,
    20%,
    60% {
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left
    }
    40%,
    80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -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-transform-origin: top left;
        transform-origin: top left
    }
    0%,
    20%,
    60% {
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left
    }
    40%,
    80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -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
    }
}

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

@-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: none;
        transform: none
    }
}

@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: none;
        transform: none
    }
}

.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)
    }
}

.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
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

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

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    50%,
    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    50%,
    to {
        opacity: 0
    }
}

.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-transform-origin: center bottom;
        transform-origin: center bottom;
        -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-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

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

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

@-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);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@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);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

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

@-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-transform-origin: center bottom;
        transform-origin: center bottom;
        -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-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

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

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

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

.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)
    }
}

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

.tooltipster-fall,
.tooltipster-grow.tooltipster-show {
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1);
    -moz-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -ms-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-base {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
    position: absolute
}

.tooltipster-box {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.tooltipster-content {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 100%;
    max-width: 100%;
    overflow: auto
}

.tooltipster-ruler {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden
}

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity
}

.tooltipster-fade.tooltipster-show {
    opacity: 1
}

.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: -o-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-backface-visibility: hidden
}

.tooltipster-grow.tooltipster-show {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -o-transition-property: -o-transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.tooltipster-swing.tooltipster-show {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    transform: rotateZ(0);
    -webkit-transition-timing-function: cubic-bezier(.23, .635, .495, 1);
    -webkit-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
    -o-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
    transition-timing-function: cubic-bezier(.23, .635, .495, 2.4)
}

.tooltipster-fall {
    -webkit-transition-property: top;
    -o-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-fall.tooltipster-initial {
    top: 0!important
}

.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    top: 0!important;
    opacity: 0
}

.tooltipster-slide {
    -webkit-transition-property: left;
    -o-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-slide.tooltipster-initial {
    left: -40px!important
}

.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    left: 0!important;
    opacity: 0
}

@-webkit-keyframes tooltipster-fading {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes tooltipster-fading {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.tooltipster-update-fade {
    -webkit-animation: tooltipster-fading .4s;
    animation: tooltipster-fading .4s
}

@-webkit-keyframes tooltipster-rotating {
    25% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg)
    }
    75% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg)
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes tooltipster-rotating {
    25% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg)
    }
    75% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg)
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

.tooltipster-update-rotate {
    -webkit-animation: tooltipster-rotating .6s;
    animation: tooltipster-rotating .6s
}

@-webkit-keyframes tooltipster-scaling {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes tooltipster-scaling {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.tooltipster-update-scale {
    -webkit-animation: tooltipster-scaling .6s;
    animation: tooltipster-scaling .6s
}

.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid #000;
    -webkit-border-radius: 4px;
    border-radius: 4px
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px
}

.tooltipster-sidetip .tooltipster-content {
    color: #fff;
    line-height: 18px;
    padding: 6px 14px
}

.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 10px;
    margin-left: -10px;
    top: 0;
    width: 20px
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    right: 0;
    top: 0;
    width: 10px
}

.startup-top {
    position: relative
}

.startup-overlay {
    position: absolute;
    top: 170px;
    z-index: 10;
    width: 100%
}

.startup-title {
    font-size: 226px;
    text-align: center;
    color: #fff;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700!important;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
    top: -30px
}

.startup-title__sub {
    position: absolute;
    bottom: 3px;
    width: 100%;
    left: 0;
    color: #fd4b20;
    z-index: -1
}

.startup-ideas {
    position: absolute;
    bottom: 24px;
    width: 100%
}

.startup-idea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 690px
}

.startup-idea-wrap {
    position: relative
}

.startup-idea__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 465px;
    -ms-flex: 0 0 465px;
    flex: 0 0 465px;
    -webkit-transform: translate(0, 20px);
    -ms-transform: translate(0, 20px);
    transform: translate(0, 20px);
    will-change: transform;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 210px
}

.startup-idea__item:nth-child(3),
.startup-idea__item:nth-child(4) {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.startup-idea__item h2 {
    color: #fd4b20;
    line-height: 1.2;
    margin-bottom: 5px
}

.startup-idea__item p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5
}

.startup-scaleup {
    background-color: rgba(3, 38, 77, .5);
    text-align: center;
    padding: 60px 15px;
    position: relative;
    z-index: 12;
    top: -40px
}

.startup-scaleup h3 {
    color: #fff;
    margin-bottom: 20px
}

.startup-contact {
    padding: 10px 0;
    margin: 113px 0 95px
}

.startup-contact h3 {
    margin-bottom: 46px
}

.startup-contact .startup-btn {
    background-color: #ff6329;
    border: 0;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear
}

.startup-contact .startup-btn:focus,
.startup-contact .startup-btn:hover {
    color: #fff;
    background: #ff976a;
    background: -webkit-linear-gradient(top, #ff976a 0, #ff8049 32%, #ff6a29 66%, #ff6a29 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff976a), color-stop(32%, #ff8049), color-stop(66%, #ff6a29), to(#ff6a29));
    background: -o-linear-gradient(top, #ff976a 0, #ff8049 32%, #ff6a29 66%, #ff6a29 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ff976a), color-stop(32%, #ff8049), color-stop(66%, #ff6a29), to(#ff6a29));
    background: linear-gradient(to bottom, #ff976a 0, #ff8049 32%, #ff6a29 66%, #ff6a29 100%)
}

.startup-btn {
    padding: 14px 20px;
    width: 159px;
    display: inline-block;
    background-color: #304358;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    border: 1px solid #304358;
    font-family: NeoSansProRegular;
    line-height: 1
}

.startup-btn:hover {
    background-color: transparent;
    color: #fff
}

.startup-stages__item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative
}

.startup-stages__item--in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.startup-stages__item--in>div {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 465px;
    -ms-flex: 0 0 465px;
    flex: 0 0 465px
}

.startup-stages__item-gif {
    position: relative
}

.startup-stages__item-gif img {
    max-width: 100%
}

.startup-stages__item h3 {
    color: #03346c;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 1.2
}

.startup-stages__item p {
    font-size: 16px;
    color: #363535;
    line-height: 1.5
}

.stages-list {
    position: relative;
    padding-top: 50px
}

.stages-list #startups-path,
.stages-list #startups-path-second {
    position: absolute;
    top: 0;
    right: 50%;
    -webkit-transform: translate(50%, 0);
    -ms-transform: translate(50%, 0);
    transform: translate(50%, 0);
    z-index: 10
}

.stages-list #startups-path rect,
.stages-list #startups-path-second rect {
    width: 2px
}

.idea-start {
    position: absolute;
    top: 38%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    z-index: 12
}

.idea-start h3 {
    position: absolute;
    top: 52%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    text-transform: uppercase;
    font-size: 36px;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    color: #fd4b20
}

.roadmap {
    padding: 70px 0;
    background: #021b33;
    background: -webkit-gradient(left top, right top, color-stop(0, #021b33), color-stop(100%, #0c5fad));
    background: -webkit-linear-gradient(left, #021b33 0, #0c5fad 100%);
    background: -o-linear-gradient(left, #021b33 0, #0c5fad 100%);
    background: -webkit-gradient(linear, left top, right top, from(#021b33), to(#0c5fad));
    background: linear-gradient(to right, #021b33 0, #0c5fad 100%);
    color: #fff
}

.roadmap .roadmap-title {
    color: #fd4b20;
    margin-bottom: 70px
}

.roadmap-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.roadmap-list h2,
.roadmap-list h3 {
    color: #fff;
    line-height: 1
}

.roadmap-list p {
    margin-bottom: 0;
    font-size: 14px
}

.roadmap-list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 175px;
    -ms-flex: 0 0 175px;
    flex: 0 0 175px;
    list-style-type: none;
    position: relative
}

.roadmap-list li:not(:last-child)::after {
    content: url(/wp-content/themes/itsvit/img/Startups/chevron.png);
    position: absolute;
    top: 55%;
    right: -45px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.chevron-hidden {
    display: none
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.startup-scroll {
    position: fixed;
    bottom: 0;
    width: 50px;
    right: 50%;
    -webkit-transform: translate(50%, 0);
    -ms-transform: translate(50%, 0);
    transform: translate(50%, 0)
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translate(50%, 10%);
        transform: translate(50%, 10%)
    }
    15% {
        -webkit-transform: translate(50%, 8%);
        transform: translate(50%, 8%)
    }
    30% {
        -webkit-transform: translate(50%, 7%);
        transform: translate(50%, 7%)
    }
    45% {
        -webkit-transform: translate(50%, 5%);
        transform: translate(50%, 5%)
    }
    60% {
        -webkit-transform: translate(50%, 3%);
        transform: translate(50%, 3%)
    }
    75% {
        -webkit-transform: translate(50%, 2%);
        transform: translate(50%, 2%)
    }
    100% {
        -webkit-transform: translate(50%, 0);
        transform: translate(50%, 0)
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translate(50%, 10%);
        transform: translate(50%, 10%)
    }
    15% {
        -webkit-transform: translate(50%, 8%);
        transform: translate(50%, 8%)
    }
    30% {
        -webkit-transform: translate(50%, 7%);
        transform: translate(50%, 7%)
    }
    45% {
        -webkit-transform: translate(50%, 5%);
        transform: translate(50%, 5%)
    }
    60% {
        -webkit-transform: translate(50%, 3%);
        transform: translate(50%, 3%)
    }
    75% {
        -webkit-transform: translate(50%, 2%);
        transform: translate(50%, 2%)
    }
    100% {
        -webkit-transform: translate(50%, 0);
        transform: translate(50%, 0)
    }
}

.active-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-5px, -50%);
    -ms-transform: translate(-5px, -50%);
    transform: translate(-5px, -50%);
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #fd4b20
}

.active-dot .active-line {
    position: absolute;
    height: 2px;
    background-color: #fd4b20;
    width: 100px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.active-dot .active-line.active-left {
    left: 0
}

.active-dot .active-line.active-right {
    right: 0
}

@media only screen and (max-width:1400px) {
    .step-anchor .container,
    .step-bottom .container,
    .step-top .container {
        width: 1070px
    }
    .cases .slick-dots {
        display: block
    }
}

@media only screen and (max-width:1270px) {
    .info-slider {
        width: 100%
    }
    .quick-start__list {
        width: 98%;
        margin: 42px 0 0
    }
    .reviews .slider-nav-cont .owl-nav .next {
        right: -20px
    }
    .reviews .slider-nav-cont .owl-nav .prev {
        left: -20px
    }
}

@media only screen and (max-width:1230px) {
    .slider-nav-cont .owl-nav div:last-child {
        right: -35px
    }
    .slider-nav-cont .owl-nav div:first-child {
        left: -35px
    }
    .insights .owl-nav div:first-child {
        left: 3px;
        top: 176px
    }
    .insights .owl-nav div:last-child {
        right: 3px;
        top: 176px
    }
}

@media only screen and (max-width:1200px) {
    .quick-start__item-2 .quick-start__subtitle,
    .quick-start__item-3 .quick-start__subtitle {
        display: none
    }
    .quick-start__item {
        margin-top: -40px
    }
    .animation__item {
        padding: 20px 15px
    }
    .cases {
        padding: 0 15px 30px
    }
    .banner__form--holder {
        right: 15px
    }
    .step-anchor .container,
    .step-bottom .container,
    .step-top .container {
        width: auto
    }
    .slide1 h2 {
        font-size: 40px;
        line-height: 50px
    }
    .our-projects-progress span {
        display: block
    }
    .projects-progress {
        padding: 0
    }
    .our-wrap .our-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .our-wrap .our-items-img {
        margin: 0
    }
    .our-wrap p {
        text-align: center
    }
    .update-items {
        padding: 0
    }
    .tabs div {
        margin-right: 0;
        padding: 7px 0;
        width: 190px;
        font-size: 16px
    }
    .portfolio-nav ul li {
        padding: 0 27px
    }
    .portfolio-tabs {
        text-align: left
    }
    .wpcf7-form-control-wrap {
        width: 100%!important
    }
    .wpcf7-form>p span input {
        width: 100%
    }
    .wpcf7-form-control-wrap textarea {
        width: 100%!important
    }
    .contact-img {
        display: block;
        margin-bottom: 10px
    }
    .img-descr ul a {
        font-size: 14px
    }
    .mail-descr {
        margin-left: 1px
    }
    .img-descr {
        margin-left: 0
    }
    .mnu-list ul li {
        padding: 0;
        margin: 0 5px
    }
    .togg_wrap {
        margin-left: 0
    }
    .startup-title {
        font-size: 19vw
    }
    .startup-stages__item--in>div {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 400px;
        -ms-flex: 0 0 400px;
        flex: 0 0 400px
    }
    .startup-idea__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 350px;
        -ms-flex: 0 0 350px;
        flex: 0 0 350px
    }
    .roadmap .container {
        width: 100%
    }
    .roadmap-list {
        display: block
    }
    .roadmap-list h2 {
        text-align: center
    }
    .roadmap-list li {
        width: 100%;
        text-align: center;
        margin-bottom: 20px
    }
    .roadmap-list li:not(:last-child)::after {
        display: none
    }
    .roadmap-list li:last-child img {
        display: none
    }
    .roadmap .roadmap-title {
        margin-bottom: 20px
    }
    .chevron-hidden {
        display: block;
        margin: 30px auto 0
    }
    body .blog-gallary img {
        float: none
    }
    .animation__list,
    .banner__content,
    .quick-start__list,
    footer .container {
        width: 100%;
        padding: 0 15px
    }
    .quick-start__item-first {
        width: 540px
    }
    .quick-start__item-second {
        margin-left: -252px
    }
    .quick-start__item-third {
        margin-left: -205px
    }
    .quick-start__item-second .content-holder {
        margin-left: 153px;
        width: 225px
    }
    .quick-start__item-third .content-holder {
        margin-left: 162px;
        width: 210px
    }
    .strengths__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 31%;
        -ms-flex: 0 0 31%;
        flex: 0 0 31%
    }
}

@media only screen and (max-width:1199px) {
    .all-cases--img {
        height: 202px
    }
    .portfolio-section .container {
        width: 970px
    }
    .releated-services__img {
        height: 127px
    }
    .product-overview__img {
        max-width: 90%;
        margin: 50px auto
    }
    .cases__banner h1 {
        font-size: 42px;
        line-height: 1.3
    }
    .insights__item {
        margin: 29px
    }
    .cases__item {
        margin: 0 29px 10px
    }
    .user-logo {
        right: 40px
    }
    .quick-start__list {
        width: 94%;
        margin: 42px 0 0
    }
    .quick-start__item-2 {
        left: 32%
    }
    .quick-start__item-3 {
        left: 63%
    }
    .quick-start__item-2 .content-holder {
        margin-left: 74px
    }
    .insights .owl-nav div:first-child {
        left: -45px;
        top: 170px
    }
    .insights .owl-nav div:last-child {
        right: -45px;
        top: 170px
    }
    .slick-left {
        left: -30px
    }
    .slick-right {
        right: -30px
    }
    .cases__banner h1 {
        width: 58%
    }
    .case__main-desc {
        width: 85%
    }
}

@media only screen and (max-width:1110px) {
    .quick-start__item-2 {
        left: 31%
    }
    .quick-start__item-3 {
        left: 61%
    }
    .quick-start__item-2 .content-holder {
        margin-left: 33%;
        width: 170px
    }
    .quick-start__item-3 .content-holder {
        margin-left: 35%;
        width: 170px
    }
}

@media only screen and (max-width:1040px) {
    .reviews .slider-nav-cont .owl-nav .prev {
        left: -18px
    }
    .reviews .slider-nav-cont .owl-nav .next {
        right: -18px
    }
}

@media only screen and (max-width:991px) {
    .cases {
        margin: 0
    }
    .portfolio-section .categories__cases {
        height: 60px;
        -webkit-border-radius: 30px;
        border-radius: 30px
    }
    .portfolio-section .categories__cases .hover-block {
        -webkit-border-radius: 30px;
        border-radius: 30px
    }
    .portfolio-section .categories__list--img {
        height: 220px
    }
    .all-cases__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%
    }
    .all-cases--img {
        height: 230px
    }
    .portfolio-section .container {
        width: 750px
    }
    .testimonials .reviews__item {
        width: 90%
    }
    .product-overview__img img {
        max-width: 300px
    }
    .row-reverse {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .cases__banner,
    .cases__banner .banner-content {
        height: auto
    }
    .cases__banner h1 {
        font-size: 34px
    }
    .cases__banner .banner-content {
        padding: 30px 0
    }
    .whitepaper__left {
        width: 100%
    }
    footer .ico-list {
        padding-bottom: 0
    }
    .blog-ico .ico-list ul li a svg,
    footer .ico-list ul li a svg {
        left: 0
    }
    .quick-start__list {
        width: 90%
    }
    .quick-start__item-3 .content-holder {
        margin-left: 44%
    }
    .quick-start__item-2 .content-holder {
        margin-left: 38%
    }
    .quick-start__item-2 {
        left: 32%
    }
    .quick-start__item-3 {
        left: 60%
    }
    .animation__item {
        background: rgba(0, 0, 0, .14)!important;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: auto;
        width: 500px;
        margin: 0 auto 20px;
        padding: 30px
    }
    .animation__item .btn--opacity {
        width: 100%
    }
    .footer-subscribe {
        margin-bottom: 0
    }
    .banner-top {
        height: 750px
    }
    .banner__content-left {
        margin-top: 0
    }
    .strengths__list {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    footer .container {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .footer__third-colon {
        width: 350px
    }
    .get__list {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .get__item {
        margin: 20px
    }
    .animation__title {
        font-size: 26px;
        min-height: auto;
        margin: 0;
        color: #ff6a29!important
    }
    .animation__item .btn--opacity {
        color: #fff;
        background: #ff976a;
        background: -webkit-linear-gradient(top, #ff976a 0, #ff8049 32%, #ff6a29 66%, #ff6a29 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(#ff976a), color-stop(32%, #ff8049), color-stop(66%, #ff6a29), to(#ff6a29));
        background: -o-linear-gradient(top, #ff976a 0, #ff8049 32%, #ff6a29 66%, #ff6a29 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ff976a), color-stop(32%, #ff8049), color-stop(66%, #ff6a29), to(#ff6a29));
        background: linear-gradient(to bottom, #ff976a 0, #ff8049 32%, #ff6a29 66%, #ff6a29 100%)
    }
    .animation__item .btn--opacity {
        position: initial;
        margin-top: 25px
    }
    .animation__info {
        margin: 20px 0 0
    }
    .animation__subtitle {
        margin-top: 20px;
        min-height: auto
    }
    #particles-js2 {
        height: 1125px;
        position: relative
    }
    .animation__list {
        position: absolute;
        top: 40px;
        bottom: 25px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .whitepaper-colon__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .whitepaper__right {
        margin: 20px auto
    }
    .whitepaper__form {
        width: 100%
    }
    #particles-js {
        height: 800px
    }
    .footer__first-colon {
        width: 50%
    }
    .footer__second-colon {
        display: none
    }
    nav>ul {
        text-align: center
    }
    nav>ul>li {
        margin-right: 15px
    }
    .slide1 h2 {
        margin-bottom: 70px
    }
    .about-us-descr {
        text-align: center
    }
    .our-wrap .our-items {
        padding: 30px 5px 0
    }
    .our-list {
        padding: 0
    }
    .our-strengths {
        padding: 30px 0 30px
    }
    .our-strengths h3 {
        margin-bottom: 35px
    }
    .slider-nav-cont .owl-nav div:last-child {
        right: -35px
    }
    .slider-nav-cont .owl-nav div:first-child {
        left: -35px
    }
    .footer-ico,
    .mnu-list {
        text-align: center
    }
    .slide4 h2 {
        font-size: 40px
    }
    .tabs-content {
        padding-right: 0
    }
    .tab_item table {
        margin-top: 20px
    }
    input {
        margin-right: 5px
    }
    textarea {
        width: 99%
    }
    .contact-wrapper {
        margin-top: 50px
    }
    .portf-proj-gray {
        margin-top: 15px
    }
    .project-aside {
        padding-top: 20px
    }
    .blog-wrap {
        margin-bottom: 50px
    }
    .blog-sidebar {
        text-align: center
    }
    .blog-ico .ico-list {
        display: block;
        margin: 0 auto
    }
    .portfolio-nav ul li {
        padding: 0 8px
    }
    .m-nav .mnu>li:nth-child(n+4) {
        display: none
    }
    .c-nav {
        position: absolute;
        width: 100%;
        top: 70px;
        left: 0;
        background-color: #fff;
        z-index: 100;
        -webkit-box-shadow: 0 6px 17px 0 rgba(0, 0, 0, .1);
        box-shadow: 0 6px 17px 0 rgba(0, 0, 0, .1);
        text-align: center;
        transition: top .4s ease;
        -webkit-transition: top .4s ease;
        -moz-transition: top .4s ease;
        -o-transition: top .4s ease
    }
    .c-nav .mnu>li:nth-child(n+4) {
        display: block
    }
    .c-nav .mnu>li:nth-child(-n+3) {
        display: none
    }
    .c-nav .mnu li {
        margin: 0
    }
    .c-nav .mnu li a {
        line-height: 50px
    }
    .c-nav .mnu li:hover {
        background-color: #f9f9f9
    }
    .top-lang-wrap {
        display: none
    }
    .toggle_mnu {
        display: block;
        right: 100px
    }
    .grid-item,
    .grid-sizer {
        width: 33%
    }
    .design-popup .popup-img {
        max-height: 500px;
        height: auto
    }
    .animation-steps .step-title p {
        font-size: 14px
    }
    .step-body {
        padding-top: 50px
    }
    .step-body li {
        font-size: 14px
    }
    .step-footer.footer-5 {
        padding: 0 0 0 20px
    }
    .projects-progress {
        padding: 0
    }
    .description-item {
        margin-top: 25px
    }
    .map-counter {
        padding: 3%
    }
    .careers-list {
        width: 100%
    }
    .contact-descr form {
        padding-right: 0
    }
    .contact-items {
        display: inline-block;
        width: 49%;
        vertical-align: top
    }
    .contact-wrapper {
        padding-left: 115px
    }
    .instance-item {
        height: auto!important
    }
    .blog-sidebar-search {
        width: 400px;
        margin: 0 auto
    }
    .blog-sidebar {
        margin-top: 30px
    }
    .about-us-wrap {
        display: block
    }
    .about-us-wrap .about-us-left,
    .about-us-wrap .about-us-right {
        width: 100%;
        padding-right: 0
    }
    .about-us-wrap .about-us-right {
        padding: 0 15px
    }
    .about-us-descr {
        margin-right: 0;
        max-width: none
    }
    .idea-start {
        display: none
    }
    .startup-idea {
        display: block
    }
    .startup-idea__item {
        margin-bottom: 40px
    }
    .startup-idea-wrap {
        width: 100%
    }
    .startup-scaleup {
        padding: 10px
    }
    .startup-scaleup h3 {
        font-size: 20px
    }
    .stages-list #startups-path,
    .stages-list #startups-path-second {
        height: 100%!important;
        top: 0!important
    }
    .active-dot,
    .stages-list #startups-path,
    .stages-list #startups-path-second {
        display: none!important
    }
    .startup-ideas {
        height: 1000px
    }
    .startup-scaleup {
        position: absolute;
        width: 100%;
        bottom: 0
    }
    .startup-idea-wrap {
        top: 43%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%)
    }
    .startup-idea {
        height: auto
    }
    .startup-idea__item {
        display: block
    }
    .startup-stages__item--in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .startup-stages__item--in>div {
        -webkit-box-flex: 1;
        -webkit-flex: auto;
        -ms-flex: auto;
        flex: auto
    }
    .startup-stages__item--in .startup-stages__item-gif {
        margin-bottom: 15px
    }
    .startup-stages__item:nth-child(odd) .startup-stages__item--in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .technologies-img {
        width: 100%
    }
    .technologies-img .brick:nth-child(20) img {
        width: 40px
    }
    .technologies-img .brick:nth-child(25) {
        right: 33%
    }
    .technologies-img .brick:nth-child(16) {
        top: 31%;
        left: 34%
    }
    .technologies-img .brick:nth-child(21) {
        top: 27%
    }
    .technologies-img .brick:nth-child(13) img {
        width: 45px
    }
    .banner__content-left {
        width: 100%;
        text-align: center
    }
    .banner__content {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .banner__form--holder {
        right: 0
    }
    .banner__form--holder {
        position: relative
    }
    .btn__white {
        margin: 0 auto 50px
    }
    .reviews__item {
        margin: 22px 0 20px
    }
    .reviews__content {
        width: 47%
    }
    .user-logo img {
        max-width: 150px;
        height: auto!important
    }
    .user-logo {
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%)
    }
    .reviews__content {
        margin-top: 0
    }
    .reviews .slider-nav-cont .next,
    .reviews .slider-nav-cont .prev {
        top: 165px
    }
    .user__img__holder {
        margin-left: 18px
    }
    .reviews .slider-nav-cont .owl-nav {
        display: block
    }
    .strengths__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 40%;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%
    }
    .strengths {
        padding: 30px 15px
    }
    .insights__list {
        margin: 0
    }
    .insights__item {
        margin: 30px 20px
    }
    .c-nav .mnu li.contacts__item {
        margin-bottom: 15px
    }
    .reviews__item {
        margin-right: 30px
    }
    .reviews__content {
        width: 100%
    }
}

@media only screen and (max-width:900px) {
    .slider-nav-cont .owl-nav {
        display: none
    }
    .popup-full-text {
        width: 90%
    }
    .stages-wrap {
        overflow: hidden
    }
    .quick-start__item-2 .content-holder {
        margin-left: 41%
    }
    .quick-start__item-3 .content-holder {
        margin-left: 47%
    }
}

@media only screen and (max-width:799px) {
    .quick-start__item-3 .content-holder {
        margin-left: 58%
    }
    .quick-start__item-2 .content-holder {
        margin-left: 49%
    }
    .quick-start__item-2 {
        left: 28%
    }
    .quick-start__item-3 {
        left: 51%
    }
    #web-logo-slider .owl-nav,
    #web-site-slider .owl-nav {
        display: none
    }
    .c-nav {
        width: 65%;
        right: 110px;
        left: auto
    }
    .scrollmagic-pin-spacer {
        padding: 0!important
    }
    .step-each-year {
        width: 100%!important
    }
    .mobile-body {
        display: block
    }
    .step-anchor,
    .step-bottom {
        display: none
    }
    .step-progress {
        width: 4px;
        height: 300px;
        background-color: #d3d3d3;
        float: left;
        position: fixed;
        top: 300px
    }
    .animation-step-item {
        width: 100%
    }
    .animation-steps .step-header {
        margin: 0;
        border-left: 3px solid #ddd;
        position: relative;
        padding: 0 0 60px 0;
        -webkit-transition: all 1.5s ease;
        -o-transition: all 1.5s ease;
        transition: all 1.5s ease;
        -webkit-animation-duration: 1s;
        animation-duration: 1s
    }
    .progress-item {
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s
    }
    .animation-steps .step-header::before {
        content: "";
        width: 20px;
        height: 20px;
        background-color: #ddd;
        position: absolute;
        top: 0;
        left: -11px;
        -webkit-border-radius: 50%;
        border-radius: 50%
    }
    .animation-steps .step-header.header-on {
        border-color: #ff6329
    }
    .animation-steps .step-header.header-on::before {
        background-color: #ff6329
    }
    .animation-steps .step-header.header-on>div {
        opacity: 1
    }
    .animation-steps .step-header>div {
        opacity: 0;
        -webkit-transition: opacity .5s ease-in-out;
        -o-transition: opacity .5s ease-in-out;
        transition: opacity .5s ease-in-out
    }
    .mobile-year {
        margin-left: 30px;
        font-size: 16px;
        display: block;
        color: #ff6329;
        position: absolute;
        left: 200px;
        opacity: 0;
        -webkit-transition: 1s;
        -o-transition: 1s;
        transition: 1s
    }
    .animation-steps .step-header.header-on .mobile-year {
        left: 0;
        top: -11px;
        opacity: 1
    }
    .mobile-header {
        display: block
    }
    .continue-img {
        margin: 40px 0 0 27px;
        display: inline-block
    }
    .animation-steps .step-header:last-child {
        padding: 0
    }
    .animation-steps .step-header:last-child p {
        line-height: 1.29
    }
    .step-body {
        text-align: center;
        padding-top: 20px
    }
    .step-body ul {
        display: inline-block;
        text-align: left
    }
    .step-body li {
        opacity: 1!important;
        left: 0!important
    }
    .step-footer,
    .step-header {
        opacity: 1!important
    }
    .step-5-line.step-each-year {
        width: 0!important
    }
    .step-each-year a {
        background-color: #ff6329
    }
    .animation-steps {
        display: block
    }
    .step-footer {
        width: 60%;
        margin: 0 auto;
        margin-top: 20px;
        padding: 0 30px
    }
    .worldmap .dots,
    .worldmap img {
        -webkit-transform: scale(1)!important;
        -ms-transform: scale(1)!important;
        transform: scale(1)!important;
        opacity: 1!important
    }
}

@media only screen and (max-width:768px) {
    .quick-start {
        display: none
    }
    .menu-item-has-children>a {
        pointer-events: none
    }
    .expert {
        display: none
    }
}

@media only screen and (max-width:767px) {
    .reviews__slider .user__img__holder {
        height: 119px;
        width: 112px
    }
    .reviews__slider .user__img {
        height: 122px;
        width: 121px
    }
    .portfolio-section .container {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding-left: 15px;
        padding-right: 15px
    }
    .cases-expert {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
    .cases__banner .banner-content {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .cases__banner .banner__content-right,
    .cases__banner h1 {
        width: 78%;
        margin: 0 auto
    }
    .cases__banner .banner__form--holder {
        width: 100%
    }
    .cases__banner .banner__form--holder:before {
        width: 140%
    }
    .banner__content-right {
        margin: 0 auto
    }
    .cases-content__item {
        margin-right: 0
    }
    .testimonials .reviews__info {
        margin-top: 0
    }
    .testimonials .slider-nav-cont .owl-nav .next {
        right: 0;
        top: 125px
    }
    .testimonials .slider-nav-cont .owl-nav .prev {
        left: 0;
        top: 125px
    }
    .product-overview .title__sections {
        margin-bottom: 0
    }
    .product-overview__img {
        margin: 20px 0 30px
    }
    .product-overview .row {
        margin-bottom: 25px
    }
    .error404 .main-content {
        padding-top: 85px
    }
    #video-bg--bottom2>video {
        min-width: auto
    }
    .bottom-line {
        margin-top: 0
    }
    .strengths__item a:hover .strengths__item--img {
        top: 0
    }
    .insights {
        padding-top: 0
    }
    .reviews__carusel {
        width: 100%
    }
    .user-logo {
        position: absolute;
        margin-top: 100px;
        right: 0;
        top: 0;
        width: 100%;
        text-align: center
    }
    .reviews__content {
        width: 100%;
        margin: 0 0 0 30px
    }
    .reviews__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 20px auto 0;
        width: 86%
    }
    .reviews .slider-nav-cont .next,
    .reviews .slider-nav-cont .prev {
        top: 205px
    }
    .user__img__holder {
        height: 112px;
        width: 93px;
        zoom: .7
    }
    .reviews__info {
        margin-top: 190px
    }
    .quick-start {
        display: none
    }
    .cases__item,
    .insights__item {
        margin: 30px 10px
    }
    .reviews .slider-nav-cont .owl-nav .prev {
        left: -15px
    }
    .reviews .slider-nav-cont .owl-nav .next {
        right: -15px
    }
    .whitepaper__title {
        font-size: 24px
    }
    .whitepaper__subtitle {
        font-size: 32px
    }
    .whitepaper-section h1 {
        line-height: 1.2
    }
    .whitepaper-section__img {
        height: auto;
        padding: 30px 0 40px
    }
    .cases__carusel {
        margin-top: 0
    }
    .strengths__item {
        height: auto;
        padding: 14px 10px;
        margin: 0
    }
    .strengths__item a {
        -webkit-box-align: left!important;
        -webkit-align-items: left!important;
        -ms-flex-align: left!important;
        align-items: left!important;
        height: auto
    }
    .strengths__item--name {
        position: inherit;
        margin-left: 10px;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0)
    }
    .strengths__item--img {
        width: 65px
    }
    .strengths__item a:hover {
        background: 0 0
    }
    .strengths__item a:hover .item__visible p {
        margin: 0 0 0 10px
    }
    .strengths__item a:hover .item__hidden {
        display: none
    }
    .item__visible {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }
    .about-us-right {
        display: block
    }
    .clutch-logo {
        padding-bottom: 10px
    }
    .clutch-logo a {
        display: block
    }
    .clutch-logo img {
        margin: 0 auto;
        display: block
    }
    .lang-wrap {
        margin-right: 60px
    }
    .m-nav {
        display: none
    }
    .c-nav {
        display: block;
        overflow-y: scroll;
        padding-bottom: 15px
    }
    .c-nav .mnu li:nth-child(-n+3) {
        display: block
    }
    .toggle_mnu {
        right: 15px
    }
    .dropdown {
        left: 0;
        width: 100%;
        position: relative;
        -webkit-box-shadow: 0 0 11px -1px rgba(30, 50, 50, .2) inset;
        box-shadow: 0 0 11px -1px rgba(30, 50, 50, .2) inset;
        text-align: center;
        background-color: rgba(255, 255, 255, .05)
    }
    .top-lang ul {
        text-align: center
    }
    .togg_wrap {
        position: static
    }
    .our-list {
        width: 50%;
        padding: 0 15px
    }
    .bottom-mnu,
    .footer-ico,
    .footer-logo {
        height: 40px;
        margin: 0 auto
    }
    .bottom-mnu,
    .footer-logo {
        margin-bottom: 10px
    }
    footer {
        padding: 15px 0 0
    }
    .slide13 h2 {
        font-size: 35px
    }
    .portfolio-hidden {
        display: block;
        position: relative;
        text-align: center;
        height: 55px
    }
    .portfolio-hidden p {
        font-size: 18px;
        margin-right: 10px;
        color: #fff;
        line-height: 50px;
        cursor: pointer
    }
    .portfolio-hidden .fa {
        font-size: 20px;
        margin-left: 10px
    }
    .portfolio-nav {
        display: none;
        position: absolute;
        top: 52px;
        background-color: #ff6329;
        z-index: 10;
        width: 100%;
        left: 0
    }
    .portfolio-nav ul {
        display: block;
        height: auto
    }
    .portfolio-nav ul li {
        display: block;
        height: auto;
        padding: 12px 0;
        border-bottom: 1px solid #ea5118
    }
    .portfolio-nav ul li:first-child {
        border-top: 1px solid #ea5118
    }
    .portfolio-nav ul li:last-child {
        margin-bottom: 0;
        border-bottom: none
    }
    .portfolio-nav ul li a {
        color: #fff
    }
    .portfolio-nav ul li.active::after {
        border: none
    }
    .toggle-mnu2 {
        display: block
    }
    .portfolio-wrapper .portfolio-tabs {
        display: none
    }
    .portfolio-menu {
        padding-top: 95px
    }
    .design-popup .popup-full-text,
    .design-popup .popup-img {
        float: none;
        width: 90%;
        margin: 0 auto
    }
    .design-popup .popup-img {
        margin-top: 20px
    }
    .design-popup .full-text {
        width: 100%
    }
    .footer-logo {
        text-align: center
    }
    .page-instance {
        padding-bottom: 100px
    }
    .partners {
        padding: 50px 0 88px
    }
    .worldmap .dots,
    .worldmap img {
        -webkit-transform: scale(1)!important;
        -ms-transform: scale(1)!important;
        transform: scale(1)!important;
        opacity: 1!important
    }
    .scrolldown {
        display: none
    }
    .pos-details {
        padding-bottom: 150px
    }
    .last-position {
        margin-top: 30px
    }
    .contact-items {
        display: block;
        margin: 0 auto;
        width: 100%;
        margin-bottom: 40px
    }
    .contact-items .contact-img {
        text-align: center;
        margin-top: 8px
    }
    .contact-items .img-descr {
        width: 290px;
        display: block;
        margin: 0 auto
    }
    .contact-wrapper {
        padding-left: 0
    }
    .footer-subscribe form {
        display: block
    }
    .footer-subscribe form input#s2email {
        width: 100%;
        margin: 0 0 10px
    }
    .technologies-img .brick img {
        width: 43px
    }
    .technologies-img .brick:nth-child(16) {
        left: 29%
    }
    .technologies-img .brick:nth-child(12) {
        left: 23%
    }
    .technologies-img .brick:nth-child(23) {
        right: 19%
    }
    .technologies-img .brick:nth-child(19) {
        top: 54%;
        left: 52%
    }
    .technologies-img .brick:nth-child(17) {
        top: 60%;
        left: 42%
    }
    .technologies-img .brick:nth-child(15) {
        bottom: 12%
    }
    .technologies-img .brick:nth-child(21) img {
        width: 35px
    }
    .technologies-img .brick:nth-child(26) {
        top: 38%
    }
    .banner__content--title {
        font-size: 34px
    }
    .strengths__item1 {
        background: #5a6771
    }
    .strengths__item2 {
        background: #60727d
    }
    .strengths__item3 {
        background: #7f919a
    }
    .strengths__item4 {
        background: #979fa0
    }
    .strengths__item5 {
        background: #caad97
    }
    .strengths__item6 {
        background: #f8a571
    }
    .strengths__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%
    }
    .get__item-img1 {
        background: url(../img/home-page-icon/WhyUS4-hover.png) no-repeat center;
        -webkit-background-size: cover;
        background-size: cover
    }
    .get__item-img2 {
        background: url(../img/home-page-icon/WhyUS3-hover.png) no-repeat center;
        -webkit-background-size: cover;
        background-size: cover
    }
    .get__item-img3 {
        background: url(../img/home-page-icon/WhyUS2-hover.png) no-repeat center;
        -webkit-background-size: cover;
        background-size: cover
    }
    .get__item-img4 {
        background: url(../img/home-page-icon/WhyUS1-hover.png) no-repeat center;
        -webkit-background-size: cover;
        background-size: cover
    }
    .insights .owl-nav div:first-child,
    .insights .owl-nav div:last-child,
    .slick-left,
    .slick-right {
        display: none!important
    }
}

@media only screen and (max-width:730px) {
    .footer_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .whitepaper__right form {
        width: 100%
    }
    .accordion__form,
    .footer-subscribe {
        display: none
    }
    .colon__title svg {
        display: block
    }
    .colon__title {
        background: #424242;
        padding: 5px 16px 5px 30px;
        margin: 0 -15px
    }
    .banner__form {
        width: 100%
    }
    form {
        text-align: center
    }
    input,
    textarea {
        width: 100%
    }
    form {
        width: 80%;
        margin: 0 auto
    }
    form.pos-form {
        width: 100%
    }
    .servise-form {
        padding: 40px 15px
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-textarea,
    .your-country,
    .your-email,
    .your-name,
    .your-phone {
        width: 100%
    }
    .sitemap-left>li {
        overflow: hidden;
        margin-bottom: 5px
    }
    .sitemap-left mark {
        float: none;
        display: block;
        margin-bottom: 1px
    }
    .sitemap-left li {
        padding-left: 0!important
    }
    .sitemap-right li {
        padding-left: 0!important
    }
    .map-counter {
        padding: 0
    }
    .map-counter span {
        font-size: 27px
    }
    .startup-idea__item {
        margin-bottom: 25px
    }
    .startup-idea__item p {
        font-size: 14px
    }
    .footer__first-colon,
    .footer__third-colon {
        width: 100%
    }
    footer .ico-list {
        padding-bottom: 20px
    }
    .colon__title {
        text-align: center
    }
}

@media only screen and (max-width:700px) {
    .releated-services__img {
        height: 180px
    }
    .portfolio-section .categories__list--img {
        height: 184px
    }
    .all-cases--img {
        height: 190px
    }
}

@media only screen and (max-width:630px) {
    .portfolio-section .categories__cases li:hover .active-block p {
        color: #333
    }
    .hideBlocks {
        display: none!important
    }
    .menu-mob-version.visible {
        display: -webkit-box!important;
        display: -webkit-flex!important;
        display: -ms-flexbox!important;
        display: flex!important
    }
    .all-cases__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .back {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 24px;
        height: 100%
    }
    .back img {
        margin-right: 6px;
        height: 13px
    }
    .back p {
        font-weight: 600
    }
    .portfolio-section .categories__cases li .menu-mob-version {
        background: #f6f6f6!important;
        color: #333;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify!important;
        -webkit-justify-content: space-between!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }
    .portfolio-section .categories__cases li .menu-mob-version div.hover-block {
        width: 212px;
        background: #ff6329;
        color: #fff;
        -webkit-box-shadow: 0 0 17px 0 rgba(255, 99, 41, .53);
        box-shadow: 0 0 17px 0 rgba(255, 99, 41, .53);
        margin: 0
    }
    .portfolio-section .categories__cases li .menu-mob-version div.hover-block p {
        color: #fff
    }
    .portfolio-section .categories__cases li .back p {
        color: #333
    }
    .portfolio-section .categories__cases .active-block p {
        color: #fff
    }
    .portfolio-section .categories__cases .active-block {
        background: 0 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
    .portfolio-section .categories__cases .active-block p {
        color: #333
    }
    .portfolio-contacts .title__sections {
        position: relative;
        font-size: 26px
    }
    .toggle-arrow {
        display: block
    }
    .transform {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        -webkit-transition: all .4s linear;
        -o-transition: all .4s linear;
        transition: all .4s linear
    }
    .portfolio-contacts {
        padding: 10px 0 12px
    }
    .hidden-form {
        display: none
    }
    .all-cases {
        margin-top: 24px
    }
    .all-cases__item {
        width: 300px;
        margin: 0 auto 40px;
        padding: 0
    }
    .categories__list--wrap {
        display: none
    }
    .portfolio-section h1 {
        font-size: 24px
    }
    .portfolio-section {
        padding-top: 30px
    }
    .portfolio-section .categories__cases li:first-child {
        display: none
    }
    .portfolio-section .categories__cases {
        max-width: 300px;
        margin: 30px auto 10px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        background: 0 0;
        height: auto
    }
    .portfolio-section .categories__cases li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%
    }
    .portfolio-section .categories__cases li .hover-block,
    .portfolio-section .categories__cases li .menu-mob-version {
        display: block;
        font-size: 13px;
        width: 100%;
        height: 50px;
        -webkit-border-radius: 25px;
        border-radius: 25px;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: #f8d5c9;
        background: -webkit-linear-gradient(left, #f8d5c9 0, #f6f6f6 50%, #f6f6f6 100%);
        background: -webkit-gradient(linear, left top, right top, from(#f8d5c9), color-stop(50%, #f6f6f6), to(#f6f6f6));
        background: -o-linear-gradient(left, #f8d5c9 0, #f6f6f6 50%, #f6f6f6 100%);
        background: linear-gradient(to right, #f8d5c9 0, #f6f6f6 50%, #f6f6f6 100%);
        margin-bottom: 15px
    }
    .portfolio-section .categories__cases .active-block {
        width: 100%
    }
    .breadcrumbs-container {
        display: none
    }
    .releated-services__title {
        font-size: 20px;
        text-align: center
    }
    .product-overview {
        padding: 24px 0 21px
    }
    .releated-services__item {
        margin-top: 14px
    }
    .product-overview .title__sections {
        font-size: 24px
    }
    .cases-expert {
        height: 260px
    }
    .expert__title {
        font-size: 26px;
        margin-bottom: 5px
    }
    .expert .btn--orange {
        width: 234px;
        height: 56px
    }
    .expert__subtitle {
        font-size: 18px
    }
    .cases__banner h1 {
        font-size: 26px;
        line-height: 1.5
    }
    .cases__banner {
        margin-top: 70px
    }
    .cases__banner .banner__form--holder {
        width: 100%
    }
    .cases__banner .download-case {
        margin-top: 6px
    }
    .cases-content h2 {
        font-size: 24px;
        margin-bottom: 13px
    }
    .cases-content__item {
        margin: 0 20px 23px 0
    }
    .case__main-info {
        margin-left: 0
    }
    .testimonials {
        padding: 8px 0 0
    }
    .testimonials .user__reviews {
        font-size: 14px
    }
    .testimonials .reviews__content {
        margin-top: 20px
    }
    .testimonials .reviews__item {
        margin-top: 0
    }
    .testimonials .user__img__holder {
        margin: 17px auto 0
    }
    .testimonials .reviews__content {
        margin-left: 0
    }
    .testimonials .slider-nav-cont .owl-nav .next,
    .testimonials .slider-nav-cont .owl-nav .prev {
        top: 50px
    }
    .testimonials .reviews__info {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .testimonials .reviews__content {
        width: 100%
    }
    .cases__banner .banner-content {
        overflow: hidden;
        padding: 23px 0 30px
    }
    .banner__form--holder:before {
        height: 430px
    }
    .banner__content-right {
        height: auto
    }
    .cases__banner .banner__form--holder {
        padding-bottom: 13px
    }
    .tabs .it-svit-serv,
    .tabs div {
        display: block;
        font-size: 18px;
        width: 100%
    }
    .tabs div {
        margin-bottom: 10px
    }
    .grid-item,
    .grid-sizer {
        width: 50%
    }
    .category-img {
        max-width: 100%
    }
    .portf-wd-project code {
        overflow-x: scroll
    }
    .subscribers .modal-body {
        padding: 10px
    }
    .form-horizontal .flex-group {
        display: block
    }
    .form-horizontal button {
        margin-top: 20px
    }
    footer .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .footer__first-colon {
        width: 100%;
        padding-right: 0
    }
}

@media only screen and (max-width:599px) {
    .portfolio-section .categories__list--img,
    .portfolio-section .categories__list--item p {
        max-width: 300px;
        margin: 0 auto
    }
    .releated-services__img {
        height: 120px
    }
    .cases__item,
    .insights__item {
        margin: 20px 60px
    }
    .validate__email {
        margin-right: 0
    }
    .caption-form__wrap {
        margin-top: 35px
    }
    .container-form {
        width: 100%;
        padding: 0 15px
    }
    .one-line {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .get__title {
        font-size: 14px;
        margin-top: 10px
    }
    .you-get {
        margin-bottom: 30px;
        min-height: auto
    }
    .get__item {
        min-height: 140px;
        height: auto;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 43%;
        -ms-flex: 0 0 43%;
        flex: 0 0 43%;
        margin: 5px 10px;
        pointer-events: none;
        padding: 10px
    }
    .get__desc {
        display: none
    }
    .get__item-img {
        margin: 10px auto 0
    }
    .static-banner h2 {
        font-size: 30px
    }
    .tabs div {
        padding: 7px 5px
    }
    .slide10 h2,
    .slide11 h2,
    .slide12 h2,
    .slide13 h2,
    .slide14 h2,
    .slide3 h2,
    .slide4 h2,
    .slide5 h2,
    .slide6 h2,
    .slide7 h2,
    .slide8 h2,
    .slide9 h2 {
        font-size: 30px;
        margin-bottom: 35px;
        line-height: 40px
    }
    .slide10 p,
    .slide11 p .slide12 p,
    .slide3 p,
    .slide4 p,
    .slide5 p,
    .slide6 p,
    .slide7 p,
    .slide8 p,
    .slide9 p {
        font-size: 15px;
        margin-bottom: 15px
    }
    .blog-item h2 {
        line-height: 34px
    }
    .our-projects-progress h2 {
        font-size: 28px
    }
    .our-projects-progress h3 {
        font-size: 25px
    }
    .our-projects-progress h4 {
        font-size: 20px
    }
    .our-projects-progress h5 {
        font-size: 17px
    }
    .our-projects-progress h6 {
        font-size: 14px
    }
    .map-counter {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
    .worldmap .usa-2 {
        width: 16px;
        height: 16px
    }
    .worldmap .usa-1 {
        width: 14px;
        height: 14px
    }
    .worldmap .au-1,
    .worldmap .east-4,
    .worldmap .eu-1,
    .worldmap .eu-2,
    .worldmap .hol-1 {
        width: 9px;
        height: 9px
    }
    .c-nav {
        width: 100%;
        left: 0;
        right: auto
    }
    .page-banner h2 {
        font-size: 24px
    }
    .servise-form input[type=submit] {
        width: 100%
    }
    .startup-title {
        -webkit-filter: blur(0)!important;
        filter: blur(0)!important
    }
    .startup-title__sub {
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important
    }
}

@media only screen and (max-height:550px) {
    .portfolio-menu {
        padding-top: 30px
    }
}

@media only screen and (max-width:550px) {
    .footer__second-colon {
        width: 100%
    }
    .animation__item {
        width: 400px
    }
    #particles-js2 {
        height: 1400px
    }
}

@media only screen and (max-width:480px) {
    .cases__banner .banner__content-right,
    .cases__banner h1 {
        width: 100%
    }
    .content404 h2 {
        font-size: 150px
    }
    .whitepaper__right {
        width: 100%;
        padding: 20px
    }
    .map-counter {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .blog-navigation a {
        font-size: 14px
    }
    .blog-sidebar-search {
        width: 100%
    }
    .startup-idea__item h2 {
        font-size: 22px;
        margin-bottom: 5px
    }
    #bottom_canvas,
    .startup-ideas {
        height: 1250px
    }
    .technologies-img {
        height: 360px
    }
    .technologies-img .brick {
        width: 50px!important
    }
    .technologies-img .brick:nth-child(6) {
        top: 17%
    }
    .technologies-img .brick:nth-child(5) {
        top: -8%;
        left: 15%
    }
    .technologies-img .brick:nth-child(14) {
        top: 13%
    }
    .technologies-img .brick:nth-child(16) {
        top: 38%;
        left: 34%
    }
    .technologies-img .brick:nth-child(34) {
        bottom: 18%
    }
    .technologies-img .brick:nth-child(27) {
        bottom: 20%
    }
    .technologies-img .brick:nth-child(17) {
        left: 36%
    }
    body iframe {
        width: 271px!important;
        float: left
    }
    .banner__form--holder {
        margin: 10px auto;
        width: 94%;
        padding: 43px 20px
    }
    .banner__form--holder:before {
        width: 115%
    }
    .banner__content-right {
        width: 100%
    }
    .banner__content--title {
        font-size: 26px
    }
}

@media only screen and (max-width:468px) {
    .slide1 h2,
    .slide2 h2 {
        font-size: 30px;
        line-height: 45px
    }
    .info-item {
        padding: 30px 10px
    }
    .slide_item h1,
    .slide_item h2 {
        font-size: 35px;
        line-height: 40px
    }
    .sitemap-left>li {
        overflow: hidden;
        margin-bottom: 10px
    }
    .sitemap-left li a,
    .sitemap-left mark {
        margin-bottom: 2px
    }
    .sitemap-right li a {
        margin-bottom: 2px
    }
    .step-footer {
        width: 100%;
        padding: 0 10px
    }
    .our-projects-progress span {
        display: block;
        float: none
    }
    .our-projects-progress .progress-item {
        margin-bottom: 30px
    }
}

@media only screen and (max-width:600px) {
    .startup-idea__item {
        opacity: 1!important
    }
    .roadmap-list,
    .startup-contact,
    .startup-stages__item--in>div {
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
        opacity: 1!important
    }
    .you-get {
        padding-bottom: 0;
        padding-top: 30px
    }
    .cases {
        padding-bottom: 15px
    }
}

@media only screen and (max-width:460px) {
    .reviews__slider .user__img__holder {
        height: 119px;
        width: 121px
    }
    .banner__form--holder {
        height: 270px;
        padding: 24px 16px 0
    }
    .tabs__caption li p {
        margin: 4px 0 6px
    }
    .banner__form .btn--orange {
        margin-top: 22px
    }
    .banner-top {
        height: 645px
    }
    .top-lang-wrap {
        display: none
    }
    .toggle-wrap {
        width: 58%
    }
    .top-logo {
        position: relative
    }
    .grid-item,
    .grid-sizer,
    form {
        width: 100%
    }
    .c-nav {
        overflow-y: auto
    }
    .animation-steps .step-title p {
        font-size: 18px
    }
    .step-body li {
        font-size: 16px
    }
    .startup-title__sub {
        bottom: 20px
    }
    .animation__item {
        width: 290px;
        padding: 20px
    }
    .animation__info {
        font-size: 20px
    }
    .animation__subtitle {
        font-size: 14px
    }
    #particles-js2 {
        height: 1350px
    }
    .reviews__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .reviews__content {
        margin-top: 35px;
        margin-left: 0
    }
    .reviews__content a {
        text-align: center
    }
    .user__img__holder {
        zoom: 1;
        width: 113px;
        margin: 35px auto 0
    }
    .reviews .slider-nav-cont .next,
    .reviews .slider-nav-cont .prev {
        top: 266px
    }
}

@media only screen and (max-width:400px) {
    .portfolio-contacts__form {
        width: 94%;
        margin: 30px 3%
    }
    .releated-services .container {
        padding: 0
    }
    .portfolio-contacts .title__sections:before {
        content: ""
    }
    .releated-services__item {
        margin: 24px 0 12px
    }
    .releated-services__item {
        padding: 0 11px
    }
    .mobile-nav {
        display: block
    }
    .releated-services {
        padding-bottom: 45px
    }
    .releated-services__item {
        padding: 0 15px
    }
    .testimonials .reviews__item {
        width: 94%
    }
    .mobile-nav__list li {
        list-style: none;
        margin: 0 10px 12px
    }
    .mobile-nav__list li a {
        display: block;
        font-size: 13px;
        width: 100%;
        height: 50px;
        -webkit-border-radius: 25px;
        border-radius: 25px;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: #f8d5c9;
        background: -webkit-linear-gradient(left, #f8d5c9 0, #f6f6f6 50%, #f6f6f6 100%);
        background: -webkit-gradient(linear, left top, right top, from(#f8d5c9), color-stop(50%, #f6f6f6), to(#f6f6f6));
        background: -o-linear-gradient(left, #f8d5c9 0, #f6f6f6 50%, #f6f6f6 100%);
        background: linear-gradient(to right, #f8d5c9 0, #f6f6f6 50%, #f6f6f6 100%)
    }
    .mobile-nav__list li p {
        color: #333;
        text-transform: uppercase
    }
    .cases__banner .banner-content {
        padding: 23px 0 0
    }
    .cases__item,
    .insights__item {
        margin: 20px
    }
    .cases__item--img {
        height: 230px
    }
    .top-slider .slide_item {
        background-position: -300px top
    }
    .tab_item tr td {
        padding: 22px 5px 43px
    }
    .top-slider .slide13 {
        padding-top: 100px
    }
    .contact-img {
        display: block;
        text-align: center;
        margin-bottom: 10px
    }
    .img-descr {
        margin-left: 0;
        display: block;
        text-align: center
    }
    .contact-wrapper .ico-list {
        display: block;
        text-align: center;
        padding-left: 0
    }
    .content404 h2 {
        line-height: 160px
    }
    .item-head-img {
        margin-bottom: 10px
    }
    .our-projects-progress span {
        display: block;
        line-height: 1
    }
    .our-projects-progress>* {
        margin-bottom: 20px
    }
    .about-us-page .about-us-header {
        padding-bottom: 20px
    }
    .form-success {
        padding: 10px
    }
    .whitepaper__form .btn {
        font-size: 14px
    }
    .animation__item,
    .animation__item .btn--opacity {
        width: 100%
    }
    .animation__subtitle {
        font-size: 14px
    }
}

@media only screen and (max-width:360px) {
    .grid-item,
    .grid-sizer {
        width: 100%
    }
    .map-counter p {
        min-height: 110px
    }
    .rc-anchor.rc-anchor-normal.rc-anchor-light {
        width: 289px
    }
    .technologies-img .brick:nth-child(18) {
        top: -14%;
        left: 37%
    }
    .technologies-img .brick:nth-child(24) {
        top: 2%;
        left: 40%
    }
    .technologies-img .brick:nth-child(14) {
        left: 42%
    }
    .technologies-img .brick:nth-child(39) {
        rigth: 1%
    }
    .technologies-img .brick:nth-child(31) {
        top: 33%
    }
    .technologies-img .brick:nth-child(2) {
        left: 0
    }
    .technologies-img .brick:nth-child(11) {
        top: 4%;
        left: 25%
    }
}

@media only screen and (max-width:480px) {
    .more-info {
        display: block
    }
    footer .logo {
        text-align: center;
        margin: 5px 0 13px
    }
    .more-info__wrap {
        height: 95px;
        overflow: hidden;
        position: relative
    }
    .more-info__wrap:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 25px;
        -webkit-box-shadow: inset 0 -14px 33px -7px rgba(54, 53, 53, .8);
        box-shadow: inset 0 -14px 33px -7px rgba(54, 53, 53, .8)
    }
    .footer__contacts-list {
        margin-top: 18px
    }
    footer .ico-list {
        padding: 12px 0 8px 0
    }
    .team-section .work-item img.owl-lazy {
        width: 320px;
        height: 320px
    }
    footer .ico-list ul li {
        margin: 7px
    }
    .ico-list .fa-circle {
        font-size: 44px
    }
    .ico-list .fa-stack {
        width: 44px;
        height: 44px;
        line-height: 44px
    }
    footer .ico-list ul li a {
        width: auto;
        height: auto
    }
    .ico-list .fa-inverse {
        font-size: 22px
    }
    .blog-ico .ico-list ul li a svg,
    footer .ico-list ul li a svg {
        max-width: 30px;
        top: 8px
    }
    .colon__title {
        margin: 0 -15px
    }
    .footer__form.wpcf7-form {
        margin-top: 17px
    }
    .footer__form>p {
        margin-bottom: 0
    }
    footer .footer__contacts span {
        margin-bottom: 15px
    }
    .footer__contacts-list li {
        margin-bottom: 3px
    }
    .footer__contacts-list li:last-child {
        display: none
    }
}

@media screen and (max-height:735px) {
    .content404 h2 {
        line-height: 1
    }
}

@media screen and (max-height:650px) {
    .content404 h2 {
        font-size: 150px
    }
    .main-content {
        padding-bottom: 100px
    }
}

@media screen and (max-width:400px),
screen and (max-height:610px) {
    .content404 h2 {
        font-size: 90px
    }
}

@media only screen and (min-width:767px) {
    .portfolio-nav {
        display: block!important
    }
    #menu,
    .toggle-mnu2 {
        display: none!important
    }
    html.mm-blocking #mm-blocker {
        display: none!important
    }
    html.mm-opening .mm-slideout {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@media only screen and (min-width:992px) {
    .description-item.projects-progress {
        padding-left: 40px
    }
    .c-nav {
        display: none!important
    }
}

@media only screen and (max-width:992px) {
    .ds-wrap {
        margin-top: 30px
    }
}

@media only screen and (max-width:330px) {
    .partners__carusel .owl-item {
        width: 280px
    }
    .portfolio-section .container {
        padding-left: 5px;
        padding-right: 5px
    }
}