@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * 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.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -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 {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -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;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

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

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

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

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

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

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

    65% {
        -webkit-transform: scale3d(.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: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

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

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

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

    65% {
        -webkit-transform: scale3d(.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: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

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

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

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

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

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

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.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: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

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

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

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

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

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

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

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

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

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

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

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

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

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

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

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

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

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

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }

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

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }

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

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes jello {
    from, 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(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

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

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

@keyframes jello {
    from, 11.1%, to {
        -webkit-transform: 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(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

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

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

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

@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 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 {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 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 {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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 {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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 {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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 {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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 {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 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 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        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 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    from {
        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 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        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 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    from {
        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 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        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 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    from {
        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 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        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 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    from {
        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 {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

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

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

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

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

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

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    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 {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

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

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

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

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

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

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

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

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

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

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

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

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

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

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

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

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

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

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

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

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

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

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

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

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

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

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

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

    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 {
    from {
        opacity: 1;
    }

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

@keyframes lightSpeedOut {
    from {
        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 {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    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 {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    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 {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    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 {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    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 {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

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

    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 {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

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

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-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;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

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

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }

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

@keyframes rollOut {
    from {
        opacity: 1;
    }

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

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

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        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 {
    from {
        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(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInDown {
    from {
        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(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

@-webkit-keyframes zoomInUp {
    from {
        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(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInUp {
    from {
        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(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

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

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

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

    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(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    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(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    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(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    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(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    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(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 * fullPage 2.7.5
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
.fp-enabled body, html.fp-enabled {
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

#superContainer {
    height: 100%;
    position: relative;
    -ms-touch-action: none;
    touch-action: none
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.section_breef{
	text-align:center;
	margin-top:60px;
}

.fp-slide {
    float: left
}

.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%
}

.fp-slidesContainer {
    float: left;
    position: relative
}

.fp-controlArrow {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent
}

.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff
}

.fp-scrollable {
    overflow: scroll
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0)
}

#fp-nav.right {
    right: 17px
}

#fp-nav.left {
    left: 17px
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1
}

.fp-slidesNav.bottom {
    bottom: 17px
}

.fp-slidesNav.top {
    top: 17px
}

#fp-nav ul, .fp-slidesNav ul {
    margin: 0;
    padding: 0
}

#fp-nav ul li, .fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative
}

.fp-slidesNav ul li {
    display: inline-block
}

#fp-nav ul li a, .fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none
}

#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

#fp-nav ul li:hover a span, .fp-slidesNav ul li:hover a span {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0
}

#fp-nav ul li:hover .fp-tooltip, #fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
    width: auto;
    opacity: 1
}

#fp-nav ul li .fp-tooltip.right {
    right: 20px
}

#fp-nav ul li .fp-tooltip.left {
    left: 20px
}

.fp-auto-height .fp-slide, .fp-auto-height .fp-tableCell, .fp-auto-height.fp-section {
    height: auto !important
}

/*# sourceMappingURL=jquery.fullpage.min.css.map */

.irs {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.irs-line {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none !important;
}

.irs-line-left, .irs-line-mid, .irs-line-right {
    position: absolute;
    display: block;
    top: 0;
}

.irs-line-left {
    left: 0;
    width: 11%;
}

.irs-line-mid {
    left: 9%;
    width: 82%;
}

.irs-line-right {
    right: 0;
    width: 11%;
}

.irs-bar {
    position: absolute;
    display: block;
    left: 0;
    width: 0;
}

.irs-bar-edge {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
}

.irs-shadow {
    position: absolute;
    display: none;
    left: 0;
    width: 0;
}

.irs-slider {
    position: absolute;
    display: block;
    cursor: default;
    z-index: 1;
}

.irs-slider.single {

}

.irs-slider.from {

}

.irs-slider.to {

}

.irs-slider.type_last {
    z-index: 2;
}

.irs-min {
    position: absolute;
    display: block;
    left: 0;
    cursor: default;
}

.irs-max {
    position: absolute;
    display: block;
    right: 0;
    cursor: default;
}

.irs-from, .irs-to, .irs-single {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    cursor: default;
    white-space: nowrap;
}

.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.irs-with-grid .irs-grid {
    display: block;
}

.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000;
}

.irs-grid-pol.small {
    height: 4px;
}

.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 0 3px;
    color: #000;
}

.irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: -1%;
    width: 102%;
    height: 100%;
    cursor: default;
    background: rgba(0, 0, 0, 0.0);
    z-index: 2;
}

.irs-disabled {
    opacity: 0.4;
}

.lt-ie9 .irs-disabled {
    filter: alpha(opacity=40);
}

.irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important;
}

i {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

@font-face {
    font-family: 'goodpro-condlight';
    src: url('../fonts/goodpro-condlight-webfont.eot');
    src: url('../fonts/goodpro-condlight-webfont.eot@#iefix') format('embedded-opentype'),
    url('../fonts/goodpro-condlight-webfont.woff') format('woff'),
    url('../fonts/goodpro-condlight-webfont.ttf') format('truetype'),
    url('../fonts/goodpro-condlight-webfont.svg.xml') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Перекрываем font-face для Chrome, так чтобы он брал шрифт только в формате SVG*/
@media all and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: 'goodpro-condlight';
        src: url('../fonts/goodpro-condlight-webfont.svg.xml') format('svg');
        font-weight: normal;
        font-style: normal;
    }
}

@font-face {
    font-family: 'goodpro-condbook';
    src: url('../fonts/goodpro-condbook-webfont.eot');
    src: url('../fonts/goodpro-condbook-webfont.eot@#iefix') format('embedded-opentype'),
    url('../fonts/goodpro-condbook-webfont.woff') format('woff'),
    url('../fonts/goodpro-condbook-webfont.ttf') format('truetype'),
    url('../fonts/goodpro-condbook-webfont.svg.xml') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Перекрываем font-face для Chrome, так чтобы он брал шрифт только в формате SVG*/
@media all and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: 'goodpro-condbook';
        src: url('../fonts/goodpro-condbook-webfont.svg.xml') format('svg');
        font-weight: normal;
        font-style: normal;
    }

}

@font-face {
    font-family: 'goodpro-condblack';
    src: url('../fonts/goodpro-condblack-webfont.eot');
    src: url('../fonts/goodpro-condblack-webfont.eot@#iefix') format('embedded-opentype'),
    url('../fonts/goodpro-condblack-webfont.woff') format('woff'),
    url('../fonts/goodpro-condblack-webfont.ttf') format('truetype'),
    url('../fonts/goodpro-condblack-webfont.svg.xml') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Перекрываем font-face для Chrome, так чтобы он брал шрифт только в формате SVG*/
@media all and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: 'goodpro-condblack';
        src: url('../fonts/goodpro-condblack-webfont.svg.xml') format('svg');
        font-weight: normal;
        font-style: normal;
    }

}

@font-face {
    font-family: 'als_rublregular';
    src: url('../fonts/rouble-webfont.eot');
    src: url('../fonts/rouble-webfont.eot@#iefix') format('embedded-opentype'),
         url('../fonts/rouble-webfont.woff2') format('woff2'),
         url('../fonts/rouble-webfont.woff') format('woff'),
         url('../fonts/rouble-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

html {
    -webkit-text-size-adjust: none;
}

.rouble {
   font-family: 'als_rublregular';
}

.rouble_padding {
   margin-left: -4px;
}

* {
    font-family: 'goodpro-condlight';
    padding: 0;
    margin: 0;
    outline: none;
}

.company_name {
    font-size: 48px;
    font-family: 'goodpro-condblack';
}

.company_desc {
    font-size: 14.9px;
    line-height: 0px;
    text-transform: uppercase;
}

.company_text {
    font-size: 16px;
    line-height: 18px;
    margin-top: 26px;
    width: 305px;
}

.menu-abou-inner {
    width: 346px;
    margin: 110px auto;
}

.hamburger-icon-container {
    position: absolute;
    z-index: 4;
    top: 14px;
    right: 42px;
}

.hamburger-icon-container .b-hamburger-icon {
    width: 34px;
    height: 34px;
}

.hamburger-icon-container.white {
    height: 38px;
}

.hamburger-icon-container .b-hamburger-icon {
    line-height: 35px;
    -moz-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
}

.hamburger-icon-container .b-hamburger-icon.black > span.hh,
.hamburger-icon-container .b-hamburger-icon.black > span.hh:after,
.hamburger-icon-container .b-hamburger-icon.black > span.hh:before {
    background-color: #87f5ec;

}

.hamburger-icon-container .b-hamburger-icon.white > span.hh,
.hamburger-icon-container .b-hamburger-icon.white > span.hh:after,
.hamburger-icon-container .b-hamburger-icon.white > span.hh:before {
    background-color: white;

}

.hamburger-icon-container .b-hamburger-icon.white > span.hh {
    transition: background-color 0.1s linear;
}

.hamburger-icon-container .b-hamburger-icon.white > span.hh:after,
.hamburger-icon-container .b-hamburger-icon.white > span.hh:before {
    transition: background-color 0.1s linear;
}

.hamburger-icon-container .b-hamburger-icon > span.hh, .hamburger-icon-container .b-hamburger-icon > span.hh:after, .hamburger-icon-container .b-hamburger-icon > span.hh:before {
    display: inline-block;
    width: 20px;
    height: 3px;
    transition: .2s;
    position: relative;
}

.hamburger-icon-container .b-hamburger-icon > span.hh:before, .hamburger-icon-container .b-hamburger-icon > span.hh:after {
    position: absolute;
    left: 0;
    content: '';
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.hamburger-icon-container .b-hamburger-icon > span.hh:before, .hamburger-icon-container .b-hamburger-icon > span.hh:after {
    transition-duration: 0.2s;
}

.hamburger-icon-container .b-hamburger-icon > span.hh:before {
    top: -8.33333px;
}

.hamburger-icon-container .b-hamburger-icon > span.hh:after {
    top: 8.33333px;
}

.hamburger-icon-container:hover .b-hamburger-icon > span.hh:before {
    top: -6.33333px;
}

.hamburger-icon-container:hover .b-hamburger-icon > span.hh:after {
    top: 6.33333px;
}

.hamburger-icon-container .b-hamburger-icon.toggled > span.hh {
    background: transparent;
}

.hamburger-icon-container .b-hamburger-icon.toggled > span.hh:before, .hamburger-icon-container .b-hamburger-icon.toggled > span.hh:after {
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    top: 0;
    width: 23px;
}

.hamburger-icon-container .b-hamburger-icon.toggled > span.hh:before {
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.hamburger-icon-container .b-hamburger-icon.toggled > span.hh:after {
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.hamburger-icon-container .b-hamburger-icon.toggled:hover {
    opacity: .6;
}

.menu_cont {
    height: 100%;
    width: 690px;
    position: absolute;
    z-index: 3;
    top: 0;
    display: none;
    transition: 0.5s ease;
}

.content_m {
    width: 36%;
    display: inline-block;
    position: relative;
    height: 100%;
    z-index: 5;
}

.menu-about {
    width: 64%;
    background: white;
    height: 100%;
    float: right;
    z-index: 4;
    opacity: 0;
}

.menu_cont .content {
    position: relative;
    width: 100%;
    height: 100%;
}

.menu {
    position: absolute;
    left: 37px;
    top: 107px;
}

.menu li {
    padding-top: 10px !important;
}

.menu, .menu li {
    list-style: none;
    padding: 0;
    
}

.menu.cyan, .menu.cyan li a {
	color: #87f5ec;
}

.menu.black, .menu.black li a {
    color: black;
}

.menu.white, .menu.white li a {
    color: white;
}

.menu, .menu li a {
    font-size: 24px;
    text-transform: uppercase;
}

.menu, .menu li a:hover {
    text-decoration: none;
}

.menu_cont .contacts.white a {
    color: white;
}

.menu_cont .contacts.black a {
    color: black;
}

.menu_cont .contacts.cyan a {
    color: #87f5ec;
}

.menu_cont .contacts a {
    display: block;
    font-size: 17px;
    width: 200px;
    text-decoration: none;
}

.menu_cont .contacts {
    position: absolute;
    bottom: 32px;
    left: 38px;
}

.menu_bg_1 .content_m {
    background: url(../images/bg_start.png) repeat center;
}

.menu_bg_2 .content_m {
    background: url(../images/bg_start.png) repeat center;
}

.menu_bg_3 .content_m {
    background: url(../images/bg_start.png) repeat center;
}

.menu_bg_4 .content_m {
    background: url(../images/bg_start.png) repeat center;
}

.menu_bg_5 .content_m {
    background: url(../images/bg_start.png) repeat center;
}

.menu_bg_6 .content_m {
    background: url(../images/bg_start.png) repeat center;
}

.menu_bg_7 .content_m {
    background: url(../images/bg_start.png) repeat center;
}

.menu_bg_8 .content_m {
    background: url(../images/bg_8.png) repeat center;
}

.menu_bg_9 .content_m {
    background: url(../images/bg_9.png) repeat center;
}

.menu_bg_10 .content_m {
    background: #5c487e;
}

.menu_bg_11 .content_m {
    background: #e5234c;
}

.menu_bg_12 .content_m {
    background: url(../images/bg_start.png) repeat center;
}

.top_line {
    position: absolute;
    top: 16px;
    left: 99px;
    z-index: 2;
    text-transform: uppercase;
    transition: 0.5s ease;
    width: 180px;
}

.close {
    position: absolute;
    right: 17px;
    top: 12px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 27px;
}

.close:hover {
    opacity: 0.7;
}

.cb-phone {
	color: #82f5ed;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid #82f5ed;
    width: 305px;
    height: 38px;
    margin-bottom: 30px;
    margin-top: 30px;
    font-size: 17px;
    padding-left: 20px;
}

.cb-phone:focus {
    border: 2px solid #e14869;
}

.btn {
    background-color: #e14869;
    border-radius: 5px;
    font-size: 20px;
    padding: 16px 0;
    color: #ffffff;
    text-decoration: none;
    width: 160px;
    display: inline-block;
    text-align: center;
    transition: 0.5s ease;
}

.btn:hover {
    background-color: #313236;
    color: #ffffff;
}

.mouse-vertical-shake {
    animation: verticalShake linear 1s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: verticalShake linear 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: verticalShake linear 1s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: verticalShake linear 1s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: verticalShake linear 1s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

.flag-dropdown {
    display: none;
}

@keyframes verticalShake {
    0% {
        transform: translate(0px, 0px);
    }
    30% {
        transform: translate(0px, -4px);
    }
    71% {
        transform: translate(0px, 4px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@-moz-keyframes verticalShake {
    0% {
        -moz-transform: translate(0px, 0px);
    }
    30% {
        -moz-transform: translate(0px, -4px);
    }
    71% {
        -moz-transform: translate(0px, 4px);
    }
    100% {
        -moz-transform: translate(0px, 0px);
    }
}

@-webkit-keyframes verticalShake {
    0% {
        -webkit-transform: translate(0px, 0px);
    }
    30% {
        -webkit-transform: translate(0px, -4px);
    }
    71% {
        -webkit-transform: translate(0px, 4px);
    }
    100% {
        -webkit-transform: translate(0px, 0px);
    }
}

@-o-keyframes verticalShake {
    0% {
        -o-transform: translate(0px, 0px);
    }
    30% {
        -o-transform: translate(0px, -4px);
    }
    71% {
        -o-transform: translate(0px, 4px);
    }
    100% {
        -o-transform: translate(0px, 0px);
    }
}

@-ms-keyframes verticalShake {
    0% {
        -ms-transform: translate(0px, 0px);
    }
    30% {
        -ms-transform: translate(0px, -4px);
    }
    71% {
        -ms-transform: translate(0px, 4px);
    }
    100% {
        -ms-transform: translate(0px, 0px);
    }
}

.slideInLeft, .slideOutLeft {
    opacity: 1;
}

.menu_cont, .menu-about {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
}

.cd-stretchy-nav {
}

.sub1_class {
    position: absolute;
    z-index: 6;
    top: 22px;
    right: 22px;
}

.cd-stretchy-nav .stretchy-nav-bg {
    /* this is the stretching navigation background */
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    border-radius: 30px;
    border: 1px solid white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    -webkit-transition: height 0.2s, box-shadow 0.2s;
    -moz-transition: height 0.2s, box-shadow 0.2s;
    transition: height 0.2s, box-shadow 0.2s;
}
.cd-stretchy-nav.nav-is-visible .stretchy-nav-bg,.cd-stretchy-nav.nav-is-hovered .stretchy-nav-bg{
    background-color: #34bc74;
}
.cd-stretchy-nav.nav-is-visible .stretchy-nav-bg {
    height: 100%;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.cd-nav-trigger {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    /* replace text with image */
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
}
.cd-nav-trigger span, .cd-nav-trigger span::after, .cd-nav-trigger span::before {
    /* this is the hamburger icon */
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #000;
}
.cd-nav-trigger span {
    /* middle line of the hamburger icon */
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.cd-nav-trigger span::after, .cd-nav-trigger span::before {
    /* top and bottom lines of the hamburger icon */
    content: '';
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}
.cd-nav-trigger span::before {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px);
}
.cd-nav-trigger span::after {
    -webkit-transform: translateY(6px);
    -moz-transform: translateY(6px);
    -ms-transform: translateY(6px);
    -o-transform: translateY(6px);
    transform: translateY(6px);
}
.no-touch .cd-nav-trigger:hover ~ .stretchy-nav-bg {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}
.nav-is-visible{
    z-index: 8;
}
.nav-is-visible .cd-nav-trigger span {
    background-color: transparent;
}
.nav-is-visible .cd-nav-trigger span::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.nav-is-visible .cd-nav-trigger span::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.cd-stretchy-nav ul {
    position: relative;
    z-index: 2;
    padding: 60px 0 25px;
    visibility: hidden;
    -webkit-transition: visibility 0.3s;
    -moz-transition: visibility 0.3s;
    transition: visibility 0.3s;
    text-align: right;
    list-style: none;
}
.cd-stretchy-nav ul a {
    position: relative;
    display: block;
    height: 42px;
    line-height: 45px;
    padding: 0 calc(1em + 60px) 0 1em;
    color: #22573a;
    font-size: 16px;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
    text-transform: uppercase;
}
.cd-stretchy-nav ul a::after {
    /* navigation item icons */
    content: '';
    position: absolute;
    height: 22px;
    width: 24px;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: .6;
    background: url(../images/menu_icon_sprite.png) no-repeat 0 0;
}
.cd-stretchy-nav ul li:first-of-type a::after {
    /* change custom icon using image sprites */
    background-position: -84px 0;
}
.cd-stretchy-nav ul li:nth-of-type(2) a::after {
    background-position: 0 0;
}
.cd-stretchy-nav ul li:nth-of-type(3) a::after {
    background-position: -28px 0;
}
.cd-stretchy-nav ul li:nth-of-type(4) a::after {
    background-position: -56px 0;
}
.cd-stretchy-nav ul li:nth-of-type(5) a::after {
    background-position: -112px 0;
}
.cd-stretchy-nav ul span {
    /* navigation item labels */
    display: block;
    opacity: 0;
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
    transform: translateX(-25px);
}
.cd-stretchy-nav.nav-is-visible ul {
    visibility: visible;
}
.cd-stretchy-nav.nav-is-visible ul a::after {
    /* navigation item icons */
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    -webkit-animation: scaleIn 0.15s backwards;
    -moz-animation: scaleIn 0.15s backwards;
    animation: scaleIn 0.15s backwards;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.cd-stretchy-nav.nav-is-visible ul a.active {
    color: #3cbb76;
    text-decoration: none;
}
.cd-stretchy-nav.nav-is-visible ul a.active::after {
    opacity: 1;
}
.cd-stretchy-nav.nav-is-visible ul a.active::before {
    -webkit-transform: translateX(3px) translateY(-50%) scaleY(1);
    -moz-transform: translateX(3px) translateY(-50%) scaleY(1);
    -ms-transform: translateX(3px) translateY(-50%) scaleY(1);
    -o-transform: translateX(3px) translateY(-50%) scaleY(1);
    transform: translateX(3px) translateY(-50%) scaleY(1);
    -webkit-transition: -webkit-transform 0.15s 0.3s;
    -moz-transition: -moz-transform 0.15s 0.3s;
    transition: transform 0.15s 0.3s;
}
.cd-stretchy-nav.nav-is-visible ul span {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: slideIn 0.15s backwards;
    -moz-animation: slideIn 0.15s backwards;
    animation: slideIn 0.15s backwards;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover {
    color: #3cbb76;
    text-decoration: none;
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover::after {
    opacity: 1;
}
.no-touch .cd-stretchy-nav.nav-is-visible ul a:hover span {
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
    transform: translateX(-5px);
}
.cd-stretchy-nav.nav-is-visible ul li:first-of-type a::after,
.cd-stretchy-nav.nav-is-visible ul li:first-of-type span {
    -webkit-animation-delay: 0.05s;
    -moz-animation-delay: 0.05s;
    animation-delay: 0.05s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(2) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(2) span {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(3) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(3) span {
    -webkit-animation-delay: 0.15s;
    -moz-animation-delay: 0.15s;
    animation-delay: 0.15s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(4) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(4) span {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(5) a::after,
.cd-stretchy-nav.nav-is-visible ul li:nth-of-type(5) span {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
@-webkit-keyframes scaleIn {
    from {
        -webkit-transform: translateY(-50%) scale(0);
    }
    to {
        -webkit-transform: translateY(-50%) scale(1);
    }
}
@-moz-keyframes scaleIn {
    from {
        -moz-transform: translateY(-50%) scale(0);
    }
    to {
        -moz-transform: translateY(-50%) scale(1);
    }
}
@keyframes scaleIn {
    from {
        -webkit-transform: translateY(-50%) scale(0);
        -moz-transform: translateY(-50%) scale(0);
        -ms-transform: translateY(-50%) scale(0);
        -o-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
    }
    to {
        -webkit-transform: translateY(-50%) scale(1);
        -moz-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
        -o-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }
}
@-webkit-keyframes slideIn {
    from {
        opacity: 0;
        -webkit-transform: translateX(-25px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}
@-moz-keyframes slideIn {
    from {
        opacity: 0;
        -moz-transform: translateX(-25px);
    }
    to {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}
@keyframes slideIn {
    from {
        opacity: 0;
        -webkit-transform: translateX(-25px);
        -moz-transform: translateX(-25px);
        -ms-transform: translateX(-25px);
        -o-transform: translateX(-25px);
        transform: translateX(-25px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

.logo-container {
    height:70px;
    left:22px;
    position:absolute;
    top:22px;
    z-index: 6;
    width:51px;
    perspective: 400px;
    -webkit-perspective: 400px;
}
#logo-card {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden; 
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
}
.logo-container.is_anim #logo-card {
    -webkit-animation: rotate 1s linear forwards;
    -moz-animation: rotate 1s linear forwards;
    animation: rotate 1s linear forwards;
}

.logo-front {
    width: 60px;
    height: 66px;
    border: 1px solid white;
    text-align: center;
}

.logo-back{
    -webkit-transform: rotateY( 180deg ) translate3d(50px,0px,0px);
    transform: rotateY( 180deg );
    position: absolute;
    top: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    width: 100%;
    height: 100%;
}
.logo-front .st0{fill-rule:evenodd;clip-rule:evenodd;fill:white;}
.logo-back .st0{
    fill-rule:evenodd;
    clip-rule:evenodd;
    fill:transparent;
}
.logo-back .st1{fill:none;stroke:white;stroke-width:2;stroke-miterlimit:10;}
.logo-back .st2{fill-rule:evenodd;clip-rule:evenodd;fill:white;}
.logo_text_1{
    font-size: 39px;
    color: white;
    font-family: 'goodpro-condbook';
    display: block;
    margin-top: 13px;
    line-height: 26px;
}
.logo_text_2{
    font-size: 15px;
    color: white;
    font-family: 'goodpro-condlight';
    display: block;
}
@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
@-moz-keyframes rotate {
    from {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to{
        -webkit-transform: rotateY(360deg);
        -moz-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

.phonecb {
    background-image: url('../images/phone_.png');
    background-repeat: no-repeat;
    background-position: 16px 13px;
    width: 47px;
    height: 47px;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    position: absolute;
    right: 6px;
    display: none;
    animation-duration: .8s;
    -webkit-animation-duration: .8s;
}
.phonecb:hover:before{
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
}
.phonecb:hover:after{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1
}
.phonecb:after{
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    opacity: 0;
}
.phonecb:before{}
.phonecb:before, .phonecb:after {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    transition: opacity .6s,-webkit-transform .6s;
    transition: transform .6s,opacity .6s;
    transition: transform .6s,opacity .6s,-webkit-transform .6s;
    border-radius: 100%;
    box-shadow: inset 0 0 0 2px white;
}

.breefcb {
    background-image: url('../images/breef_.png');
    background-repeat: no-repeat;
    background-position: 16px 13px;
    width: 47px;
    height: 47px;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    position: absolute;
    right: 6px;
    display: none;
    animation-duration: .8s;
    -webkit-animation-duration: .8s;
}
.breefcb:hover:before{
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
}
.breefcb:hover:after{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1
}
.breefcb:after{
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    opacity: 0;
}
.breefcb:before{}
.breefcb:before, .breefcb:after {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    transition: opacity .6s,-webkit-transform .6s;
    transition: transform .6s,opacity .6s;
    transition: transform .6s,opacity .6s,-webkit-transform .6s;
    border-radius: 100%;
    box-shadow: inset 0 0 0 2px white;
}

.email_icon_svg_color_1, .email_icon_svg_color_2, .email_icon_svg_color_3, .email_icon_svg_color_4, .email_icon_svg_color_5 {
	fill: white;
	stroke: #000;
}

.email_icon_svg_color_1:hover, .email_icon_svg_color_2:hover, .email_icon_svg_color_3:hover, .email_icon_svg_color_4:hover, .email_icon_svg_color_5:hover {
	
}
.self_layout{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    display: none;

}
.self_layout::before{
    background: url('../images/bg_contacts.png') no-repeat center;
    opacity: 0.03;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 0;
    content: "";
}
.self_layout::after {
    content: "";
    background: url('../images/bg_start.png') repeat;
    opacity: 0.98;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}
.self_layout_close{
    z-index: 20;
    width: 48px;
    height: 48px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: 24px;
    top: 22px;
    text-align: center;
    text-decoration: none;
    font-size: 36px;
    border: 2px solid white;
    background-color: white;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.self_layout_close::after,.self_layout_close::before{
    content: ' ';
    position: absolute;
    width: 26px;
    height: 2px;
    background-color: #000;
    top: 23px;
    left: 12px;
}
.self_layout_close::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.self_layout_close::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.self_layout_close:hover::before,.self_layout_close:hover::after{
    background-color: white;
}
.self_layout_close:hover{
    color: white;
    background: black;
    border: 2px solid white;
}

.self_layout .cl-cont{
   width:95%;
   left:2%;
   text-align:center;
}

#text_disc{
	margin-left:0px;
}

.contacts_layout{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    display: none;

}
.contacts_layout::before{
    background: url('../images/bg_contacts.png') no-repeat center;
    opacity: 0.03;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 0;
    content: "";
}
.contacts_layout::after {
    content: "";
    background: url('../images/bg_start.png') repeat;
    opacity: 0.98;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}
.contacts_layout_close{
    z-index: 20;
    width: 48px;
    height: 48px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: 24px;
    top: 22px;
    text-align: center;
    text-decoration: none;
    font-size: 36px;
    border: 2px solid white;
    background-color: white;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.contacts_layout_close::after,.contacts_layout_close::before{
    content: ' ';
    position: absolute;
    width: 26px;
    height: 2px;
    background-color: #000;
    top: 23px;
    left: 12px;
}
.contacts_layout_close::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.contacts_layout_close::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.contacts_layout_close:hover::before,.contacts_layout_close:hover::after{
    background-color: white;
}
.contacts_layout_close:hover{
    color: white;
    background: black;
    border: 2px solid white;
}
.cl-cont{
    width: 300px;
    height: 70px;
    left:50%;
    top:50%;
    margin-left:-135px;
    margin-top:-80px;
    position:absolute;
}
.cl-cont a{
    text-decoration: none;
    color: white;
}
.cl-cont_phone{
    font-size: 50px;
}
.cl-cont_mail{
    background: url("../images/mail-icon.png") no-repeat 0 11px;
    font-size: 30px;
    padding-left: 30px;
}
.cl-cont_wa{
    background: url("../images/WhatsApp.svg") no-repeat 0 11px;
    font-size: 30px;
    padding-left: 30px;
	width:24px;
	height:24px;
}
.cyan {
    color: white;
}


    .container {
      position: fixed !important;
      height: 100%;
      width: 100%;
    }
    
    .overlay {
	    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    }

    .noise {
	        background-image: url("../images/noise.png");
    opacity: 0.045;
    }

.menu-icon-wrapper {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 34px;
    margin: .65em;
    pointer-events: none;
    transition: 0.1s;
}

.menu-icon-wrapper.scaled {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.menu-icon-wrapper svg {
    position: absolute;
    top: -13px;
    left: -13px;
    -webkit-transform: scale(0.06);
    -ms-transform: scale(0.06);
    transform: scale(0.06);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.menu-icon-wrapper svg path {
    stroke: white;
    stroke-width: 30px;
    stroke-linecap: round;
    stroke-linejoin: round; 
    fill: transparent;
}
.cd-stretchy-nav.nav-is-visible svg path,#menu-icon-wrapper:hover svg path{
    stroke: #000;
}
.menu-icon-wrapper .menu-icon-trigger {
    position: relative;
    width: 160%;
    height: 160%;
    cursor: pointer;
    pointer-events: auto;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    margin-left: -11px;
    margin-top: -11px;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
}

.menu-icon-wrapper .menu-icon-trigger:hover,
.menu-icon-wrapper .menu-icon-trigger:focus {
    outline: none;
}
.hide{
    display: none;
}
.noise {
    background-image: url("../homomo/stylesheets/noise.png");
    opacity: 0.035;
}
.mobile_menu_cont__  .menu,.mobile_menu_cont__  .menu li a{
    color: #34bb74 !important;
    font-size: 21pt !important;
}
.index .mobile_menu_cont__ .menu{
    top: 12% !important;
    left: -85px !important;
}
.mobile_menu_cont__ .cl-cont .cl-cont_phone{
    font-size: 23px !important;
}.mobile_menu_cont__ .cl-cont .cl-cont_mail{
    font-size: 18px !important;
    text-transform:  none !important;
     background: url(../images/mail-icon.png) 0 3px no-repeat !important;
}
.mobile_menu_cont__ .cl-cont a{
    font-family: goodpro-condlight !important;
}
.mobile_menu_cont__ .cl-cont{
    font-weight: normal !important;
    width: 160px;
    height: 70px;
    top: auto;
    margin: auto !important;
    position: absolute;
    bottom: 20px;
    left: auto;

}
.mobile_menu_cont__{
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
    display: none;
    background: url('../images/publ_index.png') repeat #000;
}
.index canvas{
    background: none !important;
}
@media screen and (max-width: 480px) {
    .contacts_layout_close:hover{
        background-color: white !important;
    }
    .contacts_layout_close:hover::before,.contacts_layout_close:hover::after{
        background-color: #000 !important;
    }
}
@font-face {
    font-family: 'goodpro-condlight';
    src: url('../fonts/goodpro-condlight-webfont.eot@#iefix') format('embedded-opentype'),
    url('../fonts/goodpro-condlight-webfont.eot'),
    url('../fonts/goodpro-condlight-webfont.woff') format('woff'),
    url('../fonts/goodpro-condlight-webfont.woff2') format('woff2'),
    url('../fonts/goodpro-condlight-webfont.ttf') format('truetype'),
    url('../fonts/goodpro-condlight-webfont.svg.xml') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Перекрываем font-face для Chrome, так чтобы он брал шрифт только в формате SVG*/
@media all and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: 'goodpro-condlight';
        src: url('../fonts/goodpro-condlight-webfont.svg.xml') format('svg');
        font-weight: normal;
        font-style: normal;
    }
}

@font-face {
    font-family: 'goodpro-condbook';
    src: url('../fonts/goodpro-condbook-webfont.eot@#iefix') format('embedded-opentype'),
    url('../fonts/goodpro-condbook-webfont.eot'),
    url('../fonts/goodpro-condbook-webfont.woff') format('woff'),
    url('../fonts/goodpro-condbook-webfont.ttf') format('truetype'),
    url('../fonts/goodpro-condbook-webfont.svg.xml') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Перекрываем font-face для Chrome, так чтобы он брал шрифт только в формате SVG*/
@media all and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: 'goodpro-condbook';
        src: url('../fonts/goodpro-condbook-webfont.svg.xml') format('svg');
        font-weight: normal;
        font-style: normal;
    }

}

@font-face {
    font-family: 'goodpro-condblack';
    src: url('../fonts/goodpro-condblack-webfont.eot@#iefix') format('embedded-opentype'),
    url('../fonts/goodpro-condblack-webfont.eot'),
    url('../fonts/goodpro-condblack-webfont.woff') format('woff'),
    url('../fonts/goodpro-condblack-webfont.ttf') format('truetype'),
    url('../fonts/goodpro-condblack-webfont.svg.xml') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Перекрываем font-face для Chrome, так чтобы он брал шрифт только в формате SVG*/
@media all and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: 'goodpro-condblack';
        src: url('../fonts/goodpro-condblack-webfont.svg.xml') format('svg');
        font-weight: normal;
        font-style: normal;
    }

}




body.index{
    background: #141419;
    overflow: hidden;
}

/*body.breef{
	overflow-y: scroll !important;
}*/

.index * {
    font-family: 'goodpro-condlight';
}
.index canvas{
    position: absolute;
    opacity:0.7;
    margin: auto;
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: 0.5s ease;
}
.index #cnv{
    position: absolute;
    z-index: 99999;
    width: 200px;
    height: 60px;
    top: 100px;
    left: 100px
}
.index #main_svg{
    position: absolute;
    z-index: 2;
    overflow: hidden;
    height: 100%;
    width: 100%;
    top:-45px;
    transition: 0.5s ease;
}
.index #triangle_svg{
    position: absolute;
    z-index: 999999;
    width: 320px;
    height: 294px;
    margin: auto;
    top: -210px;
    left: 0;
    bottom: 0;
    right: 0;
    transition: 0.5s ease;
}
.index .svgs_cont{
    width: 700px;
    height: 580px;
    margin: auto;
    top: 0; left: 0; bottom: 0; right: 0;
    position: absolute;
}
.index .svgs_cont.heart-cont{
    height: 550px;
    width: 554px;
}

.index .svgs_cont.deer-cont{
    height: 660px;
	width: 580px;
}
.index .svgs_cont.lizard-cont{
    height: 599px;
    width: 511px;
}
.index .heart_object,.index .deer_object,.index .lizard_object{
    display: none;
}



.index #scene{
    opacity: 0;
    height: 100%;
    width: 100%;
    transition: 0.5s ease;
}

.index .pl-1,.index  .pl-2,.index  .pl-3,.index  .pl-4,.index  .pl-5,.index  .pl-6,.index  .pl-7,.index  .pl-8 {
	margin-left: 35px;
	margin-top: -10px;
}

.index .fp-slide {
    position: relative;
}
.index .parallax_cont{
    position: absolute;
    z-index: 2;
    width: 1520px;
    height: 1520px;
    margin: auto;
    top: 35px;
    left: -88px;
    bottom: 0;
    right: 0;
}
.index .snap, .content_m {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 659px;
    height: 631px;
}

.index .top_line {
    color: white;
    height: 20px;
    width: 100%;
    position: fixed;
    z-index: 2;
    padding: 20px;
    transition: color 0.9s linear;
}

.index .top_line .company {
    font-family: 'goodpro-condbook';
    font-size: 27pt;
}

.index .top_line .description {
    font-family: 'goodpro-condlight';
    font-size: 10pt;
    width: 220px;
    display: inline-block;
    text-transform: uppercase;
    padding-left: 4px;
}

.index .middle_line {
    position: fixed;
    top: 55%;
    left: 0;
    width: 330px;
    right: 0;
    margin: auto;
    z-index: 2;
}

.index .main_menu {
    margin-left: 150px;
    width: 620px;
    transition: 0.5s;
    position: absolute;
    bottom: 193px;
    left: 110px;
    z-index: 99;
    transform: translate3d(-15px, 0px, 0px);
}

.index .main_menu,.index  .main_menu,.index  .main_menu li {
    list-style: none;
    padding: 0;
}

.index .main_menu li.active {
    font-size: 35pt;
    line-height: 35pt;
    width: auto;
}
.index .main_menu li.active a{
    cursor: default;
}
.index .main_menu li {
    transition: 0.8s;
    float: left;
    padding-right: 10px;
    text-transform: uppercase;
    font-size: 15pt;
    line-height: 48pt;
}

.index .main_menu li a {
    color: white;
    text-decoration: none;
}

.index .bottom_line {
    color: white;
    height: 20px;
    width: 100%;
    position: fixed;
    z-index: 2;
    padding: 20px;
    bottom: 0;
    transition: color 0.9s linear;
}

.index .bottom_line .copy {
    font-size: 11pt;
}

.index .menu_cont {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 11;
    top: 0;
    display: none;
}

.index .menu_cont .content {
    position: relative;
    width: 100%;
    height: 100%;
}

.index .menu {
    width: 140px;
    margin: auto;
    position: absolute;
    top: 26%;
    left: 0;
    bottom: 0;
    right: 0;
}

.index .menu li {
    width: 550px;
}

.index .menu, .menu li {
    list-style: none;
    padding: 0;
}

.index .menu,.index  .menu li a {
	font-family: 'goodpro-condblack';
    color: white;
    font-size: 47pt;
    text-transform: uppercase;    
}

.index .menu,.index  .menu li a:hover {
	text-decoration: none;
}

.index .section .contacts a {
    display: block;
    color: white;
    font-size: 16pt;
    width: 200px;
    text-decoration: none;
}

.index .section .contacts {
    width: 140px;
    margin: auto;
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
}

.index .hamburger-icon-container {
    float: right;
    margin-right: 45px;
    margin-top: -6px;
}

.index .hamburger-icon-container .b-hamburger-icon {
    width: 34px;
    height: 34px;
}

.index .hamburger-icon-container.white {
    height: 38px;
}

.index .hamburger-icon-container .b-hamburger-icon {
    line-height: 35px;
    -moz-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
}

.index .hamburger-icon-container .b-hamburger-icon.black > span.hh,
.index .hamburger-icon-container .b-hamburger-icon.black > span.hh:after,
.index .hamburger-icon-container .b-hamburger-icon.black > span.hh:before {
    background-color: black;

}

.index .hamburger-icon-container .b-hamburger-icon.white > span.hh,
.index .hamburger-icon-container .b-hamburger-icon.white > span.hh:after,
.index .hamburger-icon-container .b-hamburger-icon.white > span.hh:before {
    background-color: white;

}

.index .hamburger-icon-container .b-hamburger-icon.white > span.hh {
    transition: background-color 0.1s linear;
}

.index .hamburger-icon-container .b-hamburger-icon.white > span.hh:after,
.index .hamburger-icon-container .b-hamburger-icon.white > span.hh:before {
    transition: background-color 0.1s linear;
}

.index .hamburger-icon-container .b-hamburger-icon > span.hh, .index .hamburger-icon-container .b-hamburger-icon > span.hh:after, .index .hamburger-icon-container .b-hamburger-icon > span.hh:before {
    display: inline-block;
    width: 25px;
    height: 3px;
    transition: .2s;
    position: relative;
}

.index .hamburger-icon-container .b-hamburger-icon > span.hh:before, .index .hamburger-icon-container .b-hamburger-icon > span.hh:after {
    position: absolute;
    left: 0;
    content: '';
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.index .hamburger-icon-container .b-hamburger-icon > span.hh:before,.index  .hamburger-icon-container .b-hamburger-icon > span.hh:after {
    transition-duration: 0.2s;
}

.index .hamburger-icon-container .b-hamburger-icon > span.hh:before {
    top: -8.33333px;
}

.index .hamburger-icon-container .b-hamburger-icon > span.hh:after {
    top: 8.33333px;
}

.index .hamburger-icon-container:hover .b-hamburger-icon > span.hh:before {
    top: -6.33333px;
}

.index .hamburger-icon-container:hover .b-hamburger-icon > span.hh:after {
    top: 6.33333px;
}

.index .hamburger-icon-container .b-hamburger-icon.toggled > span.hh {
    background: transparent;
}

.index .hamburger-icon-container .b-hamburger-icon.toggled > span.hh:before,.index  .hamburger-icon-container .b-hamburger-icon.toggled > span.hh:after {
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    top: 0;
    width: 23px;
}

.index .hamburger-icon-container .b-hamburger-icon.toggled > span.hh:before {
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.index .hamburger-icon-container .b-hamburger-icon.toggled > span.hh:after {
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.index .hamburger-icon-container .b-hamburger-icon.toggled:hover {
    opacity: .6;
}

/*
#snap1 circle{
    animation: shake .4s cubic-bezier(.36,.07,.19,.97) infinite;
    transform: translate3d(0, 0, 0);
    animation-delay: 2s;
    backface-visibility: hidden;
    perspective: 1000px;
}
 Animations */
@keyframes shake {
    10%, 90% {
        transform: translate3d(-4px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(4px, 0, 0);
    }

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

    40%, 60% {
        transform: translate3d(8px, 0, 0);
    }
}
@keyframes rY {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(20deg);
    }
}

.index .layer,.index .layer img{
	width: 100%;
	height: 140%;
}

.index .parallax_c1 {
	background: url('../images/svg/c1.svg.xml') no-repeat center;
	width: 100%;
	height: 140%;
}

.index .parallax_c2 {
	background: url('../images/svg/c2.svg.xml') no-repeat center;
	width: 100%;
	height: 140%;
}
.index .parallax_c3 {
	background: url('../images/svg/c3.svg.xml') no-repeat center;
	width: 100%;
	height: 140%;
}
.index .parallax_c4 {
	background: url('../images/svg/c4.svg.xml') no-repeat center;
	width: 100%;
	height: 140%;
}
.index .parallax_c5 {
	background: url('../images/svg/c5.svg.xml') no-repeat center;
	width: 100%;
	height: 140%;
}
.index .parallax_c6 {
	background: url('../images/svg/c6.svg.xml') no-repeat center;
	width: 100%;
	height: 140%;
}
.index .parallax_p1 {
	background: url('../images/svg/p1.svg.xml') no-repeat center;
	width: 100%;
	height: 140%;
	display: block;
}
.index .parallax_p2 {
	background: url('../images/svg/p2.svg.xml') no-repeat center;
	width: 100%;
	height: 140%;
}
.index .parallax_l1 {
	background: url('../images/svg/l1.svg.xml') no-repeat center;
	width: 100%;
	height: 140%;
}

.index .heart-body .color-switch{
    color: #5099a0 !important;
}
.index .heart-body .hamburger-icon-container .b-hamburger-icon > span.hh,
.index .heart-body .hamburger-icon-container .b-hamburger-icon > span.hh:after,
.index .heart-body .hamburger-icon-container .b-hamburger-icon > span.hh:before {
    background-color: #5099a0;

}

.index .deer-body .color-switch{
    color: /*#34bc74 !important*/;
}

.index .deer-body .hamburger-icon-container .b-hamburger-icon > span.hh,
.index .deer-body .hamburger-icon-container .b-hamburger-icon > span.hh:after,
.index .deer-body .hamburger-icon-container .b-hamburger-icon > span.hh:before {
    background-color: white;

}
.index .lizard-body .color-switch{
    color: white !important;
}
.index .lizard-body .hamburger-icon-container .b-hamburger-icon > span.hh,
.index .lizard-body .hamburger-icon-container .b-hamburger-icon > span.hh:after,
.index .lizard-body .hamburger-icon-container .b-hamburger-icon > span.hh:before {
    background-color: #61406b;
}
.index .heart-body .menu_cont{
    background: url("../images/menu_bg_heart.png") repeat;
}
.index .deer-body .menu_cont{
    background: url("../images/menu_bg_deer.png") repeat;
}
.index .lizard-body .menu_cont{
    background: url("../images/menu_bg_lizard.png") repeat;
}
.index .menu_opened .svgs_cont,.index .menu_opened .main_menu{
    display: none;
}
.index .menu_opened .color-switch{
    color: white !important;
}

.index .menu_opened .hamburger-icon-container .b-hamburger-icon > span.hh{
    background: transparent;
}
.index .menu_opened .hamburger-icon-container .b-hamburger-icon > span.hh:after,
.index .menu_opened .hamburger-icon-container .b-hamburger-icon > span.hh:before {
    background-color: white;
}
.index .menu_opened .parallax_cont img{
    opacity: 0.2;
    -webkit-filter: brightness(13);
    filter: brightness(13);
}
.index .menu_opened .parallax_cont{
    z-index: 12;
}
.index .menu_content_m{
    display: none;
}
.index .menu_opened .menu_content_m{
    z-index: 20;
    display: block;
}

.index .menu_opened.heart-body .parallax_cont img{
	opacity: 1;
    -webkit-filter: brightness(0);
    filter: brightness(0);

}
.index .menu_opened.deer-body .parallax_cont img{
	 opacity: 1;
    -webkit-filter: brightness(0);
    filter: brightness(0);
}
.index .menu_opened.lizard-body .parallax_cont img{
	opacity: 1; 
	-webkit-filter: brightness(6);
	filter: brightness(6);
}
.index .container {
    position: fixed !important;
    height: 100%;
    width: 100%;
}

.index .overlay {
    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}
.index .home-canvas{
    opacity: 0.02;
}
.index .contacts_layout{
    top:0;
}
.index .small_tr{
    fill: transparent !important;
    stroke-width: 4px !important;
}
.index .small_tr.lizard_smtr{
    transform: rotate(180deg);
}
@-moz-document url-prefix() {
    .index canvas{
        top:-30px;
    }
}
.spinner_canvas{
    opacity: 1 !important;
}
.index_cont{
    opacity: 0;
    transition: 1s ease;
}
.index .preloader_text_lg .logo_text_1{
    font-size: 40px;
    line-height: 34px;
}
.index .preloader_text_lg .logo_text_2{
    font-size: 15px;
}
.index .preloader_text_lg{
    width: 46px;
    height: 68px;
    position: absolute;
    top:0;bottom: 0;right: 0; left:0;
    margin: auto;
    z-index: 9;
    opacity: 1;
    transition: 1s ease;
	text-align: center;
}
body.bitrix, .bitrix #fullpage-bitrix {
    height: 100%;
}

.bitrix #section0 {
    min-height: calc(83vh - 50px);
    z-index: 2;
    position: absolute;
}

.bitrix .copy {
    height: 30px;
    margin-left: 100px;
    color: #87f5ea;
    position: absolute;
    z-index: 2;
    bottom: 0;
}

.bitrix .section {
    padding-left: 100px;
    padding-top: 140px;
}

.bitrix .top_line h2 {
    font-size: 16px;
    font-weight: 300;
    text-transform: none;
    color: #84f3ea;
}

.bitrix .top_line {
    width: 304px;
}

.bitrix .top_line h1 {
    font-family: 'goodpro-condblack';
    font-size: 35px;
    color: #84f3ea;
    background: url("../images/bitrix/bitrix_icon.png") no-repeat 161px;
}

.bitrix .accordion-item * {
    transition: 0.3s ease;
}

.bitrix .item-title {
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    border-bottom: 1px dashed #fff;
    display: inline;
    cursor: pointer;
    font-family: 'goodpro-condblack';
}

.bitrix .item-price {
    font-size: 40px;
    font-weight: 300;
    display: none;
}

.bitrix .item-desc {
    font-size: 18px;
    font-weight: 300;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    width: 495px;
}

.bitrix .accordion-item.active .item-title {
    color: #84f3ea;
    border-bottom: none;
}

.bitrix .accordion-item.active .item-title:after {
    content: ':';
}

.bitrix .accordion-item.active .item-price {
    display: inline-block;
    margin-left: 10px;
    color: #fff;
}

.bitrix .accordion-item.active .item-desc {
    max-height: 300px;
}

.bitrix .accordion-item .item-desc p {
    margin: 15px 0;
    color: #fff;
}

.bitrix .accordion-item .item-desc .gift {
    color: #0098aa;
}

.bitrix .overlay {
    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.bitrix .noise {
    background-image: url("../images/noise.png");
    opacity: 0.075;
}

.bitrix .container {
    z-index: -1;
}
body.delivery,.delivery #fullpage-delivery {
    background: #f6f6f6;
}

.delivery .fc-content {
    width: 1024px;
    height: 100%;
    margin: 0 auto;
    background: url(../images/delivery/heart.png) no-repeat 430px bottom;
    color: #ffffff;
}

.delivery .first-screen {
    background-color: #e5234c;
    height: 600px;
    width: 100%;
}

.delivery .fc-title,.delivery  .fc-price {
    font-size: 45px;
    line-height: 47px;
    font-weight: 300;
}

.delivery .fc-name {
    font-size: 32px;
    text-transform: uppercase;
    margin-top: 19px;
}

.delivery .fc-name span {
    margin-left: 15px;
    vertical-align: top;
}

.delivery .fc-desc {
    width: 355px;
    font-size: 19px;
    margin-top: 8px;
}

.delivery .fc-btn {
    padding: 15px;
    width: 108px;
    border-radius: 5px;
    border: 1px solid #fff;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 19px;
}

.delivery .fc-btn:hover {
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
}

.delivery .fc-btn:last-child {
    margin-left: 10px;
}

.delivery .fc-content-inner {
    padding-top: 100px;
    padding-left: 25px;
}

.delivery .fc-buttons {
    margin-top: 43px;
}

.delivery .content.slides {
    margin-top: 90px;
}

.delivery .slides h2 {
    font-size: 38px;
    color: #f1355b;
    font-weight: 900;
    margin-bottom: 20px;
}

.delivery .slides_nav ul {
    padding: 0;
    list-style: none;
    margin-top: -10px;
    margin-left: 5px;
}

.delivery .slides_nav ul li {
    padding: 8px 7px 7px 7px;
    font-weight: 300;
    font-size: 22px;
}

.delivery .slides_nav ul li a {
    color: black;
    font-size: 22px;
}

.delivery .slides_nav ul li.active a {
    background-color: #f33158;
    border-radius: 10px;
    padding: 4px;
    padding-left: 15px;
    padding-right: 21px;
    line-height: 10px;
    color: white;
    text-decoration: none;
    margin-left: -14px;
}

.delivery .slide_title span {
    background: #000;
    color: #fff;
    font-size: 28px;
    font-weight: 100;
    padding: 5px 15px;
    line-height: 37px;
}

.delivery .ml10 {
    margin-left: 10px;
}

.delivery .slides_nav {
    width: 246px;
    float: left;
    padding-bottom: 35px;
}

.delivery .slides_content {
    float: left;
    margin-top: 15px;
}

.delivery .slide_content p {
    color: #58595b;
    font-size: 16px;
    padding-left: 13px;
    margin-top: 14px;
    line-height: 19px;
    font-weight: 100;
}

.delivery .slide {
    display: none;
}

.delivery .content {
    width: 780px;
    margin: 0 auto;
}

.delivery .content.images {
    text-align: center;
}

.delivery .content:after {
    content: ' ';
    height: 1px;
    clear: both;
    display: block;
}

.delivery .separator {
    background-color: #b9b9b9;
    height: 1px;
}

.delivery .item {
    margin-right: 17px;
    margin-bottom: 17px;
    display: inline-block
}

.delivery .projects {
    width: 960px;
    margin: 0 auto;
}

.delivery .projects-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    margin-top: 20px;
    color: #494949;
}
.delivery .copy {
    height: 50px;
    margin-left: 20px;
}
.delivery .img {
    margin-top: 100px;
}

body.direct{
    background: url(../images/bg_start.png) repeat center;
}
.direct .fp-section {
    position: relative;
}

#section1 {
    padding-top: 150px;
}

#section2 {
    padding-top: 153px;
}

.direct #section3 {
    padding-top: 151px;
}

.direct #section4 {
    padding-top: 164px;
}

.direct #section5 {
    padding-top: 168px;
}

.direct #section6 {
    padding-top: 155px;
    color: #fff;
}



/*
#section0 {
    background: url(../images/direct/math_0.png) no-repeat 457px 69px, url(../images/direct/arrows.png) no-repeat left 288px, url(../images/bg_0.png) repeat center;
}

#section1 {
    background: url(../images/direct/math_1.png) no-repeat 482px 63px, url(../images/bg_1.png) repeat center;
    padding-top: 150px;
}

#section2 {
    background: url(../images/direct/math_2.png) no-repeat 350px 50px, url(../images/bg_2.png) repeat center;
    padding-top: 153px;
}

#section3 {
    background: url(../images/direct/math_3.png) no-repeat 453px 55px, url(../images/bg_3.png) repeat center;
    padding-top: 151px;
}

#section4 {
    background: url(../images/direct/math_4.png) no-repeat 411px 58px, url(../images/bg_4.png) repeat center;
    padding-top: 164px;
}

#section5 {
    background: url(../images/direct/math_5.png) no-repeat 438px 49px, url(../images/bg_5.png) repeat center;
    padding-top: 168px;
}

#section6 {
    background: url(../images/direct/math_6.png) no-repeat 422px 52px, url(../images/bg_6.png) repeat center;
    padding-top: 155px;
}
*/

.direct .top_line.white {
    color: #fff;
}

.direct .top_line.black {
    color: #000;
}

.direct .top_line.cian {
	color: #87f4eb;
}

.direct .top_line h1 {
    font-family: 'goodpro-condblack';
    font-size: 34px;
    line-height: 34px;
    margin-top: 3px;
}

.direct .top_line h2 {
    font-size: 14px;
}

.direct div.section {
    padding-top: 174px;
    padding-left: 98px;
}

.direct #section0 {
    color: white;
}

.direct .section0-title {
    font-size: 44px;
    text-transform: uppercase;
    font-family: 'goodpro-condblack';
    line-height: 50px;
}

.direct .start-btn-box-caption {
    width: 152px;
    font-size: 16px;
    line-height: 14px;
    color: #ffffff;
    margin-left: 8px;
    margin-top: 5px;
    display: inline-block;
}

.direct .start-btn-box {
    margin-top: 23px;
}

.direct .section1-title {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    font-family: 'goodpro-condlight';
}

.direct .section1-grid .col-caption {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    width: 235px;
    line-height: 18px;

}

.direct .section4-grid .col-caption {
    font-size: 24px;
    line-height: 9px;
    font-weight: 900;
}

.direct .section5-grid .col-caption {
    font-size: 24px;
    line-height: 0px;
    font-weight: 900;
}

.direct .section1-grid .col:nth-child(2) {
    margin-left: 68px;
}

.direct .col {
    display: inline-block;
    width: 250px;
}

.direct .section5-grid .col {
    display: block;
    width: auto;
    color: #fff;
}

.direct .section5-grid .col:last-child {
    width: 500px;
}

.direct .section4-grid .col {
    display: block;
    width: 100%;
}

.direct .section1-grid .row {
    margin-top: 20px;
}

.direct .section1-grid .row2 {
    margin-top: 29px;
}

.direct .section1-grid .row3 {
    margin-top: 31px;
}

.direct .section3-grid .row:last-child {
    margin-top: 37px;
    margin-left: -6px;
}

.direct .section2-grid .col-caption {
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
    color: #fff;
    width: 325px;
    font-family: 'goodpro-condlight';
}

.direct .section2-grid .row:last-child {
    margin-top: 25px;
}

.direct .section2-grid .result {
    font-size: 120px;
    font-weight: 900;
    display: table-cell;
    font-family: 'goodpro-condblack';
    color: #fff;
}

.direct .section5-grid .result, .direct .section4-grid .result {
    font-size: 99px;
    font-weight: 900;
    display: table-cell;
    font-family: 'goodpro-condblack';
}

.direct .section2-grid .result span, .direct .section4-grid .result span, .direct .section5-grid .result span {
    font-family: 'goodpro-condblack';
}

.direct .result-caption {
    font-size: 18px;
    font-weight: 300;
}

.direct .section4-grid .result-caption {
    width: 251px;
    display: block;
    line-height: 16px;
}

.direct .section4-grid .col:last-child {
    margin-top: 24px;
}

.direct .section5-grid .col:last-child {
    margin-top: 33px;
}

.direct .section2-grid .result-caption {
    color: #fff;
    display: table-cell;
    vertical-align: middle;
}

.direct .section5-grid .result-caption {
    display: block;
    line-height: 19px;
}

.direct .section2-grid .col {
    display: block !important;
}

.direct .conversion-info span {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    font-family: 'goodpro-condlight';
}

.direct .conversion-wii {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    margin-left: 15px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed
}

.direct .conversion-result {
    width: 118px;
    height: 118px;
    background-color: #f64768;
    border-radius: 50%;
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    font-family: 'goodpro-condblack';
}

.direct .direct .color_2 {
    background-color: #836a8a;
}

.direct .color_3 {
    background-color: #769028;
}

.direct .color_4 {
    background-color: #7895a9;
}

.direct .color_5 {
    background-color: #cd8d6e;
}

.direct .conversion-result-text {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    font-style: italic;
    display: table-cell;
    vertical-align: middle;
    width: 303px;
    padding-left: 20px;
}

.direct .conversion-result-cont {
    margin-top: 14px;
    margin-bottom: 57px;
    margin-left: -12px;
}

.direct .clearfix {
    clear: both;
    height: 1px;
}

.direct .reqs_count {
    font-size: 100px;
    font-weight: 900;
    color: #fff;
    font-family: 'goodpro-condblack';
}

.direct .reqs_count:after {
    content: ' ';
    display: block;
}

.direct .section3-grid .col {
    min-width: 82px;
    width: auto;
    font-size: 30px;
    line-height: 0px;
    font-weight: 900;
    text-align: center;
    vertical-align: middle;
    font-family: 'goodpro-condblack';
    color: #fff;
}

.direct .section3-grid .col:last-child {
    color: #769028;
    position: relative;
}

.direct .requests-end {
    color: #b2de00;
}

.direct .color-for-end {
	color: #b2de00 !important;
}

.direct .section3-grid .caption {
    margin-left: -15px;
    margin-top: -25px;
    position: absolute;
    width: 200px;
    top: 0;
    color: #fff;
    font-size: 18px;
}

.direct .mc-arrow {
    padding-bottom: 50px;
}

.direct .section4-grid {
    color: #ffffff;
}

.direct .section6-text1 {
    font-size: 18px;
    font-weight: 300;
    width: 317px;
}

.direct .section6-text2 {
    font-size: 33px;
    font-weight: 900;
    margin-top: 38px;
    margin-bottom: 56px;
    width: 370px;
    font-family: 'goodpro-condlight';
    line-height: 33px;
}

.direct .s6-caption {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    margin-top: 20px;
    width: 280px;
}

.direct .pretty-range {
    font-size: 48px;
    font-weight: 900;
    margin-top: 5px;
    margin-bottom: -25px;
    font-family: 'goodpro-condblack';
    height: 68px;
    color: #fff;
}

.direct .pretty-range span {
    font-family: 'goodpro-condblack';
}

.direct .irs-min,.direct  .irs-max, .direct .irs-to, .direct .irs-from,.direct  .irs-single {
    display: none !important;
}

.direct .irs {
    height: 55px;
}

.direct .irs-with-grid {
    height: 75px;
}

.direct .irs-line {
    top: 33px;
    background: #b35cc2; /* Old browsers */
    background: -moz-linear-gradient(left,  #b35cc2 0%, #f73a6a 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #b35cc2 0%,#f73a6a 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #b35cc2 0%,#f73a6a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b35cc2', endColorstr='#f73a6a',GradientType=1 ); /* IE6-9 */

    height: 3px;
}

.direct .irs-line-left {
    height: 3px;
}

.direct .irs-line-mid {
    height: 3px;
}

.direct .irs-line-right {
    height: 3px;
}

.direct .irs-bar {
    top: 33px;
    background: #b35cc2; /* Old browsers */
    background: -moz-linear-gradient(left,  #b35cc2 0%, #f73a6a 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #b35cc2 0%,#f73a6a 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #b35cc2 0%,#f73a6a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b35cc2', endColorstr='#f73a6a',GradientType=1 ); /* IE6-9 */

    height: 3px;
}

.direct .irs-bar-edge {
    height: 3px;
    top: 33px;
    background-color: #b9bbb0;
}

.direct .irs-slider {
    top: 21px;
    height: 27px;
    width: 27px;
    border-radius: 50%;
    background-color: #B35BC2;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAUCAYAAAAHpoRMAAABL0lEQVRIS+2UoUoEURSGv9+ixWA3iKIYhfUJhAVNNqtNswg+hFiMxq2aTFsWn0ARo4iLwW6waJBfzrJhxbl47ywLK8wpwwxn7nz3O/9cMUWlKWKhgUlN43+Ysd0CLkd28QYcSroryZnteeAU2Ac6wImk96o1kmaGMLfDlwJkAegDm5LiPqtsrwI3wCLwCmxJeqoL05e0YvsZWAbaknpZJIDtJaALrAOPwLakl3FhwlKMbk/SVQHMDHAGHAHnwLGkr3Fhis3YXgt4YDfGC0TeriOLksLSjyrOTIyswMo9sFHR/yDp1/NKGNtOfDDCm/032f4AZivW+pQ0V8fMIMC5Nkb7bF8AO0DkJnIS16iupIMsmJQZSRM9JP/KzODQq2um1OZEd9rAlBpI9TdjSpn5Brg8chXvzBzzAAAAAElFTkSuQmCC);
    cursor: pointer;
}

.direct .irs-slider.state_hover,.direct  .irs-slider:hover {
    background-color: #ba71c6;
}

.direct .irs-grid {
    height: 27px;
}

.direct .users-icon {
    display: inline-block;
    width: 17px;
    height: 20px;
    background: url(../images/direct/users-icon.png);
}

.direct .users-icon-b {
    display: inline-block;
    width: 27px;
    height: 31px;
    margin-left: -15px;
    background: url(../images/direct/users-icon-b.png);
}

.direct .range.user .irs-slider {
    background-position: -13px 3px;
    background-repeat: no-repeat;
}

.direct .range.money .irs-slider {
    background-position: 5px 3px;
    background-repeat: no-repeat;
}

.direct .mouse {
    width: 23px;
    height: 45px;
    display: table-cell;
}

.direct .scroll-info {
    position: absolute;
    bottom: 20px;
}

.direct .scroll-info.black .mouse {
    background: url(../images/direct/mouse_black.png);
}

.direct .scroll-info.white .mouse {
    background: url(../images/direct/mouse_white.png);
}

.direct .scroll-info.black {
    color: black;
}

.direct .scroll-info.white {
    color: white;
}

.direct .scroll-info-text {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    padding-bottom: 10px;
}

.direct .start-btn-box .col {
    width: 170px;
    display: table-cell;
    vertical-align: middle;
}

.direct .conversion-popup {
    background-color: #ffffff;
    width: 395px;
    height: 64px;
    box-shadow: 0px 87px 32px 0.00px rgba(1, 2, 2, 0.2);
    border-radius: 5px;
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    padding: 30px;
    position: absolute;
    top: 100px;
    left: 280px;
    display: none;
}

.direct .conversion-popup-title {
    color: #000000;
    font-size: 24px;
    font-weight: 300;
}

.direct .callback-popup {
    box-shadow: 0px 24px 50px 0.00px rgba(2, 3, 3, 0.3);
    background: #000 url('../images/publ_index.png');
    width: 411px;
    height: 237px;
    display: none;
    position: absolute;
    top: 270px;
    left: 80px;
    padding: 50px;
}

.direct .callback-title {
    font-size: 39.57px;
    font-weight: 300;
    line-height: 48px;
    color: #82f5ed;
}

.direct .menu-sprite {
    background-image: url(data:image/png;base64,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);
    background-repeat: no-repeat;
    display: block;
    margin: 0 auto;
}

.direct .menu-sprite-calc {
    width: 23px;
    height: 26px;
    background-position: -5px -5px;
}

.direct .menu-sprite-calc.active {
    width: 36px;
    height: 36px;
    background-position: -5px -41px;
}

.direct .menu-sprite-calc.white {
    width: 23px;
    height: 26px;
    background-position: -5px -87px;
}

.direct .menu-sprite-eye {
    width: 21px;
    height: 13px;
    background-position: -5px -123px;
}

.direct .menu-sprite-eye.active {
    width: 36px;
    height: 36px;
    background-position: -5px -146px;
}

.direct .menu-sprite-eye.white {
    width: 21px;
    height: 13px;
    background-position: -5px -192px;
}

.direct .menu-sprite-mini-hm {
    width: 21px;
    height: 19px;
    background-position: -5px -215px;
}

.direct .menu-sprite-mini-hm.active {
    width: 36px;
    height: 36px;
    background-position: -5px -244px;
}

.direct .menu-sprite-mini-hm.white {
    width: 21px;
    height: 19px;
    background-position: -5px -290px;
}

.direct .menu-sprite-mini2-hm {
    width: 21px;
    height: 12px;
    background-position: -5px -319px;
}

.direct .menu-sprite-mini2-hm.active {
    width: 36px;
    height: 36px;
    background-position: -5px -341px;
}

.direct .menu-sprite-percent {
    width: 19px;
    height: 23px;
    background-position: -5px -409px;
}

.direct .menu-sprite-percent.active {
    width: 36px;
    height: 36px;
    background-position: -5px -442px;
}

.direct .menu-sprite-percent.white {
    width: 19px;
    height: 23px;
    background-position: -5px -488px;
}

.direct .menu-sprite-user {
    width: 24px;
    height: 25px;
    background-position: -5px -521px;
}

.direct .menu-sprite-user.active {
    width: 36px;
    height: 36px;
    background-position: -5px -556px;
}

.direct .menu-sprite-user.white {
    width: 24px;
    height: 25px;
    background-position: -5px -602px;
}

.direct .calc-menu {
    position: absolute;
    z-index: 2;
    left: 7px;
    top: 18.3%;
}

.direct .calc-menu ul {
    list-style: none;
}

.direct .calc-menu ul li {
    display: block;
    padding: 7px 2px;
}

.direct .calc-menu ul li::after,.direct  .calc-menu ul li::before {
    clear: both;
    content: ' ';
    height: 1px;
}

.direct .get-result-cont {
    position: relative;
}

.direct .get-result-cont .btn {
    position: absolute;
    bottom: -45px;
}
.direct #main_svg{
    position: absolute;
    z-index: 2;
    transition: 0.5s ease;
    left: 462px;
    top: 110px;
}
.direct .figure_1{
    width: 491px;
    height: 497px;
}
.direct .figure_2{
    width: 491px;
    height: 471px;
}
.direct .figure_3{
    width: 491px;
    height: 410px;
}
.direct .figure_4{
    width: 462px;
    height: 494px;
}
.direct .figure_5{
    width: 491px;
    height: 461px;
}
.direct .figure_6{
    width: 479px;
    height: 456px;
}
.direct .figure_7{
    width: 491px;
    height: 490px;
}

/* --------------------------------

Vertical navigation

-------------------------------- */
.direct .cd-vertical-nav {
    opacity: 0;
    position: fixed;
    z-index: 7;
    right: 5%;
    bottom: 30px;
    width: 90%;
    max-width: 400px;
    max-height: 90%;
    overflow-y: auto;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
    border-radius: 0.25em;
    background-color: rgba(234, 242, 227, 0.9);
}
.direct .cd-vertical-nav ul{
    transform: translate3d(0,-60px,0);
}
.direct .cd-vertical-nav a{
    padding: 1.5em 0 0 !important;
}
.direct .cd-vertical-nav a {
    display: block;
    padding: 1em;
    color: #3a2c41;
    font-weight: bold;
    border-bottom: 1px solid rgba(58, 44, 65, 0.1);
}
.direct .cd-vertical-nav a.active {
    color: #c0a672;
}
.direct .cd-vertical-nav.open {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-overflow-scrolling: touch;
}
.direct .cd-vertical-nav.open + .cd-nav-trigger {
    background-color: transparent;
}
.direct .cd-vertical-nav.open + .cd-nav-trigger span {
    background-color: rgba(58, 44, 65, 0);
}
.direct .cd-vertical-nav.open + .cd-nav-trigger span::before, .direct .cd-vertical-nav.open + .cd-nav-trigger span::after {
    /* transform dots in 'X' icon */
    height: 3px;
    width: 20px;
    border-radius: 0;
    left: -8px;
}
.direct .cd-vertical-nav.open + .cd-nav-trigger span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 1px;
}
.direct .cd-vertical-nav.open + .cd-nav-trigger span::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 0;
}
@media only screen and (min-width: 800px) {
    .direct .cd-vertical-nav {
        /* reset style */
        right: 27px;
        top: 23vh;
        bottom: auto;
        height: 70vh;
        width: 90px;
        max-width: none;
        max-height: none;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        background-color: transparent;
        /* vertically align its content*/
        display: table;
    }
    .direct .cd-vertical-nav::before {
        /* this is the navigation background */
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.4s;
        -moz-transition: -moz-transform 0.4s;
        transition: transform 0.4s;
    }
    .direct .no-touch .cd-vertical-nav:hover::before,.direct  .touch .cd-vertical-nav::before {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .direct .cd-vertical-nav ul {
        /* vertically align <ul> inside <nav>*/
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        list-style: none;
    }
    .direct .cd-vertical-nav a {
        position: relative;
        padding: 3em 0 0;
        margin: 1.4em auto;
        border-bottom: none;
        font-size: 1.2rem;
        color: #eaf2e3;
    }
    .direct .cd-vertical-nav a.active {
        color: #eaf2e3;
    }
    .direct .cd-vertical-nav a::before,.direct  .cd-vertical-nav a::after {
        /* used to create the filled circle and the background icon */
        content: '';
        position: absolute;
        left: 50%;
        /* Force Hardware Acceleration */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }
    .direct .cd-vertical-nav a::before {
        /* filled circle */
        top: 0;
        height: 32px;
        width: 32px;
        border-radius: 50%;
        background: #eaf2e3;
        -webkit-transform: translateX(-50%) scale(0.25);
        -moz-transform: translateX(-50%) scale(0.25);
        -ms-transform: translateX(-50%) scale(0.25);
        -o-transform: translateX(-50%) scale(0.25);
        transform: translateX(-50%) scale(0.25);
        -webkit-transition: -webkit-transform 0.4s, background-color 0.2s;
        -moz-transition: -moz-transform 0.4s, background-color 0.2s;
        transition: transform 0.4s, background-color 0.2s;
    }
    .direct .cd-vertical-nav a::after {
        /* icon */
        opacity: 0;
        top: 8px;
        height: 17px;
        width: 16px;
        background: url(../images/direct/direct_icon_sprite.png) no-repeat;
        -webkit-transform: translateX(-50%) scale(0);
        -moz-transform: translateX(-50%) scale(0);
        -ms-transform: translateX(-50%) scale(0);
        -o-transform: translateX(-50%) scale(0);
        transform: translateX(-50%) scale(0);
        -webkit-transition: -webkit-transform 0.4s 0s, opacity 0.1s 0.3s;
        -moz-transition: -moz-transform 0.4s 0s, opacity 0.1s 0.3s;
        transition: transform 0.4s 0s, opacity 0.1s 0.3s;
    }
    .direct .cd-vertical-nav a.active::before,.direct  .no-touch .cd-vertical-nav a:hover::before {
        background-color: #87f4eb;
    }
    .direct .cd-vertical-nav li:first-of-type a::after {
        /* change icon using image sprites */
        background-position: 1px 0;
        /* fix bug with transitions - set scale(0.01) rather than scale(0) */
        -webkit-transform: translateX(-50%) translateY(4.5em) scale(0.01);
        -moz-transform: translateX(-50%) translateY(4.5em) scale(0.01);
        -ms-transform: translateX(-50%) translateY(4.5em) scale(0.01);
        -o-transform: translateX(-50%) translateY(4.5em) scale(0.01);
        transform: translateX(-50%) translateY(4.5em) scale(0.01);
    }
    .direct .cd-vertical-nav li:first-of-type a::before {
        -webkit-transform: translateX(-50%) translateY(4.5em) scale(0.25);
        -moz-transform: translateX(-50%) translateY(4.5em) scale(0.25);
        -ms-transform: translateX(-50%) translateY(4.5em) scale(0.25);
        -o-transform: translateX(-50%) translateY(4.5em) scale(0.25);
        transform: translateX(-50%) translateY(4.5em) scale(0.25);
    }
    .direct .cd-vertical-nav li:nth-of-type(2) a::after {
        background-position: 0px -19px;
        -webkit-transform: translateX(-50%) translateY(2.5em) scale(0.01);
        -moz-transform: translateX(-50%) translateY(2.5em) scale(0.01);
        -ms-transform: translateX(-50%) translateY(2.5em) scale(0.01);
        -o-transform: translateX(-50%) translateY(2.5em) scale(0.01);
        transform: translateX(-50%) translateY(2.5em) scale(0.01);
    }
    .direct .cd-vertical-nav li:nth-of-type(2) a::before {
        -webkit-transform: translateX(-50%) translateY(2.5em) scale(0.25);
        -moz-transform: translateX(-50%) translateY(2.5em) scale(0.25);
        -ms-transform: translateX(-50%) translateY(2.5em) scale(0.25);
        -o-transform: translateX(-50%) translateY(2.5em) scale(0.25);
        transform: translateX(-50%) translateY(2.5em) scale(0.25);
    }
    .direct .cd-vertical-nav li:nth-of-type(3) a::after {
        background-position: 1px -41px;
        -webkit-transform: translateX(-50%) translateY(0.5em) scale(0.01);
        -moz-transform: translateX(-50%) translateY(0.5em) scale(0.01);
        -ms-transform: translateX(-50%) translateY(0.5em) scale(0.01);
        -o-transform: translateX(-50%) translateY(0.5em) scale(0.01);
        transform: translateX(-50%) translateY(0.5em) scale(0.01);
    }
    .direct .cd-vertical-nav li:nth-of-type(3) a::before {
        -webkit-transform: translateX(-50%) translateY(0.5em) scale(0.25);
        -moz-transform: translateX(-50%) translateY(0.5em) scale(0.25);
        -ms-transform: translateX(-50%) translateY(0.5em) scale(0.25);
        -o-transform: translateX(-50%) translateY(0.5em) scale(0.25);
        transform: translateX(-50%) translateY(0.5em) scale(0.25);
    }
    .direct .cd-vertical-nav li:nth-of-type(4) a::after {
        background-position: 1px -59px;
        -webkit-transform: translateX(-50%) translateY(-1.5em) scale(0.01);
        -moz-transform: translateX(-50%) translateY(-1.5em) scale(0.01);
        -ms-transform: translateX(-50%) translateY(-1.5em) scale(0.01);
        -o-transform: translateX(-50%) translateY(-1.5em) scale(0.01);
        transform: translateX(-50%) translateY(-1.5em) scale(0.01);
    }
    .direct .cd-vertical-nav li:nth-of-type(4) a::before {
        -webkit-transform: translateX(-50%) translateY(-1.5em) scale(0.25);
        -moz-transform: translateX(-50%) translateY(-1.5em) scale(0.25);
        -ms-transform: translateX(-50%) translateY(-1.5em) scale(0.25);
        -o-transform: translateX(-50%) translateY(-1.5em) scale(0.25);
        transform: translateX(-50%) translateY(-1.5em) scale(0.25);
    }
    .direct .cd-vertical-nav li:nth-of-type(5) a::after {
        background-position: 1px -74px;
        -webkit-transform: translateX(-50%) translateY(-3.5em) scale(0.01);
        -moz-transform: translateX(-50%) translateY(-3.5em) scale(0.01);
        -ms-transform: translateX(-50%) translateY(-3.5em) scale(0.01);
        -o-transform: translateX(-50%) translateY(-3.5em) scale(0.01);
        transform: translateX(-50%) translateY(-3.5em) scale(0.01);
    }
    .direct .cd-vertical-nav li:nth-of-type(5) a::before {
        -webkit-transform: translateX(-50%) translateY(-3.5em) scale(0.25);
        -moz-transform: translateX(-50%) translateY(-3.5em) scale(0.25);
        -ms-transform: translateX(-50%) translateY(-3.5em) scale(0.25);
        -o-transform: translateX(-50%) translateY(-3.5em) scale(0.25);
        transform: translateX(-50%) translateY(-3.5em) scale(0.25);
    }
    .direct .cd-vertical-nav li:nth-of-type(6) a::after {
        background-position: 1px -92px;
        width: 19px;
        -webkit-transform: translateX(-50%) translateY(-5.5em) scale(0.01);
        -moz-transform: translateX(-50%) translateY(-5.5em) scale(0.01);
        -ms-transform: translateX(-50%) translateY(-5.5em) scale(0.01);
        -o-transform: translateX(-50%) translateY(-5.5em) scale(0.01);
        transform: translateX(-50%) translateY(-5.5em) scale(0.01);
    }
    .direct .cd-vertical-nav li:nth-of-type(6) a::before {
        -webkit-transform: translateX(-50%) translateY(-5.5em) scale(0.25);
        -moz-transform: translateX(-50%) translateY(-5.5em) scale(0.25);
        -ms-transform: translateX(-50%) translateY(-5.5em) scale(0.25);
        -o-transform: translateX(-50%) translateY(-5.5em) scale(0.25);
        transform: translateX(-50%) translateY(-5.5em) scale(0.25);
    }
    .direct .cd-vertical-nav .label {
        display: block;
        /* Force Hardware Acceleration */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.4s;
        -moz-transition: -moz-transform 0.4s;
        transition: transform 0.4s;
    }
    .direct .no-touch .cd-vertical-nav:hover a::before,.direct  .no-touch .cd-vertical-nav:hover a::after, .direct .touch .cd-vertical-nav li:nth-of-type(n) a::before, .direct
    .touch .cd-vertical-nav li:nth-of-type(n) a::after {
        -webkit-transform: translateX(-50%) scale(1);
        -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
        -o-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1);
        /* set a rotation to fix bug on Firefox - http://gielberkers.com/how-to-fix-shaking-css-transitions-in-firefox/ */
        -moz-transform: translateX(-50%) scale(1) rotate(0.02deg);
    }
    .direct .no-touch .cd-vertical-nav:hover a::after,.direct  .touch .cd-vertical-nav a::after {
        opacity: 1;
        -webkit-transition: -webkit-transform 0.4s, opacity 0s;
        -moz-transition: -moz-transform 0.4s, opacity 0s;
        transition: transform 0.4s, opacity 0s;
    }
    .direct .no-touch .cd-vertical-nav:hover .label,.direct  .touch .cd-vertical-nav .label {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}
.direct #fullpage-direct{
    z-index: 3;
}
.direct .callback-popup .close,.direct .conversion-popup .close{
    right: 15px;
    top: 25px;
    display: block;
    width: 25px;
    height: 25px;
}
.direct .callback-popup .close::after,.direct .callback-popup .close::before,.direct .conversion-popup .close::after,.direct .conversion-popup .close::before{
    content: ' ';
    position: absolute;
    width: 26px;
    height: 2px;
    background-color: #82f5ed;
}
.direct .callback-popup .close::before,.direct .conversion-popup .close::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.direct .callback-popup .close::after,.direct .conversion-popup .close::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.yandex .copy {
    height: 50px;
    margin-left: 20px;
}

.yandex .first-screen {
    background-color: #5c487e;
    height: 600px;
    width: 100%;
    position: relative;
}

body.yandex {
    background-color: #fefefe;
}

.yandex .fs-title {
    font-size: 59.53px;
    line-height: 52.913px;
    color: #ffffff;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 290px;
    height: 60px;
}

.yandex .fs-title span {
    color: #ff0311;
}

.yandex .fs-title span {
    color: #ff0311
}

.yandex .separator {
    background-color: #b9b9b9;
    height: 1px;
}

.yandex .projects-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    margin-top: 20px;
    color: #494949;
}

.yandex .content {
    width: 780px;
    margin: 0 auto;
    padding-top: 50px;
}

.yandex .sub-title {
    margin-top: 60px;
    margin-bottom: 20px;
    text-align: center;
    color: #363636;
}

.yandex .link {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    color: #04628d;
    text-decoration: underline;
}

.yandex .sub-title a {
    font-style: italic;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px dashed #04628d;
    display: inline-block;
    margin-left: 10px;
}

.yandex .intro-text {
    font-size: 18px;
    color: #363636;
}

.yandex .img2 {
    margin-top: 100px;
}

.yandex .img3 {
    margin-top: 50px;
}

.yandex .item {
    margin-right: 17px;
    margin-bottom: 17px;
    display: inline-block
}

.yandex .projects {
    width: 960px;
    margin: 0 auto;
}

.yandex .d-slide-content {
    margin-top: 20px;
    margin-bottom: -25px;
}

.yandex .d-slide-item {
    display: none;
}

.yandex .d-slide-item.current {
    display: block;
}

.yandex .d-slide-nav li.current a {
    color: #363636;
    text-decoration: none;
    font-style: normal;
    border: none;
}

.yandex .d-slide-nav {
    list-style: none;
}

.yandex .d-slide-nav li {
    list-style: none;
    display: inline-block;
    margin-left: 10px;
}
body.projects, .projects #section0 {
	background: #000;
}

.projects #fullpage-projects {
    height: 100%;
}

.projects #section0 {
    min-height: calc(100vh - 50px);
}

.projects .top_line h1 {
    font-family: 'goodpro-condblack';
    font-size: 32px;
    color: #87f5ec;
}

.projects .grid {
    padding-left: 99px;
    padding-top: 86px;
	max-width: 980px;
	min-width: 300px;
}

.projects .item {
    display: inline-block;
    margin-right: 28px;
    margin-bottom: 28px;
}

.projects .title {
    position: absolute;
    color: #87f5ec;
    font-size: 18px;
    line-height: 19px;
    text-transform: uppercase;
    margin-top: 17px;
    margin-left: 20px;
}

/*.projects  .title {
    font-size: 20px;
    font-weight: 300;
}*/

.projects .desc {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
}

.projects .item img {
	border: 1px solid;
    border-color: #87f5ec;
}

.projects .link_box {
    margin-top: 10px;
}

.projects .link {
    font-size: 14px;
    color: #356e9e;
}

.projects .copy {
    height: 50px;
    margin-left: 100px;
    color: #87f5ec;
	position: absolute;
}

.projects  .top_line {
    width: 280px;
}

.projects .graylord{
   -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; /* IE 6-9 */
   transition: 0.5s;
}

.projects .graylord:hover{
	-webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  filter: gray; /* IE 6-9 */
}
body.solutions,.solutions #section0 {
	background: #000;
}

.solutions #fullpage-projects {
    height: 100%;
}

.solutions #section0 {
    min-height: calc(100vh - 50px);
}

.solutions .top_line h1 {
    font-family: 'goodpro-condblack';
    font-size: 32px;
    color: #87f5ec;
}

.solutions .grid {
    padding-left: 99px;
    padding-top: 86px;
	max-width: 980px;
	min-width: 300px;
}

.solutions .item {
    display: inline-block;
    margin-right: 28px;
    margin-bottom: 28px;
}

.solutions .title {
    position: absolute;
    color: #87f5ec;
    font-size: 18px;
    line-height: 19px;
    text-transform: uppercase;
    margin-top: 17px;
    margin-left: 20px;
    width: 140px;
}

.solutions .price {
	position: absolute;
    color: #87f5ec;
    font-size: 18px;
    line-height: 19px;
    margin-top: 65px;
    margin-left: 20px;
    width: 140px;
}

.solutions .solutions_button {
	position: absolute;
    color: #87f5ec;
    font-size: 18px;
    line-height: 19px;
    text-transform: uppercase;
    margin-top: 65px;
    margin-left: 20px;
    width: 140px;
}


/*.solutions .title {
    font-size: 20px;
    font-weight: 300;
}*/

.solutions .desc {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
}

.solutions .item img {
	border: 1px solid;
    border-color: #87f5ec;
}

.solutions .link_box {
    margin-top: 10px;
}

.solutions .link {
    font-size: 14px;
    color: #356e9e;
}

.solutions .copy {
    height: 50px;
    margin-left: 100px;
    color: #87f5ec;
	position: absolute;
}

.solutions .solutions .top_line {
    width: 280px;
}

.solutions .graylord{
   -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; /* IE 6-9 */
   transition: 0.5s;
	position: relative;
}

.solutions .graylord:hover{
	-webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  filter: gray; /* IE 6-9 */
}


/* -------------------------------- 

Лого

-------------------------------- */

#logo { 
	height:91px; 
	left:22px; 
	position:absolute; 
	top:22px; 
	z-index: 2; 
	width:62px; 
	}

.solutions #logo .front{
	position:relative;
	z-index:1;
}
.solutions #logo .back{
	left:0; position:absolute; top:0;
}
.solutions .csstransforms3d #logo{
	perspective:250;
	perspective-origin: 100% 50%;
	-webkit-perspective:250;
	-webkit-perspective-origin: 100% 50%;
	-moz-perspective:250;
	-moz-perspective-origin: 100% 50%;
	-ms-perspective:250;
	-ms-perspective-origin: 100% 50%;
	-o-perspective:250;
	-o-perspective-origin: 100% 50%;
}
.solutions .csstransforms3d.cssanimations #logo a{
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	animation-duration:1.5s;
	animation-timing-function:ease-in-out;
	animation-iteration-count:1;
	animation-direction:normal;
	animation-delay:0s;
	-webkit-animation-duration:1.5s;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-iteration-count:1;
	-webkit-animation-direction:normal;
	-webkit-animation-delay:0s;
	-moz-animation-duration:1.5s;
	-moz-animation-timing-function:ease-in-out;
	-moz-animation-iteration-count:1;
	-moz-animation-direction:normal;
	-moz-animation-delay:0s;
	-ms-animation-duration:1.5s;
	-ms-animation-timing-function:ease-in-out;
	-ms-animation-iteration-count:1;
	-ms-animation-direction:normal;
	-ms-animation-delay:0s;
	-o-animation-duration:1.5s;
	-o-animation-timing-function:ease-in-out;
	-o-animation-iteration-count:1;
	-o-animation-direction:normal;
	-o-animation-delay:0s;
}
.solutions #logo a > div{
	overflow:hidden;
	position:absolute;
    height: 91px;
    width:62px;
}
.solutions .csstransforms3d.cssanimations #logo a > div{
	backface-visibility: hidden; 
	-webkit-backface-visibility: hidden; 
	-moz-backface-visibility: hidden; 
	-ms-backface-visibility: hidden; 
	-o-backface-visibility: hidden; }

.solutions .csstransforms3d #logo .back{
	transform:rotateY(180deg);
	-webkit-transform:rotateY(180deg);
	-moz-transform:rotateY(180deg);
	-ms-transform:rotateY(180deg);
	-o-transform:rotateY(180deg);
}

@keyframes rotateLogo{ 
	from { transform:rotateY(0deg); } 
	to { transform:rotateY(360deg); }
}
@-webkit-keyframes rotateLogo{ 
	from { -webkit-transform:rotateY(0deg); } 
	to { -webkit-transform:rotateY(360deg); }
}
@-moz-keyframes rotateLogo{
	from { -moz-transform:rotateY(0deg); }
	to { -moz-transform:rotateY(360deg); }
}
@-ms-keyframes rotateLogo{
	from { -ms-transform:rotateY(0deg); }
	to { -ms-transform:rotateY(360deg); }
}
@-o-keyframes rotateLogo{
	from { -o-transform:rotateY(0deg); }
	to { -o-transform:rotateY(360deg); }
}

.solutions .container {
      position: absolute;
      height: 100%;
      width: 100%;
    }

.solutions .overlay {
	    pointer-events: none;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    }

.solutions .noise {
	        background-image: url("../images/noise.png");
    opacity: 0.075;
    }
.solutions .lord-buttons{
	position: absolute;
	bottom: 22px;
	left:22px;
}
.solutions .graylord:hover .lord-buttons a{
	opacity: 1;
}
.solutions .lord-buttons a{
	opacity: 0;
	width: 77px;
	height: 28px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	line-height: 27px;
	text-decoration: none;
	transition: 0.5s ease;
}
.solutions .lord-button-description{
	background: #87f5ec;
	color: black;
	-moz-border-bottom-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	border-bottom-left-radius: 5px;
	-moz-border-top-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	border-top-left-radius: 5px;
}
.solutions .lord-button-demo{
	background: #d61938;
	color: white;
	margin-left: -3px;
	-moz-border-bottom-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
	-moz-border-top-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	width: 85px !important;
}
.solutions .lord-button-demo:hover,.lord-button-description:hover{
	color: #87f4eb;
	background: black;
}
.web .top_line h1 {
    color: #87f4eb;
    font-family: 'goodpro-condblack';
    font-size: 34px;
    line-height: 34px;
    margin-top: 3px;
}

.web .hamburger-icon-container .b-hamburger-icon > span.hh,
.web .hamburger-icon-container .b-hamburger-icon > span.hh:after,
.web .hamburger-icon-container .b-hamburger-icon > span.hh:before {
    background-color: #48cfd8;

}

.web .item {
    width: 458px;
    display: inline-block;
    margin-top: 20px;
}

.web .grid {
    padding-left: 97px;
    padding-top: 115px;
    width: 930px;
}

.web .name {
    font-family: 'goodpro-condblack';
    color: #fff9f9;
    font-size: 48px;
}

.web .price {
    font-size: 22px;
    line-height: 28.657px;
    color: #48cfd8;
    font-family: 'goodpro-condbook';
}

.web .native_link {
    font-size: 22px;
    line-height: 12px;
    color: #48cfd8;
}

.web .native_link:hover {
    text-decoration: none;
}

.web .web-order-btn {
    color: #e14869;
    border: 1px solid #e14869;
    padding: 10px;
    width: 153px;
    margin-left: 32px;
    text-align: center;
    display: inline-block;
    transition: 0.3s ease;
}

.web .web-order-btn:hover {
    background: #e14869;
    color: #fff;
    text-decoration: none;
}

.web .web-order-btn:active {
    background: #e14869;
    color: #fff;
    text-decoration: none;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.50);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.50);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.50);
}

.web .web-foter {
    padding-left: 98px;
    margin-top: 50px;
}

.web .mouse {
    width: 23px;
    height: 45px;
    display: table-cell;
}

.web .scroll-info {
    position: absolute;
    bottom: 20px;
    left: 99px;
}

.web .scroll-info .mouse {
    background: url('../images/webdev/mouse_blue.png');
}

.web .scroll-info {
    color: #48cfd8;
}

.web .scroll-info-text {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    padding-bottom: 10px;
}

.web .scroll-info-text-copy {
    padding-left: 0px;
}

.web .web-cb-popup {
    box-shadow: 0px 24px 50px 0.00px rgba(2, 3, 3, 0.3);
    background: #000 url('../images/publ_index.png');
    padding: 50px 54px 39px 60px;
    position: absolute;
    top: 27.3%;
    left: 14.8%;
    display: none;
    width: 347px;
    height: 229px;
}

.web .web-cb-title {
	color: #82f5ed;
    margin-top: -6px;
    font-size: 37px;
    line-height: 31px;
    width: 227px;
}
.web #container{
    position: absolute;
}
.web #fullpage-web{
    z-index: 2;
}
.web .web .top_line{
    z-index: 4;
}

#breefsvg{
	display:none;
}

@media screen and (max-width: 700px){
	 #triangle_svg{
		display:none !important;
	}
	.index .main_menu{
		margin-left:0px;
	}
	
	.breefcb{
		top:0px !important;
		right:60px;
	}
	
	.section_breef{
		margin-top:100px;
	}
	
	body{
		margin-top:40px !important;
	}
	
	.logo-container{
		top:42px;
	}
	
	.sub1_class{
		top:42px;
	}
	
	.self_layout .cl-cont{
		left:0%;
		right:0%;
		margin-left:10px;
		margin-right:10px;
		margin-top:0px;
		top:14%;
	}	
	
	.self_layout .cl-cont a{
		font-size:35px;
	}
}