@charset "UTF-8";



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



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

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



@-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, -3000px, 0);
 transform: translate3d(0, -3000px, 0);
 }

 60% {
 opacity: 1;
 -webkit-transform: translate3d(0, 25px, 0);
 transform: translate3d(0, 25px, 0);
 }

 75% {
 -webkit-transform: translate3d(0, -10px, 0);
 transform: translate3d(0, -10px, 0);
 }

 90% {
 -webkit-transform: translate3d(0, 5px, 0);
 transform: translate3d(0, 5px, 0);
 }

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

@keyframes bounceInDown {
 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, -3000px, 0);
 transform: translate3d(0, -3000px, 0);
 }

 60% {
 opacity: 1;
 -webkit-transform: translate3d(0, 25px, 0);
 transform: translate3d(0, 25px, 0);
 }

 75% {
 -webkit-transform: translate3d(0, -10px, 0);
 transform: translate3d(0, -10px, 0);
 }

 90% {
 -webkit-transform: translate3d(0, 5px, 0);
 transform: translate3d(0, 5px, 0);
 }

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

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

@-webkit-keyframes bounceInLeft {
 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;
}



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



@-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;
}
.bx-wrapper{
 position: relative;

 margin: 0 auto;
 padding: 0;
}


.bx-wrapper .bx-pager{
 position: absolute;
 bottom: -30px;
 z-index: 99;

 width: 100%;

 text-align: center;
}

.bx-wrapper .bx-pager .bx-pager-item{
 display: inline-block;
}
.bx-wrapper .bx-pager.bx-default-pager a{
 display: block;

 width: 10px;
 height: 10px;
 margin: 0 5px;

 text-indent: -9999px;

 border-radius: 50%;
 outline: 0;
 background: #666;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active{
 background: #000;
}


.bx-wrapper .bx-controls-direction a{
 position: absolute;
 top: 10px;
 z-index: 99;

 width: 19px;
 height: 29px;

 text-indent: -9999px;

 outline: 0;
 background: url(../themes/site/images/ic_slider_arrows.png) 0 0 no-repeat;
}

.bx-wrapper .bx-controls-direction a.bx-prev{
 left: 0;

 background-position: 0 0;
}
.bx-wrapper .bx-controls-direction a.bx-next{
 right: 0;

 background-position: -19px 0;
}


.bx-wrapper .bx-controls-auto,
.bx-wrapper .bx-caption{
 display: none;
}*{
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}
*:before,
*:after{
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
}
body {
 font-family: Roboto;
 color: #333;
 line-height: 1.4em;
}


img{
 border: none;
}
textarea{
 overflow: auto;
}
input,
textarea,
input:active,
textarea:active{
 outline: none transparent!important;
 box-shadow: none;

 -moz-outline: none!important;
}
input[type=submit],
button[type=submit]{
 -webkit-border-radius: 0;

 -webkit-appearance: none;
}
:focus{
 outline: none;
}


.clear{
 clear: both;
}
.left{
 float: left;
}
.right{
 float: right;
}

html{
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}
body{
 background: #fff;

 -webkit-text-size-adjust: 100%;
}

.cont{
 position: relative;

 max-width: 960px;
 margin: 0 auto;
 padding: 0 10px;
}

.wrap{
 overflow: hidden;
}



.animated{
 visibility: visible !important;
}





header .info{
 padding: 13px 0 20px;

 background: #4b88b7;
}

header .logo a{
 display: inline-block;

 padding: 2px 0 2px 90px;
 position: relative;

 color: #fff;

 vertical-align: top;
 text-decoration: none;

 transition: opacity .2s linear;
}
header .logo a:hover{
 
}

header .logo .logo_img {
 position: absolute;
 top:0;
 left: 0;
 width: 79px;
 height: 73px;
 background: url(../themes/site/images/logo.png) 0 50% no-repeat;
 transition: all 0.5s ease-in-out 0s;
}

header .logo a:hover .logo_img {
 transform: rotate(2790deg);
}

header .logo .name{
 font: 700 50px/50px Roboto;

 letter-spacing: .1em;
 text-transform: uppercase;
}
header .logo .name span{
 color: #fecc00;
}

header .logo .desc{
 font: 16px/19px PT Sans;
}

header .logo h1{
 color: #fff;
 font-family: PT Sans;
 font-size: 18px;
 line-height: 1em;
 margin: 0;
 padding: 8px 0 0 91px;
}


header .menu_link{
 display: none;

 width: 50px;
 height: 50px;

 border-radius: 5px;
 background: #fff url(../themes/site/images/ic_menu_link.png) 50% 50% no-repeat;
 background-size: 60% auto;
}


header .contacts{
 padding: 2px 0 2px 40px;

 text-align: right;

 background: url(../themes/site/images/ic_phone.png) 0 5px no-repeat;

 font: 16px/19px PT Sans;
 color:#fff;
}
header .contacts .phone{
 color: #fff;
 font: 700 30px/36px Roboto;
}
header .contacts .phone span{
 color: #fecc00;
}

header .contacts .callback_link{
 display: inline-block;

 margin-top: 5px;

 color: #fff;
 font: 16px/19px PT Sans;

 
}

header .contacts .callback_link:hover{
 text-decoration: none;
}

header .contacts a{
 display: inline-block;

 margin-top: 5px;

 color: #fff;
 font: 16px/19px PT Sans;

 
}

header .contacts a:hover{
 text-decoration: none;
}


header .menu{
 background: #29618c;
}
.menu_fix header .menu {
 position: fixed;
 top: 0;
 z-index: 101;
 width: 100%;
 border-bottom: 1px solid #4b88b7;
}

header .menu ul{
 display: table;

 width: 100%;
}
header .menu li{
 display: table-cell;
 vertical-align: middle;
}
header .menu li a{
 display: block;

 height: 40px;
 padding: 0 12px;

 color: #fff;
 font: 16px/40px PT Sans;

 white-space: nowrap;
 text-decoration: none;

 transition: all .2s linear;
 text-align: center;
 font-weight: bold;
}
header .menu li:first-child a {
 padding: 0 5px;
}

.menu_fix header .menu li a{ 
 font-size: 14px;
 height: 30px;
 line-height: 30px;
}

header .menu li a:hover,
header .menu li a.active{
 color: #29618c;

 background: #fecc00;
}

header .menu li a img {
 display: inline-block;
 height: 65%;
 width: auto;
 vertical-align: middle;
}

header .menu li a img path {
 fill: #fff;
}






.first_sec.bg1 .cont{
 
 padding: 30px 10px 50px;

 background: url(../themes/site/images/bg_first_sec1.png) 0 100% no-repeat;
}
.first_sec.bg2 .cont{
 padding: 30px 10px 35px;

 background: url(../themes/site/images/bg_first_sec2.png) 100% 100% no-repeat;
}
.first_sec.bg3{
 padding: 30px 10px 135px;

 background: url(../themes/site/images/bg_first_sec3.jpg) 50% 100% no-repeat;
}
.first_sec.bg4{
 padding: 30px 10px 60px;

 background: url(../themes/site/images/bg_first_sec4.png) 50% 100% no-repeat;
}
.first_sec.bg5 .cont{
 padding: 30px 10px 45px;

 background: url(../themes/site/images/bg_first_sec5.png) 97% 50% no-repeat;
}
.first_sec.bg6 .cont{
 padding: 40px 10px 30px;

 text-align: right;

 background: url(../themes/site/images/bg_first_sec6.png) 100% 100% no-repeat;
}

.first_sec .block_title{
 margin-bottom: 20px;

 color: #fecc00;
 font: 700 45px Roboto;

 text-transform: uppercase;
}
.first_sec .block_title span{
 color: #3374a6;
}

.first_sec .block_title.align_right{
 text-align: right;
}
.first_sec.bg3 .block_title{
 margin-bottom: 45px;
}

.first_sec.bg6 .block_title{
 width: 380px;
}
.first_sec.bg6 .block_title div{
 padding-bottom: 5px;

 color: #29618c;
 font-size: 55px;
 font-weight: 900;
 line-height: 75px;
}
.first_sec.bg6 .block_title span{
 color: #639ecb;
}

.first_sec .block_desc{
 width: 500px;
 max-width: 100%;

 color: #3374a6;
 font: 700 26px/29px Roboto;
}
.first_sec.bg3 .block_desc{
 width: 550px;
}
.first_sec.bg4 .block_desc{
 width: 600px;
 margin-bottom: 45px;
}

.first_sec form{
 width: 301px;
 margin-top: 30px;
 padding: 30px 11px 20px;

 border-radius: 10px;
 background: #96c1e1;
 
 min-height:279px;
}
.first_sec.bg3 form{
 margin-top: 0;
}

.first_sec form .title{
 margin-bottom: 20px;
 padding: 0 20px;

 color: #3f4c58;
 font: 14px/17px PT Sans;

 text-align: center;
}

.first_sec form .line{
 margin-bottom: 15px;
 padding: 0 20px;
}
.first_sec form .input{
 width: 100%;
 height: 40px;
 padding: 0 10px;

 color: #153f5f;
 font: 18px/40px PT Sans;

 text-align: center;

 border: none;
 border-radius: 7px;
 background: #fff;
 box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.first_sec form ::-webkit-input-placeholder{
 color: #153f5f;
}
.first_sec form ::-moz-placeholder{
 color: #153f5f;
}
.first_sec form :-moz-placeholder{
 color: #153f5f;
}
.first_sec form :-ms-input-placeholder{
 color: #153f5f;
}

.first_sec form .submit{
 padding-top: 5px;
}
.first_sec form .submit_btn{
 display: block;

 width: 100%;
 padding: 8px 5px 8px 40px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 text-transform: uppercase;

 border: none;
 border-radius: 50px;
 background: #fecc00 url(../themes/site/images/ic_submit.png) 5px 5px no-repeat;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 cursor: pointer;
 transition: background-color .2s linear;
}
.first_sec form .submit_btn:hover{
 background-color: #e3b600;
}

.first_sec .context_info{
 width: 220px;

 text-align: center;
}

.first_sec .context_info .banner{
 margin-bottom: 35px;
 padding: 15px;

 color: #29618c;
 font: 700 18px Roboto;

 text-transform: uppercase;

 border: 2px solid #0072bc;
 border-radius: 10px;
 background: #dfecf6;
}
.first_sec .context_info .banner img{
 display: block;

 max-width: 100%;
 margin: 15px auto 0;
}

.first_sec .context_info .bottom{
 color: #29618c;
 font: 18px/19px PT Sans;
}
.first_sec .context_info .link{
 padding: 15px 0;
}
.first_sec .context_info .link a{
 display: block;

 width: 100%;
 padding: 9px 0;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.first_sec .context_info .link a:hover{
 background-color: #e3b600;
}


.first_sec .teaser_info .items{
 width: 49%;
 margin-bottom: 15px;
 padding-bottom: 15px;
 padding-left: 70px;

 background: url(../themes/site/images/bg_teaser_info.png) 0 0 no-repeat;
}
.first_sec .teaser_info .items .item{
 color: #3374a6;
 font: 26px/29px PT Sans;

 letter-spacing: -.02em;
}
.first_sec .teaser_info .items .item div{
 display: table-cell;

 width: 100%;
 height: 85px;

 vertical-align: middle;
}

.first_sec .teaser_info .block_desc{
 width: 49%;
 margin: 0;
}

.first_sec .teaser_info .link{
 width: 49%;
 padding: 15px 0 0;
}
.first_sec .teaser_info .link a{
 display: block;

 width: 100%;
 padding: 9px 0;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.first_sec .teaser_info .link a:hover{
 background-color: #e3b600;
}


.about{
 padding: 40px 0 60px;

 border-top: 20px solid #29618c;
 background: #3374a6;
}
.about .block_title{
 margin-bottom: 40px;
 padding-bottom: 20px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;

 border-bottom: 1px dotted #639ecb;
}

.about .stats{
 margin-bottom: -58px;

 text-align: justify;
}
.about .stats:after{
 display: inline-block;

 width: 100%;

 content: '';
}
.about .stats .item{
 display: inline-block;

 width: 32%;
 margin-bottom: 30px;

 color: #fff;
 font: 700 24px/29px Roboto;

 text-align: center;
 vertical-align: top;
}
.about .stats .item b{
 color: #fdcc00;
 font-size: 36px;
}
.about .stats .item div{
 color: #dfecf6;
 font: 16px/19px PT Sans;
}


.about .advantages{
 margin-top: 58px;
 margin-bottom: -18px;

 text-align: justify;
}
.about .advantages:after{
 display: inline-block;

 width: 100%;

 content: '';
}
.about .advantages .item{
 display: inline-block;

 width: 32%;
 padding: 0 15px 15px;

 color: #3f4c58;
 font: 16px/19px PT Sans;

 text-align: center;
 vertical-align: top;

 border: 3px solid #75b0dc;
 border-radius: 10px;
 background: #dfecf6;
}

.about .advantages .item .icon{
 height: 145px;

 line-height: 145px;
}
.about .advantages .item .icon img{
 position: relative;
 top: -1px;

 max-width: 90%;
 max-height: 90%;

 vertical-align: middle;
}

.about .advantages .item .name{
 margin-bottom: 13px;

 color: #4b88b7;
 font: 700 20px/24px Roboto;
}



.questions_top{
 padding: 15px 0;

 color: #fecc00;
 font: 700 30px Roboto;

 text-align: center;
 text-transform: uppercase;

 border-top: 20px solid #29618c;
 background: #29618c;
}

.questions{
 overflow: hidden;

 position: relative;

 border-top: 20px solid #29618c;
 border-bottom: 20px solid #153f5f;
}
.questions:before{
 display: block;

 position: absolute;
 top: 50%;
 left: 50%;

 width: 107px;
 height: 450px;
 margin-top: -225px;
 margin-left: -597px;

 background: url(../themes/site/images/bg_questions_arrows.png) 0 0 no-repeat;

 content: '';
}
.questions:after{
 display: block;

 position: absolute;
 top: 50%;
 right: 50%;

 width: 107px;
 height: 450px;
 margin-top: -225px;
 margin-right: -597px;

 background: url(../themes/site/images/bg_questions_arrows.png) -107px 0 no-repeat;

 content: '';
}

.questions .block_title{
 margin-bottom: 40px;
 padding: 0 0 0 20px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}
.questions .block_title span{
 color: #fecc00;
}

.questions .need{
 padding: 40px 0;

 background: #639ecb;
}
.questions .need .col{
 max-width: 45%;
}

.questions .need .item{
 padding: 5px 0 5px 90px;

 color: #fff;
 font: 16px/20px PT Sans;

 background: url(../themes/site/images/ic_need.png) 20px 50% no-repeat;
}
.questions .need .item + .item,
.questions .need .maybe + .item{
 margin-top: 10px;
}

.questions .need .maybe{
 padding: 48px 0 48px 20px;

 color: #fecc00;
 font: 700 20px/24px Roboto;
}
.questions .need .maybe.mini{
 padding: 13px 0 13px 20px;
}


.questions .not_need{
 padding: 40px 0;

 background: #29618c;
}
.questions .not_need .item{
 padding: 13px 0 13px 90px;

 color: #fff;
 font: 18px/24px PT Sans;

 background: url(../themes/site/images/ic_not_need.png) 20px 50% no-repeat;
}
.questions .not_need .item + .item{
 margin-top: 10px;
}


.clients{
 padding: 45px 0 60px;
}
.clients .block_title{
 margin-bottom: 40px;

 color: #3374a6;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.clients .items{
 margin-bottom: 12px;

 text-align: justify;
}
.clients .items:after{
 display: inline-block;

 width: 100%;

 content: '';
}
.clients .item{
 display: inline-block;

 width: 150px;
 height: 100px;

 line-height: 100px;

 text-align: center;
 vertical-align: top;
}
.clients .item img{
 position: relative;
 top: -1px;

 max-width: 90%;
 max-height: 90%;

 vertical-align: middle;
}

.clients .link{
 padding-top: 15px;

 text-align: center;
}
.clients .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.clients .link a:hover{
 background-color: #e3b600;
}

.clients .link .discount{
 margin-top: 11px;

 color: #29618c;
 font: 16px/19px PT Sans;
}


.tools{
 padding: 40px 0 0;

 border-top: 20px solid #3374a6;
 background: #639ecb;
}
.tools.white{
 padding-bottom: 40px;

 border-top: none;
 background: #fff;
}

.tools .block_title{
 margin-bottom: 55px;

 color: #fecc00;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}
.tools .block_title.dark{
 color: #3374a6;
}

.tools .item{
 padding: 0 20px;
}
.tools .item + .item{
 margin-top: 10px;
}

.tools .item .icon{
 position: relative;
 z-index: 2;

 width: 160px;
}
.tools .item .icon img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}

.tools .item .info{
 position: relative;
 z-index: 1;

 width: 100%;
 margin-left: -160px;
 padding-left: 210px;

 color: #fff;
 font: 18px PT Sans;
}
.tools .item .info.dark{
 color: #153f5f;
}

.tools .item .info .box{
 display: table-cell;

 height: 120px;

 vertical-align: middle;
}

.tools .item .info .name{
 color: #153f5f;
 font: 700 24px Roboto;

 text-transform: uppercase;
}


.tools .bottom{
 margin-top: 50px;
 padding: 20px 0 15px;

 color: #fff;
 font: 16px/19px PT Sans;

 text-align: center;

 background: #3374a6;
}
.tools .bottom a{
 display: block;

 max-width: 460px;
 margin: 0 auto 15px;
 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.tools .bottom a:hover{
 background-color: #e3b600;
}


.pickup .cont{
 padding: 40px 10px 65px;

 background: url(../themes/site/images/bg_pickup.png) 20px 100% no-repeat;
}

.pickup .block_title{
 margin-bottom: 30px;

 color: #3374a6;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}

.pickup .desc{
 max-width: 525px;

 color: #3f4c58;
 font: 18px PT Sans;
}
.pickup .desc p{
 margin-bottom: 20px;
}

.pickup form{
 width: 301px;
 padding: 30px 11px 20px;

 border-radius: 10px;
 background: #96c1e1;
}
.pickup form .title{
 margin-bottom: 20px;
 padding: 0 20px;

 color: #3f4c58;
 font: 14px/17px PT Sans;

 text-align: center;
}

.pickup form .line{
 margin-bottom: 15px;
 padding: 0 20px;
}
.pickup form .input{
 width: 100%;
 height: 40px;
 padding: 0 10px;

 color: #153f5f;
 font: 18px/40px PT Sans;

 text-align: center;

 border: none;
 border-radius: 7px;
 background: #fff;
 box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.pickup form ::-webkit-input-placeholder{
 color: #153f5f;
}
.pickup form ::-moz-placeholder{
 color: #153f5f;
}
.pickup form :-moz-placeholder{
 color: #153f5f;
}
.pickup form :-ms-input-placeholder{
 color: #153f5f;
}

.pickup form .submit{
 padding-top: 5px;
}
.pickup form .submit_btn{
 display: block;

 width: 100%;
 padding: 8px 5px 8px 40px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 text-transform: uppercase;

 border: none;
 border-radius: 50px;
 background: #fecc00 url(../themes/site/images/ic_submit.png) 5px 5px no-repeat;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 cursor: pointer;
 transition: background-color .2s linear;
}
.pickup form .submit_btn:hover{
 background-color: #e3b600;
}


.portfolio{
 padding: 40px 0;

 border-top: 20px solid #153f5f;
 background: #29618c;
}
.portfolio .block_title{
 margin-bottom: 40px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.portfolio .block_desc{
 margin-top: -35px;
 margin-bottom: 40px;

 color: #fff;
 font: 24px/36px Roboto;

 text-align: center;
}

.portfolio .items{
 margin-left: -2%;
}
.portfolio .item{
 overflow: hidden;

 position: relative;

 width: 31.333%;
 margin: 0 0 2% 2%;
 height: 200px;
 background: white;
 display: flex;
 justify-content: center;
 align-items: center;
}
.portfolio .item img{
 display: block;

 width: 100%;

 transition: transform .3s linear;
}
.portfolio .item:hover img{
 -webkit-transform: scale(1.1);
 -ms-transform: scale(1.1);
 transform: scale(1.1);
}

.portfolio .item .info{
 display: block;

 position: absolute;
 top: -100%;
 left: 0;

 width: 100%;
 height: 100%;

 text-align: center;

 background: rgba(0,0,0,.65);

 transition: top .25s linear;
}
.portfolio .item:hover .info{
 top: 0;
}


.portfolio .item .info .box{
 position: absolute;
 top: 0;
 bottom: 0;

 width: 100%;
 height: 98px;
 margin: auto 0;
}

.portfolio .item .info .name{
 color: #fecc00;
 font: 700 24px/29px Roboto;
}
.portfolio .item .info .desc{
 color: #fff;
 font: 16px/19px PT Sans;
}
.portfolio .item .info .details{
 display: inline-block;

 height: 30px;
 margin-top: 20px;
 padding: 0 25px;

 color: #fff;
 font: 16px/24px PT Sans;

 vertical-align: top;
 text-decoration: none;

 border: 2px solid #fff;
 border-radius: 25px;

 transition: all .2s linear;
}
.portfolio .item .info .details:hover{
 color: #000;

 background: #fff;
}


.portfolio .bottom{
 margin-top: 40px;
 margin-bottom: -40px;
 padding: 20px 0 15px;

 color: #fff;
 font: 16px/19px PT Sans;

 text-align: center;

 background: #3374a6;
}
.portfolio .bottom a{
 display: block;

 max-width: 460px;
 margin: 0 auto 15px;
 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.portfolio .bottom a:hover{
 background-color: #e3b600;
}


.steps{
 position: relative;

 padding: 45px 0 0;

 border-bottom: 20px solid #75b0dc;
 background: #4b88b7;
}
.steps.context{
 border-bottom-color: #153f5f;
}
.steps.main{
 border-bottom: none;
}
.steps.teaser{
 border-bottom: none;
 background: #29618c;
}
.steps.smm{
 border-bottom: none;
 background: #29618c;
}

.steps:after{
 display: block;

 position: absolute;
 bottom: -40px;
 left: 50%;

 width: 300px;
 height: 40px;
 margin-left: -150px;

 background: url(../themes/site/images/bg_steps_after.png) 0 0 no-repeat;

 content: '';
}
.steps.context:after,
.steps.main:after,
.steps.teaser:after{
 display: none;
}

.steps.context .title{
 position: relative;

 padding: 29px 0;

 color: #fff;
 font: 500 24px Roboto;

 text-align: center;

 background: #29628e;
}
.steps.context .title span{
 color: #fecc00;
}
.steps.context .title:before{
 display: block;

 position: absolute;
 top: 0;
 left: 50%;

 width: 1px;
 height: 100%;
 margin-left: -441px;

 background: url(../themes/site/images/bg_steps_title_before.png) 0 50% no-repeat;

 content: '';
}
.steps.context .title:after{
 display: block;

 position: absolute;
 bottom: -20px;
 left: 50%;
 z-index: 9;

 width: 300px;
 height: 20px;
 margin-left: -150px;

 background: url(../themes/site/images/bg_steps_title_after.png) 0 0 no-repeat;

 content: '';
}

.steps .block_title{
 margin-bottom: 55px;

 color: #fecc00;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}
.steps .block_title.white{
 color: #fff;
}
.steps .block_title span{
 color: #fff;
}

.steps .items.bg1{
 width: 1019px;
 height: 408px;
 margin-bottom: 55px;
 margin-left: -40px;
 padding: 50px 40px 0;

 text-align: justify;

 background: url(../themes/site/images/bg_steps1.png) 50% 0 no-repeat;
}

.steps .items.bg2{
 width: 1034px;
 height: 408px;
 margin-left: -52px;
 padding: 50px 52px 0;

 text-align: justify;

 background: url(../themes/site/images/bg_steps2.png) 50% 0 no-repeat;
}

.steps .items.bg3{
 width: 1019px;
 height: 440px;
 margin-left: -40px;
 padding: 50px 52px 0;

 text-align: justify;

 background: url(../themes/site/images/bg_steps3.png) 50% 0 no-repeat;
}

.steps .items.bg4{
 width: 1019px;
 height: 430px;
 margin-left: -40px;
 padding: 50px 52px 0;

 text-align: justify;

 background: url(../themes/site/images/bg_steps4.png) 50% 0 no-repeat;
}

.steps .items:after{
 display: inline-block;

 width: 100%;

 content: '';
}
.steps .item{
 display: inline-block;

 position: relative;

 width: 300px;
 margin-bottom: 120px;
 padding-left: 100px;

 color: #96c1e1;
 font: 13px PT Sans;

 text-align: left;
 vertical-align: top;
}
.steps .items.bg3 .item{
 margin-bottom: 100px;
}
.steps .items.bg4 .item{
 margin-bottom: 105px;
}

.steps .item .name{
 color: #fff;
 font: 18px/21px PT Sans;
}

.steps .item .desc.white{
 color: #fff;
}

.steps .item .link{
 margin-top: 10px;
}
.steps .item .link a{
 display: inline-block;

 padding: 4px 25px;

 color: #fff;
 font: 700 13px/22px Roboto;

 text-align: center;
 vertical-align: top;
 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.steps .item .link a:hover{
 background-color: #e3b600;
}

.steps .item .icon{
 position: absolute;
 top: 0;
 left: 0;

 width: 100px;
}
.steps .item .icon img{
 display: block;

 max-width: 100%;
}

.steps .item.result{
 display: block;

 width: 400px;
 min-height: 136px;
 margin: 0 auto;
 padding-top: 15px;
 padding-left: 195px;
}
.steps .item.result .icon{
 width: 164px;
}

.steps .item.result:before{
 display: block;

 position: absolute;
 top: 35px;
 left: -190px;

 width: 115px;
 height: 60px;

 background: url(../themes/site/images/bg_steps_result_left.png) 0 0 no-repeat;

 content: '';
}
.steps .item.result:after{
 display: block;

 position: absolute;
 top: 35px;
 right: -150px;

 width: 115px;
 height: 60px;

 background: url(../themes/site/images/bg_steps_result_right.png) 0 0 no-repeat;

 content: '';
}

.steps .bottom_items{
 position: relative;
 z-index: 2;

 background: #639ecb;
}
.steps .bottom_items .cont{
 padding: 55px 10px;

 background: url(../themes/site/images/bg_steps_bottom_items.png) 100% 100% no-repeat;
}

.steps .bottom_items .col.left{
 width: 280px;
}
.steps .bottom_items .item{
 position: relative;

 width: 100%;
 min-height: 90px;
 margin-bottom: 0;
}

.steps .bottom_items .item:before{
 display: block;

 position: absolute;
 top: -55px;
 left: 21px;

 width: 16px;
 height: 50px;

 background: url(../themes/site/images/bg_seteps_bottom_items_arr.png) 0 0 no-repeat;

 content: '';
}

.steps .bottom_items .item + .item{
 margin-top: 65px;
}

.steps .bottom_items .end{
 position: relative;

 width: 220px;
 margin-left: 110px;
 padding: 53px 0;

 color: #fff;
 font: 20px Roboto;

 text-transform: uppercase;
}
.steps .bottom_items .end:before{
 display: block;

 position: absolute;
 top: 50%;
 left: -100px;

 width: 78px;
 height: 190px;
 margin-top: -95px;

 background: url(../themes/site/images/bg_seteps_bottom_items_end.png) 0 0 no-repeat;

 content: '';
}


.team .cont{
 padding: 65px 10px 35px;

 background: url(../themes/site/images/bg_team.png) 100% 100% no-repeat;
}

.team .text{
 width: 540px;

 color: #3f4c58;
 font: 16px/19px PT Sans;
}
.team .text .block_title{
 margin-bottom: 30px;

 color: #3374a6;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}
.team .text p,
.team .text ul{
 margin-bottom: 30px;
}

.team .text ul + ul{
 margin-left: 40px;
}
.team .text ul li{
 margin-left: 18px;

 color: #3374a6;
 font: 18px/25px PT Sans;
}

.team form{
 width: 301px;
 padding: 30px 11px 20px;

 border-radius: 10px;
 background: #96c1e1;
}
.team form .title{
 margin-bottom: 20px;
 padding: 0 20px;

 color: #3f4c58;
 font: 14px/17px PT Sans;

 text-align: center;
}

.team form .line{
 margin-bottom: 15px;
 padding: 0 20px;
}
.team form .input{
 width: 100%;
 height: 40px;
 padding: 0 10px;

 color: #153f5f;
 font: 18px/40px PT Sans;

 text-align: center;

 border: none;
 border-radius: 7px;
 background: #fff;
 box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.team form ::-webkit-input-placeholder{
 color: #153f5f;
}
.team form ::-moz-placeholder{
 color: #153f5f;
}
.team form :-moz-placeholder{
 color: #153f5f;
}
.team form :-ms-input-placeholder{
 color: #153f5f;
}

.team form .submit{
 padding-top: 5px;
}
.team form .submit_btn{
 display: block;

 width: 100%;
 padding: 8px 5px 8px 40px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 text-transform: uppercase;

 border: none;
 border-radius: 50px;
 background: #fecc00 url(../themes/site/images/ic_submit.png) 5px 5px no-repeat;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 cursor: pointer;
 transition: background-color .2s linear;
}
.team form .submit_btn:hover{
 background-color: #e3b600;
}


.ad_stats{
 position: relative;

 padding: 40px 0 65px;

 border-top: 20px solid #3374a6;
 background: #4b88b7;
}
.steps.teaser + .ad_stats,
.steps.smm + .ad_stats{
 border-top-color: #153f5f;
}

.ad_stats:after{
 display: block;

 position: absolute;
 bottom: -40px;
 left: 50%;

 width: 300px;
 height: 40px;
 margin-left: -150px;

 background: url(../themes/site/images/bg_ad_stats_after.png) 0 0 no-repeat;

 content: '';
}
.reduce_costs + .ad_stats{
 border-top-color: #153f5f;
}

.ad_stats .block_title{
 margin-bottom: 50px;
 padding-left: 40px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}
.ad_stats .block_title span{
 color: #fecc00;
}

.ad_stats .item{
 position: relative;
}
.ad_stats .item img{
 display: block;

 max-width: 68%;
}
.ad_stats .item + .item{
 margin-top: 20px;
}

.ad_stats .item .info{
 position: absolute;
 top: 35%;
 left: 77%;

 height: 81px;

 color: #fff;
 font: 16px/19px PT Sans;

 text-align: center;
}
.ad_stats .item .info .name{
 font: 700 20px/24px Roboto;
}
.ad_stats .item .info .val{
 color: #fecc00;
 font: 700 24px/36px Roboto;
}
.ad_stats .item .info .val b{
 font-size: 30px;
}

.ad_stats .item.item1 .info:before{
 display: block;

 position: absolute;
 top: 50%;
 left: -300px;

 width: 310px;
 height: 2px;
 margin-top: -1px;

 background: #fecc00;

 content: '';
}
.ad_stats .item.item1 .info:after{
 display: block;

 position: absolute;
 top: 50%;
 left: -312px;

 width: 12px;
 height: 12px;
 margin-top: -6px;

 border-radius: 50%;
 background: #fecc00;

 content: '';
}

.ad_stats .item.item2 .info{
 top: 23%;
}
.ad_stats .item.item2 .info:before{
 display: block;

 position: absolute;
 top: 50%;
 left: -625px;

 width: 640px;
 height: 2px;
 margin-top: -1px;

 background: #fecc00;

 content: '';
}
.ad_stats .item.item2 .info:after{
 display: block;

 position: absolute;
 top: 50%;
 left: -637px;

 width: 12px;
 height: 12px;
 margin-top: -6px;

 border-radius: 50%;
 background: #fecc00;

 content: '';
}


.bottom_block{
 border-top: 20px solid #153f5f;
 background: #29618c;
}
.bottom_block .cont{
 padding: 60px 10px 135px;

 background: url(../themes/site/images/bg_bottom_block.png) 35% 100% no-repeat;
}

.bottom_block .text{
 max-width: 570px;

 color: #fff;
 font: 16px/19px PT Sans;
}
.bottom_block .text .block_title{
 margin-bottom: 30px;

 color: #fff;
 font: 700 24px/29px Roboto;
}
.bottom_block .text .block_title span{
 display: block;

 color: #fecc00;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}

.bottom_block .text p{
 max-width: 335px;
 margin-bottom: 20px;
}

.bottom_block form{
 width: 301px;
 padding: 30px 11px 20px;

 border-radius: 10px;
 background: #96c1e1;
}
.bottom_block form .title{
 margin-bottom: 20px;
 padding: 0 20px;

 color: #3f4c58;
 font: 14px/17px PT Sans;

 text-align: center;
}
.bottom_block form .title.big{
 font: 18px/21px PT Sans;
}

.bottom_block form .line{
 margin-bottom: 15px;
 padding: 0 20px;
}
.bottom_block form .input{
 width: 100%;
 height: 40px;
 padding: 0 10px;

 color: #153f5f;
 font: 18px/40px PT Sans;

 text-align: center;

 border: none;
 border-radius: 7px;
 background: #fff;
 box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.bottom_block form ::-webkit-input-placeholder{
 color: #153f5f;
}
.bottom_block form ::-moz-placeholder{
 color: #153f5f;
}
.bottom_block form :-moz-placeholder{
 color: #153f5f;
}
.bottom_block form :-ms-input-placeholder{
 color: #153f5f;
}

.bottom_block form .submit{
 padding-top: 5px;
}
.bottom_block form .submit_btn{
 display: block;

 width: 100%;
 padding: 8px 5px 8px 40px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 text-transform: uppercase;

 border: none;
 border-radius: 50px;
 background: #fecc00 url(../themes/site/images/ic_submit.png) 5px 5px no-repeat;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 cursor: pointer;
 transition: background-color .2s linear;
}
.bottom_block form .submit_btn.inline{
 line-height: 44px;
}
.bottom_block form .submit_btn:hover{
 background-color: #e3b600;
}


.bottom_block.teaser .cont{
 padding-bottom: 50px;
}
.bottom_block .discount{
 width: 301px;
 margin-top: 25px;
 padding: 0 60px;

 color: #fecc00;
 font: 700 18px/21px Roboto;

 text-align: center;
 text-transform: uppercase;
}
.bottom_block .discount span{
 color: #fff;
}


.bottom_block.main .cont{
 padding-bottom: 60px;

 background: none;
}
.bottom_block.main .text{
 max-width: 585px;
}
.bottom_block.main .text .block_title{
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}
.bottom_block.main .text img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}


.luck{
 padding: 30px 0 1px;

 border-top: 20px solid #29618c;
 background: #639ecb;
}
.luck .block_title{
 margin-bottom: 40px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.luck .item{
 position: relative;

 width: 49%;
 min-height: 110px;
 margin-bottom: 30px;
 padding-left: 160px;
}

.luck .items .item:nth-child(2n+1){
 clear: both;
}

.luck .item .icon{
 position: absolute;
 top: 0;
 left: 0;

 width: 160px;
 height: 100px;
}
.luck .item .icon img{
 display: block;

 position: absolute;
 top: 0;
 right: 20px;
}

.luck .item .name{
 margin-bottom: 5px;

 color: #fecc00;
 font: 700 20px/24px PT Sans;
}

.luck .item .desc{
 color: #fff;
 font: 16px/19px PT Sans;
}


.order_info_block{
 padding: 25px 0;

 text-align: center;
}

.order_info_block img{
 display: inline-block;

 margin-left: 31px;

 vertical-align: middle;
}

.order_info_block .text{
 display: inline-block;

 width: 310px;
 max-width: 100%;

 color: #29618c;
 font: 16px/19px PT Sans;

 vertical-align: middle;
}

.order_info_block .text .title{
 font-size: 20px;
 line-height: normal;
}

.order_info_block .text .link{
 padding: 20px 0 15px;
}
.order_info_block .text .link a{
 display: block;

 width: 100%;
 padding: 9px 0;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.order_info_block .text .link a:hover{
 background-color: #e3b600;
}


.terminology{
 padding: 40px 0;

 background: #3374a6;
}
.terminology.border{
 border-top: 20px solid #29618c;
}

.terminology .block_title{
 margin-bottom: 40px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}
.terminology .block_title.yellow{
 color: #fecc00;
}

.terminology .tabs{
 width: 380px;
 max-width: 45%;
}
.terminology .tabs li{
 display: block;

 position: relative;
 z-index: 2;

 width: 100%;

 list-style-type: none;

 font: 18px/20px PT Sans;

 text-transform: uppercase;

 background: #4b88b7;

 cursor: pointer;
 transition: background .2s linear;
}
.terminology .tabs li + li{
 margin-top: 6px;
}
.terminology .tabs li:after{
 display: block;

 position: absolute;
 top: 0;
 right: -70px;

 width: 70px;
 height: 70px;

 opacity: 0;
 border: 35px solid transparent;
 border-left-color: #fecc00;

 content: '';
 transition: opacity .2s linear;
}

.terminology .tabs li a{
 display: table-cell;

 width: 100%;
 height: 70px;
 padding: 0 15px;

 color: #fff;

 vertical-align: middle;
 text-decoration: none;

 transition: color .2s linear;
}
.terminology .tabs li.active{
 background: #fecc00;
}
.terminology .tabs li.active:after{
 opacity: 1;
}
.terminology .tabs li.active a{
 color: #3374a6;
}

.terminology .tab_content{
 display: none;

 position: relative;
 z-index: 1;

 width: 49%;
 padding-right: 80px;
}

.terminology .tab_content img{
 display: block;

 max-width: 100%;
 margin-bottom: 20px;
}
.terminology .tab_content .name{
 margin-bottom: 5px;

 color: #fecc00;
 font: 700 20px/24px PT Sans;
}

.terminology .tab_content .desc{
 color: #fff;
 font: 16px/19px PT Sans;
}

.terminology .tab_content .desc ul{
 margin-top: 20px;
}
.terminology .tab_content .desc li{
 margin-left: 18px;
}

.terminology .tab_content .link{
 margin-top: 30px;
}
.terminology .tab_content .link a{
 display: inline-block;

 width: 280px;
 padding: 9px 0;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.terminology .tab_content .link a:hover{
 background-color: #e3b600;
}


.terminology .bottom{
 margin-top: 55px;
 margin-bottom: -40px;
 padding: 33px 0;

 background: #29618c;
}
.terminology .bottom .link{
 text-align: center;
}
.terminology .bottom .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.terminology .bottom .link a:hover{
 background-color: #e3b600;
}

.terminology .bottom .link .discount{
 margin-top: 11px;

 color: #fff;
 font: 16px/19px PT Sans;
}


.success_stories{
 padding: 40px 0;
}

.success_stories.bg{
 padding: 0;

 background: rgb(21,63,95);
 background: -moz-linear-gradient(left, rgba(21,63,95,1) 0%, rgba(21,63,95,1) 50%, rgba(51,116,166,1) 50%, rgba(51,116,166,1) 100%);
 background: -webkit-linear-gradient(left, rgba(21,63,95,1) 0%,rgba(21,63,95,1) 50%,rgba(51,116,166,1) 50%,rgba(51,116,166,1) 100%);
 background: linear-gradient(to right, rgba(21,63,95,1) 0%,rgba(21,63,95,1) 50%,rgba(51,116,166,1) 50%,rgba(51,116,166,1) 100%);

 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153f5f', endColorstr='#3374a6',GradientType=1 );
}

.success_stories .top{
 position: relative;

 margin-bottom: 70px;
 padding: 32px 0;

 background: #29618c;
}
.success_stories .top:after{
 display: block;

 position: absolute;
 bottom: -20px;
 left: 50%;
 z-index: 9;

 width: 300px;
 height: 20px;
 margin-left: -150px;

 background: url(../themes/site/images/bg_steps_title_after.png) 0 0 no-repeat;

 content: '';
}

.success_stories .block_title{
 margin-bottom: 40px;

 color: #3374a6;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}
.success_stories .top .block_title{
 margin-bottom: 0;

 color: #fecc00;
}
.success_stories .top .block_title.white{
 color: #fff;
}
.success_stories .top .block_title img{
 display: inline-block;

 position: relative;
 top: -1px;

 margin: 0 11px;

 vertical-align: middle;
}

.success_stories .carousel li{
 width: 100%;

 list-style: none;

 margin-bottom: 50px; 
}

.success_stories .elem{
 text-align: center;
}
.success_stories .elem .title{
 margin: 0 80px 35px;
 padding: 13px;

 color: #fecc00;
 font: 700 20px/24px Roboto;

 text-transform: uppercase;

 border-radius: 5px;
 background: #639ecb;
}
.success_stories .elem .title a{
 color: #fff;

 text-decoration: none;
}

.success_stories .elem .title .region{
 display: inline-block;

 margin-top: 7px;
 padding-left: 25px;

 color: #fff;
 font: 18px/19px PT Sans;

 text-align: left;
 vertical-align: top;
 text-transform: none;

 background: url(../themes/site/images/ic_region.png) 0 50% no-repeat;
}

.success_stories .elem .item{
 display: inline-block;

 width: 230px;
 margin: 0 35px;

 vertical-align: top;
}
.success_stories .elem .item .val{
 width: 221px;
 height: 211px;
 margin: 0 auto 15px;

 color: #143e5f;
 font: 700 50px Roboto;
}

.success_stories .elem .item .name{
 color: #29618c;
 font: 700 18px/21px Roboto;

 text-transform: uppercase;
}


.success_stories .elem .queries{
 margin-bottom: 40px;

 text-align: justify;
}
.success_stories .elem .queries:after{
 display: inline-block;

 width: 100%;

 content: '';
}
.success_stories .elem .query{
 display: inline-block;

 width: 31.333%;

 vertical-align: top;

 border: 3px solid #75b0dc;
 border-radius: 10px;
 background: #639ecb;
}
.success_stories .elem .query .name{
 position: relative;

 margin-bottom: 3px;
 padding: 15px;

 color: #153f5f;
 font: 500 17px/24px Roboto;

 text-align: center;

 border-radius: 10px;
 background: #fff;
 box-shadow: 0 0 0 3px #75b0dc;
}
.success_stories .elem .query .name:after{
 display: block;

 position: absolute;
 bottom: -17px;
 left: 50%;

 width: 26px;
 height: 17px;
 margin-left: -13px;

 background: url(../themes/site/images/bg_query_name.png) 0 0 no-repeat;

 content: '';
}

.success_stories .elem .query .yandex{
 width: 50%;
 height: 44px;

 color: #fff;
 font: 18px/44px PT Sans;

 text-align: center;

 border-right: 1px solid #75b0dc;
}
.success_stories .elem .query .yandex img{
 display: inline-block;

 position: relative;
 top: -1px;

 margin-left: 6px;

 vertical-align: middle;
}

.success_stories .elem .query .google{
 width: 50%;
 height: 44px;

 color: #fff;
 font: 18px/44px PT Sans;

 text-align: center;

 border-left: 1px solid #75b0dc;
}
.success_stories .elem .query .google img{
 display: inline-block;

 position: relative;
 top: -1px;

 margin-left: 6px;

 vertical-align: middle;
}


.success_stories .before{
 position: relative;

 width: 50%;
}
.success_stories .before .sticker{
 position: absolute;
 top: 0;
 right: 0;

 width: 115px;
 height: 50px;

 color: #153f5f;
 font: 700 20px/50px Roboto;

 text-align: center;
 text-transform: uppercase;

 background: #3374a6;
}
.success_stories .before .sticker:before{
 display: block;

 position: absolute;
 top: 0;
 left: -50px;

 width: 50px;
 height: 50px;

 border: 25px solid transparent;
 border-right-color: #3374a6;

 content: '';
}

.success_stories .before .line{
 position: relative;

 width: 300px;
 max-width: 100%;
 padding: 14px 0 15px;

 color: #fff;
 font: 16px/19px PT Sans;

 text-align: center;
}
.success_stories .before .val{
 font: 700 24px/29px Roboto;
}

.success_stories .before .line + .line{
 border-top: 1px dotted #3374a6;
}

.success_stories .before .icon{
 position: absolute;
 top: 0;
 left: 0;

 height: 78px;

 line-height: 78px;

 text-align: center;
}
.success_stories .before .icon img{
 position: relative;
 top: -1px;

 vertical-align: middle;
}

.success_stories .before .total{
 padding-top: 20px;

 color: #fff;
 font: 16px/19px PT Sans;

 background: url(../themes/site/images/bg_success_stories_total.png) 50% 0 no-repeat;
}
.success_stories .before .total .val{
 color: #fecc00;
 font: 700 24px/29px Roboto;
}


.success_stories .after{
 position: relative;

 width: 50%;
}
.success_stories .after .sticker{
 position: absolute;
 top: 0;
 left: 0;

 width: 115px;
 height: 50px;

 color: #3374a6;
 font: 700 20px/50px Roboto;

 text-align: center;
 text-transform: uppercase;

 background: #153f5f;
}
.success_stories .after .sticker:before{
 display: block;

 position: absolute;
 top: 0;
 right: -50px;

 width: 50px;
 height: 50px;

 border: 25px solid transparent;
 border-left-color: #153f5f;

 content: '';
}
.success_stories .after .line{
 position: relative;

 width: 300px;
 max-width: 100%;
 padding: 14px 0 15px;

 color: #fff;
 font: 16px/19px PT Sans;

 text-align: center;
}
.success_stories .after .val{
 font: 700 24px/29px Roboto;
}

.success_stories .after .line + .line{
 border-top: 1px dotted #153f5f;
}

.success_stories .after .icon{
 position: absolute;
 top: 0;
 right: 0;

 height: 78px;

 line-height: 78px;

 text-align: center;
}
.success_stories .after .icon img{
 position: relative;
 top: -1px;

 vertical-align: middle;
}

.success_stories .after .total{
 padding-top: 20px;

 color: #fff;
 font: 16px/19px PT Sans;

 background: url(../themes/site/images/bg_success_stories_total2.png) 50% 0 no-repeat;
}
.success_stories .after .total .val{
 color: #fecc00;
 font: 700 24px/29px Roboto;
}


.success_stories .link{
 margin-top: 50px;

 text-align: center;
}
.success_stories .link.bg{
 padding: 20px 0;

 background: #29618c;
}

.success_stories .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.success_stories .link a:hover{
 background-color: #e3b600;
}


.reduce_costs{
 padding: 58px 0;

 background: #29608b url(../themes/site/images/bg_reduce_costs.png) 50% 50% no-repeat;
 background-size: cover;
}

.reduce_costs .info{
 position: relative;

 width: 300px;
}
.reduce_costs .info:after{
 display: block;

 position: absolute;
 right: -115px;
 bottom: 10px;

 width: 128px;
 height: 277px;

 background: url(../themes/site/images/bg_reduce_costs_img1.png) 0 0 no-repeat;

 content: '';
}

.reduce_costs .info .title{
 margin-bottom: 25px;

 color: #fff;
 font: 700 30px/36px Roboto;

 letter-spacing: -.02em;
}
.reduce_costs .info .title span{
 color: #fecc00;
 font-size: 36px;
}

.reduce_costs .info .desc{
 width: 230px;

 color: #fff;
 font: 16px PT Sans;
}
.reduce_costs .info .desc p + p{
 margin-top: 20px;
}
.reduce_costs .info .desc span{
 color: #fecc00;
}


.reduce_costs .our_tools{
 position: relative;

 width: 230px;
 margin-top: 90px;
}
.reduce_costs .our_tools:before{
 display: block;

 position: absolute;
 top: -85px;
 left: -30px;

 width: 209px;
 height: 58px;

 background: url(../themes/site/images/bg_reduce_costs_img2.png) 0 0 no-repeat;

 content: '';
}
.reduce_costs .our_tools:after{
 display: block;

 position: absolute;
 top: -100px;
 left: -185px;

 width: 145px;
 height: 503px;

 background: url(../themes/site/images/bg_reduce_costs_img3.png) 0 0 no-repeat;

 content: '';
}

.reduce_costs .our_tools .title{
 margin-bottom: 25px;

 color: #e6be1d;
 font: 700 30px/36px Roboto;
}

.reduce_costs .our_tools li{
 margin-left: 18px;

 color: #fff;
 font: 18px/25px PT Sans;
}


.room_block{
 border-top: 20px solid #639ecb;
 background: #95c1e0 url(../themes/site/images/bg_room_block.png) 50% 100% no-repeat;
}
.room_block .cont{
 height: 500px;
}

.room_block .item{
 position: absolute;

 color: #153f5f;
 font: 14px/17px PT Sans;

 text-align: center;
}

.room_block .item1{
 top: 43px;
 left: 53px;

 width: 138px;
}

.room_block .item2{
 top: 175px;
 left: 352px;

 width: 177px;
}

.room_block .item3{
 top: 214px;
 left: 527px;

 width: 149px;
}

.room_block .item .icon{
 margin-bottom: 7px;
}
.room_block .item .icon img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}

.room_block .item .name{
 margin-bottom: 2px;

 color: #153f5f;
 font: 700 20px/24px Roboto;
}

.money_schema{
 background: #1b496d;
}

.money_schema .top{
 position: relative;

 padding: 41px 0;

 text-align: center;

 background: #153f5f;
}
.money_schema .top:after{
 display: block;

 position: absolute;
 bottom: -20px;
 left: 50%;
 z-index: 9;

 width: 300px;
 height: 20px;
 margin-left: -150px;

 background: url(../themes/site/images/bg_money_schema_top_after.png) 0 0 no-repeat;

 content: '';
}

.money_schema .top .title{
 color: #fecc00;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}
.money_schema .top .desc{
 margin-top: 10px;

 color: #96c1e1;
 font: 18px/21px PT Sans;
}

.money_schema .schema{
 padding: 40px 0;
}
.money_schema .schema img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}


.permission{
 padding: 40px 0 0;

 border-top: 20px solid #153f5f;
 background: #639ecb;
}

.permission .block_title{
 margin-bottom: 40px;

 color: #153f5f;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.permission .items{
 margin-bottom: -33px;

 text-align: justify;
}
.permission .items:after{
 display: inline-block;

 width: 100%;

 content: '';
}
.permission .items .item{
 display: inline-block;

 width: 32%;
 padding: 0 15px 15px;

 color: #3f4c58;
 font: 16px/19px PT Sans;

 text-align: center;
 vertical-align: top;

 border: 3px solid #75b0dc;
 border-radius: 10px;
 background: #dfecf6;
}

.permission .items .item .icon{
 height: 145px;

 line-height: 145px;
}
.permission .items .item .icon img{
 position: relative;
 top: -1px;

 max-width: 90%;
 max-height: 90%;

 vertical-align: middle;
}

.permission .items .item .name{
 margin-bottom: 13px;

 color: #4b88b7;
 font: 700 20px/24px Roboto;
}

.permission .gift{
 color: #fff;
 font: 700 24px Roboto;

 text-align: center;
}
.permission .gift img{
 display: block;

 max-width: 100%;
 margin: 0 auto 10px;
}
.permission .gift span{
 color: #fecc00;

 text-transform: uppercase;
}

.permission .link{
 margin-top: 30px;
 padding: 20px 0;

 text-align: center;

 background: #29618c;
}
.permission .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.permission .link a:hover{
 background-color: #e3b600;
}


.why_we{
 padding: 55px 0;

 border-top: 20px solid #29618c;
}
.why_we .block_title{
 margin-bottom: 40px;

 color: #3374a6;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}

.why_we .info{
 position: relative;
 z-index: 1;

 width: 100%;
 margin-right: -301px;
 padding-right: 401px;
}
.why_we .info li{
 padding: 0 0 0 65px;

 list-style: none;

 color: #3f4c58;
 font: 16px/20px PT Sans;

 background: url(../themes/site/images/ic_why_we_li.png) 0 0 no-repeat;
}

.why_we .info li div{
 display: table-cell;

 height: 50px;

 vertical-align: middle;
}

.why_we .info li + li{
 margin-top: 10px;
}

.why_we form{
 position: relative;
 z-index: 2;

 width: 301px;
 padding: 30px 11px 20px;

 border-radius: 10px;
 background: #96c1e1;
}
.why_we form .title{
 margin-bottom: 20px;
 padding: 0 20px;

 color: #3f4c58;
 font: 14px/17px PT Sans;

 text-align: center;
}
.why_we form .title.big{
 font: 18px/21px PT Sans;
}

.why_we form .line{
 margin-bottom: 15px;
 padding: 0 20px;
}
.why_we form .input{
 width: 100%;
 height: 40px;
 padding: 0 10px;

 color: #153f5f;
 font: 18px/40px PT Sans;

 text-align: center;

 border: none;
 border-radius: 7px;
 background: #fff;
 box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.why_we form ::-webkit-input-placeholder{
 color: #153f5f;
}
.why_we form ::-moz-placeholder{
 color: #153f5f;
}
.why_we form :-moz-placeholder{
 color: #153f5f;
}
.why_we form :-ms-input-placeholder{
 color: #153f5f;
}

.why_we form .submit{
 padding-top: 5px;
}
.why_we form .submit_btn{
 display: block;

 width: 100%;
 padding: 8px 5px 8px 40px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 text-transform: uppercase;

 border: none;
 border-radius: 50px;
 background: #fecc00 url(../themes/site/images/ic_submit.png) 5px 5px no-repeat;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 cursor: pointer;
 transition: background-color .2s linear;
}
.why_we form .submit_btn.inline{
 line-height: 44px;
}
.why_we form .submit_btn:hover{
 background-color: #e3b600;
}


.other_works{
 padding: 45px 0 35px;

 background: #3374a6;
}
.other_works .block_title{
 margin-bottom: 10px;

 color: #fdcc00;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}

.other_works .items{
 min-height: 318px;
 padding-top: 220px;

 background: url(../themes/site/images/bg_other_works_items.png) 50% 100% no-repeat;
}
.other_works .item{
 width: 380px;
 min-height: 50px;
 padding-left: 80px;

 color: #fff;
 font: 20px PT Sans;

 background: url(../themes/site/images/bg_other_works_item.png) 0 0 no-repeat;
}


.we_works{
 border-bottom: 20px solid #153f5f;
 background: #639ecb;
}
.we_works .cont{
 padding: 40px 10px 65px;

 background: url(../themes/site/images/bg_we_works.png) 90% 50% no-repeat;
}

.we_works .block_title{
 margin-bottom: 30px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}
.we_works .block_title span{
 color: #fecc00;
}

.we_works .info{
 width: 520px;
 max-width: 100%;
}
.we_works .info .item{
 padding-left: 80px;

 color: #fff;
 font: 700 20px PT Sans;

 background: url(../themes/site/images/ic_we_works.png) 0 0 no-repeat;
}
.we_works .info .item + .item{
 margin-top: 25px;
}
.we_works .info .item div{
 display: table-cell;

 height: 50px;

 vertical-align: middle;
}


.seo_scheme{
 padding: 40px 0;

 background: #29618c;
}
.seo_scheme .block_title{
 margin-bottom: 40px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.seo_scheme .img{
 display: block;

 position: absolute;
 top: -20px;
 left: 10px;
}

.seo_scheme .items{
 margin-bottom: -18px;

 text-align: justify;
}
.seo_scheme .items:after{
 display: inline-block;

 width: 100%;

 content: '';
}

.seo_scheme .item{
 display: inline-block;

 width: 31.333%;

 color: #fff;
 font: 20px PT Sans;

 text-align: center;
 vertical-align: top;
}

.seo_scheme .item .icon{
 height: 204px;
 margin-bottom: 16px;
}
.seo_scheme .item .icon img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}

.seo_scheme .item .name{
 margin-bottom: 5px;

 color: #fdcc00;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}


.white_seo{
 padding: 40px 0;

 background: #629eca;
}

.white_seo .info{
 width: 49%;
}
.white_seo .info .block_title{
 color: #ecc62a;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}
.white_seo .info .block_title span{
 color: #fff;
}

.white_seo .info .desc{
 margin-bottom: 30px;

 color: #fff;
 font: 20px/27px PT Sans;
}

.white_seo .info .item{
 padding-left: 80px;

 color: #fff;
 font: 18px PT Sans;

 background: url(../themes/site/images/ic_not_need.png) 0 0 no-repeat;
}
.white_seo .info .item + .item{
 margin-top: 15px;
}
.white_seo .info .item div{
 display: table-cell;

 height: 50px;

 vertical-align: middle;
}

.white_seo .img{
 display: block;

 width: 49%;
}

.white_seo .link{
 padding: 10px 0 0;

 text-align: center;
}
.white_seo .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.white_seo .link a:hover{
 background-color: #e3b600;
}


.teaser_pluses{
 padding: 40px 0 50px;

 border-top: 20px solid #29618c;
 background: #3374a6;
}

.teaser_pluses .items{
 overflow: hidden;
}
.teaser_pluses .item{
 float: left;

 color: #fff;
 font: 700 20px/24px PT Sans;

 text-align: center;
}

.teaser_pluses .item1{
 width: 17%;
}
.teaser_pluses .item2{
 width: 25%;
}
.teaser_pluses .item3{
 width: 18%;
}
.teaser_pluses .item4{
 width: 15%;
}
.teaser_pluses .item5{
 width: 25%;
}

.teaser_pluses .item .name{
 display: table;

 position: relative;

 width: 100%;

 border-bottom: 48px solid transparent;
}
.teaser_pluses .item .name:after{
 display: block;

 position: absolute;
 bottom: -29px;
 left: 50%;

 width: 10px;
 height: 10px;
 margin-left: -5px;

 border-radius: 50%;
 background: #3374a6;

 content: '';
}

.teaser_pluses .item .name div{
 display: table-cell;

 height: 165px;
 padding: 15px 10px;

 vertical-align: bottom;
}

.teaser_pluses .item2 .name,
.teaser_pluses .item4 .name{
 border-top: 48px solid transparent;
 border-bottom: none;
}
.teaser_pluses .item2 .name div,
.teaser_pluses .item4 .name div{
 vertical-align: top;
}
.teaser_pluses .item2 .name:after,
.teaser_pluses .item4 .name:after{
 top: -29px;
 bottom: auto;
}

.teaser_pluses .item1 .name{
 border-color: #96c1e1;
}
.teaser_pluses .item2 .name{
 border-color: #fccc00;
}
.teaser_pluses .item3 .name{
 border-color: #75b0dc;
}
.teaser_pluses .item4 .name{
 border-color: #c8cb14;
}
.teaser_pluses .item5 .name{
 border-color: #153f5f;
}

.teaser_pluses .item .icon{
 display: table;

 width: 100%;
}
.teaser_pluses .item .icon div{
 display: table-cell;

 height: 165px;

 vertical-align: top;
}

.teaser_pluses .item2 .icon div,
.teaser_pluses .item4 .icon div{
 vertical-align: bottom;
}

.teaser_pluses .item .icon img{
 display: inline-block;

 vertical-align: top;
}


.funnel{
 overflow: hidden;

 padding: 45px 0 35px;

 text-align: center;

 background: #153f5f;
}

.funnel .cont{
 padding-bottom: 50px;

 background: url(../themes/site/images/bg_funnel.png) 47% 100% no-repeat;
}

.funnel .block_title{
 position: absolute;
 top: 0;
 left: 10px;

 width: 235px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-align: left;
 text-transform: uppercase;
}

.funnel .img{
 display: block;

 position: absolute;
 top: 0;
 right: 32px;
}

.funnel .info{
 display: inline-block;

 width: 313px;

 vertical-align: top;
}
.funnel .info div{
 color: #fff;
 font: 700 18px/43px PT Sans;

 text-transform: uppercase;
}
.funnel .info div + div{
 margin-top: 7px;
}

.funnel .info div img{
 display: block;

 max-width: 100%;
 margin: 0 auto 15px;
}

.funnel .info div:nth-child(2){
 height: 43px;

 background: url(../themes/site/images/bg_funnel_item2.png) 50% 0 no-repeat;
}
.funnel .info div:nth-child(3){
 height: 42px;

 line-height: 42px;

 background: url(../themes/site/images/bg_funnel_item3.png) 50% 0 no-repeat;
}
.funnel .info div:nth-child(4){
 height: 81px;
 padding: 19px 0 20px;

 line-height: 21px;

 background: url(../themes/site/images/bg_funnel_item4.png) 50% 0 no-repeat;
}


.experience{
 background: #639ecb;
}

.experience > .cont{
 padding-top: 50px;

 background: url(../themes/site/images/bg_experience.png) 100% 22px no-repeat;
}

.experience .info{
 width: 380px;
 padding: 20px 20px 300px;

 color: #fff;
 font: 700 20px PT Sans;

 border-radius: 10px;
 background: #96c1e1 url(../themes/site/images/bg_experience_info.png) 50% 100% no-repeat;
}
.experience .info p + p{
 margin-top: 15px;
}

.experience .text{
 width: 480px;
 max-width: 100%;
 margin-top: 365px;

 color: #fff;
 font: 700 20px PT Sans;

 text-align: right;
}
.experience .text p + p{
 margin-top: 15px;
}

.experience .link{
 overflow: hidden;

 margin-top: 45px;
 padding: 20px 0;

 text-align: center;

 background: #29618c;
}
.experience .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.experience .link a:hover{
 background-color: #e3b600;
}


.max_benefit{
 padding: 40px 0;
}
.max_benefit .block_title{
 margin-bottom: 40px;

 color: #29618c;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.max_benefit .block_desc{
 margin-top: -30px;
 margin-bottom: 45px;

 color: #29618c;
 font: 24px Roboto;

 text-align: center;
}

.max_benefit .items .item:nth-child(2n+1){
 clear: both;
}
.max_benefit .item{
 width: 49%;
 min-height: 50px;
 margin-bottom: 25px;
 padding-left: 80px;

 color: #153f5f;
 font: 18px/21px PT Sans;

 background: url(../themes/site/images/ic_why_we_li.png) 0 0 no-repeat;
}
.max_benefit .item .name{
 margin-bottom: 3px;

 font: 700 24px/24px Roboto;

 text-transform: uppercase;
}

.max_benefit .link{
 padding-top: 15px;

 text-align: center;
}
.max_benefit .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.max_benefit .link a:hover{
 background-color: #e3b600;
}


.about_teaser .top{
 padding: 40px 0 45px;

 border-top: 20px solid #29618c;
 background: #3374a6;
}
.about_teaser .top .block_title{
 margin-bottom: 40px;

 color: #fecc00;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.about_teaser .top .items{
 overflow: hidden;

 text-align: center;
}
.about_teaser .top .item{
 display: inline-block;

 position: relative;

 width: 30%;

 color: #fff;
 font: 18px/21px PT Sans;

 text-align: center;
 vertical-align: top;
}

.about_teaser .top .item .desc{
 margin-bottom: 40px;
}
.about_teaser .top .item:nth-child(2) .desc{
 margin-top: 35px;
 margin-bottom: 0;
}
.about_teaser .top .item:nth-child(3) .desc{
 margin-bottom: 50px;
 padding-top: 20px;
}

.about_teaser .top .item:nth-child(1):before{
 display: block;

 position: absolute;
 top: 130px;
 right: -57px;

 width: 63px;
 height: 90px;

 background: url(../themes/site/images/about_teaser_arrow1.png) 0 0 no-repeat;

 content: '';
}

.about_teaser .top .item:nth-child(3):before{
 display: block;

 position: absolute;
 top: 77px;
 left: -60px;

 width: 178px;
 height: 54px;

 background: url(../themes/site/images/about_teaser_arrow2.png) 0 0 no-repeat;

 content: '';
}

.about_teaser .top .item .icon img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}


.about_teaser .middle{
 padding: 40px 0;

 background: #29618c url(../themes/site/images/bg_about_teaser_middle.png) 50% 0 no-repeat;
}

.about_teaser .middle .text{
 width: 590px;
 max-width: 100%;
}
.about_teaser .middle .text .title{
 margin-bottom: 20px;

 color: #fff;
 font: 24px PT Sans;
}
.about_teaser .middle .text .desc{
 margin-bottom: 20px;

 color: #fff;
 font: 20px PT Sans;
}

.about_teaser .middle .items{
 width: 500px;
 max-width: 100%;
 height: 46px;

 text-align: justify;
}
.about_teaser .middle .items:after{
 display: inline-block;

 width: 100%;

 content: '';
}

.about_teaser .middle .items .item{
 display: inline-block;

 color: #fff;
 font: 18px PT Sans;

 vertical-align: middle;
}
.about_teaser .middle .items .item img{
 display: inline-block;

 margin-right: 6px;

 vertical-align: middle;
}
.about_teaser .middle .items .item .name{
 display: inline-block;

 vertical-align: middle;
}

.about_teaser .middle .img{
 display: block;

 max-width: 100%;
 margin-left: -23px;
}


.about_teaser .bottom{
 padding: 40px 0;

 text-align: center;

 background: #153f5f url(../themes/site/images/bg_about_teaser_bottom.png) 50% 0 no-repeat;
}
.about_teaser .bottom .title{
 margin-bottom: 20px;

 color: #fecc00;
 font: 700 30px/36px Roboto;
}
.about_teaser .bottom .desc{
 margin-bottom: 20px;

 color: #fff;
 font: 24px PT Sans;
}

.about_teaser .bottom .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.about_teaser .bottom .link a:hover{
 background-color: #e3b600;
}


.who_will_see{
 padding: 50px 0;
}
.who_will_see .block_title{
 color: #153f5f;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}
.who_will_see .block_desc{
 margin-bottom: 35px;

 color: #29618c;
 font: 24px/36px Roboto;

 text-align: center;
}

.who_will_see .items{
 display: table;

 width: 100%;
}
.who_will_see .item{
 display: table-cell;

 width: 25%;
 padding: 0 15px;

 text-align: center;
 vertical-align: top;
}
.who_will_see .item + .item{
 border-left: 2px dotted #31668f;
}

.who_will_see .item .logo{
 margin-bottom: 25px;
}
.who_will_see .item .logo img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}

.who_will_see .item .name{
 margin-bottom: 10px;

 color: #29618c;
 font: 700 24px Roboto;
}

.who_will_see .item .desc{
 color: #29618c;
 font: 16px PT Sans;
}


.teaser_goals{
 padding: 45px 0;

 border-top: 20px solid #3374a6;
 background: #4b88b7;
}
.teaser_goals .block_title{
 margin-bottom: 40px;

 color: #fecc00;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.teaser_goals .items{
 margin-bottom: -33px;

 text-align: justify;
}
.teaser_goals .items:after{
 display: inline-block;

 width: 100%;

 content: '';
}
.teaser_goals .items .item{
 display: inline-block;

 width: 32%;
 margin-bottom: 20px;
 padding: 0 20px 20px;

 color: #3374a6;
 font: 18px PT Sans;

 text-align: center;
 vertical-align: top;

 border-radius: 10px;
 background: #dfecf6;
}

.teaser_goals .items .item .icon{
 height: 175px;

 line-height: 175px;
}
.teaser_goals .items .item .icon img{
 position: relative;
 top: -1px;

 max-width: 90%;
 max-height: 90%;

 vertical-align: middle;
}

.teaser_goals .link{
 margin-top: 55px;

 text-align: center;
}
.teaser_goals .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.teaser_goals .link a:hover{
 background-color: #e3b600;
}


.tarifs{
 padding: 40px 0;

 border-top: 20px solid #153f5f;
 background: #29618c;
}
.tarifs .block_title{
 margin-bottom: 40px;

 color: #fecc00;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.tarifs .items{
 overflow: hidden;
}
.tarifs .item{
 width: 33.333%;
}
.tarifs .item + .item{
 border-left: 1px dashed #92bbdb;
}

.tarifs .item .icon{
 height: 148px;
 margin-bottom: 22px;
 padding: 0 17px;

 line-height: 148px;

 text-align: center;
}
.tarifs .item .icon img{
 vertical-align: bottom;
}

.tarifs .item .name{
 margin-bottom: 20px;
 padding: 0 17px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.tarifs .item .features{
 padding: 0 17px;

 color: #fff;
 font: 16px PT Sans;
}
.tarifs .item .features > div{
 padding-left: 60px;

 background: url(../themes/site/images/ic_why_we_li.png) 0 0 no-repeat;
}
.tarifs .item .features > div + div{
 margin-top: 20px;
}

.tarifs .item .features > div div{
 display: table-cell;

 height: 50px;

 vertical-align: middle;
}


.tarifs .item .bottom{
 margin-top: 25px;
 padding: 20px 30px;

 text-align: center;

 border-top: 1px dashed #92bbdb;
}

.tarifs .item .bottom .peoples{
 margin-bottom: 25px;
}
.tarifs .item .bottom .peoples img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}

.tarifs .item .bottom .users{
 margin-bottom: 30px;

 color: #fff;
 font: 700 24px Roboto;
}
.tarifs .item .bottom .users .val{
 color: #fecc00;
 font-size: 36px;
 line-height: 36px;
}

.tarifs .item .bottom .min_price{
 display: inline-block;

 margin-bottom: 40px;
 padding-left: 90px;

 color: #fff;
 font: 700 18px PT Sans;

 text-align: left;
 vertical-align: top;

 background: url(../themes/site/images/ic_min_price.png) 0 50% no-repeat;
}

.tarifs .item .bottom .link a{
 display: block;

 width: 100%;
 padding: 9px 0;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.tarifs .item .bottom .link a:hover{
 background-color: #e3b600;
}


.doubt{
 position: relative;

 padding: 50px 0;

 border-top: 20px solid #153f5f;
 border-bottom: 20px solid #153f5f;
 background: #29618c url(../themes/site/images/bg_doubt.png) 50% 100% no-repeat;
}
.doubt:before{
 display: block;

 position: absolute;
 top: -21px;
 left: 50%;

 width: 300px;
 height: 40px;
 margin-left: -150px;

 background: url(../themes/site/images/bg_doubt_after.png) 0 0 no-repeat;

 content: '';
}

.doubt .info{
 width: 310px;

 color: #fff;
 font: 24px Roboto;
}

.doubt .block_title{
 margin-bottom: 40px;

 color: #fecc00;
 font: 700 36px Roboto;

 text-transform: uppercase;
}

.doubt form{
 width: 301px;
 padding: 30px 11px 20px;

 border-radius: 10px;
 background: #96c1e1;
}
.doubt form .title{
 margin-bottom: 20px;
 padding: 0 20px;

 color: #3f4c58;
 font: 14px/17px PT Sans;

 text-align: center;
}
.doubt form .title.big{
 font: 18px/21px PT Sans;
}

.doubt form .line{
 margin-bottom: 15px;
 padding: 0 20px;
}
.doubt form .input{
 width: 100%;
 height: 40px;
 padding: 0 10px;

 color: #153f5f;
 font: 18px/40px PT Sans;

 text-align: center;

 border: none;
 border-radius: 7px;
 background: #fff;
 box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.doubt form ::-webkit-input-placeholder{
 color: #153f5f;
}
.doubt form ::-moz-placeholder{
 color: #153f5f;
}
.doubt form :-moz-placeholder{
 color: #153f5f;
}
.doubt form :-ms-input-placeholder{
 color: #153f5f;
}

.doubt form .submit{
 padding-top: 5px;
}
.doubt form .submit_btn{
 display: block;

 width: 100%;
 padding: 8px 5px 8px 40px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 text-transform: uppercase;

 border: none;
 border-radius: 50px;
 background: #fecc00 url(../themes/site/images/ic_submit.png) 5px 5px no-repeat;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 cursor: pointer;
 transition: background-color .2s linear;
}
.doubt form .submit_btn.inline{
 line-height: 44px;
}
.doubt form .submit_btn:hover{
 background-color: #e3b600;
}


.doubt.smm .info{
 font-size: 30px;
}
.doubt.smm:before{
 display: block;

 position: absolute;
 top: -20px;
 left: 50%;

 width: 300px;
 height: 38px;
 margin-left: -150px;

 background: url(../themes/site/images/bg_doubt_after2.png) 0 0 no-repeat;

 content: '';
}


.where_clients{
 overflow: hidden;

 background: #29618c;
}

.where_clients .question{
 position: relative;

 width: 40%;
 padding-top: 50px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-align: right;
 text-transform: uppercase;

 background: #29618c;
}
.where_clients .question img{
 display: block;

 max-width: 90%;
}
.where_clients .question:after{
 display: block;

 position: absolute;
 top: 0;
 right: -104px;
 z-index: 999;

 width: 104px;
 height: 168px;

 border-top: 84px solid transparent;
 border-right: 52px solid transparent;
 border-bottom: 84px solid transparent;
 border-left: 52px solid #29618c;

 content: '';
}

.where_clients .answer{
 position: relative;

 width: 60%;
 padding-top: 50px;

 color: #fff;
 font: 700 30px/72px Roboto;

 text-align: center;
 text-transform: uppercase;

 background: #29618c;
 background: #4b88b7;
}
.where_clients .answer:after{
 display: block;

 position: absolute;
 top: 0;
 right: -1000px;

 width: 1000px;
 height: 100%;

 background: #4b88b7;

 content: '';
}
.where_clients .answer img{
 display: block;

 max-width: 95%;
 margin: 0 auto;
}

.where_clients .bottom{
 padding: 40px 0;

 color: #fff;
 font: 700 24px/36px Roboto;

 text-align: center;

 background: #153f5f;
}

.where_clients .bottom .link{
 margin-top: 15px;
}
.where_clients .bottom .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.where_clients .bottom .link a:hover{
 background-color: #e3b600;
}


.importance{
 padding: 40px 0 0;

 border-top: 20px solid #153f5f;
 background: #4b88b7;
}
.importance .block_title{
 margin-bottom: 40px;

 color: #fecc00;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.importance .items{
 min-height: 360px;

 background: url(../themes/site/images/bg_importance.png) 47% 50% no-repeat;
}
.importance .col{
 width: 220px;
}
.importance .col .item{
 position: relative;

 color: #fff;
 font: 16px PT Sans;
}

.importance .col .item1:after{
 display: block;

 position: absolute;
 top: 10px;
 right: -80px;

 width: 73px;
 height: 30px;

 background: url(../themes/site/images/bg_importance_item1.png) 0 0 no-repeat;

 content: '';
}

.importance .col .item2:after{
 display: block;

 position: absolute;
 top: 10px;
 left: -60px;

 width: 46px;
 height: 62px;

 background: url(../themes/site/images/bg_importance_item2.png) 0 0 no-repeat;

 content: '';
}

.importance .col .item3:after{
 display: block;

 position: absolute;
 top: 10px;
 left: -55px;

 width: 46px;
 height: 21px;

 background: url(../themes/site/images/bg_importance_item3.png) 0 0 no-repeat;

 content: '';
}

.importance .col .item + .item{
 margin-top: 60px;
}
.importance .col .item p + p{
 margin-top: 15px;
}

.importance .bottom{
 position: relative;

 margin-top: 55px;
 padding: 45px 0;

 text-align: center;

 background: #153f5f;
}
.importance .bottom:before{
 display: block;

 position: absolute;
 top: -19px;
 left: 50%;

 width: 286px;
 height: 19px;
 margin-left: -143px;

 background: url(../themes/site/images/bg_importance_bottom_before.png) 0 0 no-repeat;

 content: '';
}

.importance .bottom .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.importance .bottom .link a:hover{
 background-color: #e3b600;
}


.smm_steps{
 padding: 40px 0;

 background: #29618c;
}
.smm_steps .block_title{
 color: #fff;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}
.smm_steps .block_desc{
 margin-bottom: 40px;
 padding: 0 60px;

 color: #fccc00;
 font: 500 24px Roboto;

 text-align: center;
}

.smm_steps .items{
 margin-bottom: -18px;

 text-align: justify;
}
.smm_steps .items:after{
 display: inline-block;

 width: 100%;

 content: '';
}

.smm_steps .item{
 display: inline-block;

 position: relative;

 width: 31.333%;
 margin-bottom: 25px;

 color: #fff;
 font: 16px PT Sans;

 text-align: center;
 vertical-align: top;

 background: url(../themes/site/images/bg_smm_steps_item.png) 0 45px no-repeat;
}

.smm_steps .item .number{
 margin-bottom: 5px;

 color: #fff;
 font: 700 43px/43px Roboto;

 opacity: .4;
}

.smm_steps .item .icon{
 height: 80px;

 line-height: 80px;
}
.smm_steps .item .icon img{
 position: relative;
 top: -1px;

 vertical-align: middle;
}

.smm_steps .item + .item:before{
 display: block;

 position: absolute;
 top: 96px;
 left: -60px;

 width: 60px;
 height: 5px;

 opacity: .4;
 background: #fff;

 content: '';
}
.smm_steps .item:nth-child(3n+1):before{
 display: none;
}


.smm_convert .cont{
 padding: 40px 10px;

 background: url(../themes/site/images/bg_smm_convert.png) 100% 50% no-repeat;
}
.smm_convert .info{
 width: 600px;
 max-width: 100%;

 color: #29618c;
 font: 26px PT Sans;
}

.smm_convert .info .block_title{
 margin-bottom: 20px;

 color: #29618c;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}

.smm_convert .info .desc{
 width: 445px;
 max-width: 100%;
}
.smm_convert .info .desc p + p{
 margin-top: 20px;
}

.smm_convert .link{
 margin-top: 30px;
}
.smm_convert .link a{
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.smm_convert .link a:hover{
 background-color: #e3b600;
}


.smm_services{
 padding: 40px 0;

 background: #639ecb;
}
.smm_services .block_title{
 margin-bottom: 40px;

 color: #fff;
 font: 700 30px/36px Roboto;

 text-align: center;
 text-transform: uppercase;
}

.smm_services .item{
 width: 33.333%;
 padding: 10px 30px 30px;

 color: #fff;
 font: 18px/21px PT Sans;

 text-align: center;

 border-top: 1px dashed #fff;
 border-left: 1px dashed #fff;
}
.smm_services .item:nth-child(3n+1){
 clear: both;

 border-left: none;
}
.smm_services .item:nth-child(n+1):nth-child(-n+3){
 border-top: none;
}

.smm_services .item .icon{
 height: 165px;

 line-height: 165px;
}
.smm_services .item .icon img{
 position: relative;
 top: -1px;

 max-width: 90%;
 max-height: 90%;

 vertical-align: middle;
}

.smm_services .item .link{
 margin-top: 20px;
}
.smm_services .item .link a{
 display: inline-block;

 padding: 9px 25px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 transition: background-color .2s linear;
}
.smm_services .item .link a:hover{
 background-color: #e3b600;
}


.smm_calc{
 padding: 45px 0;

 background: #4b88b7;
}

.smm_calc .block_title{
 margin-bottom: 30px;

 color: #fff;
 font: 700 30px/36px PT Sans;

 text-transform: uppercase;
}
.smm_calc .block_title span{
 color: #fecc00;
}

.smm_calc .info{
 width: 570px;
 max-width: 100%;

 color: #fff;
 font: 30px PT Sans;
}
.smm_calc .info p + p{
 margin-top: 20px;
}

.smm_calc form{
 width: 301px;
 padding: 30px 11px 20px;

 border-radius: 10px;
 background: #96c1e1;
}
.smm_calc form .title{
 margin-bottom: 20px;
 padding: 0 20px;

 color: #153f5f;
 font: 700 18px/21px PT Sans;

 text-align: center;
 text-transform: uppercase;
}

.smm_calc form .line{
 margin-bottom: 15px;
 padding: 0 20px;
}

.smm_calc form .name{
 margin-bottom: 10px;

 color: #153f5f;
 font: 16px PT Sans;

 text-align: center;
}

.smm_calc form input[type=radio]{
 display: none;
}

.smm_calc form label{
 display: block;

 position: relative;

 padding-left: 32px;

 color: #153f5f;
 font: 18px/27px PT Sans;

 cursor: pointer;
}
.smm_calc form label:before{
 display: block;

 position: absolute;
 top: 0;
 left: 0;

 width: 27px;
 height: 27px;

 border-radius: 50%;
 background: #fff;
 box-shadow: inset 0 1px 3px rgba(0,0,0,.2);

 content: '';
 transition: background .2s linear;
}
.smm_calc form label:after{
 display: block;

 position: absolute;
 top: 7px;
 left: 7px;

 width: 13px;
 height: 13px;

 opacity: 0;
 border-radius: 50%;
 background: #153f5f;

 content: '';
 transition: all .2s linear;
}
.smm_calc form label:hover:after{
 opacity: 1;
}

.smm_calc form input[type=radio]:checked + label:after{
 opacity: 1;
}

.smm_calc form .input{
 width: 100%;
 height: 40px;
 padding: 0 10px;

 color: #153f5f;
 font: 18px/40px PT Sans;

 text-align: center;

 border: none;
 border-radius: 7px;
 background: #fff;
 box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.smm_calc form ::-webkit-input-placeholder{
 color: #153f5f;
}
.smm_calc form ::-moz-placeholder{
 color: #153f5f;
}
.smm_calc form :-moz-placeholder{
 color: #153f5f;
}
.smm_calc form :-ms-input-placeholder{
 color: #153f5f;
}

.smm_calc form .submit{
 padding-top: 5px;
}
.smm_calc form .submit_btn{
 display: block;

 width: 100%;
 padding: 8px 5px 8px 40px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 text-transform: uppercase;

 border: none;
 border-radius: 50px;
 background: #fecc00 url(../themes/site/images/ic_submit.png) 5px 5px no-repeat;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 cursor: pointer;
 transition: background-color .2s linear;
}
.smm_calc form .submit_btn.inline{
 line-height: 44px;
}
.smm_calc form .submit_btn:hover{
 background-color: #e3b600;
}


.smm_ways{
 padding-bottom: 45px;

 border-bottom: 20px solid #153f5f;
 background: #4b88b7;
}
.smm_ways .top{
 position: relative;

 margin-bottom: 70px;
 padding: 40px 0;

 text-align: center;

 background: #153f5f;
}
.smm_ways .top:after{
 display: block;

 position: absolute;
 bottom: -20px;
 left: 50%;
 z-index: 9;

 width: 300px;
 height: 20px;
 margin-left: -150px;

 background: url(../themes/site/images/bg_money_schema_top_after.png) 0 0 no-repeat;

 content: '';
}

.smm_ways .top .block_title{
 margin-bottom: 10px;

 color: #fecc00;
 font: 700 28px/36px PT Sans;

 text-transform: uppercase;
}
.smm_ways .top .block_desc{
 color: #96c1e1;
 font: 18px/21px PT Sans;
}

.smm_ways .items{
 margin-bottom: -18px;

 text-align: justify;
}
.smm_ways .items:after{
 display: inline-block;

 width: 100%;

 content: '';
}

.smm_ways .items .item{
 display: inline-block;

 width: 31.333%;

 text-align: center;
 text-align: left;
 vertical-align: top;
}

.smm_ways .items .item .icon{
 margin-bottom: 20px;
}
.smm_ways .items .item .icon img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}

.smm_ways .items .item .elem{
 padding-left: 80px;

 color: #fff;
 font: 18px/21px PT Sans;

 background: url(../themes/site/images/ic_need.png) 0 0 no-repeat;
}
.smm_ways .items .item .elem + .elem{
 margin-top: 20px;
}
.smm_ways .items .item .elem div{
 display: table-cell;

 height: 50px;

 vertical-align: middle;
}





footer{
 padding: 30px 0;

 background: #153f5f;
}

footer .logo{
 width: 22.5%;
}
footer .logo img{
 display: block;
}


footer .col{
 width: 29%;
 min-height: 100px;
 padding-left: 20px;

 color: #97c1e2;
 font: 16px/20px PT Sans;

 border-left: 1px solid #30648c;
}

footer a{
 color: #dfecf6;
}
footer a:hover{
 text-decoration: none;
}

footer .links li{
 list-style: none;
}
footer .copyright{
 width: 19.5%;
}






section.prices {
 padding: 45px 0 60px;
 overflow: hidden;
}

 section.prices .block_title {
 color: #3374a6;
 font: 700 30px/36px Roboto;
 margin-bottom: 40px;
 text-align: center;
 text-transform: uppercase;
 }

 section.prices .blocks1 {
 width: 100%;
 border-bottom: 1px dotted #96c1e1;
 float: left;
 }

 section.prices .blocks1>div {
 width: 20%;
 box-sizing: border-box;
 border-left: 1px dotted #96c1e1;
 float: left;
 text-align: center;
 padding: 12px 30px 22px;
 font-size: 18px;
 color: #3f4c58;
 }

 section.prices .blocks1>div:first-child {
 border-left: none;
 }

 section.prices .blocks1>div img {
 padding-bottom: 15px;
 }

 section.prices .blocks1>div p.name {
 font-weight: bold;
 font-size: 18px;
 color: #639ecb;
 padding-bottom: 15px;
 min-height: 60px;
 }

 
 section.prices .blocks2 {
 width: 100%;
 border-bottom: 1px dotted #96c1e1;
 float: left;
 }

 section.prices .blocks2 .b1 {
 width: 20%;
 float: left;
 font-weight: bold;
 font-size: 18px;
 color:#639ecb;
 text-align: center;
 padding: 34px 20px;
 line-height: 1.2em;
 }

 section.prices .blocks2 .b1 span {
 text-transform: uppercase;
 color:#29618c;
 display: block;
 
 }

 section.prices .blocks2 .b2 {
 width: 80%;
 float: left;
 border-left: 1px dotted #96c1e1;
 font-weight: bold;
 font-size: 30px;
 color:#639ecb;
 text-align: center;
 padding: 34px 20px;
 line-height: 2.2em;
 }

 section.prices .blocks2 .b2 span {
 text-transform: uppercase;
 color:#29618c;
 }


 section.prices .blocks3 {
 width: 100%;
 float: left;
 }

 section.prices .blocks3>div {
 width: 20%;
 box-sizing: border-box;
 border-left: 1px dotted #96c1e1;
 float: left;
 text-align: center;
 padding: 10px 10px 0;
 }

 section.prices .blocks3>div:first-child {
 border-left: none;
 }

 .button {
 display: inline-block;

 padding: 9px 35px;

 color: #fff;
 font: 700 18px/22px Roboto;

 vertical-align: top;
 text-decoration: none;
 text-transform: uppercase;

 border-radius: 20px;
 background: #fecc00;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);
 transition: background-color 0.2s linear;

 width: 100%;
 }

 .button:hover{ background-color: #e3b600; }




.popup_wrap {
 position: fixed;
 left: 0;
 top: 0;
 right: 0;
 bottom: 0;
 overflow-x: hidden;
 overflow-y: auto;
 outline: 0 none;
 z-index: 1050;
}

 #popup {
 display: none;
 margin: 40px auto;
 padding: 30px 11px 20px;
 position: relative;
 width: 350px;
 box-sizing: border-box;
 -webkit-border-radius:10px; 
 -moz-border-radius:10px;
 border-radius:10px;
 background: #96c1e1;
 box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.5);
 }


 *html #popup {
 position: absolute;
 }


 #popup form .title{
 margin-bottom: 20px;
 padding: 0 20px;

 color: #3f4c58;
 font: 14px/17px PT Sans;

 text-align: center;
 }

 #popup form .line{
 margin-bottom: 15px; 
 padding: 0 20px;
 }
 #popup form .input{
 width: 100%;
 height: 40px;
 padding: 0 10px;

 color: #153f5f;
 font: 18px/40px PT Sans;

 text-align: center;

 border: none;
 border-radius: 7px;
 background: #fff;
 box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
 }

 #popup form ::-webkit-input-placeholder{
 color: #153f5f;
 }
 #popup form ::-moz-placeholder{
 color: #153f5f;
 }
 #popup form :-moz-placeholder{
 color: #153f5f;
 }
 #popup form :-ms-input-placeholder{
 color: #153f5f;
 }

 #popup form .submit{
 padding-top: 5px;
 }
 #popup form .submit_btn{
 display: block;

 width: 100%;
 padding: 8px 5px 8px 40px;

 color: #fff;
 font: 700 18px/22px Roboto;

 text-align: center;
 text-transform: uppercase;

 border: none;
 border-radius: 50px;
 background: #fecc00 url(../themes/site/images/ic_submit.png) 5px 5px no-repeat;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 cursor: pointer;
 transition: background-color 0.2s linear;
 }
 #popup form .submit_btn:hover{
 background-color: #e3b600;
 }

 #popup h2 {
 text-align: center;
 color:#fff;
 font: 700 30px/36px Roboto;
 margin: -5px 0 10px;
 }

 

 #popup .bt_close {
 position:absolute;
 right: 0;
 top:0;
 width:40px;
 height:40px;
 line-height: 40px;
 text-align: center;
 font-family: Arial;
 font-weight: bold;
 font-size: 30px;
 color: #000;
 cursor:pointer;
 z-index: 222;
 transition: all 0.5s ease-in-out 0s;
 }
 
 #popup .bt_close:after {
 content: "\00d7";
 }

 #popup .bt_close:hover {
 opacity:0.7;
 transform: rotate(180deg);
 }

#fade {
 display: none;
 background: rgba(0, 0, 0, 0.6);
 position: fixed;
 left: 0;
 top: 0;
 right: 0;
 bottom: 0;
 opacity: .75;
 z-index: 1040;
}

 *html #fade {
 position: absolute;
 }

body.popup_open {
 overflow: hidden;
}








.content_section {
 padding: 50px 0;
}

.content_section h1, 
.content_section h2, 
.content_section h3, 
.content_section h4, 
.content_section h5, 
.content_section h6 {
 font-family: Roboto;
 font-weight: normal;
 line-height: 1.5em;
 margin:0.2em 0 0.6em;
 color:#29618c;
}

 .content_section h1 {font-size: 30px;}
 .content_section h2 {font-size: 24px;}
 .content_section h3 {font-size: 20px;}
 .content_section h4 {font-size: 18px;}
 .content_section h5 {font-size: 16px;}
 .content_section h6 {font-size: 14px;}


.content_section a{
 color:#29618c;
 text-decoration:underline;
}

 .content_section a:hover{
 text-decoration:none;
 }

.content_section p{
 padding-bottom: 15px;
}

.content_section ul {
 margin: 0 0 20px 20px;
}

.content_section img {
 max-width: 100%;
 height: auto;
}



.articles {
 width: 100%;
 float: left;
}

 .articles .item {
 width: 50%;
 float: left;
 box-sizing: border-box;
 margin-bottom: 50px;
 overflow: hidden;
 }

 .articles .item:nth-child(2n) {
 padding-left: 10px;
 }

 .articles .item:nth-child(2n+1) {
 padding-right: 10px;
 }

 .articles .item .image {
 width: 160px;
 height: 120px;
 padding-top: 15px;
 float: left;
 overflow: hidden;
 text-align: center;
 position: relative;
 }

 .articles .item .image:after {
 content: '';
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 background: url(../themes/site/images/article_image_frame.png) 0 0 no-repeat;
 }

 .articles .item .info {
 display: table-cell;
 height: 120px;
 padding-left: 30px;
 vertical-align: middle;
 width: 100%;
 }

 .articles .item .info name {
 font-size: 16px;
 }

 .content_article_image_inner {
 float: left;
 margin: 0 30px 20px 0;
 max-width: 100%;
 border: 6px solid #29618c;
 border-radius: 5px;
 max-width: 100%;
 }

 .content_article_image_inner img {
 float: left;
 max-width: 100%;
 }













.promo1_block{
 border-top: 1px solid #153f5f;
 background: #29618c;
}
.promo1_block .cont{
 
 padding: 60px 10px 60px;

 
}

.promo1_block .text{
 max-width: 570px;

 color: #fff;
 font: 16px/19px PT Sans;
}
.promo1_block .text .block_title{
 margin-bottom: 30px;

 color: #fff;
 font: bold 18px/23px PT Sans;
}
.promo1_block .text .block_title span{
 display: block;

 color: #fecc00;
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}

.promo1_block .text p{
 
 margin-bottom: 10px;
}

.promo1_block .text p b{
 color:#fecc00;
}

.promo1_block .text img{
 max-width: 100%;
}



.promo1_block .text a{
 color:#fecc00;
}

.promo1_block form{
 width: 301px;
 padding: 30px 11px 20px;

 border-radius: 10px;
 background: #96c1e1;
}
.promo1_block form .title{
 margin-bottom: 20px;
 padding: 0 20px;

 color: #3f4c58;
 font: 14px/17px PT Sans;

 text-align: center;
}
.promo1_block form .title.big{
 font: 18px/21px PT Sans;
}

.promo1_block form .line{
 margin-bottom: 15px;
 padding: 0 20px;
}
.promo1_block form .input{
 width: 100%;
 height: 40px;
 padding: 0 10px;

 color: #153f5f;
 font: 18px/40px PT Sans;

 text-align: center;

 border: none;
 border-radius: 7px;
 background: #fff;
 box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
}

.promo1_block form ::-webkit-input-placeholder{
 color: #153f5f;
}
.promo1_block form ::-moz-placeholder{
 color: #153f5f;
}
.promo1_block form :-moz-placeholder{
 color: #153f5f;
}
.promo1_block form :-ms-input-placeholder{
 color: #153f5f;
}

.promo1_block form .submit{
 padding-top: 5px;
}
.promo1_block form .submit_btn{
 display: block;

 width: 100%;
 padding: 8px 5px 8px 40px;

 color: #fff;
 font: 700 16px/21px Roboto;

 text-align: center;
 

 border: none;
 border-radius: 50px;
 background: #fecc00 url(../themes/site/images/ic_submit.png) 5px 5px no-repeat;
 box-shadow: 0 1px 2px rgba(0,0,0,.2);

 cursor: pointer;
 transition: background-color .2s linear;
}
.promo1_block form .submit_btn.inline{
 line-height: 44px;
}
.promo1_block form .submit_btn:hover{
 background-color: #e3b600;
}


.promo1_block.teaser .cont{
 padding-bottom: 50px;
}
.promo1_block .discount{
 width: 301px;
 margin-top: 25px;
 padding: 0 60px;

 color: #fecc00;
 font: 700 18px/21px Roboto;

 text-align: center;
 text-transform: uppercase;
}
.promo1_block .discount span{
 color: #fff;
}


.promo1_block.main .cont{
 padding-bottom: 60px;

 background: none;
}
.promo1_block.main .text{
 max-width: 585px;
}
.promo1_block.main .text .block_title{
 font: 700 30px/36px Roboto;

 text-transform: uppercase;
}
.promo1_block.main .text img{
 display: block;

 max-width: 100%;
 margin: 0 auto;
}

.soc_bt {
 display: inline-block;
 width: 29px;
 height: 29px;
 background: transparent url(../themes/site/images/socials_bt.png) 0 0 no-repeat;
 margin: -3px 0 0 5px !important;
 vertical-align: middle;
 transition: all 0.5s ease-in-out 0s;
}

 .soc_bt:hover {
 transform: rotate(2880deg);
 }

 .soc_bt.vk {
 background-position: -70px 0;
 }

 .soc_bt.fb {
 background-position: -105px 0;
 }

.seo_spoilers{
	padding: 50px 0;
	max-width: 960px; padding: 0 10px; margin: 20px auto; position: relative; 
}

	.seo_spoilers h1,
	.seo_spoilers h2,
	.seo_spoilers h3 {
	 color: #2b98eb;
	 font: 600 30px/40px Open Sans;
	 margin: 0.6em 0 1em;
	 line-height: 1.3em;
	}

	.seo_spoilers h1 {
	 font-size: 30px;
	 text-align: center;
	}

	.seo_spoilers h2 {
	 font-size: 24px;
	}

	.seo_spoilers h3 {
	 font-size: 18px;
	}

	.seo_spoilers p {
	 padding-bottom: 15px;
	}

	.seo_spoilers ul {
	 margin: 0 0 20px 20px;
	}

	.seo_spoilers ul li {
	 padding-bottom: 4px;
	}

	.seo_spoilers .spoiler {
		
		
		margin-bottom: 10px;
	}

		.seo_spoilers .spoiler .h {
		 background-color: #f7f7f7;
		 border-left: 3px solid #ffcc00;
		 box-sizing: border-box;
		 padding: 10px 20px;
		 cursor: pointer;
		}

			.seo_spoilers .spoiler .h:hover {
			 background-color: #ffcc00;
			}

		.seo_spoilers .spoiler .h h2 {
		 font-size: 24px;
		 line-height: 1.1em;
		 margin: 0;
		}

		.seo_spoilers .spoiler .text {
			width: 100%;
			
			display: none;
			box-sizing: border-box;
			border: 1px solid #f7f7f7;
			padding: 20px 20px 10px;
		}




.spoiler-theme-2 {
 display: flex;
 justify-content: center;
 align-items: flex-start;
 flex-wrap: wrap;
}

.spoiler-theme-2 .block_title {
 font-size: 32px;
 line-height: 1.2;
 margin-bottom: 25px;
}

.spoiler-theme-2 .column {
 width: 50%;
 display: flex;
 box-sizing: border-box;
 padding: 25px;
 position: relative;
}

.spoiler-theme-2 .column .inner-content {
 width: 65%;
 font-size: 15px;
}

.spoiler-theme-2 .column .inner-content ul {
 padding-left: 25px;
 margin: 15px 0;
}

.spoiler-theme-2 .column.left {
 align-items: flex-start;
 justify-content: flex-end;
 margin-bottom: 125px;
}

.spoiler-theme-2 .column.with-arrow-1:after {
 content: '';
 width: 824px;
 height: 153px;
 background: url("../themes/site/images/spoilers-block-arrow-1.png") no-repeat;
 position: absolute;
 bottom: -106px;
 left: 0;
 z-index: -1;
}

.spoiler-theme-2 .column.with-arrow-2:before {
 content: '';
 width: 477px;
 height: 128px;
 background: url("../themes/site/images/spoilers-block-arrow-2.png") no-repeat;
 position: absolute;
 top: -30px;
 right: -477px;
 z-index: -1;
}

.spoiler-theme-2 .column.with-bg {
 background: #29618c;
 color: white;
}

.spoiler-theme-2 .seo_spoilers {
 margin-top: 94px;
}

.spoiler-theme-2 .seo_spoilers .spoiler .h {
 font-size: 17px;
 border: none;
 padding: 20px 20px;
 color: #717c88;
 border-left: 6px solid #153f5f;
 background: transparent;
 position: relative;
}

.spoiler-theme-2 .seo_spoilers .spoiler .h:before {
 content: '\f078';
 border: 5px solid #d8af2d;
 position: absolute;
 right: 15px;
 top: 50%;
 transform: translateY(-50%);
 color: #d8af2d;
 font-family: 'Font Awesome\ 5 Free';
 font-weight: 900;
 -webkit-border-radius: 100px;
 border-radius: 100px;
 text-align: center;
 display: inline-block;
 padding: 0 4px;
 background: white;

}

.spoiler-theme-2 .seo_spoilers .spoiler .h.active {
 background: #153f5f;
 color: white;
 -webkit-border-radius: 10px;
 border-radius: 10px;
}

.spoiler-theme-2 .seo_spoilers .spoiler .h.active:before {
 border-color: #ea7053;
 color: #d95c3e;
 content: '\f077';
}

.spoiler-theme-2 .seo_spoilers h1,
.spoiler-theme-2 .seo_spoilers h2,
.spoiler-theme-2 .seo_spoilers h3 {
 font: 400 20px/22px Roboto;
 color: #717c88;
 padding-right: 35px;
}

.spoiler-theme-2 .seo_spoilers .spoiler .h h2 {
 font-size: 20px;
}

.spoiler-theme-2 .seo_spoilers .spoiler .h.active h2 {
 color: white;
}@media (max-width: 1023px){
 header .logo .desc{
 font-size: 15px;
 }
 header .contacts .phone{
 font-size: 28px;
 }

 header .menu li a{
 padding: 0 10px;

 font-size: 15px;
 }

 .first_sec .block_title{
 font-size: 39px;
 }
 .first_sec.bg2 .block_title,
 .first_sec.bg5 .block_title{
 font-size: 36px;
 }

 .first_sec .block_desc{
 max-width: 50%;

 font-size: 22px;
 line-height: 26px;
 }
 .first_sec form{
 margin-top: 0;
 }

 .about .block_title,
 .questions .block_title,
 .clients .block_title,
 .tools .block_title,
 .pickup .block_title,
 .portfolio .block_title,
 .steps .block_title,
 .team .text .block_title,
 .ad_stats .block_title,
 .money_schema .top .title,
 .permission .block_title,
 .terminology .block_title,
 .why_we .block_title,
 .success_stories .block_title,
 .bottom_block.main .text .block_title,
 .luck .block_title,
 .questions_top,
 .reduce_costs .info .title,
 .reduce_costs .our_tools .title,
 .other_works .block_title,
 .we_works .block_title,
 .seo_scheme .block_title,
 .white_seo .info .block_title,
 .importance .block_title,
 .smm_steps .block_title,
 .smm_convert .info .block_title,
 .smm_services .block_title,
 .max_benefit .block_title,
 .smm_calc .block_title,
 .smm_ways .top .block_title,
 .funnel .block_title,
 .about_teaser .bottom .title,
 .who_will_see .block_title,
 .doubt .block_title,
 .about_teaser .top .block_title,
 .teaser_goals .block_title,
 .tarifs .block_title{
 padding-left: 0;

 font-size: 26px;
 line-height: 32px;
 }

 .pickup .desc{
 max-width: 56%;
 }

 .steps .items.bg1,
 .steps .items.bg2,
 .steps .items.bg3,
 .steps .items.bg4{
 width: 100%;
 height: 100%;
 margin: 0 0 -30px;
 padding: 0 30px 0;

 background: none;
 }
 .steps .item{
 margin-bottom: 70px;
 }
 .steps .items.bg4 .item{
 margin-bottom: 40px;
 }

 .steps .item.result{
 margin-bottom: 25px;
 }
 .steps .item.result:before{
 left: -150px;
 }

 .steps .bottom_items .cont{
 background: none;
 }
 .steps .bottom_items .col.left{
 width: 100%;

 text-align: center;
 }
 .steps .bottom_items .item{
 display: inline-block;

 width: 280px;
 margin: 0 20px 30px;

 vertical-align: top;
 }
 .steps .bottom_items .item + .item{
 margin-top: 0;
 }
 .steps .bottom_items .item:before,
 .steps .item .desc br,
 .steps .bottom_items .end br{
 display: none;
 }
 .steps .item .desc{
 display: table-cell;

 height: 75px;

 vertical-align: middle;
 }

 .steps .bottom_items .end{
 float: none;
 clear: both;

 width: 300px;
 margin: 0 auto;
 padding: 50px 0 0 0;

 font-size: 18px;

 text-align: center;
 }
 .steps .bottom_items .end:before{
 top: -90px;
 left: 50%;

 margin-top: 0;
 margin-left: -39px;

 -webkit-transform: rotate(90deg);
 -ms-transform: rotate(90deg);
 transform: rotate(90deg);
 }
 .steps .bottom_items .cont{
 padding: 50px 10px 30px;
 }

 .team .text{
 width: 57%;
 }
 .team .text ul{
 max-width: 52%;
 }
 .team .text ul li{
 font-size: 16px;
 line-height: 18px;
 }
 .team .text ul li + li{
 margin-top: 6px;
 }
 .team .text ul + ul{
 margin-left: 30px;
 }

 .ad_stats .item .info{
 right: 0;
 left: auto;

 width: 30%;
 }
 .ad_stats .item.item1 .info:before,
 .ad_stats .item.item1 .info:after,
 .ad_stats .item.item2 .info:before,
 .ad_stats .item.item2 .info:after{
 display: none;
 }

 .bottom_block .cont{
 background-position: 5% 110%;
 }
 .bottom_block .text,
 .bottom_block.main .text{
 max-width: 57%;
 }
 .bottom_block .text .block_title{
 font-size: 19px;
 line-height: 24px;
 }
 .bottom_block .text .block_title span{
 padding-left: 0;

 font-size: 22px;
 line-height: 26px;
 }


 .room_block{
 padding: 20px 0;

 text-align: center;

 background: #dfebf6;
 }
 .room_block .item{
 display: inline-block;

 position: relative;
 top: 0 !important;
 left: 0 !important;

 margin: 0 20px;

 vertical-align: middle;
 }
 .room_block .cont{
 height: auto;
 }

 .terminology .tab_content{
 padding-right: 0;
 }


 .success_stories .elem .item{
 margin: 0 8px;
 }

 .reduce_costs .info{
 width: 47%;
 }
 .reduce_costs .our_tools{
 width: 37%;
 }

 .reduce_costs .info .desc{
 width: 250px;
 }

 .reduce_costs .our_tools:after,
 .reduce_costs .info:after{
 display: none;
 }


 .other_works .items{
 min-height: 0;
 padding: 0;

 background: none;
 }
 .other_works .item{
 width: 49%;
 margin-top: 20px;
 }

 .we_works .info{
 width: 100%;
 }
 .we_works .info .item + .item{
 margin-top: 15px;
 }
 .we_works .cont{
 padding: 40px 10px;

 background: none;
 }

 .seo_scheme .img{
 display: none;
 }
 .seo_scheme .item{
 font-size: 16px;
 }
 .seo_scheme .item .icon{
 height: 185px;
 }

 .success_stories .elem .query .name{
 padding: 15px 5px;

 font-size: 18px;
 }

 .where_clients .question{
 font-size: 24px;
 line-height: 30px;
 }
 .where_clients .answer{
 font-size: 24px;
 line-height: 60px;
 }
 .where_clients .question img{
 display: block;

 max-width: 79%;
 }

 .where_clients .bottom{
 font-size: 20px;
 line-height: 24px;
 }

 .importance .items{
 min-height: auto;

 background: none;
 }
 .importance .col{
 width: 100%;
 }
 .importance .col + .col{
 margin-top: 60px;
 }
 .importance .col .item1:after,
 .importance .col .item2:before,
 .importance .col .item3:before{
 display: none;
 }


 .smm_steps .block_desc{
 font-size: 20px;
 }

 .smm_steps .items{
 margin-bottom: -30px;

 text-align: center;
 }
 .smm_steps .items:after{
 display: none;
 }
 .smm_steps .item{
 width: 295px;
 margin: 0 20px 40px;
 }
 .smm_steps .item + .item:before{
 display: none;
 }


 .smm_convert .cont{
 background: none;
 }
 .smm_convert .info,
 .smm_convert .info .desc{
 width: 100%;

 font-size: 22px;
 }


 .doubt{
 background: #29618c;
 }

 .max_benefit .block_desc{
 font-size: 20px;
 }
 .max_benefit .item .name{
 font-size: 18px;
 }

 .smm_calc .info{
 float: none;

 width: 100%;
 margin-bottom: 30px;

 font-size: 22px;
 }

 .smm_calc form{
 float: none;

 margin: 0 auto;
 }

 .smm_ways .items .item .elem,
 .max_benefit .item{
 padding-left: 70px;
 }

 .first_sec.bg5 .cont{
 background-position: 110% 50%;
 }
 .first_sec .teaser_info .link a{
 display: block;

 width: 100%;
 padding: 10px;

 font-size: 18px;
 line-height: 20px;

 border-radius: 50px;
 }
 .first_sec .teaser_info .items .item{
 font-size: 22px;
 line-height: 24px;
 }

 .experience > .cont{
 background: none;
 }
 .experience .info{
 width: 100%;
 margin-bottom: 30px;
 }
 .experience .text{
 width: 100%;
 margin-top: 0;

 text-align: center;
 }

 .about_teaser .middle .img{
 display: none;
 }
 .about_teaser .middle .text,
 .about_teaser .middle .items{
 width: 100%;
 }

 .who_will_see .block_desc{
 margin-top: 10px;

 font-size: 20px;
 line-height: 24px;
 }

 .tarifs .item .name{
 font-size: 24px;
 line-height: 30px;
 }
 .tarifs .item .bottom{
 padding: 20px 15px;
 }
 .tarifs .item .bottom .link a{
 font-size: 16px;
 }
 .tarifs .item .bottom .users .val{
 font-size: 30px;
 line-height: 30px;
 }


 .teaser_goals .items .item{
 width: 100%;
 }

 .portfolio .item .info{
	 top: 0;
	}

 footer .logo{
 width: 13.5%;
 }
 footer .col{
 width: 31%;
 }
 footer .copyright{
 width: 24.5%;
 }

 .spoiler-theme-2 .column .inner-content {
 width: 90%;
 }
}
@media (max-width: 960px) {
 .spoiler-theme-2 .column.with-arrow-2:before {
 display: none;
 }

 .spoiler-theme-2 .column.with-arrow-1:after {
 display: none;
 }

 .spoiler-theme-2 .column {
 width: 100%;
 }

 .spoiler-theme-2 .column.left,
 .spoiler-theme-2 .column.right {
 justify-content: center;
 }

 .spoiler-theme-2 .column {
 margin-bottom: 0;
 }

 .spoiler-theme-2 .seo_spoilers {
 margin-top: 0;
 }
}

@media (max-width: 767px){
 header .logo{
 max-width: 75%;
 margin: 0 0 20px;
 }
 header .logo a{
 padding: 9px 0 9px 90px;
 }
 header .logo .name{
 font-size: 40px;
 line-height: 40px;
 }
 header .logo .desc{
 font-size: 14px;
 line-height: 16px;
 }

 header .contacts{
 float: none;
 clear: both;

 max-width: 276px;
 margin: 0 auto;
 }
 header .contacts .phone{
 font-size: 25px;
 }
 header .contacts .callback_link{
 font-size: 14px;
 }

 header .contacts a{
 font-size: 14px;
 }

 header .menu_link{
 display: block;
 }
 header .menu{
 display: none;

 position: absolute;
 top: 113px;
 left: 0;
 z-index: 999;

 width: 100%;
 }
 header .menu .cont{
 padding: 0;
 }
 header .menu ul{
 display: block;
 }
 header .menu li{
 display: block;

 width: 100%;
 }
 header .menu li a{
 text-align: center;
 }

 .first_sec.bg3 .cont,
 .first_sec.bg1 .cont,
 .first_sec.bg2 .cont,
 .first_sec.bg4 .cont,
 .first_sec.bg6 .cont,
 .first_sec.bg5 .cont{
 padding: 20px 10px;

 background: none;
 }
 .first_sec.bg1,
 .first_sec.bg3,
 .first_sec.bg4{
 padding: 0;

 background: none;
 }

 .first_sec .block_title,
 .first_sec.bg2 .block_title,
 .first_sec.bg4 .block_title,
 .first_sec.bg6 .block_title{
 width: 100%;

 font-size: 21px !important;

 text-align: center;
 }
 .first_sec.bg3 .block_title{
 margin-bottom: 20px;
 }
 .first_sec .block_desc{
 float: none;

 width: 100%;
 max-width: 100%;
 margin-bottom: 20px;

 font-size: 15px;
 line-height: 20px;

 text-align: center;
 }
 .first_sec form{
 float: none;

 margin: 0 auto;
 }

 .about{
 padding: 20px 0;
 }

 .about .block_title,
 .questions .block_title,
 .clients .block_title,
 .tools .block_title,
 .pickup .block_title,
 .portfolio .block_title,
 .steps .block_title,
 .team .text .block_title,
 .ad_stats .block_title,
 .money_schema .top .title,
 .permission .block_title,
 .terminology .block_title,
 .why_we .block_title,
 .success_stories .block_title,
 .bottom_block.main .text .block_title,
 .luck .block_title,
 .questions_top,
 .reduce_costs .info .title,
 .reduce_costs .our_tools .title,
 .other_works .block_title,
 .we_works .block_title,
 .seo_scheme .block_title,
 .white_seo .info .block_title,
 .importance .block_title,
 .smm_steps .block_title,
 .smm_convert .info .block_title,
 .smm_services .block_title,
 .max_benefit .block_title,
 .smm_calc .block_title,
 .smm_ways .top .block_title,
 .funnel .block_title,
 .about_teaser .bottom .title,
 .who_will_see .block_title,
 .doubt .block_title,
 .about_teaser .top .block_title,
 .teaser_goals .block_title,
 .tarifs .block_title{
 margin-bottom: 30px;
 padding-left: 0;

 font-size: 19px;
 line-height: 24px;
 }

 .about .stats .item{
 width: 32%;

 font-size: 20px;
 }
 .about .stats .item b{
 font-size: 29px;
 }

 .about .advantages .item,
 .permission .items .item{
 width: 100%;
 padding: 0 15px 15px;
 }
 .about .advantages .item + .item,
 .permission .items .item + .item{
 margin-top: 20px;
 }

 .about .advantages .item .name,
 .permission .items .item .name{
 margin-bottom: 10px;

 font-size: 18px;
 line-height: 20px;
 }

 .questions .need{
 padding: 20px 0;
 }
 .questions .need .col{
 width: 100%;
 max-width: 100%;
 }

 .questions .need .item{
 min-height: 50px;
 padding: 7px 0 7px 60px;

 font-size: 14px;
 line-height: 20px;

 background-position: 0 0;
 }
 .questions .need .maybe{
 padding: 25px 0;
 }

 .questions .not_need{
 padding: 20px 0;
 }
 .questions .not_need .item{
 min-height: 50px;
 padding: 0 0 0 70px;

 font-size: 14px;
 line-height: 18px;

 background-position: 0 0;
 }

 .clients{
 padding: 20px 0;
 }
 .clients .item{
 width: 24%;
 height: 80px;

 line-height: 80px;
 }
 .clients .link{
 padding-top: 0;
 }
 .clients .link a{
 font-size: 16px;
 line-height: 20px;

 border-radius: 50px;
 }

 .tools{
 padding-top: 20px;
 }
 .tools .item{
 padding: 0;
 }
 .tools .item + .item{
 margin-top: 40px;
 }
 .tools .item .info{
 padding-left: 180px;

 font-size: 16px;
 }

 .tools .bottom a{
 padding: 9px;

 font-size: 16px;
 line-height: 20px;

 border-radius: 50px;
 }
 .tools .bottom{
 font-size: 14px;
 line-height: 18px;
 }

 .pickup .cont{
 padding: 20px 10px;

 background: none;
 }
 .pickup .desc{
 float: none;

 width: 100%;
 max-width: 100%;

 font-size: 16px;
 }
 .pickup form{
 float: none;

 margin: 0 auto;
 }

 .portfolio .item{
 width: 48%;
 }
 .portfolio .items .item:nth-child(n+5):nth-child(-n+9){
 
 }

 .portfolio .bottom{
 margin-top: 0;
 }
 .portfolio .bottom a{
 padding: 9px;

 font-size: 16px;
 line-height: 20px;

 border-radius: 50px;
 }
 .portfolio .bottom{
 font-size: 14px;
 line-height: 18px;
 }

 .steps{
 padding: 20px 0;
 }
 .steps .items{
 padding: 0 10px;
 }
 .steps .item{
 width: 100%;
 }
 .steps .item .icon{
 top: 0 !important;
 }
 .steps .item.result:before,
 .steps .item.result:after{
 display: none;
 }

 .steps .item.result{
 width: 100%;
 min-height: 100%;
 margin-bottom: 40px;
 padding-top: 0;
 padding-left: 130px;
 }
 .steps .item.result .icon{
 top: 0;
 left: 25px;

 width: 85px;
 }

 .steps .items.bg1 .item{
 margin-bottom: 80px;
 }
 .steps .items.bg3 .item{
 margin-bottom: 80px;
 }

 .team .cont{
 padding: 40px 10px 20px;

 background: none;
 }
 .team .text{
 float: none;

 width: 100%;

 font-size: 14px;
 }
 .team .text p,
 .team .text ul{
 margin-bottom: 20px;
 }
 .team .text ul li{
 font-size: 14px;
 line-height: 16px;
 }

 .team form{
 float: none;

 margin: 0 auto;
 }

 .ad_stats{
 padding: 20px 0;
 }
 .ad_stats .item{
 float: left;

 width: 50%;
 }
 .ad_stats .item + .item{
 margin-top: 0;
 }
 .ad_stats .item img{
 display: none;
 }
 .ad_stats .item .info{
 position: relative;

 width: 100%;
 }
 .ad_stats .item .info .name{
 font-size: 18px;
 line-height: 22px;
 }
 .ad_stats .item .info .val{
 font-size: 20px;
 line-height: 24px;
 }
 .ad_stats .item .info .val b{
 font-size: 24px;
 }

 .bottom_block .cont{
 padding: 40px 10px 20px !important;

 background: none;
 }
 .bottom_block .text,
 .bottom_block.main .text{
 float: none;

 width: 100%;
 max-width: 100%;

 font-size: 14px;
 line-height: 16px;
 }
 .bottom_block form{
 float: none;

 margin: 0 auto;
 }

 .bottom_block.main .text img{
 max-width: 90%;
 margin-bottom: 20px;
 }

 .room_block .item{
 margin: 0 -2px;
 }

 .about .stats{
 margin-bottom: -15px;

 text-align: center;
 }
 .about .stats:after{
 display: none;
 }
 .about .stats .item{
 width: 49%;
 }

 .about .advantages{
 margin-top: 25px;
 }

 .money_schema .top{
 padding: 20px 0;
 }
 .money_schema .top .title{
 margin-bottom: 10px;
 }

 .permission{
 padding: 20px 0 0;
 }
 .permission .gift{
 font-size: 20px;
 }

 .terminology{
 padding: 20px 0;
 }
 .terminology .tabs{
 width: 100%;
 max-width: 100%;
 margin-bottom: 20px;
 }
 .terminology .tabs li.active:after{
 opacity: 0;
 }
 .terminology .tab_content{
 width: 100%;
 }

 .why_we{
 padding: 20px 0;
 }
 .why_we .info{
 float: none;

 margin: 0 0 25px;
 padding: 0;
 }
 .why_we form{
 float: none;

 margin: 0 auto;
 }

 .success_stories .top{
 margin-bottom: 50px;
 padding: 30px 0;
 }
 .success_stories .elem .title{
 margin: 0 40px 35px;
 }
 .success_stories .before,
 .success_stories .after{
 padding-top: 60px;
 }
 .success_stories .after > .right,
 .success_stories .before > .left,
 .success_stories .after .line{
 width: 100%;
 }

 .first_sec .context_info{
 overflow: hidden;

 width: 100%;
 }
 .first_sec .context_info .banner{
 float: left;

 margin-bottom: 0;
 }
 .first_sec .context_info .bottom{
 float: right;

 width: 220px;
 padding-top: 30px;
 }

 .luck .item{
 width: 100%;
 }

 .questions_top{
 margin-bottom: 0;
 padding: 0;
 }

 .order_info_block img{
 margin-top: 30px;
 margin-left: 0;
 }

 .steps .items.bg2 .item{
 margin-bottom: 35px;
 }
 .steps.context .title{
 padding: 20px 0;

 font-size: 20px;
 }

 .success_stories .elem .item{
 width: 211px;
 margin-bottom: 30px;
 }
 .success_stories .elem .item .name{
 font-size: 16px;
 }
 .success_stories .link{
 margin-top: 20px;
 }

 .reduce_costs{
 padding: 20px 0;

 background: #29608b;
 }
 .reduce_costs .info{
 width: 100%;
 margin-bottom: 30px;
 }
 .reduce_costs .info .title span{
 font-size: 26px;
 }
 .reduce_costs .info .desc{
 width: 100%;
 }

 .reduce_costs .our_tools{
 width: 100%;
 }
 .reduce_costs .our_tools .title br{
 display: none;
 }
 .reduce_costs .our_tools:before{
 left: 10px;
 }

 .other_works{
 padding: 20px 0;
 }
 .other_works .item{
 width: 100%;
 margin-top: 0;
 }
 .other_works .item + .item{
 margin-top: 30px;
 }

 .we_works .cont{
 padding: 20px 10px;
 }
 .we_works .info .item{
 font-size: 18px;
 }

 .seo_scheme{
 padding: 20px 0;
 }
 .seo_scheme .item{
 width: 100%;
 }
 .seo_scheme .item + .item{
 margin-top: 40px;
 }
 .seo_scheme .item .icon{
 height: 204px;
 }

 .white_seo{
 padding: 20px 0;
 }
 .white_seo .img{
 display: none;
 }
 .white_seo .info{
 width: 100%;
 margin-bottom: 20px;
 }
 .white_seo .link a{
 display: block;

 width: 100%;
 padding: 10px;

 font-size: 16px;
 line-height: 20px;

 border-radius: 50px;
 }

 .success_stories .elem .query{
 width: 100%;
 }
 .success_stories .elem .query + .query{
 margin-top: 25px;
 }

 .where_clients .bottom{
 padding: 20px 0;
 }
 .where_clients .question,
 .where_clients .answer{
 display: none;
 }

 .importance{
 padding: 20px 0 0;
 }
 .importance .col + .col,
 .importance .col .item + .item{
 margin-top: 40px;
 }
 .importance .bottom{
 padding: 20px 0;
 }


 .smm_steps{
 padding: 20px 0;
 }
 .smm_steps .block_desc{
 padding: 0;

 font-size: 18px;
 }

 .smm_convert .cont{
 padding: 20px 10px;
 }

 .smm_convert .link a{
 width: 100%;
 padding: 9px;

 text-align: center;
 }

 .smm_services{
 padding: 20px 0;
 }
 .smm_services .item{
 width: 50%;
 padding: 10px 15px 20px;
 }
 .smm_services .item:nth-child(3n+1){
 clear: none;

 border-left: 1px dashed #fff;
 }
 .smm_services .item:nth-child(2n+1){
 clear: both;

 border-left: none;
 }

 .smm_services .item:nth-child(n+1):nth-child(-n+3){
 border-top: 1px dashed #fff;
 }
 .smm_services .item:nth-child(n+1):nth-child(-n+2){
 border-top: none;
 }

 .doubt.smm .info{
 float: none;

 width: 100%;
 margin-bottom: 30px;

 font-size: 20px;
 }
 .doubt form{
 float: none;

 margin: 0 auto;
 }

 .smm_ways .items .item{
 width: 100%;
 }
 .smm_ways .items .item + .item{
 margin-top: 50px;
 }

 .max_benefit .item{
 width: 100%;
 }

 .bottom_block .discount{
 float: none;

 margin: 20px auto 0;
 }


 .first_sec .teaser_info .items{
 width: 100%;
 }
 .first_sec .teaser_info .block_desc{
 width: 100%;

 font-size: 24px;
 line-height: 30px;
 }
 .first_sec .teaser_info .link{
 width: 100%;
 }


 .teaser_pluses .item{
 width: 100% !important;
 }
 .teaser_pluses .item .name div{
 display: block;

 height: auto;
 }


 .funnel .block_title{
 position: relative;
 left: 0;

 width: 100%;
 margin-bottom: 30px;

 text-align: center;
 }
 .funnel .img{
 display: none;
 }

 .experience .link a{
 display: block;

 width: 100%;
 padding: 10px;

 font-size: 18px;
 line-height: 20px;

 border-radius: 50px;
 }
 .about_teaser .top .item{
 width: 100%;
 }
 .about_teaser .top .item + .item{
 margin-top: 40px;
 }
 .about_teaser .top .item:nth-child(3):before,
 .about_teaser .top .item:nth-child(1):before{
 display: none;
 }

 .who_will_see .items{
 display: block;
 overflow: hidden;
 }
 .who_will_see .item{
 display: block;
 float: left;

 width: 50%;
 margin-bottom: 20px;
 }
 .who_will_see .items .item:nth-child(2n+1){
 clear: both;

 border-left: none;
 }


 .tarifs .item{
 width: 100%;
 }
 .tarifs .item .icon{
 height: auto;

 line-height: normal;
 }
 .tarifs .item + .item{
 margin-top: 20px;
 padding-top: 30px;

 border-top: 1px dashed #92bbdb;
 border-left: none;
 }

 .doubt .info{
 float: none;

 width: 100%;
 margin-bottom: 30px;

 font-size: 20px;
 }
 .tools .item .info .name{
 font-size: 18px;
 }

 .success_stories .before .icon,
 .success_stories .after .icon{
 line-height: 50px;
 }

 footer{
 padding: 15px 0;
 }
 footer .logo img{
 height: 80px;
 }
 footer .logo{
 width: 40%;
 }
 footer .col{
 width: 60%;
 min-height: 100%;
 }
 footer .links,
 footer .copyright{
 display: none;
 }

 section.prices .blocks1>div {
 width: 100%;
 border-left: none;
 }

 section.prices .blocks1>div p.name {
 min-height: auto;
 }

 section.prices .blocks2 .b1 {
 width: 100%;
 }

 section.prices .blocks2 .b2 {
 width: 100%;
 border-left: none;
 }

 section.prices .blocks3>div {
 width: 100%;
 display: none;
 }

 section.prices .blocks3>div:first-child {
 display: block;
 }

 .content_article_image_inner {
 float: none;
 margin: 0 0 20px 0;
 display: inline-block;
 font-size: 0;
 line-height: 0;
 }

 .content_article_image_inner img {
 float: none;
 }

 .articles .item {
 width: 100%;
 margin-bottom: 40px;
 padding: 0 !important;
 }
 
}
@media (max-width: 479px){
 header .logo a{
 padding: 2px 0 2px 90px;
 }

 .about .stats .item{
 width: 100%;
 }
 .about .stats .item + .item{
 margin-top: 20px;
 }

 .about .advantages .item{
 width: 100%;
 padding: 0 15px 15px;
 }
 .about .advantages .item + .item{
 margin-top: 20px;
 }

 .clients .item{
 width: 49%;
 }

 .tools .item .icon{
 width: 100%;
 }
 .tools .item .info{
 margin-top: 15px;
 margin-left: 0;
 padding-left: 0;
 }
 .tools .item .info .box{
 display: block;

 height: 100%;
 }

 .portfolio .items{
 margin-left: 0;
 }
 .portfolio .item{
 width: 100%;
 margin: 0 0 10px 0;
 }
 .portfolio .items .item:nth-child(n+4):nth-child(-n+9){
 
 }

 .team .text ul{
 max-width: 100%;
 }
 .team .text ul + ul{
 margin-top: -13px;
 margin-left: 0;
 }

 .ad_stats .item{
 float: left;

 width: 100%;
 }
 .ad_stats .item + .item{
 margin-top: 20px;
 }


 .room_block .item{
 margin: 0;
 }
 .room_block .item + .item{
 margin-top: 20px;
 }

 .permission .link a{
 display: block;

 width: 100%;
 padding: 10px;

 font-size: 16px;
 line-height: 20px;
 }

 .terminology .tabs li{
 font-size: 15px;
 }
 .terminology .tabs li a{
 height: 50px;
 }

 .terminology .tab_content .link a{
 display: block;

 width: 100%;
 padding: 10px;

 font-size: 18px;
 line-height: 20px;
 }

 .success_stories .elem .title{
 font-size: 16px;
 line-height: 22px;
 }
 .success_stories .before .line,
 .success_stories .after .line{
 font-size: 14px;
 }
 .success_stories .link a{
 display: block;

 width: 100%;
 padding: 10px;

 font-size: 16px;
 line-height: 20px;
 }

 .steps .items{
 padding: 0 !important;
 }
 .steps .items.bg3 .item{
 margin-bottom: 35px;
 }

 .steps .items.bg1 .item{
 min-height: 100px;
 margin-bottom: 25px;
 }
 .steps .item.result{
 margin-top: 15px;
 margin-bottom: 15px;
 }

 .bottom_block{
 padding-top: 20px;
 }

 .first_sec .context_info .bottom,
 .first_sec .context_info .banner{
 width: 100%;
 }

 .luck .item{
 padding-left: 110px;
 }
 .luck .item .icon{
 left: -45px;
 }

 .clients .link .discount,
 .terminology .bottom .link .discount{
 font-size: 15px;
 }

 .terminology .bottom .link a,
 .where_clients .bottom .link a,
 .importance .bottom .link a,
 .smm_convert .link a,
 .teaser_goals .link a,
 .about_teaser .bottom .link a,
 .max_benefit .link a{
 display: block;

 width: 100%;
 padding: 10px;

 font-size: 18px;
 line-height: 20px;

 border-radius: 50px;
 }

 .first_sec.bg6 .block_title div{
 font-size: 45px;
 line-height: 60px;
 }

 .smm_steps .items{
 margin-bottom: 0;
 }
 .smm_steps .item{
 width: 100%;
 margin: 0 0 25px;
 }

 .smm_services .item{
 width: 100%;

 border: none !important;
 }
 .smm_services .item + .item{
 border-top: 1px dashed #fff !important;
 }

 .who_will_see .item{
 width: 100%;
 }
 .who_will_see .item + .item{
 padding-top: 20px;

 border: none !important;
 border-top: 2px dotted #31668f !important;
 }

 .about_teaser .middle .items{
 height: auto;
 margin-bottom: -30px;

 text-align: left;
 }
 .about_teaser .middle .items:after{
 display: none;
 }
 .about_teaser .middle .items .item{
 width: 100%;
 margin-bottom: 20px;
 }

 .teaser_pluses,
 .funnel,
 .max_benefit,
 .about_teaser .top,
 .who_will_see,
 .teaser_goals,
 .tarifs{
 padding: 20px 0;
 }
 .experience > .cont{
 padding-top: 20px;
 }

 .teaser_goals .link{
 margin-top: 30px;
 }

 #popup {
 width: 100% !important;
 padding: 20px;
 }

 .articles .item .info {
 display: block;
 float: left;
 height: auto;
 padding-left: 0;
 padding-top: 15px;
 vertical-align: middle;
 width: 100%;
 }

}
