

/* Start:/local/templates/fingrad/youtube.css?17059755411083*/
.youtube {
    position: relative;
    // width: 100px;
    height: 100%;
    //padding-bottom: 56.25%;
}

.youtube__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube__button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: none;
    padding: 0;
    width: 68px;
    height: 48px;
    border: none;
    background-color: transparent;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.youtube__button-shape {
    fill: #212121;
    fill-opacity: 0.8;
}

.youtube__button-icon {
    fill: #ffffff;
}

.youtube__button:focus {
    outline: none;
}

.youtube:hover .youtube__button-shape,
.youtube__button:focus .youtube__button-shape {
    fill: #ff0000;
    fill-opacity: 1;
}

/* Enabled */

.youtube--enabled {
    cursor: pointer;
}

.youtube--enabled .youtube__button {
    display: block;
}
/* End */


/* Start:/local/templates/fingrad/libs/animate/animate.css?170597554174161*/
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

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

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

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

@-webkit-keyframes bounce {
	0%, 20%, 53%, 80%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-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-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transition-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-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transition-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 {
	0%, 20%, 53%, 80%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-webkit-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

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

	70% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		-webkit-transform: translate3d(0, -15px, 0);
		-ms-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}

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

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

@-webkit-keyframes flash {
	0%, 50%, 100% {
		opacity: 1;
	}

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

@keyframes flash {
	0%, 50%, 100% {
		opacity: 1;
	}

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

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

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

@-webkit-keyframes pulse {
	0% {
		-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);
	}

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

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

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

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

@-webkit-keyframes rubberBand {
	0% {
		-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);
	}

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

@keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

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

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

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

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		-ms-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1);
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		-ms-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

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

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

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

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

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

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

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

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

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

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

	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		-ms-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

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

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

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

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-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);
		-ms-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);
		-ms-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);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

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

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

	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceIn {
	0%, 20%, 40%, 60%, 80%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-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);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

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

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		-ms-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		-ms-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		-ms-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		-ms-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-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);
	}

	100% {
		-webkit-transform: none;
		transform: none;
	}
}

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

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		-ms-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}

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

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

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

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceInLeft {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-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);
	}

	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInLeft {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		-ms-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}

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

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

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

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceInRight {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-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);
	}

	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInRight {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		-ms-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}

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

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

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

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceInUp {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-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, -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);
	}

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

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

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		-ms-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}

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

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

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

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		-ms-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);
	}

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

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		-ms-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9);
	}

	50%, 55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		-ms-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

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

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

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

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

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		-ms-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		-ms-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		-ms-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);
	}

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

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

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		-ms-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);
	}

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

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

	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		-ms-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);
	}

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

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		-ms-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		-ms-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		-ms-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

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

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

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

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

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

	100% {
		opacity: 0;
	}
}

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

	100% {
		opacity: 0;
	}
}

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

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
	}

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

@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}

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

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

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}

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

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		-ms-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

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

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}

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

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}

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

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

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}

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

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		-ms-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

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

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
	}

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

@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}

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

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

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}

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

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		-ms-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

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

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
	}

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

@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}

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

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

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}

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

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		-ms-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

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

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) 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;
	}

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

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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;
	}

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

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

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

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

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

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

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

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

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

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		-ms-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);
		-ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	100% {
		-webkit-transform: perspective(400px);
		-ms-transform: perspective(400px);
		transform: perspective(400px);
	}
}

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

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-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-transition-timing-function: ease-in;
		transition-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);
	}

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

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

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

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		-ms-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);
		-ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}

	100% {
		-webkit-transform: perspective(400px);
		-ms-transform: perspective(400px);
		transform: perspective(400px);
	}
}

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

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

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

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

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		-ms-transform: perspective(400px);
		transform: perspective(400px);
	}

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

	100% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-ms-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-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	0% {
		-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;
	}

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

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		-ms-transform: perspective(400px);
		transform: perspective(400px);
	}

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

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

.flipOutY {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

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

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

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

	100% {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

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

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

	100% {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}

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

@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}

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

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

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

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

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

	100% {
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

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

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

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

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

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

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

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

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

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

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

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

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

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

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

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

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

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

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

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		-ms-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 {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

	100% {
		-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 {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

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

	100% {
		-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 {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

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

	100% {
		-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 {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

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

	100% {
		-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 {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

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

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

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

	100% {
		-webkit-transform: translate3d(0, 700px, 0);
		-ms-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

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

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

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

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

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

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
	}

	100% {
		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 {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		-ms-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 {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}

	50% {
		opacity: 1;
	}
}

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

	50% {
		opacity: 1;
	}
}

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

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(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 {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-ms-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);
		-ms-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 {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

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

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-ms-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);
		-ms-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 {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

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

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-ms-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);
		-ms-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 {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(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 {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-ms-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);
		-ms-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 {
	0% {
		opacity: 1;
	}

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

	100% {
		opacity: 0;
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1;
	}

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

	100% {
		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);
	}

	100% {
		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);
		-ms-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);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		-ms-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);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		-ms-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		-ms-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);
	}

	100% {
		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);
		-ms-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		-ms-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		-ms-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);
	}

	100% {
		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);
		-ms-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);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		-ms-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 {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

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

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

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

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

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

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

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

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		visibility: visible;
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

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

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
	}
}

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

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

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

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
}

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

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

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

/* End */


/* Start:/local/templates/fingrad/libs/owl-carousel/owl.carousel.css?17059755413635*/
.owl-carousel .animated{-webkit-animation-duration:1000ms;animation-duration:1000ms;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{-webkit-transition:height 500ms ease-in-out;-moz-transition:height 500ms ease-in-out;-ms-transition:height 500ms ease-in-out;-o-transition:height 500ms ease-in-out;transition:height 500ms ease-in-out}.owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0px,0px,0px)}.owl-carousel .owl-controls .owl-nav .owl-prev,.owl-carousel .owl-controls .owl-nav .owl-next,.owl-carousel .owl-controls .owl-dot{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loaded{display:block}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel .owl-refresh .owl-item{display:none}.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel.owl-text-select-on .owl-item{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.owl-carousel .owl-grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block}.owl-carousel .owl-item .owl-lazy{opacity:0;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}.owl-carousel .owl-item img{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url("/local/templates/fingrad/libs/owl-carousel/owl.video.play.png")no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;-webkit-transition:scale 100ms ease;-moz-transition:scale 100ms ease;-ms-transition:scale 100ms ease;-o-transition:scale 100ms ease;transition:scale 100ms ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transition:scale(1.3,1.3);-moz-transition:scale(1.3,1.3);-ms-transition:scale(1.3,1.3);-o-transition:scale(1.3,1.3);transition:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-tn,.owl-carousel .owl-video-playing .owl-video-play-icon{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;-moz-background-size:contain;-o-background-size:contain;background-size:contain;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}.owl-carousel .owl-video-frame{position:relative;z-index:1}
/* End */


/* Start:/local/templates/fingrad/libs/magnific-popup/magnific-popup.css?17059755415256*/
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:0.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:0.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:0.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:0.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and(max-width:800px)and(orientation:landscape),screen and(max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and(max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}
/* End */


/* Start:/local/templates/fingrad/fonts/font-awesome/css/font-awesome.min.css?170597554028594*/
@font-face{font-family:'FontAwesome';src:url('/local/templates/fingrad/fonts/font-awesome/css/../fonts/fontawesome-webfont.eot?v=4.6.1');src:url('/local/templates/fingrad/fonts/font-awesome/css/../fonts/fontawesome-webfont.eot?#iefix&v=4.6.1') format('embedded-opentype'),url('/local/templates/fingrad/fonts/font-awesome/css/../fonts/fontawesome-webfont.woff2?v=4.6.1') format('woff2'),url('/local/templates/fingrad/fonts/font-awesome/css/../fonts/fontawesome-webfont.woff?v=4.6.1') format('woff'),url('/local/templates/fingrad/fonts/font-awesome/css/../fonts/fontawesome-webfont.ttf?v=4.6.1') format('truetype'),url('/local/templates/fingrad/fonts/font-awesome/css/../fonts/fontawesome-webfont.svg?v=4.6.1#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

/* End */


/* Start:/local/templates/fingrad/css/main.css?170597554086140*/
@charset "UTF-8";

@font-face {
  font-display: swap;
  font-family: "GeometriaRegular";
  font-style: normal;
  font-weight: normal;
  src: url("/local/templates/fingrad/css/../fonts/GeometriaRegular/GeometriaRegular.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/GeometriaRegular/GeometriaRegular.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/GeometriaRegular/GeometriaRegular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "GeometriaMedium";
  font-style: normal;
  font-weight: normal;
  src: url("/local/templates/fingrad/css/../fonts/GeometriaMedium/GeometriaMedium.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/GeometriaMedium/GeometriaMedium.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/GeometriaMedium/GeometriaMedium.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "GeometriaLight";
  font-style: normal;
  font-weight: normal;
  src: url("/local/templates/fingrad/css/../fonts/GeometriaLight/GeometriaLight.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/GeometriaLight/GeometriaLight.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/GeometriaLight/GeometriaLight.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "GeometriaBold";
  font-style: normal;
  font-weight: normal;
  src: url("/local/templates/fingrad/css/../fonts/GeometriaBold/GeometriaBold.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/GeometriaBold/GeometriaBold.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/GeometriaBold/GeometriaBold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "GeometriaItalic";
  font-style: normal;
  font-weight: normal;
  src: url("/local/templates/fingrad/css/../fonts/GeometriaItalic/GeometriaItalic.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/GeometriaItalic/GeometriaItalic.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/GeometriaItalic/GeometriaItalic.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "GeometriaExtraLight";
  font-style: normal;
  font-weight: normal;
  src: url("/local/templates/fingrad/css/../fonts/GeometriaExtraLight/GeometriaExtraLight.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/GeometriaExtraLight/GeometriaExtraLight.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/GeometriaExtraLight/GeometriaExtraLight.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "GeometriaBoldItalic";
  font-style: normal;
  font-weight: normal;
  src: url("/local/templates/fingrad/css/../fonts/GeometriaBoldItalic/GeometriaBoldItalic.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/GeometriaBoldItalic/GeometriaBoldItalic.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/GeometriaBoldItalic/GeometriaBoldItalic.ttf") format("truetype");
}





@font-face {
  font-display: swap;
  font-family: "Bliss Pro";
  font-style: normal;
  font-weight: 400;
  src: url("/local/templates/fingrad/css/../fonts/BlissPro.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/BlissPro.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/BlissPro.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Bliss Pro";
  font-style: normal;
  font-weight: 500;
  src: url("/local/templates/fingrad/css/../fonts/BlissPro-Medium.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/BlissPro-Medium.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/BlissPro-Medium.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Bliss Pro";
  font-style: normal;
  font-weight: 300;
  src: url("/local/templates/fingrad/css/../fonts/BlissPro-Light.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/BlissPro-Light.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/BlissPro-Light.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Bliss Pro";
  font-style: normal;
  font-weight: 700;
  src: url("/local/templates/fingrad/css/../fonts/BlissPro-Bold.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/BlissPro-Bold.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/BlissPro-Bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Bliss Pro";
  font-style: normal;
  font-weight: 900;
  src: url("/local/templates/fingrad/css/../fonts/BlissPro-Heavy.eot?#iefix") format("embedded-opentype"), url("/local/templates/fingrad/css/../fonts/BlissPro-Heavy.woff") format("woff"), url("/local/templates/fingrad/css/../fonts/BlissPro-Heavy.ttf") format("truetype");
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  text-transform: none;
}

select {
  text-transform: none;
}

button, html input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "GeometriaRegular", sans-serif;
  font-weight: normal;
  font-size: 15px;
  min-width: 980px;
  position: relative;
  line-height: 1.5;
  -webkit-font-smoothing: antialised;
  overflow-x: hidden;
  color: #000;
}

html.js .loader {
  background: none repeat scroll 0 0 #ffffff;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

html.js .loader .loader_inner {
  background-image: url("/local/templates/fingrad/css/../img/preloader.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  height: 60px;
  width: 60px;
  margin-top: -30px;
  margin-left: -30px;
  left: 50%;
  top: 50%;
  position: absolute;
}

.hidden {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "GeometriaBold", sans-serif;
  font-weight: normal;
  text-transform: none;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 15px;
}

.button, .button-prod {
  display: inline-block;
  font-family: "GeometriaBold", sans-serif;
  font-size: 15px;
  border: none;
  text-align: center;
  text-decoration: none;
  transition: all .15s ease-in-out;
  cursor: pointer;
  color: white;
  padding: 5px 11px 6px 11px;
  outline: none !important;
  background-color: #057FBE;
  border-radius: 3px;
}

.button:hover, .button-prod:hover {
  background-color: #0690d7;
}

.button:focus, .button-prod:focus {
  background-color: #046ea5;
}

.list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-block .list li {
  margin-bottom: 8px;
  line-height: 18px;
}

.clr {
  clear: both;
}

.clearfix::after {
  content: ".";
  visibility: hidden;
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
}

input[type='text']::-ms-clear,
input[type='text']::-ms-reveal {
  width: 0;
  height: 0;
  display: none;
}

input[type='tel']::-ms-clear,
input[type='tel']::-ms-reveal {
  width: 0;
  height: 0;
  display: none;
}

ol {
  list-style: decimal;
}

ol li {
  list-style: decimal;
}

a {
  outline: none !important;
  color: #057FBE;
  text-decoration: none;
}

.container {
  width: 980px;
  margin: auto;
  padding-right: 10px;
  padding-left: 10px;
}

.container::after {
  content: ".";
  visibility: hidden;
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
}

.wrapper {
  position: relative;
}

.col-2 {
  width: 50%;
  float: left;
}

.col-3 {
  float: left;
  width: 33.333%;
}

.col-4 {
  width: 25%;
  float: left;
}

.col-2-1 {
  width: 66.666%;
  float: left;
}

.main-head {
  position: relative;
}

.main-head .top-line {
  width: 100%;
  padding: 30px 0 20px;
  height: 115px;
}

.main-head .top-line .top-form {
  text-align: right;
  padding: 5px 0;
}

.main-head .top-line .top-form .button {
  float: right;
}

.main-head .top-line .top-form .tel-input {
  height: 33px;
  outline: none !important;
  box-shadow: none;
  border: 1px solid #B0B0B0;
  border-radius: 5px 0 0 5px;
  color: #949494;
  padding: 0px 8px;
  visibility: hidden;
  width: 0;
  opacity: 0;
  transition: all .35s ease;
  z-index: 3;
  margin-right: -2px;
}

.main-head .top-line .logo {
  display: inline-block;
  width: 194px;
  height: 59px;
}

.main-head .top-line .logo img {
  max-width: 100%;
  height: auto;
}

.main-head .top-line .phone {
  text-align: right;
  margin-top: 18px;
  line-height: 1.3;
}

.main-head .top-line .phone a {
  display: inline-block;
  text-transform: uppercase;
  color: #3c404c;
  font-family: "GeometriaMedium", sans-serif;
  font-size: 32px;
}

.header-nav {
  height: 50px;
  background-color: #008C68;
  width: 100%;
}

.header-nav ul>li {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

.header-nav ul>li:last-child {
  margin-right: 0;
}

.header-nav ul>li.active>a {
  border-bottom: 8px solid #E9BA00;
}

.header-nav ul>li:hover>ul {
  display: block;
}

.header-nav ul>li a {
  height: 50px;
  border-bottom: 8px solid transparent;
  line-height: 50px;
  display: block;
  color: #fff;
  font-size: 19px;
  font-family: "GeometriaMedium", sans-serif;
}

.header-nav ul>li a:hover, .header-nav ul>li a:visited, .header-nav ul>li a:active, .header-nav ul>li a:link {
  text-decoration: none;
}

.header-nav ul>li a:hover {
  border-bottom: 8px solid #E9BA00;
}

.header-nav ul>li>ul {
  position: absolute;
  display: none;
  /*bottom: -100px;*/
  z-index: 100;
  padding: 0;
  margin: 0;
  left: 0;
}

.header-nav ul>li>ul li {
  white-space: nowrap;
  margin-right: 0;
  width: 100%;
}

.header-nav ul>li>ul li a {
  padding: 0 15px;
  background-color: rgba(0, 140, 104, 0.9);
}

.header-nav ul>li>ul li a:hover {
  background-color: #E9BA00;
}

.header-nav ul>li>ul li.active>a {
  border-bottom: 0;
}

.slider-wrap {
  position: relative;
  background-color: #eeeeee;
  overflow: hidden;
  height: 435px !important;
  /*display: none;*/
}

.home_slider {
  height: 400px !important;
}

.slider-wrap .slider-caption {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 45px;
}

.slider-wrap .slider-caption h1 {
  font-size: 38px;
  margin: 0;
  max-width: 430px;
  position: relative;
  transition: all 1s ease;
  transition-delay: .15s;
  line-height: 48px;
  font-family: "GeometriaBold", sans-serif;
  margin-bottom: 70px;
}


.slider-wrap .slider-caption h1:first-line {
  font-family: "GeometriaLight", sans-serif;
}

.slider-wrap .slider-caption .descr {
  font-size: 23px;
  font-family: "GeometriaBold", sans-serif;
  line-height: 28px;
  position: relative;
  transition: all 1.5s ease;
  transition-delay: .15s;
}

.slider-wrap .slider {
  top: 0;
  width: 100%;
  overflow-x: hidden;
}

.slider-wrap .slider .owl-item {
  transition: all .25s ease;
}

.slider-wrap .slide {
  position: relative;
  height: 400px;
}

.slider-wrap .slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #EEEEEE;
}

.slider-wrap .slide .slide-content {
  z-index: 1;
  position: relative;
}

.slider-wrap .slide .caption {
  padding-top: 45px;
  position: relative;
}

.slider-wrap .slide .caption .client-info {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 165px;
}

.slider-wrap .slide .caption .client-info .client-name {
  font-family: "GeometriaBold", sans-serif;
  color: #008C68;
  font-size: 17px;
  line-height: 17px;
  margin-bottom: 5px;
}

.slider-wrap .slide .caption .client-info p {
  font-size: 13px;
  line-height: 17px;
  font-family: "GeometriaItalic", sans-serif;
  color: #000;
  margin: 0;
  margin-bottom: 10px;
}

/* CB Slider Styles */

.slider-wrap#slider__cb {
  background-size: cover;
}

.slider-wrap #banner__cb-h1 {
  font-size: 44px;
  font-weight: 800;
  max-width: 830px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.slider-wrap #banner__cb-h1,
.slider-wrap #banner__cb-h1:first-line {
  font-family: "GeometriaBold", sans-serif;
}

.slider-wrap #banner__cb-h1:before {
  content: '';
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
  width: 53px;
  height: 4px;
  background-color: #000;
}

.slider-wrap #banner__cb-descr {
  font-size: 24px;
  font-family: "GeometriaRegular", sans-serif;
  line-height: 34px;
}

#banner__cb-button {
  color: white;
  background: #069e2d;
  padding: 5px 40px;
  font-size: 20px;
  letter-spacing: 1.2px;
  font-family: "GeometriaRegular", Arial;
  text-decoration: none;
  margin-top: 24px;
  display: inline-block;
  vertical-align: middle;
}

#banner__cb-button:hover {
  background: #088829;
}

/* CB Slider Styles End */

.slider .owl-controls .owl-dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 7px;
  left: 0;
}

.slider .owl-controls .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  margin-right: 10px;
  border: 2px solid #057FBE;
}

.slider .owl-controls .owl-dots .owl-dot.active {
  background-color: #057FBE;
}

.head-arrow {
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 60px;
  margin-left: -30px;
  height: 60px;
  background-color: #E9BA00;
  border-radius: 10em;
  z-index: 10;
  cursor: pointer;
  text-align: center;
  background-image: url(/local/templates/fingrad/css/../img/arrow.png);
  background-position: center 10px;
  background-repeat: no-repeat;
}

.submit-form {
  margin-top: 30px;
  overflow: hidden;
  width: 965px;
}

.submit-form .tel-input {
  outline: none !important;
  box-shadow: none;
  background-color: white;
  color: #949494;
  border: 1px solid #B0B0B0;
  height: 58px;
  font-size: 23px;
  padding: 0 25px;
  border-radius: 5px 0 0 5px;
  border-right: none;
  float: left;
  width: 305px;
}

.submit-form .submit-button {
  height: 58px;
  background-color: #057FBE;
  width: 330px;
  text-align: center;
  color: #fff;
  font-size: 23px;
  border: none;
  border-radius: 0px 5px 5px 0;
  outline: none !important;
  font-family: "GeometriaBold", sans-serif;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
  vertical-align: middle;
}

.submit-form .submit-button::before {
  content: '';
  width: 30px;
  height: 58px;
  transform-origin: 100% 50%;
  background-color: #0192db;
  z-index: -1;
  /*  transform: scale3d(1, 2, 1);
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);*/
  margin: -15px 0 0 0px;
  position: absolute;
  top: 50%;
  left: 100%;
  border-radius: 50%;
}

.submit-form .submit-button:hover::before {
  transform: scale3d(12, 12, 1);
}

.submit-form .privacy-container {
  text-align: right;
  margin-right: 15px;
  margin-top: 2px;
}

.submit-form .privacy-check-label {
  display: inline-block;
  width: 320px;
  vertical-align: middle;
  font-size: 13px;
}

.submit-form .privacy-check-label input {
  vertical-align: middle;
  display: inline-block;
}

.s-sect {
  position: relative;
  padding: 55px 0 70px;
}

.s-sect h2 {
  text-align: center;
  margin-top: 0;
}

.white-sect {
  background-color: white;
}

.gray-sect {
  background-color: #EEEEEE;
}

.solutions {
  padding-bottom: 0px;
}

.solutions h2 {
  margin-bottom: 120px;
}

.sol-item {
  text-align: center;
  padding: 0 10px;
  margin-bottom: 120px;
  /*  transition: all .5s ease;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  transform: translateY(-30px);
  opacity: 0;*/
}

/*.sol-item.on {
  opacity: 1;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  transform: translateY(0);
}*/

.sol-item:hover .hover-circle {
  visibility: visible;
  opacity: .7;
}

.sol-item .img-wrap {
  display: block;
  position: relative;
}

.sol-item .img-wrap img {
  position: relative;
  max-width: 130px;
  max-height: 100px;
  z-index: 3;
}

.sol-item .hover-circle {
  background-color: #E9BA00;
  top: 46px;
  right: 80px;
  cursor: pointer;
  /*z-index: -1;*/
}

.sol-item h3 {
  margin: 5px 0 0 0;
  font-family: "GeometriaRegular", sans-serif;
  font-size: 23px;
}

.sol-item h3 a {
  color: #000;
  transition: all .25s ease;
  display: inline-block;
}

.sol-item h3 a:hover {
  color: #057FBE;
}

.hover-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  visibility: hidden;
  border-radius: 50%;
  opacity: 0;
  transition: all .35s ease;
}

.hover-circle.yellow {
  background-color: #E9BA00;
}

.hover-circle.blue {
  background-color: #057FBE;
}

.hover-circle.green {
  background-color: #008C68;
}

.hover-circle.orange {
  background-color: #fd7800;
}

.reports h2 {
  margin-bottom: 60px;
}

.reports .report-item {
  padding: 0 15px;
  text-align: center;
  margin-bottom: 40px;
}

.reports .report-item:hover .img-container.yellow::after, .reports .report-item:hover .img-container.blue::after, .reports .report-item:hover .img-container.green::after {
  bottom: 0px;
  height: 100%;
}

.reports .report-item .img-container {
  overflow: hidden;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 38px;
  transition: all .25s ease;
}

.reports .report-item .img-container.yellow::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E9BA00;
  opacity: .7;
  border-radius: 50%;
}

.reports .report-item .img-container.yellow::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 0;
  right: 0;
  z-index: 5;
  bottom: 100%;
  background-color: #E9BA00;
  transition: all .4s ease;
  border-radius: 50%;
  background-image: url(/local/templates/fingrad/css/../img/reports/icon1.png);
  background-repeat: no-repeat;
  background-position: center 60px;
}

.reports .report-item .img-container.blue::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #057FBE;
  opacity: .7;
  border-radius: 50%;
}

.reports .report-item .img-container.blue::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 0;
  right: 0;
  z-index: 5;
  bottom: 100%;
  background-color: #057FBE;
  transition: all .4s ease;
  border-radius: 50%;
  background-image: url(/local/templates/fingrad/css/../img/reports/icon3.png);
  background-repeat: no-repeat;
  background-position: center 60px;
}

.reports .report-item .img-container.green::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #008C68;
  opacity: .7;
  border-radius: 50%;
}

.reports .report-item .img-container.green::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 0;
  right: 0;
  z-index: 5;
  bottom: 100%;
  background-color: #008C68;
  transition: all .4s ease;
  border-radius: 50%;
  background-image: url(/local/templates/fingrad/css/../img/reports/icon2.png);
  background-repeat: no-repeat;
  background-position: center 60px;
}

.reports .report-item .img-container a {
  display: block;
}

.reports .report-item .img-container img {
  max-width: 100%;
  vertical-align: middle;
}

.reports .report-item .img-container .text {
  color: #fff;
  display: inline-block;
  font-size: 33px;
  font-family: "GeometriaBold", sans-serif;
  position: absolute;
  bottom: 50px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  z-index: 10;
}

.reports .report-item .report-descr {
  font-size: 18px;
  line-height: 23px;
}

.s-scope h2 {
  margin-bottom: 46px;
}

.s-scope .submit-form {
  margin: 42px auto 0px auto;
}

.s-scope-wrap .col-2:nth-child(odd) .scope-item {
  margin-right: 30px;
}

.s-scope-wrap .col-2:nth-child(3n+3) {
  clear: both;
}

.scope-item {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  padding: 0 10px;
}

.scope-item:hover .hover-circle {
  opacity: .7;
  visibility: visible;
}

.scope-item .img-wrap {
  display: block;
  position: relative;
}

.scope-item .img-wrap img {
  max-width: 100px;
  max-height: 90px;
}

.scope-item .img-wrap .hover-circle {
  top: 32px;
  left: 50%;
  z-index: -1;
}

.scope-item h4 {
  margin-top: 5px;
  margin-bottom: 3px;
}

.scope-item h4 a {
  color: #000;
}

.scope-item p {
  margin: 0;
  line-height: 23px;
  color: #3c404c;
  font-size: 18px;
  max-width: 350px;
  display: inline-block;
}

.video-section {
  position: relative;
  padding: 0;
}

.video-section h2 {
  text-align: center;
  color: #fff;
  z-index: 10;
  padding-top: 40px;
}

.video-section .video-bg {
  height: 785px;
  position: relative;
  background-image: url(/local/templates/fingrad/css/../img/video.min.jpg);
  background-position: center;
  width: 100%;
}

.video-section .video-bg .notebook-display {
  z-index: 1;
  position: absolute;
  top: 206px;
  left: 50%;
  margin-left: -340px;
  width: 690px;
  height: 388px;
}

.video-section #vidpause {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: .7;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  transition: all .3s ease;
  background-position: center;
  background-image: url(/local/templates/fingrad/css/../img/play.png);
  background-repeat: no-repeat;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
}

.video-section #vidpause.stop {
  background-image: url(/local/templates/fingrad/css/../img/pause.png);
}

.video-section #vidpause:hover {
  opacity: 1;
}

.video-section .stopfade {
  opacity: .5;
}

.partners {
  padding: 70px 0 50px 0;
}

.partners h2 {
  margin-bottom: 35px;
}

.partners-carousel-wrap {
  position: relative;
}

.partners-carousel-wrap .partners-nav-cont {
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}

.partners-carousel-wrap .partners-nav-cont .partners-nav>div {
  position: absolute;
  height: 80px;
  width: 42px;
  display: block;
  background-repeat: no-repeat;
  top: 7px;
  cursor: pointer;
}

.partners-carousel-wrap .partners-nav-cont .partners-nav .next {
  right: -65px;
  background-image: url(/local/templates/fingrad/css/../img/next.png);
}

.partners-carousel-wrap .partners-nav-cont .partners-nav .prev {
  left: -65px;
  background-image: url(/local/templates/fingrad/css/../img/prev.png);
}

.partners-carousel {
  position: relative;
}

.partners-carousel .partner a {
  display: block;
  text-align: center;
}

.partners-carousel .partner a img {
  max-width: 90%;
  display: inline-block;
}

.main-footer {
  position: relative;
  background-color: #353A45;
  width: 100%;
  padding: 40px 0 50px;
  color: #fff;
}

.main-footer .footer-top {
  margin-bottom: 20px;
}

.main-footer .footer-block h6 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 21px;
}

.main-footer .footer-block ul li a {
  font-size: 15px;
  color: #fff;
  transition: all .25s ease;
}

.main-footer .footer-block ul li a:hover {
  text-decoration: underline;
}

.main-footer .footer-info .address {
  margin: 0;
  font-size: 13px;
}

.main-footer .footer-info .foot-tel {
  color: #fff;
  font-size: 22px;
  font-family: "GeometriaMedium", sans-serif;
}

.main-footer .footer-info .foot-mail {
  font-size: 22px;
  color: #fff;
  display: block;
  margin-top: 12px;
  font-weight: bold;
}

.main-footer .footer-copy {
  opacity: .7;
  height: 100%;
  position: relative;
  display: table-cell;
  height: 80px;
}

.main-footer .footer-copy p {
  margin: 0;
  display: inline-block;
  font-size: 14px;
}

.main-footer .footer-copy .footer__copy-text {
  margin-top: 10px;
}

.is-page h1 {
  margin: 0;
  font-size: 91px;
  font-family: "GeometriaExtraLight", sans-serif;
  padding-top: 100px;
}

.header-page {
  height: 425px;
  width: 100%;
  position: relative;
  background-size: 100%;
  /* 425px;*/
  background-repeat: no-repeat;
}

.header-page-client .slide {
  height: 435px;
}

.header-page-client .slide .slide-bg {
  background-size: cover;
}

.header-page-client .slide .caption {
  padding: 90px 0 30px 0;
  max-width: 420px;
}

.header-page-client .slide .caption blockquote {
  margin: 0;
  margin-bottom: 25px;
  font-size: 19px;
  line-height: 23px;
}

.header-page-client .slide .caption blockquote footer {
  font-size: 15px;
  position: relative;
}

.header-page-client .slide .caption blockquote footer mark {
  padding: 3px 0;
  display: inline-block;
  font-family: "GeometriaBoldItalic", sans-serif;
}

.header-page-client .slide .caption mark {
  background-color: #FFF;
}

.header-page-product h1 {
  line-height: 66px;
  font-size: 68px;
  margin-bottom: 15px;
  padding-top: 70px;
}

.header-page-product .descr {
  font-family: "GeometriaBold", sans-serif;
  font-size: 23px;
  max-width: 630px;
  line-height: 1.25;
}

.s-cont {
  position: relative;
  padding: 63px 0 80px 0;
}

.blog-content .blog-row {
  margin-bottom: 40px;
}

.blog-content .load-more {
  margin-top: 60px;
}

.load-more {
  display: block;
  /*  width: 100%;
  color: #fff;
  outline: none !important;
  text-align: center;
  font-size: 24px;
  font-family: "GeometriaBold", sans-serif;
  background-color: #057FBE;
  border-radius: 5px;
  transition: all .25s ease;
  padding: 10px 0;*/
}

.load-more:hover {
  background-color: #0690d7;
}

.load-more:focus {
  background-color: #046ea5;
}

/*.blog-item:hover .img-wrap img {
  -webkit-filter: url(/local/templates/fingrad/css/../img/filters_clean.svg#gray);
  -o-webkit-filter: url(/local/templates/fingrad/css/../img/filters_clean.svg#gray);
  filter: url(/local/templates/fingrad/css/../img/filters_clean.svg#gray);
}*/

.blog-item .img-wrap {
  margin-bottom: 25px;
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  transition: all .25s ease;
}

.blog-item .img-wrap a {
  display: block;
}

.blog-item .img-wrap img {
  max-width: 100%;
  transition: all .25s ease;
}

.blog-item .title {
  line-height: 23px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.blog-item .title a {
  color: #000;
  transition: all .25s ease;
}

.blog-item .title a:hover {
  color: #057FBE;
}

.blog-item p {
  margin: 0;
}

.blog-item .excerpt {
  line-height: 21px;
}

.blog-item .readmore {
  display: inline-block;
  font-family: "GeometriaBold", sans-serif;
  transition: all .25s ease;
}

.blog-item .readmore:hover {
  color: #3c404c;
}

.navigation {
  padding: 20px 0px;
}

.navigation .col-3:nth-child(2) {
  text-align: center;
}

.navigation .col-3:nth-child(3) {
  text-align: right;
}

.navigation a {
  color: #0580be;
  font-size: 13px;
  display: inline-block;
}

.navigation a:hover {
  color: #3c404c;
}

.navigation strong {
  display: block;
}

article {
  padding-bottom: 8px;
}

article .art-date {
  font-size: 13px;
}

article strong {
  font-size: 17px;
  font-family: "GeometriaBold", sans-serif;
  font-weight: normal;
}

article iframe {
  width: 100%;
}

article blockquote {
  font-size: 23px;
  font-family: "GeometriaBold", sans-serif;
  line-height: 29px;
  border-left: 8px solid #008C68;
  padding-left: 25px;
  margin-left: 0;
}

article .img-descr {
  font-size: 13px;
}

article .brand img {
  max-width: 200px;
}

article .brand p {
  font-size: 15px;
  font-family: "GeometriaItalic", sans-serif;
}

article h1 {
  font-family: "GeometriaMedium", sans-serif;
  font-size: 30px;
  line-height: 35px;
  margin-top: 10px;
  margin-bottom: 17px;
}

article h2 {
  font-family: "GeometriaMedium", sans-serif;
  font-size: 25px;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 17px;
}

article h3 {
  font-family: "GeometriaMedium", sans-serif;
  font-size: 20px;
  line-height: 25px;
  margin-top: 10px;
  margin-bottom: 17px;
}

article h5 {
  margin-bottom: 10px;
}

article p {
  font-size: 17px;
  line-height: 22px;
  margin: 16px 0;
}

article p.descr {
  font-size: 15px;
  font-family: "GeometriaItalic", sans-serif;
}

article img {
  max-width: 100%;
  height: auto;
}

article img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
}

article img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
}

article img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

article img.alignleft, article img.alignright, article img.aligncenter {
  margin-bottom: 10px;
}

.article-container {
  width: 700px;
  margin: auto;
}

.article-container__iframe {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  margin-top: 40px;
}

.article-container__iframe iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.client-content {
  padding: 60px 0 80px;
}

.client-content .client-row {
  margin-bottom: 30px;
}

.client-content .client-row .col-3:nth-child(1) .client-item {
  margin-right: 20px;
}

.client-content .client-row .col-3:nth-child(2) .client-item {
  margin-right: 10px;
  margin-left: 10px;
}

.client-content .client-row .col-3:nth-child(3) .client-item {
  margin-left: 20px;
}

.client-item {
  position: relative;
  border: #DCDCDC 1px solid;
  padding: 20px 20px 15px 20px;
  min-height: 225px;
}

.client-item .client-logo {
  height: 75px;
  margin-bottom: 10px;
  vertical-align: top;
}

.client-item .client-logo a {
  display: block;
}

.client-item .client-logo a img {
  display: inline;
  max-width: 100%;
  height: auto;
}

.client-item .client-meta {
  margin-bottom: 15px;
}

.client-item .readmore {
  font-family: "GeometriaBold", sans-serif;
  display: inline-block;
  transition: all .25s ease;
}

.client-item .readmore:hover {
  color: #3c404c;
}

.hide-footer {
  display: none;
}

.info-block {
  background-color: #f1f1f1;
  padding: 10px 10px 10px 20px;
  box-sizing: border-box;
}

.blog-form {
  position: relative;
  text-align: center;
  margin: 30px 0;
  font-size: 0;
}

.blog-form .button {
  padding: 10px 40px;
}

.blog-form .button-prod {
  padding: 10px 25px;
}

.blog-form .tel-input, .blog-form .tel-input.product {
  display: inline-block;
  height: 40px;
  outline: none !important;
  box-shadow: none;
  border: 1px solid #B0B0B0;
  border-radius: 5px 0 0 5px;
  color: #949494;
  font-size: 15px;
  padding: 0px 8px;
  z-index: 3;
}

.blog-form .tel-input.product {
  width: 200px;
  opacity: 1;
  visibility: visible;
}

.blog-form .privacy-container {
  margin-right: 24px;
  margin-top: 2px;
}

.blog-form input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
}

.blog-form .privacy-check-label {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  font-size: 13px;
  text-align: left;
}

.manual-content .container .col-2:first-child .manual-block {
  padding-right: 25px;
}

.manual-block {
  margin-bottom: 30px;
}

.manual-block h4 {
  margin-top: 0;
  margin-bottom: 5px;
}

.manual-block .ml-item .question {
  color: #008C68;
  font-size: 15px;
  font-family: "GeometriaBold", sans-serif;
  transition: all .25s ease;
  line-height: 23px;
  cursor: pointer;
}

.manual-block .ml-item .question.active {
  color: #057FBE;
}

.manual-block .ml-item .question.active .fa::before {
  content: "\f106";
}

.manual-block .ml-item .question:hover {
  color: #057FBE;
}

.manual-block .ml-item .question .fa {
  display: inline-block;
  margin-right: 8px;
  font-size: 20px;
  position: relative;
  top: 2px;
}

.manual-block .ml-item .question .fa::before {
  content: "\f107";
}

.manual-block .ml-item .answer {
  padding: 10px 0 10px 22px;
}

.manual-block .ml-item .answer p {
  margin: 5px 0;
  line-height: 19px;
}

.manual-block .ml-item .answer ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: none;
}

.manual-block .ml-item .answer ul li {
  padding-left: 1em;
  text-indent: -0.7em;
  line-height: 19px;
}

.manual-block .ml-item .answer ul li::before {
  content: "• ";
  position: relative;
  left: -6px;
}

.contact-content {
  padding: 63px 0 90px 0;
}

.contact-content .container .contact-row:first-child {
  margin-bottom: 50px;
}

.contact-content .contact-r {
  padding-left: 28px;
}

.contact-row::after {
  content: '';
  display: table;
  clear: both;
}

#map {
  position: relative;
  height: 410px;
  width: 620px;
}

.contact-info {
  margin-bottom: 51px;
}

.contact-info h4 {
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 1.2;
}

.contact-info .social {
  display: block;
  width: 100%;
  float: left;
  margin-top: 30px;
}

.contact-info .social a {
  display: inline-block;
  float: left;
  width: 48px;
  height: 48px;
  margin-right: 13px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all .3s;
}

.contact-info .social a:hover {
  opacity: .8;
}

.contact-info>p {
  margin: 0;
  line-height: 21px;
}

.contact-info .cont-email a {
  transition: all .3s ease;
}

.contact-info .cont-email a:hover {
  color: #008C68;
}

.contact-item h4 {
  margin-top: 0;
  margin-bottom: 15px;
  padding-top: 20px;
  line-height: 20px;
}

.contact-item p {
  margin: 0;
  line-height: 20px;
}

.contact-item .contact-item-row {
  display: table-row;
}

.contact-item .contact-item-photo,
.contact-item .contact-item-cont {
  display: table-cell;
}

.contact-item .contact-item-photo {
  vertical-align: middle;
  padding-right: 20px;
}

.contact-item .contact-item-cont {
  vertical-align: top;
  padding-top: 14px;
}

.contact-item .contact-item-photo .img-wrap {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  background-color: #ccc;
}

.contact-item .contact-item-photo .img-wrap img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.contact-item .contact-item-cont .contact-item-name {
  font-family: "GeometriaBold", sans-serif;
  margin: 0;
  line-height: 20px;
}

.contact-item .contact-item-cont .contact-item-email {
  transition: all .3s ease;
}

.contact-item .contact-item-cont .contact-item-email:hover {
  color: #008C68;
}

.contact-row-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.contact-row-item .col-3:nth-child(2) .contact-item {
  padding-left: 16px;
}

.contact-row-item .col-3:nth-child(3) .contact-item {
  padding-left: 17px;
}

.methodology-content {
  padding: 63px 0 8px 0;
}

.methodology-content .blog-row {
  margin-bottom: 62px;
}

.header-page .header-page-caption {
  color: white;
  /*max-width: 390px;*/
  max-width: 500px;
}

.header-page .header-page-caption h1 {
  font-size: 37px;
  font-family: "GeometriaBold", sans-serif;
  line-height: 40px;
  padding-top: 40px;
  margin-bottom: 20px;
}

.header-page .header-page-caption h1 span {
  display: block;
  font-family: "GeometriaExtraLight", sans-serif;
}

.header-page .header-page-caption .time-web {
  line-height: 27px;
  font-size: 25px;
  font-family: "GeometriaBold", sans-serif;
}

.event-content {
  padding: 45px 0 25px;
}

.event-content h3 {
  font-size: 30px;
}

.event-content h4 {
  font-size: 22px;
}

.event-content .article-container {
  padding: 0 8px;
}

.event-content .webinar-descr {
  font-size: 17px;
  font-family: "GeometriaItalic", sans-serif;
  line-height: 22px;
}

.event-content .webinar-descr p {
  margin: 12px 0;
}

.webinar-form {
  font-size: 0;
  margin: 27px 0;
}

.webinar-form input[type="email"],
.webinar-form input[type="tel"],
.webinar-form input[type="text"] {
  height: 40px;
  background-color: white;
  padding: 0px 10px;
  color: #7C7C7C;
  border: 1px solid #9A9CA2;
  border-radius: 3px;
  outline: none !important;
  width: 155px;
  display: inline-block;
  font-size: 15px;
  margin-right: 5px;
}

.webinar-form input[type="email"] {
  width: 145px;
}

.webinar-form input[type="tel"] {
  width: 165px;
}

.webinar-form .button {
  padding: 7px 21px 6px 21px;
  font-size: 18px;
}

.webinar-form .privacy-container {
  margin-top: 5px;
}

.webinar-form input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
}

.webinar-form .privacy-check-label {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  font-size: 13px;
  text-align: left;
}

.webinar-program {
  border-bottom: #0580BE 2px solid;
  border-top: #0580BE 2px solid;
}

.webinar-program h3 {
  margin-bottom: 0;
  margin-top: 20px;
  line-height: 1;
}

.webinar-program .webinar-program-time {
  font-size: 23px;
  font-family: "GeometriaBold", sans-serif;
  margin-bottom: 20px;
}

.webinar-program .webinar-program-item {
  border-top: #C0C0C0 1px solid;
  padding-bottom: 15px;
}

.webinar-program .webinar-program-item h4 {
  margin-bottom: 0;
  margin-top: 15px;
  line-height: 1.1;
}

.webinar-program .webinar-program-item .webinar-program-item-time {
  font-size: 22px;
}

.webinar-program .webinar-program-item .webinar-program-item-text {
  font-size: 17px;
  line-height: 22px;
  margin: 3px 0;
}

.webinar-author {
  padding: 30px 0;
  border-bottom: #C0C0C0 1px solid;
}

.webinar-author h4 {
  margin-top: 0;
}

.webinar-author .contact-item .contact-item-photo {
  padding-right: 15px;
}

.webinar-author .contact-item .contact-item-cont p {
  max-width: 150px;
}

.webinar-oferta h3 {
  margin-bottom: 5px;
}

.webinar-oferta p {
  margin: 10px 0;
  font-size: 17px;
  line-height: 22px;
}

.product-section {
  padding-top: 0;
  padding-bottom: 16px;
}

.product-section .navigation strong, .c-price .navigation strong {
  display: inline-block;
}

.product-section .product-top {
  max-width: 675px;
  margin: 10px auto 0;
}

.product-section .product-top h6 {
  margin: 0;
}

.product-section .product-top ul li {
  line-height: 20px;
}

.product-section .product-top p {
  line-height: 20px;
  margin-bottom: 20px;
}

.product-features .clearfix .col-3:first-child .product-features-item {
  padding-left: 0;
}

.product-features h2 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 24px;
  line-height: 1.35;
}

.product-features .product-features-item {
  padding-left: 15px;
  padding-right: 20px;
}

.product-features .product-features-item h4 {
  margin-top: 0;
  margin-bottom: 3px;
  line-height: 22px;
  height: 40px;
}

.product-features .product-features-item ul li {
  line-height: 20px;
}

.product-features .product-features-item p {
  line-height: 20px;
}

.product-tizers {
  margin-bottom: 52px;
}

.product-tizers h2 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 24px;
  line-height: 1.35;
}

.product-tizer-item {
  text-align: center;
}

.product-tizer-item .top,
.product-tizer-item .price {
  font-size: 15px;
  font-family: "GeometriaBold", sans-serif;
  display: block;
  line-height: 17px;
}

.product-tizer-item .accent {
  display: block;
  color: #008C68;
  font-size: 125px;
  line-height: 1;
}

.product-tizer-item .accent.text {
  font-size: 45px;
  font-family: "GeometriaBold", sans-serif;
}

.min-height {
  min-height: 1px;
}

.sect-error {
  padding: 60px 0 40px;
}

.sect-error h4 {
  margin: 0;
  font-size: 23px;
}

.sect-error p {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 24px;
}

.error-header-page h1 {
  line-height: 70px;
  font-size: 70px;
}

.error-header-page h1 span {
  font-family: "GeometriaBold", sans-serif;
}

#thanksModal,
#thanksModal2,
#thanksModal3,
#thanksModalFree {
  background: white;
  padding: 50px 30px;
  text-align: center;
  max-width: 380px;
  margin: 40px auto;
  position: relative;
  border-radius: 10px;
}

#thanksModal3 {
  padding: 20px 10px;
}

#thanksModal h4,
#thanksModal2 h4,
#thanksModal3 h4,
#thanksModalFree h4 {
  margin: 0;
}

#thanksModal p,
#thanksModal2 p,
#thanksModal3 p,
#thanksModalFree p {
  font-size: 20px;
  margin: 0;
}

#thanksModal .mfp-close,
#thanksModal2 .mfp-close,
#thanksModal3 .mfp-close,
#thanksModalFree .mfp-close {
  background-image: url(/local/templates/fingrad/css/../img/close-popup.png);
  background-position: center;
  background-repeat: no-repeat;
  top: 8px;
  right: 8px;
}

#load_more {
  display: none;
}

.ajax-footer {
  display: block;
  height: 1px;
}

div.excerpt p a {
  color: #000;
}

#demo-form {
  width: 300px;
  z-index: 9999999;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #525252;
  position: absolute;
  background: #fff;
  padding: 15px;
}


#demo-form h4 {
  margin: 0;
}


#demo-form p {
  font-size: 14px;
}

div.arrow-right {
  width: 0;
  height: 0;
  border-bottom: 10px solid transparent;
  /* left arrow slant */
  border-top: 10px solid transparent;
  /* right arrow slant */
  border-left: 10px solid #ffffff;
  /* bottom, add background color here */
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 298px;
}

div.arrow-left {
  width: 0;
  height: 0;
  border-bottom: 10px solid transparent;
  /* left arrow slant */
  border-top: 10px solid transparent;
  /* right arrow slant */
  border-right: 10px solid #ffffff;
  /* bottom, add background color here */
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: -10px;
}

#demo-form form input[type="text"],
#demo-form form input[type="email"],
#demo-form form input[type="tel"] {
  margin-bottom: 2px;
  padding: 4px;
  border-radius: 2px;
  border: 1px solid #ccc;
  width: 268px;
}

#demo-form form input[type="text"],
#demo-form form input[type="email"],
#demo-form form input[type="tel"],
#demo-form form input[type="submit"] {
  font-family: 'GeometriaRegular', Calibri, sans-serif;
}

#demo-form form input[type="submit"] {
  height: 32px;
  background-color: #057FBE;
  width: 178px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  border: none;
  border-radius: 2px;
  margin-top: 10px;
}

#demo-form form input[type="submit"]:hover {
  cursor: pointer;
  background-color: #0192db;
}

#demo-form .cancel {
  font-size: 14px;
  margin: 20px 0 0 0;
  cursor: pointer;
  text-decoration: underline;
  color: #999;
  float: right;
  line-height: 14px;
}

#demo-form .cancel a:hover {
  color: #555;
}

#demo-form form span {
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}

#demo-form form input.form-error {
  border-color: red;
}

#demo-form #message {
  text-align: center;
}

#demo-form #message h3 {
  margin: 5px 0;
}

#demo-form #message p {
  font-size: 16px;
}

#demo-form #preloader div {
  margin: 50px auto;
}



/*EVENT PAGE*/
.header-page.event-header {
  height: auto;
  min-height: 325px;
}

.event-header .header-page-caption {
  padding-bottom: 30px;
}

@media only screen and (max-width: 1530px) {
  .header-page.event-header {
    height: auto;
    min-height: 260px;
  }
}

.event-form .button {
  padding: 7px 5px 6px 5px;
}

.event-content .event-descr {
  font-family: "GeometriaRegular", sans-serif;
}

.blog-form.prod .tel-input {
  margin: 0px 5px;
  border-radius: 5px !important;
}

.footer-block {
  float: left;
  margin: 0px 32px;
}

.footer-block.first {
  margin-left: 0px;
}

.footer-block.last {
  float: right;
  margin-right: 0px;
}


.lessons-content {
  padding: 35px 0 20px;
}

.lessons-content .lessons-descr {
  font-size: 17px;
  font-family: "GeometriaRegular", sans-serif;
  line-height: 22px;
}

.lessons-content .lessons-descr p {
  margin: 19px 0;
}

.lessons-form {
  margin: 32px 0;
}

.lessons-form .button {
  padding: 7px 37px 6px 37px;
}

.lessons-program {
  border-bottom: #C0C0C0 1px solid;
  border-top: #C0C0C0 1px solid;
}

.lessons-program h3 {
  margin-bottom: 0;
  margin-top: 25px;
  line-height: 1;
}

.lessons-list {
  margin-top: 15px;
  margin-bottom: 20px;
}

.lessons-list td {
  font-size: 17px;
  vertical-align: top;
  padding-top: 10px;
  padding-bottom: 10px;
}

.lessons-list .lessons-list__title {
  font-family: "GeometriaBold", sans-serif;
  width: 14%;
  font-weight: 700;
}

.lessons-author {
  padding: 30px 0 40px;
}

.lessons-author h3 {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 230px;
}

.lessons-author .contact-item .contact-item-photo {
  vertical-align: top;
  padding-right: 30px;
}

.lessons-author .contact-item .contact-item-photo .img-wrap {
  width: 200px;
  height: 200px;
}

.lessons-author .contact-item .contact-item-photo .img-wrap img {
  width: 100%;
  height: 100%;
}

.lessons-author .contact-item .contact-item-cont p {
  max-width: 100%;
  font-size: 17px;
  line-height: 1.35;
}

.geo-bold {
  font-family: "GeometriaBold", sans-serif;
  font-size: inherit;
  line-height: inherit;
}

.lessons-oferta h3 {
  margin-top: 20px;
}

.lessons-oferta .lessons-form {
  margin: 25px 0;
}

.header-page {
  height: 425px;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1530px) {
  .header-page {
    height: 260px;
    background-size: cover;
    background-position: top center;
  }
}

.event-list-header h1 {
  font-size: 91px;
}

.event-list__content {
  padding: 33px 0 25px;
}

.event-list__item {
  width: 100%;
  display: block;
  float: left;
  padding-bottom: 20px;
  padding-top: 30px;
  border-bottom: #C0C0C0 1px solid;
}

.event-list__item:last-child {
  border: none;
}

.event-list__item .image-area,
.event-list__item .text-area {
  width: 50%;
  float: left;
}

.event-list__item .image-area {
  height: 270px;
  overflow: hidden;
}

.event-list__item .image-area img {
  width: 100%;
}

.event-list__item .text-area {
  padding-left: 22px;
}

.event-list__item .text-area p {
  font-size: 17px;
  float: left;
  margin: 13px 0;
  line-height: 1.35;
}

.event-list__item .text-area .read-more {
  font-size: 17px;
  font-family: "GeometriaBold", sans-serif;
  float: left;
  margin: 8px 0;
}

.event-list__item .event-date {
  font-family: "GeometriaRegular", sans-serif;
  font-size: 12px;
  width: 100%;
  float: left;
  margin-bottom: 7px;
}

.event-list__item h3 {
  font-size: 27px;
  margin: 0;
  font-family: "GeometriaRegular", sans-serif;
  font-weight: 900;
  line-height: 1.3;
  float: left;
}

.event-list__item .event-form {
  float: left;
  margin: 27px 0 10px;
}

.event-list__item .event-form input[type="email"],
.event-list__item .event-form input[type="tel"],
.event-list__item .event-form input[type="text"] {
  width: 232px;
}

.event-list__item .event-form .button {
  padding: 7px 22px 6px 23px;
}


/*********ABOUT NEW PAGE***********/
.header-page.about-header {
  background-position: bottom center;
}

.about-content {
  padding-top: 40px;
}

.about-content .text-side {
  display: inline-block;
  float: left;
  width: 670px;
  font-size: 17px;
  line-height: 1.35;
  padding-right: 45px;
}

.about-content .text-side h2 {
  font-size: 17px;
  margin: 23px 0;
}

.about-content .counts-block {
  font-family: "GeometriaBold", sans-serif;
  display: block;
  width: 100%;
  padding-top: 13px;
}

.about-content .count-item {
  display: inline-block;
  float: left;
  width: 33.33%;
}

.about-content .count-item:first-child {
  width: 28%;
}

.about-content .count-item:nth-child(2) {
  width: 41%;
}

.about-content .count-item:nth-child(3) {
  width: 31%;
}

.about-content .counts-block .count {
  display: block;
  font-size: 70px;
  line-height: 1;
  color: #008c68;
  margin-bottom: 7px;
}

.about-content .list-side {
  display: inline-block;
  float: left;
  width: 290px;
  padding-top: 18px;
}

.about-content .list-side .list-head {
  margin-bottom: 3px;
  display: block;
  font-family: "GeometriaBold", sans-serif;
}

.about-content .list-side ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.about-content .list-side li {
  position: relative;
  padding-left: 25px;
  line-height: 1.4;
}

.about-content .list-side li::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  background: #888888;
  top: 10px;
  left: 2px;
}

.contact-row ol.list_level1,
.contact-row ol.list_level3,
.contact-row ol.list_level4 {
  list-style-type: none;
}

.contact-row ol.list_level1 {
  padding-left: 0;
}

.contact-row .list_level3 {
  margin-left: 15px;
}

.contact-row.privacy ol li {
  list-style: none;
  margin-bottom: 10px;
}

ol.list_level1 li,
ol.list_level2 li,
ol.list_level3 li {
  list-style: none;
}

.contact-row.privacy .list-style-circle {
  list-style-type: circle;
}

.contact-row.privacy .list-style-circle li {
  list-style-type: circle;
}



/*===================================================
                      MOBIL CSS
===================================================== */

/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.23, autoprefixer: v9.7.3) */


.phone-mobil {
  display: none;
}

.popup-with-form {
  display: none;
}

.slide-bg-mobile {
  display: none;
}

@media (max-width: 1410px) {
  .header-page {
    background-size: cover !important;
  }
}

@media (max-width: 1110px) {
  .partners .container {
    width: 80%;
  }
}

@media (max-width: 1024px) {
  .b-advantages__inner--first {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .b-advantages__img-main {
    display: block !important;
    top: initial !important;
    right: initial !important;
    background-position: center !important;
    width: 90% !important;
  }

  .b-advantages__img-mobile {
    opacity: 0 !important;
  }

  .b-advantages__img-right {
    height: 111px !important;
  }
}

@media (min-width: 991px) {
  .header-nav {
    display: block !important;
  }

  .header-info {
    display: none;
  }
}

@media (max-width: 991px) {
  html {
    overflow: auto;
  }

  body {
    min-width: 100%;
  }

  .hidden-body {
    overflow: hidden;
  }

  .opacity-hidden {
    opacity: 0;
  }

  /* burger */

  .menu-icon-wrapper {
    height: 30px;
    width: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
  }

  .menu-icon {
    position: relative;
    width: 35px;
    height: 3px;
    background-color: #000;
  }

  .menu-icon::before {
    position: absolute;
    left: 0;
    top: -10px;
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background-color: #000;
    -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
    transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
    -o-transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
    transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
    transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  }

  .menu-icon::after {
    position: absolute;
    left: 0;
    top: 10px;
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background-color: #000;
    -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
    transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
    -o-transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
    transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
    transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  }

  .menu-icon.menu-icon-active {
    background-color: transparent;
  }

  .menu-icon.menu-icon-active::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
    transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
    -o-transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
    transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
    transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
  }

  .menu-icon.menu-icon-active::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
    transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
    -o-transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
    transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
    transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
  }

  /* burger and */


  /*=============
    HEADER
   ============== */
  .main-head .top-line {
    padding: 15px 0 25px;
    height: auto;
    position: relative;
    top: 0;
    z-index: 60;
    background-color: #fff;
    border-bottom: 1px solid #ededed;
  }

  .main-head .submit-form .submit-button {
    margin: auto;
  }

  .top-line .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .top-line .container .menu-icon-wrapper, .top-line .container .col-2, .top-line .container .col-2 {
    width: 33%;
  }

  .center-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .main-head .top-line .phone a {
    font-size: 22px;
  }

  .header-nav {
    display: none;
    background-color: #fff;
    height: calc(100vh - 50px);
    overflow: scroll;
    position: fixed;
    top: 48px;
    z-index: 50;
  }

  .header-nav .container {
    padding: 0 20px;
    height: 100%;
  }

  .header-nav ul li {
    margin-right: 0;
  }

  .header-nav ul li.active {
    border-bottom: 2px solid #E9BA00;
  }

  .header-nav ul>li.active>a {
    border: none;
  }

  .header-nav ul li.active.open {
    border: none;
  }

  .header-nav ul>li>ul li a:hover {
    background-color: transparent;
  }

  .fixed-menu {
    position: fixed !important;
  }

  .header-nav .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    padding-bottom: 20px;
    padding-top: 80px;
    width: 100%;
  }

  .header-nav .root-item.parent::after, .active.parent::after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    left: 282px;
    width: 25px;
    height: 25px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
  }

  .header-nav .root-item.parent.open::after, .active.parent.open::after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    left: 282px;
    width: 25px;
    height: 25px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
  }

  .header-nav ul>li:hover>ul {
    display: none;
  }

  .header-nav ul>li a {
    color: #000;
    height: 40px;
  }

  .header-nav ul>li a:hover {
    border: none;
  }

  .header-nav ul>li>ul {
    position: initial;
    padding-bottom: 15px;
  }

  .header-nav ul>li>ul li a {
    background-color: transparent;
    padding: 0;
    font-family: 'GeometriaRegular', sans-serif;
    font-size: 15px;
  }

  .header-nav .header-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 20px 0 55px;
    font-family: "GeometriaRegular", sans-serif;
  }

  .header-nav .header-info .head-tel-mail {
    color: #000;
    font-size: 19px;
    font-weight: bold;
    padding: 5px 0;
  }

  /*=============
  HEADER END
 ============== */

  .slider-caption .submit-form {
    display: none;
  }

  .mfp-with-zoom .mfp-container,
  .mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

  .mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
  }

  .mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
  }

  .mfp-with-zoom.mfp-removing .mfp-container,
  .mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
  }

  .popup-with-form {
    display: block;
    height: 58px;
    background-color: #057FBE;
    width: 80%;
    text-align: center;
    color: #fff;
    font-size: 23px;
    border: none;
    border-radius: 5px 5px 5px 5px;
    outline: none !important;
    font-family: "GeometriaBold", sans-serif;
    overflow: hidden;
    margin: auto;
    position: relative;
    z-index: 1;
    vertical-align: middle;
    padding: 10px;
    margin-top: 20px;
    right: 10px;
  }

  .mfp-content {
    background-color: #fff;
    border-radius: 5px 5px 5px 5px;
    padding: 25px;
  }

  .mfp-content .white-popup-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mfp-content .white-popup-block .title-popup-text {
    font-family: "GeometriaBold", sans-serif;
    font-size: 35px;
    text-align: center;
    margin: 45px 0;
    line-height: 40px;

  }

  .mfp-content .white-popup-block input {
    margin-bottom: 10px !important;
  }

  .mfp-content .white-popup-block .tel-input {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: white;
    color: #949494;
    border: 1px solid #B0B0B0;
    height: 58px;
    font-size: 23px;
    padding: 0 25px;
    border-radius: 5px 5px 5px 5px;
    float: left;
    width: 100%;
  }

  .mfp-content .white-popup-block .submit-button {
    height: 58px;
    background-color: #057FBE;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 23px;
    border: none;
    border-radius: 0px 5px 5px 0;
    outline: none !important;
    font-family: "GeometriaBold", sans-serif;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
  }

  .container {
    width: 100%;
  }

  .solutions h2 {
    margin-right: 25px;
    margin-left: 25px;
    margin-bottom: 90px;
  }

  .solutions .col-3 {
    width: 50%;
  }

  .sol-item .hover-circle {
    display: none;
  }

  .scope-item .img-wrap .hover-circle {
    display: none;
  }

  .submit-form {
    width: 100%;
  }

  .s-scope .submit-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .submit-form .tel-input {
    width: 80%;
    margin: 5px !important;
    border-radius: 5px 5px 5px 5px;
    border-right: 1px solid #B0B0B0;
  }

  .submit-form .submit-button {
    width: 80%;
    margin: 5px 0;
  }

  .client-item .client-meta {
    width: 285px;
    text-align: center;
  }

  .client-content .clearfix .col-3 {
    width: 100% !important;
    margin: 10px 0;
  }

  .client-content .client-row {
    margin: 0 !important;
  }

  .client-content .client-row .col-3 .client-item {
    margin: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .s-cont.about-content .container {
    padding: 0 12px;
  }

  .s-cont.about-content .container .text-side, .s-cont.about-content .container .list-side {
    width: 100%;
  }

  .s-cont.about-content .container .text-side {
    margin-bottom: 25px;
    padding-right: 0;
  }

  .contact-content .container .contact-row:first-child {
    display: flex;
    flex-direction: column-reverse;
  }

  .contact-content .container .contact-row:first-child .col-3, .contact-content .container .contact-row:first-child .col-2-1 {
    width: 100%;
  }

  .contact-content .container .contact-row:first-child .col-3 {
    margin-bottom: 20px;
  }

  .contact-content .container .contact-row:first-child .col-2-1 iframe {
    width: 100%;
  }

  .contact-content .container .contact-row-item .col-3 {
    width: 100%;
  }

  .contact-content .container .contact-row-item .contact-item {
    padding: 20px 30px;
  }

  .submit-form .submit-button:hover::before {
    transform: none;
  }

  /*=============
  FOOTER
 ============== */

  .main-footer .footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 17px;
  }

  .main-footer .footer-block {
    width: 20%;
    margin: 0;
  }

  /*=============
  FOOTER END
  ============== */
}

@media only screen and (max-width: 960px) {
  .b-main__wrapper {
    padding-top: 0 !important;
  }

  .b-main__top {
    position: relative !important;
    top: 0 !important;
    height: 428px !important;
    background-position-x: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
  }

  .b-main__logo {
    background: none !important;
  }

  .b-main__inner {
    margin-top: 20px !important;
  }

  .b-advantages__inner--white:not(.b-advantages__inner--last) {
    padding-top: 220px !important;
  }

  .b-advantages__inner--first .b-advantages__mobile-txt {
    display: block !important;
    position: absolute !important;
    bottom: -169px !important;
    z-index: 5;
  }
}

@media (max-width: 767px) {

  /*=============
    HEADER
  ============== */
  .main-head .top-line .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    height: auto;
  }

  .phone {
    /*display: none;*/
  }

  .main-head .top-line .phone a {
    font-size: 19px;
  }

  .phone-mobil {
    /*display: flex;*/
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: none;
  }

  .phone-mobil .head-tel-mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .phone-mobil .head-tel-mail svg {
    width: 50px;
    height: 33px;
  }


  /*=============
   HEADER END
  ============== */
  .reports .col-3 {
    width: 100%;
  }

  .s-scope .col-2 {
    width: 100%;
  }

  .s-scope-wrap .col-2:nth-child(odd) .scope-item {
    margin-right: 0;
  }

  .partners-carousel-wrap .partners-nav-cont .partners-nav>div {
    background-size: 25px;
  }

  .partners-carousel-wrap .partners-nav-cont .partners-nav .next {
    right: -64px;
  }

  .partners-carousel-wrap .partners-nav-cont .partners-nav .prev {
    left: -44px;
  }

  .s-scope {
    padding-bottom: 0;
  }

  .video-section {
    position: initial;
  }

  .video-section .video-bg {
    background-image: none;
    /*height: 585px;*/
    height: auto;
  }

  .video-section .video-bg h2 {
    color: #000;
  }

  .video-section .video-bg .notebook-display {
    width: 100%;
    position: initial;
    margin-left: 0;
  }

  .video-section .video-bg .notebook-display iframe {
    width: 100%;
  }

  .partners {
    padding-top: 0;
  }

  .b-map__wrapper {
    margin: 10px !important;
    margin-bottom: -50px !important;
    z-index: 5 !important;
  }

  #map {
    height: 380px !important;
  }

  .header-page-product h1 {
    line-height: 48px;
    font-size: 45px;
    margin-bottom: 0;
    margin-top: 55px;
  }

  .header-page .container h1 {
    line-height: 48px;
    font-size: 45px;
    font-weight: 700;
  }

  .event-content .article-container {
    padding: 0 20px;
    width: 100%;
  }

  .lessons-content .lessons-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .lessons-content .webinar-form input[type="text"], .lessons-content .webinar-form input[type="tel"], .lessons-content input[type="email"] {
    width: 100%;
    margin-bottom: 15px;
  }

  .blog-content .clearfix .col-3 .blog-item {
    margin: 5px !important;
  }

  .blog-content .clearfix .col-3 .blog-item .img-wrap {
    margin-bottom: 0;
    height: auto;
  }

  .article-container {
    width: 85%;
  }

  /*=============
   FOOTER
  ============== */
  .main-footer {
    padding: 40px 0 10px;
  }

  .main-footer .footer-top {
    margin: auto;
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .main-footer .footer-block {
    margin: 5px 0;
    width: 300px;
    position: relative;
  }

  .main-footer .footer-block h6::after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 11px;
    left: 282px;
    width: 25px;
    height: 25px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
  }

  .main-footer .footer-block.open h6::after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -2px;
    left: 282px;
    width: 25px;
    height: 25px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
  }

  .main-footer .list {
    display: none;
  }

  .main-footer .list.active {
    display: block;
  }

  .footer-block .list li {
    margin-left: 15px;
  }

  .footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-bottom .col-2, .footer-bottom .col-3 {
    width: 300px;
    margin: 15px 0;
  }

  .main-footer .footer-bottom .footer-copy .footer__copy-text {
    display: none;
  }

  /*=============
  FOOTER END
  ============== */
}

@media only screen and (min-width: 670px) {
  .b-main__top {
    left: 0 !important;
  }
}

@media only screen and (max-width: 670px) {
  .b-main__top:before {
    content: '';
    position: absolute;
    left: -442px;
    top: -155px;
    width: 600px;
    height: 273px;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .b-main__top:after {
    content: '';
    position: absolute;
    right: -320px;
    top: -155px;
    width: 600px;
    height: 273px;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .b-advantages__inner--first {
    padding: 0 !important;
  }

  .b-advantages__inner:not(.b-advantages__inner--first) {
    background: none !important;
  }

  .b-advantages__inner:not(.b-advantages__inner--first):before {
    background-color: #f4f5f5 !important;
    height: 40% !important;
  }

  .b-advantages__inner:not(.b-advantages__inner--first):after {
    background-color: #f4f5f5 !important;
    height: 42% !important;
  }

  .b-advantages__inner:not(.b-advantages__inner--first):before {
    bottom: 172px !important;
    -webkit-transform: skewY(5deg);
    -ms-transform: skewY(5deg);
    transform: skewY(5deg) !important;
  }

  .b-advantages__inner:not(.b-advantages__inner--first):after {
    bottom: 190px !important;
    -webkit-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
    transform: skewY(-5deg) !important;
  }

  .b-advantages__inner--last {
    padding-top: 0 !important;
  }

  .b-advantages__img-sla {
    height: 155px !important;
  }

  .b-advantages__inner--first .b-advantages__img-mobile .b-advantages__img-mobile-top {
    display: none !important;
  }

  .lessons-content .lessons-program .lessons-list .lessons-list__title {
    width: 25%;
  }

  .lessons-content .lessons-author h3 {
    padding-left: 0;
    text-align: center;
  }

  .lessons-content .lessons-author .contact-item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .lessons-content .lessons-author .contact-item-row .contact-item-photo {
    padding-right: 0 !important;
    margin: auto;
  }

  .blog-content .clearfix {
    margin-bottom: 0;
  }

  .blog-content .clearfix .col-3 {
    width: 100%;
    margin-bottom: 30px;
  }

  .blog-content .clearfix .col-3 .blog-item .img-wrap img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .blog-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 30px;
    margin-right: 30px;
  }

  .blog-form.prod .tel-input {
    margin: 0 0 10px 0;
  }

  .blog-form .tel-input.product {
    width: 100%;
  }

  .blog-form .privacy-container {
    margin-top: 10px;
  }

  .blog-form .privacy-check-label {
    display: initial;
  }

  .c-price .u-item {
    width: 100%;
  }

  .event-list__content .event-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .event-list__content .event-list__item .image-area, .event-list__content .event-list__item .text-area {
    width: 100%;
    height: auto;
  }

  .s-cont.manual-content .container {
    padding: 0 25px;
  }

  .s-cont.manual-content .container .col-2 {
    width: 100%;
  }

  .s-cont.about-content .container .text-side .counts-block .count-item {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .s-cont.about-content .container .text-side .counts-block .count-item .count {
    margin-bottom: 0;
  }

  .s-cont.product-section {
    margin: 0 10px;
  }

  .s-cont.product-section .product-features h2 {
    margin-top: 24px;
    font-size: 32px;
  }

  .s-cont.product-section .product-features .clearfix .col-3 {
    width: 100%;
  }

  .s-cont.product-section .product-features .clearfix .col-3 .product-features-item {
    padding: 15px 0px !important;
  }

  .s-cont.product-section .product-features .clearfix .col-3 .product-features-item h4 {
    height: auto;
    margin-bottom: 7px;
  }

  .s-cont.product-section .blog-form {
    margin-right: 0;
    margin-left: 0;
  }

  .product-section .product-top {
    padding: 0 10px;
  }

  .b-wrapper {
    padding: 50px 20px !important;
  }
}

@media (max-width: 555px) {
  .main-head .top-line .phone a {
    font-size: 14px;
  }

  .wrapper .main-head .home_slider {
    height: 500px !important;
  }

  .slider-wrap .slide {
    height: 500px;
  }

  .slide-bg {
    display: none;
  }

  .slide-bg-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: #EEEEEE;
    background-size: cover;
  }

  .slider-wrap .slider-caption h1 {
    line-height: 38px;
  }

  .slider-wrap .slider-caption .descr {
    width: 53%;
    height: 150px;
    font-size: 18px;
    line-height: 22px;
  }

  .slider-wrap .slider-caption .descr br {
    display: none;
  }

  .slider .owl-controls .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    margin-right: 20px;
  }

  .header-page-client {
    height: 360px !important;
  }

  .header-page-client .slider-wrap {
    height: 360px !important;
  }

  .header-page-client .slider {
    height: 100%;
  }

  .header-page-client .owl-stage-outer {
    height: 100%;
  }

  .header-page-client .slide {
    height: 360px !important;
  }
}

@media (max-width: 414px) {
  h2 {
    font-size: 35px;
    line-height: 35px;
  }

  /*=============
   HEADER
  ============== */
  .main-head .top-line {
    padding: 10px 0 10px;
    height: 50px;
    min-height: auto;
    z-index: 55;
  }

  .header-nav {
    top: 48px;
  }

  .header-nav .list {
    padding-top: 10px;
  }

  .header-nav .root-item.parent::after {
    left: 257px;
  }

  .header-nav .root-item.parent.open::after {
    left: 257px;
  }

  .header-nav .active.parent::after {
    left: 257px;
  }

  .header-nav .active.parent.open::after {
    left: 257px;
  }

  .main-head .top-line .logo {
    width: 80%;
    min-width: 80px;
    max-height: 30px;
  }

  .main-head .top-line .phone {
    margin-top: 10px;
  }

  .main-head .top-line .phone a {
    font-size: 11px;
  }

  .menu-icon-wrapper {
    margin: 0;
  }

  .menu-icon {
    width: 25px;
    height: 2px;
  }

  .menu-icon::after {
    width: 25px;
    height: 2px;
    top: 7px;
  }

  .menu-icon::before {
    width: 25px;
    height: 2px;
    top: -7px;
  }

  .phone-mobil .head-tel-mail svg {
    width: 35px;
    height: 23px;
  }

  /*=============
  HEADER END
  ============== */

  /*=============
     Home page
  ============== */
  .popup-with-form {
    font-size: 18px;
    padding: 15px;
  }

  .mfp-content {
    position: absolute;
    top: 51px;
    left: 0;
  }

  .mfp-content .white-popup-block .submit-button {
    font-size: 18px;
  }

  .mfp-content .white-popup-block .privacy-container {
    font-size: 12px;
    line-height: 15px;
  }

  .mfp-content .white-popup-block .privacy-container .privacy-check-label input {
    margin-bottom: 0 !important;
  }

  .mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 1;
    background-color: #fff;
    z-index: 50 !important;
  }

  .mfp-close-btn-in .mfp-close {
    top: -47px;
    background-color: #fff;
    opacity: 1;
    font-size: 40px;
    font-weight: 100;
    /*= tel =*/
    width: 174px;
    right: -60px;
  }

  .mfp-content .white-popup-block .tel-input {
    font-size: 18px;
  }

  .solutions h2 {
    margin-bottom: 42px;
    font-size: 28px;
    line-height: 37px;
  }

  .sol-item {
    margin-bottom: 55px;
  }

  .sol-item .img-wrap img {
    max-width: 75px;
    max-height: 55px;
  }

  .sol-item h3 {
    font-size: 18px;
  }

  .reports .report-item {
    padding: 0 52px;
  }

  .reports .report-item .img-container .text {
    font-size: 20px;
    bottom: 22px;
  }

  .reports h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .partners h2 {
    font-size: 32px;
    margin-top: 35px;
  }

  .submit-form .tel-input {
    font-size: 17px;
  }

  .submit-form .submit-button {
    font-size: 17px;
  }

  .submit-form .tel-input {
    width: 90%;
  }

  .submit-form .submit-button {
    width: 90%;
  }

  .partners {
    padding: 0px 0 50px 0;
  }

  .partners-carousel-wrap .partners-nav-cont .partners-nav>div {
    background-size: 17px;
  }

  .partners-carousel-wrap .partners-nav-cont .partners-nav .next {
    right: -56px;
  }

  .partners-carousel-wrap .partners-nav-cont .partners-nav .prev {
    left: -28px;
  }

  .b-map__form-inner {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .b-map__form-row {
    width: 100%;
  }

  .video-section .video-bg .notebook-display {
    height: 238px;
  }

  .video-section .video-bg .notebook-display iframe {
    height: 100%;
  }

  /*=============
    Securities
  ============== */
  .b-main .b-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .b-main .b-wrapper .b-main__inner {
    padding-right: 15px;
    padding-left: 15px;
  }

  .b-main .b-wrapper .b-main__inner h1::before {
    content: none;
  }

  .b-clients__sector {
    top: -125px;
  }

  .b-clients__wrapper {
    padding-bottom: 20px !important;
  }

  .b-clients__sector-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .b-clients__sector-row .b-clients__sector-item--style3 {
    width: 140px;
    height: 161px;
    margin: 0;
    top: 90px;
  }

  .b-clients__sector-row .b-clients__image--sovkom {
    top: 37%;
    width: 102px;
    height: 51px;
  }

  .b-clients__sector-row .b-clients__stat {
    width: 102px;
    top: 66%;
  }

  .b-clients__sector-row .b-clients__stat-item {
    padding: 9px 2px 0;
    font-size: 6px;
    line-height: 9px;
  }

  .b-clients__sector-row .b-clients__stat-item span {
    margin-bottom: 7px;
    font-size: 19px;
  }

  .b-clients__sector-item--style3 svg {
    width: 140px !important;
    height: 161px !important;
  }


  .b-clients__sector-row .b-clients__sector-item--style1 {
    width: 104px;
    height: 120px;
    position: relative;
    left: 55px;
    top: 221px;
  }

  .b-clients__sector-row .b-clients__image--modul {
    width: 80px;
  }

  .b-clients__sector-row .b-clients__sector-item--style1 svg {
    width: 104px;
    height: 120px;
  }


  .b-clients__sector-row .b-clients__sector-item--style2 {
    width: 75px;
    height: 86px;
    position: relative;
    left: 60px;
    top: 130px;
  }

  .b-clients__sector-row .b-clients__image--icici {
    width: 64px;
  }

  .b-clients__sector-row .b-clients__sector-item--style2 svg {
    width: 75px;
    height: 86px;
  }

  .b-clients__sector-row .b-clients__sector-item--style4 {
    left: -45px;
    bottom: 5px;
  }

  .b-clients__sector-row .b-clients__image--volga {
    width: 80px;
    left: 41%;
  }

  .b-clients__sector-row .b-clients__sector-item--style4 svg {
    width: 104px;
    height: 120px;
  }

  .b-map__form-item {
    margin-bottom: 10px !important;
  }

  .b-advantages__inner--first .b-advantages__img-mobile .b-advantages__img-mobile-bottom {
    display: none !important;
  }

  .b-advantages__img-main {
    bottom: -100px;
  }

  .lessons-content .lessons-list tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .lessons-content .lessons-list td {
    padding-bottom: 20px;
  }

  .lessons-content .lessons-program .lessons-list .lessons-list__title {
    width: 100%;
    padding-bottom: 0 !important;
  }

  .header-page .container h1 {
    font-size: 42px;
  }


  /*=============
   FOOTER
  ============== */
  .main-footer .container {
    padding-left: 35px;
  }

  .main-footer .footer-block h6 {
    font-size: 17px;
  }

  .main-footer .footer-block h6::after {
    top: 8px;
    left: 237px;
  }

  .main-footer .footer-block.open h6::after {
    top: -1px;
    left: 237px;
  }

  /*=============
  FOOTER END
  ============== */
}

@media (max-width: 360px) {
  .main-head .top-line .logo {
    max-height: 25px;
  }
}

.header-nav ul>li:hover>ul.active {
  display: block;
}

/*========= capcha =========*/
.lessons-content .lessons-form .recaptcha_dev {
  margin-top: 5px;
}

.product-section .prod .recaptcha_dev {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 991px) {
  .slider-wrap .slider-caption h1 {
    margin-bottom: 30px;
  }

  .slider-wrap .slider-caption .recaptcha_dev, .s-scope .submit-form .recaptcha_dev {
    position: absolute;
    margin-top: 5px;
    margin-left: 5px;
  }
}

@media (max-width: 991px) {
  .slider-wrap .slider-caption h1 {
    margin-bottom: 70px;
  }

  .white-popup-block .recaptcha_dev {
    margin-bottom: 10px;
  }

  .s-scope .submit-form .recaptcha_dev {
    margin: 5px 0;
  }

  .product-section .prod .recaptcha_dev {
    margin-bottom: 0;
  }

  .lessons-content .lessons-form .recaptcha_dev {
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
  }
}


.blog-form .recaptcha_dev {
  margin: 10px auto 10px;
  display: flex;
  justify-content: center;

}

@media (max-width: 753px) and (min-width: 670px) {
  button.button-prod {
    margin-top: 10px;
  }
}

@media screen and (max-width: 500px) {
  .recaptcha_dev {
    transform: scale(0.8) translateX(-15%);
  }
}

/*cookie popup styles*/

.cookie-popup {
  position: fixed;
  bottom: 10px;
  right: 110px;
  background-color: #008C68;
  border-radius: 5px;
  padding: 10px 15px;
  color: #fff;
  z-index: 10001;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  transition: 0.5s all;
}

.grecaptcha-badge {
  opacity: 0 !important;
}

.cookie-popup.hidden {
  opacity: 0;
  visibility: hidden;
}


.cookie-popup p {
  color: #fff;
  padding: 10px 0;
  margin: 0;
  margin-right: 15px;
  font-size: 16px;
}

.cookie-popup a {
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: 0.5s all;
}

.cookie-popup a:hover {
  /*color: #fff;*/
}

.cookie-popup button {
  background-color: #057FBE;
  color: #fff;
  border: 0;
  outline: none;
  padding: 0 10px;
  border-radius: 5px;
  /*transition: 0.5s all;*/
}

.cookie-popup button:hover {
  background-color: #0192DB;
}

@media screen and (max-width: 768px) {
  .cookie-popup {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 5px 0 0 5px;
  }

  .cookie-popup button {
    height: 40px;
  }
}


.contact-info .social {
  margin-top: 10px;
}

.contact-info .social p, .contact-info .social a {
  margin-bottom: 10px;
}

.contact-info .cont-pers {
  margin-top: 10px;

}

.contact-form {
  margin-top: 15px;
}

.intro__title {
  font-family: 'Bliss Pro';
  font-weight: 900;
}

.intro__subtitle {
  font-family: 'Bliss Pro';
  font-size: 36px;
  font-weight: 900;
  line-height: 42px;
}

.main-ul {
  margin-bottom: 0 !important;
}

.main-ul li {
  font-size: 18px;
  margin-bottom: 10px !important;
}

.main-ul li:last-child {
  margin-bottom: 0 !important;
}

.main-ul li:before {
  width: 23px !important;
  height: 19px !important;
}

.main-top .left {
  width: calc(100% - 700px + 100px) !important;
}

.main-top .right {
  width: 700px !important;
  bottom: auto !important;
  top: 60px !important;
}

.intro__reestr {
  font-family: 'Bliss Pro';
  font-size: 20px;
  font-weight: 700;
  line-height: 42px;
  background: linear-gradient(180deg, #005BAA 0%, #0088FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 46px;
  position: relative;
}

.intro__reestr::before {
  position: absolute;
  content: '';
  width: 32px;
  height: 32px;
  background: url('/local/templates/fingrad/img/reestr-icon.svg') no-repeat center;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.intro-grid {
  display: grid;
  grid-gap: 16px;
}

.intro-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.intro-grid__item {
  font-family: 'Bliss Pro';
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.intro-grid__item-header {
  font-family: 'Bliss Pro';
  font-size: 52px;
  font-weight: 900;
  line-height: 62px;
  background: linear-gradient(180deg, #005BAA 0%, #0088FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-grid__item-header span {
  font-family: 'Bliss Pro';
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
  background: linear-gradient(180deg, #005BAA 0%, #0088FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-grid__item-text {
  background: linear-gradient(180deg, #005BAA 0%, #0088FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1400px) {
  .main-top .left {
    width: calc(100% - 700px + 50px) !important;
  }
}

@media (max-width: 1200px) {
  .main-top .left {
    width: calc(100% - 600px) !important;
  }

  .main-top .right {
    width: 600px !important;
  }
}

@media (max-width: 1100px) {
  .main-top .left,
  .main-top .right {
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .intro__subtitle {
    font-size: 20px;
    line-height: 1.25;
  }
}
/* End */


/* Start:/local/templates/fingrad/css_new/slick.min.css?17059755402569*/
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slides{margin:5px 0 40px}.slides .slick-next,.slides .slick-prev{position:absolute;z-index:1000;cursor:pointer;display:block;width:71px;height:100%;top:0;opacity:.7;background:url(/imgs/arws.png) 0 center no-repeat}.slides .slick-prev{left:0}.slides .slick-next{right:0;background-position:-71px center}.slides .slick-disabled{display:none!important}.slides .slick-next:hover,.slides .slick-prev:hover{opacity:1}.slides .slick-slide a img,.slides .slick-slide img{max-width:100%}.slides .slick-dots{list-style-image:none;margin:0;padding:0;position:absolute;bottom:3%;z-index:1000;right:15px}.slides .slick-dots li{list-style-image:none;float:left;margin:0 3px;display:block;width:10px;height:10px;border-radius:10px;border:1px solid #b4b4b4;overflow:hidden;background:#fff}.slides .slick-dots li button{display:block;margin:2px;width:6px;height:6px;border:0;border-radius:6px;overflow:hidden;background:#fff;color:#fff;font-size:0;cursor:pointer;padding:0}.slides .slick-dots li.slick-active button{background:#000}@media (max-width:900px){.with-menuleft .slides .slick-next,.with-menuleft .slides .slick-prev{width:30px;background-size:200% auto;background-position:0 center}.with-menuleft .slides .slick-next{background-position:-30px center}}@media (max-width:700px){.slides .slick-next,.slides .slick-prev{width:30px;background-size:200% auto;background-position:0 center}.slides .slick-next{background-position:-30px center}}
/*# sourceMappingURL=slick.min.css.map */

/* End */


/* Start:/local/templates/fingrad/css_new/style.css?170390317133599*/
@charset "UTF-8";
@font-face {
    font-display: swap;
    font-family: 'BlissPro';
    src: url("/local/templates/fingrad/css_new/../fonts/BlissPro-Light.eot");
    src: url("/local/templates/fingrad/css_new/../fonts/BlissPro-Light.woff") format("woff"), url("/local/templates/fingrad/css_new/../fonts/BlissPro-Light.ttf") format("truetype"), url("/local/templates/fingrad/css_new/../fonts/BlissPro-Light.eot") format("embedded-opentype");
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: 'BlissPro-Bold';
    src: url("/local/templates/fingrad/css_new/../fonts/BlissPro-Bold.eot");
    src: url("/local/templates/fingrad/css_new/../fonts/BlissPro-Bold.woff") format("woff"), url("/local/templates/fingrad/css_new/../fonts/BlissPro-Bold.ttf") format("truetype"), url("/local/templates/fingrad/css_new/../fonts/BlissPro-Bold.eot") format("embedded-opentype");
    font-style: normal;
}

@font-face {
    font-display: swap;
    font-family: 'BlissPro-Medium';
    src: url("/local/templates/fingrad/css_new/../fonts/BlissPro-Medium.eot");
    src: url("/local/templates/fingrad/css_new/../fonts/BlissPro-Medium.woff") format("woff"), url("/local/templates/fingrad/css_new/../fonts/BlissPro-Medium.ttf") format("truetype"), url("/local/templates/fingrad/css_new/../fonts/BlissPro-Medium.eot") format("embedded-opentype");
    font-style: normal;
}

button,
select, a, .form-row_count span, .header-navigation ul li, .header-nav-menu li:before, .companies-slider-nav .slick-dots li, .reviews-nav span, .reviews-slider-item-inner:before, .reviews-slider-item-inner:after, .select__head::after, .form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form input[type="phone"],
.form input[type="date"],
.form textarea, .form input[type="submit"] {
    transition: .3s ease;
}

.psevdo-checkbox:before, .psevdo-checkbox:after, .header-nav-menu li:before, .header-nav-menu .parent:after, .main-top-video-nav .video-icon:before, .main-top-video-nav .video-icon:after, .main-ul li:before, .tasks-item ul li:before, .difference-video-nav .video-icon:before, .difference-video-nav .video-icon:after, .footer-nav .btn_arr:after, .reviews-slider.text-reviews .reviews-slider-item-body .reviews-slider-item-img, .reviews-slider-item-inner:before, .reviews-slider-item-inner:after, .faq-item:before, .select__head::after {
    content: '';
    display: inline-block;
    position: absolute;
}

.companies-slider-item-img img, .popular-item-img img, .reviews-slider.text-reviews .reviews-slider-item-body .reviews-slider-item-img img, .reviews-slider-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
}

body * {
    box-sizing: border-box;
}

body {
    font-size: 18px;
    font-family: "BlissPro";
}

body.noscroll {
    overflow: hidden;
}

b, strong {
    font-family: "BlissPro-Bold";
}

button,
select {
    cursor: pointer;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "BlissPro-Bold";
    font-weight: normal;
    line-height: 1.2;
}

h2 {
    font-size: 48px;
    margin-bottom: 50px;
}

h3 {
    font-size: 24px;
    margin-bottom: 22px;
}

input[type="checkbox"] {
    opacity: 0;
    z-index: 2;
    width: 21px;
    height: 21px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.psevdo-checkbox {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 1;
}

.psevdo-checkbox:before {
    top: 0;
    left: 0;
    background: #FFFFFF;
    border: 1px solid rgba(58, 121, 154, 0.15);
    border-radius: 3px;
    z-index: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.psevdo-checkbox:after {
    border-radius: 3px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.form textarea {
    resize: none;
}

input[type="checkbox"]:checked ~ .psevdo-checkbox:after {
    text-align: center;
    background: #00A160 url(/local/templates/fingrad/css_new/../img/btn-check.svg) center center no-repeat;
    border: 1px solid #00A160;
}

.form-row {
    position: relative;
    margin-bottom: 4px;
}

.form-row input {
    font-size: 18px;
    color: #5B7183;
}

.form-row_psevdo {
    padding-left: 26px;
}

.form-row_psevdo label {
    cursor: pointer;
    color: #5B7183;
}

.form-row_count span {
    background: #5B7183;
    width: 36px;
    height: 40px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-family: "BlissPro-Bold";
    cursor: pointer;
}

.form-row_count span:hover {
    background: #4c5e6d;
}

.form-row_count span.less {
    border-radius: 3px 0 0 3px;
}

.form-row_count span.more {
    border-radius: 0 3px 3px 0;
}

.form-row_count input {
    width: 50px !important;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2px;
    border: 1px solid rgba(58, 121, 154, 0.15);
    border-left: 0;
    border-right: 0;
}

.flex-box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.flex-box.flex-center {
    align-items: center;
}

.flex-box.flex-stretch {
    align-items: stretch;
}

.flex-box.space-between {
    justify-content: space-between;
}

.flex-box.flex-end {
    justify-content: flex-end;
}

.flex-box.space-center {
    justify-content: center;
}

/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.35s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.35s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.newpages {
    font-family: "BlissPro";
}

.newpages h1, .newpages h2, .newpages h3 {
    font-family: "BlissPro-Bold";
    font-weight: normal;
    line-height: 1.4;
}

.newpages h2 {
    font-size: 44px;
    margin-bottom: 30px;
}

.form-result {
    display: none;
}

.form-result .btn {
    min-width: 240px;
    margin: 38px auto 40px;
    text-align: center;
    cursor: pointer;
}

.form-result p {
    margin-top: 40px;
    text-align: center;
}

.modal-form {
    background: #FFFFFF;
    border: 2px solid #F0EFF0;
    box-shadow: -10px -10px 30px rgba(162, 162, 162, 0.1), 10px 10px 30px rgba(161, 161, 161, 0.1);
    border-radius: 10px;
    padding: 145px 200px;
    max-width: 1280px;
    margin: auto;
    position: relative;
}

.modal-form h4 {
    text-align: center;
    font-size: 18px;
    font-family: "BlissPro-Medium";
    margin-bottom: 56px;
}

.modal-form .form-body-container {
    max-width: 280px;
    margin: auto;
}

.main-demo-form .form-body-container {
    max-width: 280px;
}

.modal-form .form-body {
    max-width: 80%;
    margin: auto;
}

.mfp-close-btn-in .mfp-close {
    font-size: 0;
    background: url(/local/templates/fingrad/css_new/../img/modal-close.svg) center center no-repeat;
    width: 32px;
    height: 32px;
    right: 48px;
    top: 48px;
    opacity: 1;
}

.header {
    font-size: 18px;
    line-height: 1.2;
}

.header-block {
    padding: 10px 0 20px;
}

.header-logo {
    margin-right: 20px;
}

.header-logo-tagline {
    color: #5B7183;
}

.header-phone {
    font-size: 24px;
    font-family: "BlissPro-Bold";
}

.header-phone a {
    color: #000000;
}

.header-phone .tg {
    margin-left: 17px;
    width: 30px;
    height: 30px;
    display: block;
    background: url(/local/templates/fingrad/css_new/../img/tg.svg) 0 0 no-repeat;
    background-size: contain;
}

.header-phone .tg:hover {
    opacity: .9;
}

.header .btn_orange {
    margin-right: 20px;
}

.header-navigation {
    background: #00A160;
}

.header-navigation.fixed {
    z-index: 20;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
}

.header-navigation ul {
    list-style: none;
}

.header-navigation ul li {
    position: relative;
}

.header-nav-menu {
    width: calc(100% - 400px);
}

.header-nav-menu li:before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #FFB800;
    opacity: 0;
}

.header-nav-menu li.parent:before {
    min-width: 180px;
}

.header-nav-menu .sub-menu li:before {
    display: none
}

.header-nav-menu .sub-menu li:hover a {
    opacity: .8
}

.header-nav-menu li:hover:before, .header-nav-menu li.active:before {
    opacity: 1;
}

.header-nav-menu .parent {
    z-index: 10;
    padding-right: 20px;
}

.header-nav-menu .parent:after {
    background: url(/local/templates/fingrad/css_new/../img/arr-down.svg) center center no-repeat;
    width: 12px;
    height: 8px;
    top: calc(50% - 4px);
    right: 0;
    -webkit-animation: rotate_start 1s forwards;
    animation: rotate_start 1s forwards;
}

.header-nav-menu .parent:hover:after, .header-nav-menu .parent.active:after {
    -webkit-animation: rotate 1s forwards;
    animation: rotate 1s forwards;
}

.header-nav-menu .parent:hover .sub-menu, .header-nav-menu .parent.active .sub-menu {
    display: block;
    min-width: 180px;
    -webkit-animation: show 1s forwards;
    animation: show 1s forwards;
}

.header-nav-menu a {
    color: #fff;
    padding: 18px 0;
    display: block;
}

.header .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #00A160;
    z-index: 11;
    padding: 10px;
    width: 100%;
    display: none;
}

.header .sub-menu a {
    color: #fff;
    padding: 10px 0;
}

.header-search {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    width: 300px;
    position: relative;
    /* Firefox 19+ */
    /* Firefox 18- */
}

.header-search button {
    background: url(/local/templates/fingrad/css_new/../img/search.svg) center center no-repeat;
    width: 60px;
    height: 100%;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
}

.header-search input {
    padding: 10px 20px;
    background: transparent;
    border: none;
    width: 100%;
    position: relative;
    z-index: 1;
    color: #fff;
}

.header-search input::-webkit-input-placeholder {
    color: #fff;
}

.header-search input::-moz-placeholder {
    color: #fff;
}

.header-search input:-moz-placeholder {
    color: #fff;
}

.header-search input:-ms-input-placeholder {
    color: #fff;
}

@-webkit-keyframes rotate_start {
    0% {
        transform: rotate(180deg);
    }
    100% {
        transform: none;
    }
}

@keyframes rotate_start {
    0% {
        transform: rotate(180deg);
    }
    100% {
        transform: none;
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: none;
    }
    100% {
        transform: rotate(180deg);
    }
}

@keyframes rotate {
    0% {
        transform: none;
    }
    100% {
        transform: rotate(180deg);
    }
}

.wrapper {
    max-width: 1320px;
    padding: 0 20px;
    margin: auto;
}

.btn_orange {
    display: table;
    padding: 11px 30px;
    border-radius: 30px;
    font-family: "BlissPro-Bold";
    background: linear-gradient(90deg, #F48620 0%, #FFB800 100%);
    color: #fff;
}

.btn_orange:hover {
    background: linear-gradient(180deg, #F48620 0%, #FFB800 100%);
}

.btn_green-border {
    border: 1px solid #00A160;
    display: table;
    padding: 11px 30px;
    border-radius: 30px;
    font-family: "BlissPro-Bold";
    color: #000;
}

.btn_green-border:hover {
    color: #fff;
    background: #00A160;
}

.main-top {
    padding: 60px 0 50px;
    background: #F2F8FD;
}

.main-top .wrapper {
    position: relative;
}

.main-top .left {
    width: calc(100% - 766px + 100px);
}

.main-top .right {
    width: 766px;
    position: absolute;
    right: -100px;
    bottom: -40px;
}

.main-top h1 {
    font-size: 48px;
    line-height: 1;
    font-family: "BlissPro-Bold";
    margin-bottom: 5px;
}

.main-top-video {
    position: absolute;
    width: 609px;
    height: 382px;
    top: 25px;
    left: 80px;
    background: url(/local/templates/fingrad/css_new/../img/video-bg.jpg) 0 0 no-repeat;
}

.main-top-video iframe, .difference-video iframe, .reviews-slider-item-inner iframe {
    position: absolute;
    z-index: 2;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.main-top-video-container {
    background: url(/local/templates/fingrad/css_new/../img/mac-mockup.png) 0 0 no-repeat;
    background-size: contain;
    width: 766px;
    height: 479px;
    margin-right: -100px;
    margin-bottom: -50px;
}

.main-top-video-nav {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
}

.main-top-video-nav span {
    color: #fff;
    font-size: 18px;
    font-family: "BlissPro-Bold";
    text-align: center;
    display: block;
    position: absolute;
    bottom: -70px;
    width: 200px;
    left: -85px;
}

.main-top-video-nav .video-icon {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.main-top-video-nav .video-icon i {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background: url(/local/templates/fingrad/css_new/../img/video-arr.svg) 0 0 no-repeat;
    z-index: 3;
}

.main-top-video-nav .video-icon:before {
    width: 80px;
    height: 80px;
    left: -30px;
    top: -25px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    z-index: 1;
    -webkit-animation: zoom 3s infinite;
    animation: zoom 3s infinite;
}

.main-top-video-nav .video-icon:after {
    z-index: 1;
    width: 100px;
    height: 100px;
    left: -40px;
    top: -35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    -webkit-animation: zoom 3s infinite;
    animation: zoom 3s infinite;
}

.green {
    color: #00A160;
}

.main-ul {
    margin-bottom: 50px;
}

.main-ul li {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 37px;
    position: relative;
}

.main-ul li:before {
    left: 0;
    top: 4px;
    width: 19px;
    height: 14px;
    background-size: contain;
    background: url(/local/templates/fingrad/css_new/../img/check.svg) center center no-repeat;
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.tasks {
    padding: 130px 0 80px;
}

.tasks-item {
    width: calc((100% - 100px) / 3);
    padding-top: 100px;
    background-position: left top;
    background-repeat: no-repeat;
}

.tasks-item ul {
    color: #5B7183;
    line-height: 1.2;
}

.tasks-item ul li {
    margin-bottom: 12px;
    list-style-type: none;
    position: relative;
    padding-left: 15px;
}

.tasks-item ul li:before {
    width: 6px;
    height: 6px;
    background: #00A160;
    border-radius: 10px;
    left: 0;
    top: 8px;
}

.advantages {
    background: #F2F8FD;
    padding: 90px 0 130px;
}

.advantages-block {
    margin-top: 50px;
}

.advantages p {
    color: #5B7183;
}

.advantages-item {
    width: calc(50% - 50px);
    padding-left: 80px;
    background: url(/local/templates/fingrad/css_new/../img/adv-check.svg) left top no-repeat;
    margin-bottom: 50px;
    min-height: 60px;
    color: #5B7183;
}

.advantages-item span {
    color: #000;
    font-size: 24px;
    font-family: "BlissPro-Bold";
    display: block;
}

.companies {
    padding: 100px 0 120px;
}

.companies h2 {
    margin-bottom: 70px;
}

.companies-slider {
    position: relative;
}

.companies-slider-nav {
    margin-bottom: 50px;
}

.companies-slider-nav .slick-dots {
    display: flex;
}

.companies-slider-nav .slick-dots li {
    list-style-type: none;
    margin-right: 20px;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.companies-slider-nav .slick-dots li.slick-active, .companies-slider-nav .slick-dots li:hover {
    background: #000;
    padding: 10px 20px;
}

.companies-slider-nav .slick-dots li.slick-active button, .companies-slider-nav .slick-dots li:hover button {
    color: #fff;
}

.companies-slider-nav .slick-dots li button {
    font-size: 18px;
    color: #000;
    background: transparent;
    font-family: "BlissPro-Bold";
}

.companies-slider-item {
    box-shadow: 0 10px 20px rgba(58, 121, 154, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.companies-slider-item-img {
    width: 620px;
}

.companies-slider-item-img img {
    display: block;
}

.companies-slider-item-info {
    border: 1px solid rgba(91, 113, 131, 0.15);
    width: calc(100% - 620px);
    padding: 30px 40px 50px;
    line-height: 1.1;
}

.companies-slider-item-info h3 {
    margin-bottom: 30px;
}

.companies-slider-item-info p {
    color: #5B7183;
    margin-bottom: 26px;
}

.companies-slider-item-info div {
    margin-bottom: 8px;
}

.companies-slider-item-info .btn {
    margin-top: 47px;
    padding: 19px 30px 20px;
}

.slick-arrow {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 70px;
    background-image: url(/local/templates/fingrad/css_new/../img/slick-arr.svg);
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(50% - 35px);
    z-index: 10;
}

.slick-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slick-arrow.slick-prev {
    left: -30px;
}

.slick-arrow.slick-next {
    right: -30px;
    transform: rotate(180deg);
}

.difference {
    background: #F2F8FD;
    padding: 80px 0 100px;
}

.difference-item {
    margin-bottom: 40px;
    padding-left: 100px;
    background-position: left top;
    background-repeat: no-repeat;
    min-height: 86px;
}

.difference-item:nth-child(1) {
    background-image: url(/local/templates/fingrad/css_new/../img/dif-1.svg);
}

.difference-item:nth-child(2) {
    background-image: url(/local/templates/fingrad/css_new/../img/dif-2.svg);
}

.difference-item:nth-child(3) {
    background-image: url(/local/templates/fingrad/css_new/../img/dif-3.svg);
}

.difference-item h3 {
    margin-bottom: 5px;
}

.difference-item p {
    color: #5B7183;
    max-width: 380px;
    line-height: 1.2;
}

.difference .left {
    width: calc(100% - 600px);
}

.difference .right {
    width: 600px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.difference-video {
    position: absolute;
    width: 456px;
    height: 286px;
    top: 60px;
    left: 75px;
    background: url(/local/templates/fingrad/css_new/../img/mac-small-bg.jpg) 0 0 no-repeat;
}

.difference-video-container {
    background: url(/local/templates/fingrad/css_new/../img/mac-small.png) 0 0 no-repeat;
    background-size: contain;
    width: 766px;
    height: 479px;
    margin-right: -100px;
    margin-bottom: -50px;
}

.difference-video-nav {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
}

.difference-video-nav span {
    color: #fff;
    font-size: 18px;
    font-family: "BlissPro-Bold";
    text-align: center;
    display: block;
    position: absolute;
    bottom: -90px;
    width: 250px;
    left: -110px;
    line-height: 1.2;
}

.difference-video-nav .video-icon {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.difference-video-nav .video-icon i {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background: url(/local/templates/fingrad/css_new/../img/video-arr.svg) 0 0 no-repeat;
    z-index: 3;
}

.difference-video-nav .video-icon:before {
    width: 80px;
    height: 80px;
    left: -30px;
    top: -25px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    z-index: 1;
    -webkit-animation: zoom 3s infinite;
    animation: zoom 3s infinite;
}

.difference-video-nav .video-icon:after {
    z-index: 1;
    width: 100px;
    height: 100px;
    left: -40px;
    top: -35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    -webkit-animation: zoom 3s infinite;
    animation: zoom 3s infinite;
}

.footer-top {
    background: #353A45;
    padding: 40px 0 44px;
}

.footer-nav {
    width: calc((100% - 200px) / 4);
    min-width: 200px;
}

.footer-nav a, .footer-nav p {
    font-family: "BlissPro-Bold";
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    display: table;
}

/*.footer-nav a:hover, .footer-nav p:hover {
    color: rgba(255, 255, 255, 0.8);
}*/

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav a.caption, .footer-nav p.caption {
    color: #fff;
    font-size: 24px;
}

.footer-nav a.caption:hover, .footer-nav p.caption:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav .btn_arr {
    color: #FFFFFF;
    padding: 12px 60px 14px 30px;
    position: relative;
    border: 1px solid #D7D7D7;
    border-radius: 30px;
    margin-bottom: 50px;
    background: transparent;
    line-height: 1;
}

.footer-nav .btn_arr:hover {
    opacity: .8;
}

.footer-nav .btn_arr:after {
    right: 30px;
    top: calc(50% - 3px);
    width: 15px;
    height: 6px;
    background: url(/local/templates/fingrad/css_new/../img/btn-arr.svg) center center no-repeat;
}

.footer-nav-contacts {
    margin-top: 30px;
}

.footer-nav-contacts a, .footer-nav-contacts p {
    color: #fff;
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
}

.footer-social a {
    display: block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: 0 0;
    margin-left: 20px;
}

.footer-social a:hover {
    opacity: .8;
}

.footer-social a:first-child {
    margin-left: 0;
}

.footer-social a.wa {
    background-image: url(/local/templates/fingrad/css_new/../img/wa-w.svg);
}

.footer-social a.yt {
    background-image: url(/local/templates/fingrad/css_new/../img/yt-w.svg);
}

.footer-social a.tg {
    background-image: url(/local/templates/fingrad/css_new/../img/tg-w.svg);
}

.footer-tel {
    margin-top: 30px;
}

.footer-bottom {
    background: #262C37;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.decisions {
    padding: 100px 0;
}

.decisions h2 {
    margin-bottom: 10px;
}

.decisions p {
    color: #5B7183;
    max-width: 1000px;
}

.decisions table {
    width: 100%;
    margin-top: 60px;
    border-collapse: collapse;
}

.decisions table thead {
    font-size: 24px;
    font-family: "BlissPro-Bold";
    line-height: 1;
}

.decisions table thead span {
    display: block;
    font-size: 18px;
    font-family: "BlissPro";
}

.decisions table td {
    padding: 20px;
    text-align: center;
    border-left: 2px solid rgba(91, 113, 131, 0.15);
    width: calc(70% / 3);
    vertical-align: middle;
}

.decisions table td:nth-child(1) {
    text-align: left;
    font-size: 24px;
    border-left: 0;
    padding-left: 30px;
    width: 30%;
}

.decisions table tbody tr:nth-child(odd) td {
    background: #F2F8FD;
}

.popular {
    padding: 100px 0 0;
}

.popular-item {
    background: #FFFFFF;
    border: 1px solid rgba(91, 113, 131, 0.15);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(58, 121, 154, 0.15);
    margin-bottom: 40px;
}

.popular-item-img {
    position: relative;
    width: 456px;
}

.popular-item-img .difference-video-nav span {
    bottom: -65px;
    width: 150px;
    left: -60px;
}

.popular-item-img img {
    display: block;
}

.popular-item-info {
    padding: 30px 30px 36px 30px;
    width: calc(100% - 456px);
}

.popular-item-info h3 {
    margin-bottom: 0;
}

.popular-item-info p {
    color: #5B7183;
}

.popular-item-btns .btn:first-child {
    margin-right: 20px;
}

.popular .serv-price {
    margin-top: 30px;
    margin-bottom: 36px;
}

.popular .serv-price-item {
    padding-left: 53px;
    background-repeat: no-repeat;
    background-position: left top;
}

.popular .serv-price-item:first-child {
    margin-right: 50px;
    background-image: url(/local/templates/fingrad/css_new/../img/serv-icon-green-1.svg);
}

.popular .serv-price-item:last-child {
    background-image: url(/local/templates/fingrad/css_new/../img/serv-icon-green-2.svg);
    max-width: 230px;
}

.reviews {
    padding: 100px 0 90px;
}

.reviews p {
    color: #5B7183;
}

.reviews h2 {
    margin-bottom: 0;
}

.reviews-nav {
    margin: 50px 0 60px;
    display: table;
}

.reviews-nav .flex-box {
    border: 1px solid #00A160;
    border-radius: 30px;
    overflow: hidden;
}

.reviews-nav span {
    display: block;
    text-align: center;
    padding: 14px 30px;
    cursor: pointer;
}

.reviews-nav span.active, .reviews-nav span:hover {
    color: #fff;
    background: #00A160;
}

.reviews-slider {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.reviews-slider-container {
    position: relative;
    margin-top: 60px;
}

.reviews-slider-container.text {
    height: 440px;
}

.reviews-slider-container.video {
    height: 660px;
}

.reviews-slider.active {
    -webkit-animation: show .6s forwards;
    animation: show .6s forwards;
    z-index: 3;
}

.reviews-slider.text-reviews .reviews-slider-item {
    padding-top: 20px;
    opacity: .25;
}

.reviews-slider.text-reviews .reviews-slider-item-body p {
    color: #5B7183;
    max-width: 600px;
    margin: auto;
}

.reviews-slider.text-reviews .reviews-slider-item.slick-active {
    opacity: 1;
}

.reviews-slider.text-reviews .reviews-slider-item-body {
    position: relative;
    border: 1px solid #E7EAED;
    padding: 120px 50px 40px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.reviews-slider.text-reviews .reviews-slider-item-body a {
    display: table;
    margin: auto;
    color: #00A160;
    text-decoration: underline;
}

.reviews-slider.text-reviews .reviews-slider-item-body a:hover {
    text-decoration: none;
}

.reviews-slider.text-reviews .reviews-slider-item-body .reviews-slider-item-img {
    top: -20px;
    left: calc(50% - 60px);
    width: 120px;
    height: 120px;
}

.reviews-slider .slick-arrow.slick-next {
    right: 390px;
}

.reviews-slider .slick-arrow.slick-prev {
    left: 390px;
}

.reviews-slider .slick-active .reviews-slider-item-inner:before, .reviews-slider .slick-active .reviews-slider-item-inner:after {
    opacity: 0;
}

.reviews-slider .slick-active .reviews-slider-item-caption {
    opacity: 1;
}

.reviews-slider .slick-active .difference-video-nav {
    opacity: 1;
}

.reviews-slider-item {
    margin: 0 20px;
}

.reviews-slider-item .difference-video-nav {
    opacity: 0;
    z-index: 3;
}

.reviews-slider-item img {
    z-index: 1;
    position: relative;
}

.reviews-slider-item-caption {
    opacity: 0;
    margin-top: 20px;
    text-align: center;
    line-height: 1.1;
}

.reviews-slider-item-caption p {
    font-size: 24px;
    color: #000;
}

.reviews-slider-item-caption span {
    color: #5B7183;
    display: block;
}

.reviews-slider-item-inner {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: auto;
}

.reviews-slider-item-inner:before {
    background: linear-gradient(45.83deg, rgba(255, 255, 255, 0.1) 50.64%, rgba(255, 255, 255, 0) 71.85%);
    width: 100%;
    height: 100%;
    z-index: 2;
    left: 0;
    top: 0;
}

.reviews-slider-item-inner:after {
    background: #FFFFFF;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .6;
    left: 0;
    top: 0;
}

@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.faq {
    background: #F2F8FD;
    padding: 100px 0;
}

.faq-item {
    width: calc(50% - 20px);
    margin-bottom: 48px;
    line-height: 1.2;
    padding-left: 25px;
    position: relative;
}

.faq-item:before {
    content: '—';
    left: 0;
    top: 4px;
    color: #5B7183;
}

.faq-item-header {
    font-size: 24px;
    font-family: "BlissPro-Bold";
    margin-bottom: 4px;
}

.faq-item-body {
    color: #5B7183;
}

.order {
    padding: 90px 0 130px;
    background: url(/local/templates/fingrad/css_new/../img/order-bg.jpg) 0 0 no-repeat;
    background-size: cover;
}

.order h2 {
    color: #fff;
}

.order-form {
    background: #F2F8FD;
    border-radius: 10px;
    padding: 40px 40px 50px;
    max-width: 620px;
}

.order-form-data {
    display: none;
}

.order-form-block {
    margin-bottom: 30px;
}

.order-form-block h3 {
    margin-bottom: 10px;
}

.order-form-block-3 {
    max-width: 400px;
}

.order .show-more,
.order .hide-more {
    border-bottom: 1px dashed #5B7183;
    font-family: "BlissPro-Bold";
    margin: 25px 0;
    padding-left: 24px;
    display: table;
    background: url(/local/templates/fingrad/css_new/../img/more.svg) left 8px no-repeat;
    cursor: pointer;
}

.order .hide-more {
    background: url(/local/templates/fingrad/css_new/../img/hide.svg) left 14px no-repeat;
}

.order .col-3 {
    width: 121px;
}

.order .col-2 {
    width: 60%;
}

.select {
    width: 100%;
}

.select__head {
    position: relative;
    display: block;
    width: 100%;
    outline: none;
    padding: 10px;
    font-family: "BlissPro";
    color: #5B7183;
    border: 1px solid rgba(58, 121, 154, 0.15);
    cursor: pointer;
    background: #fff;
}

.select__head.open {
    border-bottom-color: transparent;
    border-radius: 5px 5px 0 0;
}

.select__head::after {
    background: url(/local/templates/fingrad/css_new/../img/select-arr.svg) center center no-repeat;
    width: 16px;
    height: 16px;
    pointer-events: none;
    top: calc(50% - 8px);
    right: 20px;
    z-index: 1;
}

.select__head.open::after {
    transform: rotate(180deg);
}

.select__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 5px 5px;
    border: 1px solid rgba(58, 121, 154, 0.15);
    border-top: 0;
    z-index: 100;
    margin: 0;
    padding: 0 0 10px;
    color: #5B7183;
    max-height: 180px;
    overflow: scroll;
}

.select__list::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
    padding: 5px;
}

.select__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #e9e9e9;
}

.select__list .select__item {
    position: relative;
    padding: 10px;
    cursor: pointer;
    list-style-type: none;
    margin-bottom: 0;
}

.select__list .select__item:hover {
    color: #000;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form input[type="phone"],
.form input[type="date"],
.form textarea {
    color: #000;
    font-family: "BlissPro";
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid rgba(58, 121, 154, 0.15);
    width: 100%;
}

.form input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form.modal-form {
    /* Firefox 19+ */
    /* Firefox 18- */
    background: #F2F8FD;
    border-radius: 10px;
    max-width: 620px;
    position: relative;
    margin: auto;
    padding: 50px 40px 30px;
}

.form.modal-form ::-webkit-input-placeholder {
    color: #5B7183;
}

.form.modal-form ::-moz-placeholder {
    color: #5B7183;
}

.form.modal-form :-moz-placeholder {
    color: #5B7183;
}

.form.modal-form :-ms-input-placeholder {
    color: #5B7183;
}

.form.modal-form h3 {
    text-align: center;
}

.form.modal-form .form-row {
    width: 100%;
    /*max-width: 280px;*/
    margin-bottom: 20px;
}

.main-demo-form input[type="submit"] {
    max-width: 173px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}

.form.modal-form input[type="submit"] {
    width: 100%;
    padding: 15px 20px 16px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.main-demo-form label,
.form.modal-form label {
    font-size: 14px;
    line-height: 17px;
    font-family: "BlissPro-Bold";
    display: block;
    margin-bottom: 4px;
}

.main-demo-form label.privacy-label,
.form.modal-form label.privacy-label {
    font-family: "BlissPro";
}

.main-demo-form label.privacy-label a,
.form.modal-form label.privacy-label a {
    color: inherit;
    text-decoration: underline;
}

.main-demo-form label.privacy-label a:hover,
.form.modal-form label.privacy-label a:hover {
    text-decoration: none;
}

.mfp-close-btn-in .mfp-close {
    font-size: 0;
    background: url(/local/templates/fingrad/css_new/../img/popup-close.svg) center center no-repeat;
    width: 40px;
    height: 40px;
    right: 10px;
    top: 10px;
    opacity: 1;
}

.mfp-close-btn-in .mfp-close:hover {
    opacity: .8;
}

@-webkit-keyframes b_1 {
    0% {
        transform: none;
        top: 0;
    }
    100% {
        transform: rotate(45deg);
        top: 8px;
    }
}

@keyframes b_1 {
    0% {
        transform: none;
        top: 0;
    }
    100% {
        transform: rotate(45deg);
        top: 8px;
    }
}

@-webkit-keyframes b_1_start {
    0% {
        transform: rotate(45deg);
        top: 8px;
    }
    100% {
        transform: none;
        top: 0;
    }
}

@keyframes b_1_start {
    0% {
        transform: rotate(45deg);
        top: 8px;
    }
    100% {
        transform: none;
        top: 0;
    }
}

@-webkit-keyframes b_3 {
    0% {
        transform: none;
        bottom: 0;
    }
    100% {
        transform: rotate(-45deg);
        bottom: 8px;
    }
}

@keyframes b_3 {
    0% {
        transform: none;
        bottom: 0;
    }
    100% {
        transform: rotate(-45deg);
        bottom: 8px;
    }
}

@-webkit-keyframes b_3_start {
    0% {
        transform: rotate(-45deg);
        bottom: 8px;
    }
    100% {
        transform: none;
        bottom: 0;
    }
}

@keyframes b_3_start {
    0% {
        transform: rotate(-45deg);
        bottom: 8px;
    }
    100% {
        transform: none;
        bottom: 0;
    }
}

.burger {
    display: none;
}


.main-demo-form {
    display: none;
}

.main-demo-form .form-row {
    margin-bottom: 20px;
}

.lessons-form .form-result h3 {text-align: center;}

.lessons-form .form-result p {font-size: 18px;margin-top: 20px;}

.lessons-form .form-result #form_res_close {font-size:18px;margin: 15px auto 40px; background: linear-gradient(90deg, #057fbe 0%, #50bcf4 100%);}


.lessons-form .form-body .button {padding: 8px 37px 10px 37px;}
@media (max-width: 767px) {
.lessons-form .form-body .button {width: 100%;margin-bottom: 7px;}
}


.form-row-error {display: none;}
#form-row-error {color: #ff0000;}
.form-input-error {border-color: #ff0000 !important;}

@media (min-width: 1101px) {
#form-row-error {
	margin-top: -20px;
	font-size: 14px;
	}
}
/* End */


/* Start:/local/templates/fingrad/css_new/media.css?170597554014903*/
@media (max-width: 1500px) {
  .main-top .right {
    right: -50px; } }

@media(max-width: 992px) {
	#pyrus-widget-container-element {
	bottom: 70px !important;
	}
}

@media (max-width: 1400px) {
  .main-top .left {
    width: calc(100% - 766px + 50px); }
  .main-top .right {
    right: 0; }
  .reviews-slider .slick-arrow.slick-next {
    right: 290px; }
  .reviews-slider .slick-arrow.slick-prev {
    left: 290px; }
  .reviews-nav {
    margin: 20px 0 30px; }
  .reviews {
    padding: 80px 0; }
  .popular {
    padding: 80px 0 0; }
  .decisions table td:nth-child(1),
  .decisions table thead {
    font-size: 20px; }
  .difference {
    padding: 80px 0 80px; }
  .companies {
    padding: 80px 0; }
  .companies-slider-nav .slick-dots li {
    margin-right: 10px; }
  .companies .wrapper {
    padding: 0 40px; }
  .order {
    padding: 80px 0; }
  .faq {
    padding: 80px 0; }
  .advantages {
    padding: 80px 0; }
  .tasks {
    padding: 80px 0; }
  h3 {
    font-size: 20px;
    margin-bottom: 16px; }
  body,
  .form-row input {
    font-size: 16px; }
  .header {
    font-size: 16px; }
  .header-phone,
  .footer-nav a.caption,
  .footer-nav p.caption {
    font-size: 22px; }
  .header-logo {
    width: 180px; } }

@media (max-width: 1300px) {
  .main-top h1 {
    font-size: 40px; }
  .main-top .right {
    bottom: 0; }
  .companies-slider-item-img {
    width: 40%; }
  .companies-slider-item-info {
    width: 60%;
    padding: 20px 50px 20px 30px; }
  .companies-slider-nav .slick-dots li button {
    font-size: 14px; }
  .companies-slider-item-info .btn {
    margin-top: 30px; } }

@media (max-width: 1200px) {
  .main-top .left {
    width: calc(100% - 600px); }
  .main-top .right {
    width: 600px; }
  .main-top-video-container {
    width: 600px; }
  .main-top-video {
    width: 476px;
    height: 300px;
    top: 19px;
    left: 62px; } }

@media (max-width: 1100px) {
  .main-top .left {
    width: 100%;
    margin-bottom: 40px; }
  .main-top-video-container {
    height: 400px; }
  .main-top .right {
    position: relative;
    margin: auto;
    right: auto;
    bottom: auto; }
  .difference-video-container {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    width: 100%;
    background: none;
    height: auto; }
  .difference-video {
    top: auto;
    left: auto;
    position: relative;
    margin: auto; }
  .difference .right {
    width: 100%;
    position: relative;
    right: auto;
    bottom: auto; }
  .difference .left {
    width: 100%;
    max-width: 480px;
    margin: auto; }
  .difference-item {
    background-size: 60px 60px;
    padding-left: 80px; }
  .footer-social a {
    width: 30px;
    height: 30px;
    background-size: cover; }
  .btn {
    display: table;
    padding: 11px 20px; }
  .header .btn_orange {
    margin-right: 10px; }
  .header-phone .tg {
    margin-left: 10px; }
  .header-logo-tagline {
    font-size: 14px; }
  .header-logo {
    width: 150px; }
  .header-phone,
  .footer-nav a.caption,
  .footer-nav p.caption,
  .header-phone {
    font-size: 18px; }
  .footer-nav a, .footer-nav p {
    line-height: 1.2; }
  .footer-top {
    background: #353a45;
    padding: 30px 0; }
  .footer-nav .btn_arr {
    padding: 8px 50px 11px 20px; }
  .footer-nav .btn_arr:after {
    right: 20px; } }

@media (max-width: 1000px) {
  .reviews-slider-item {
    margin: 0 10px; }
  .reviews-slider .slick-arrow {
    top: calc(50% - 45px); }
    .reviews-slider .slick-arrow.slick-next {
      right: 190px; }
    .reviews-slider .slick-arrow.slick-prev {
      left: 190px; }
  .popular-item-info {
    width: 50%;
    padding: 20px 10px; }
  .popular-item-btns .btn:first-child {
    margin-right: 10px; }
  .popular-item {
    margin-bottom: 30px; }
  .popular .serv-price-item {
    width: calc(50% - 10px);
    padding-left: 40px;
    background-size: 25px 25px; }
    .popular .serv-price-item:first-child {
      margin-right: 20px; }
  .popular-item-img {
    width: 50%; }
  .decisions table td {
    padding: 10px;
    line-height: 1.1; }
  .decisions table tbody td img {
    width: 30px;
    height: 30px; }
  .decisions table td:nth-child(1),
  .decisions table thead {
    font-size: 16px; }
  .decisions table thead img {
    max-width: 60%; }
  .companies-slider-nav {
    display: none; }
  .companies h2 {
    margin-bottom: 40px; }
  .advantages-item {
    width: calc(50% - 15px);
    padding-left: 60px;
    margin-bottom: 30px;
    background-size: 50px 50px; }
  .header-logo-tagline {
    display: none; }
  .header-search {
    width: 220px; }
  .header-nav-menu {
    width: calc(100% - 280px); } }

@media (max-width: 900px) {
  .difference {
    padding: 50px 0; }
  .popular {
    padding: 50px 0 0; }
  .decisions {
    padding: 50px 0; }
  .companies-slider-item-info h3 {
    margin-bottom: 20px; }
  .companies {
    padding: 50px 0; }
  .order {
    padding: 50px 0; }
  .faq {
    padding: 50px 0; }
  .advantages-item span {
    font-size: 18px;
    line-height: 1.2; }
  .advantages {
    padding: 50px 0; }
  .tasks {
    padding: 50px 0; }
  h2 {
    font-size: 42px;
    margin-bottom: 30px; }
  .tasks-item {
    background-size: 60px 60px;
    padding-top: 70px; }
  h3 {
    font-size: 18px; }
  .header-nav-menu {
    width: calc(100% - 260px); }
  .footer-nav {
    margin-right: 30px; }
    .footer-nav:last-child {
      margin-right: 0;
      margin-top: 30px;
      justify-content: flex-start !important; }
  .footer-nav .btn_arr {
    margin-bottom: 20px; }
  .header-logo {
    width: 120px; } }

@media (max-width: 800px) {
  .header-nav-menu .parent:hover:after {
    -webkit-animation: none;
            animation: none; }
  .header-nav-menu .parent.active:after {
    -webkit-animation: rotate 1s forwards;
            animation: rotate 1s forwards; }
  .header-nav-menu .parent:hover .sub-menu {
    display: none;
    -webkit-animation: none;
            animation: none; }
  .header-nav-menu .parent.active .sub-menu {
    display: block;
    -webkit-animation: show 1s forwards;
            animation: show 1s forwards; }
  .header-nav-menu .parent:after {
    top: 18px;
    left: 95%; }
  .header-nav-menu li:before {
    display: none; }
  .header .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    padding: 0 10px 10px; }
    .header .sub-menu a {
      padding: 5px 0; }
  .reviews-slider.text-reviews .reviews-slider-item-body {
    padding: 90px 50px 40px; }
  .reviews-slider.text-reviews .reviews-slider-item-body .reviews-slider-item-img {
    left: calc(50% - 45px);
    width: 90px;
    height: 90px; }
  .reviews-slider .slick-arrow {
    top: calc(50% - 55px); }
    .reviews-slider .slick-arrow.slick-next {
      right: 90px; }
    .reviews-slider .slick-arrow.slick-prev {
      left: 90px; }
  .popular-item-btns .btn:first-child {
    margin-bottom: 10px; }
  .form.modal-form {
    padding: 50px 40px 30px; }
    .form.modal-form .form-body {
      max-width: 280px; }
  .tasks-item {
    width: calc((100% - 40px) / 3); }
  .burger {
    display: block;
    width: 30px;
    height: 18px;
    position: relative; }
    .burger span {
      content: '';
      display: inline-block;
      position: absolute;
      width: 100%;
      left: 0;
      height: 1px;
      border-radius: 2px;
      background: #5B7183; }
      .burger span:nth-child(1) {
        top: 0;
        -webkit-animation: b_1_start 1s forwards;
                animation: b_1_start 1s forwards; }
      .burger span:nth-child(2) {
        top: 8px;
        opacity: 1; }
      .burger span:nth-child(3) {
        bottom: 0;
        -webkit-animation: b_3_start 1s forwards;
                animation: b_3_start 1s forwards; }
    .burger.active span:nth-child(1) {
      -webkit-animation: b_1 1s forwards;
              animation: b_1 1s forwards; }
    .burger.active span:nth-child(2) {
      opacity: 0; }
    .burger.active span:nth-child(3) {
      -webkit-animation: b_3 1s forwards;
              animation: b_3 1s forwards; }
  .header-navigation {
    display: none;
    max-width: 320px;
    padding-bottom: 40px;
    position: absolute;
    right: 0;
    top: 70px;
    z-index: 10; }
  .header-search {
    margin: 20px 0 0; }
  .header-nav-menu a {
    padding: 12px 0; }
  .header .btn_orange {
    margin-right: 0;
    margin-bottom: 10px;
    width: 220px;
    text-align: center; }
  .header .btn_green-border {
    color: #fff;
    border-color: #fff;
    text-align: center;
    width: 220px; }
  .header-nav-menu {
    padding: 10px 0;
    width: 100%;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start; }
    .header-nav-menu li {
      width: 100%; } }

@media (max-width: 700px) {
  .tasks-item:last-child {
    margin-bottom: 0; }
  .main-top h1 {
    font-size: 34px; }
  .main-ul {
    margin-bottom: 20px; }
  .main-ul li {
    margin-bottom: 16px; }
  .main-top {
    padding: 50px 0; }
  .wrapper-right-700 {
    padding-right: 0; }
  .decisions table thead img {
    max-width: 80%; }
  .decisions-table {
    overflow-x: scroll;
    padding-bottom: 20px; }
  .decisions table {
    margin-top: 40px;
    min-width: 550px; }
  .decisions table td:nth-child(1), .decisions table thead {
    font-size: 14px; }
  .decisions table td {
    font-size: 14px; }
  .decisions table tbody td img {
    width: 25px;
    height: 25px; }
  .decisions table td:nth-child(1) {
    padding-left: 10px; }
  .slick-arrow {
    width: 50px;
    height: 50px; }
  .companies-slider-item {
    box-shadow: 0 5px 10px rgba(58, 121, 154, 0.15); }
  .slick-arrow {
    top: 310px; }
  .companies-slider-item-img {
    width: 100%;
    height: 300px; }
  .companies-slider-item-info {
    width: 100%;
    padding: 40px 50px 30px; }
  .faq-item-header {
    font-size: 18px; }
  .faq-item {
    width: 100%;
    margin-bottom: 20px; }
  .advantages-item {
    width: 100%; }
  .advantages-block {
    margin-top: 30px; }
  h2 {
    font-size: 36px; }
  .tasks-item {
    width: 100%;
    margin-bottom: 40px; }
  .footer-nav {
    margin-bottom: 20px;
    margin-right: 0;
    width: calc(50% - 40px); } }

@media (max-width: 650px) {
  .reviews-slider.text-reviews .reviews-slider-item-body {
    padding: 90px 40px 20px; }
  .reviews p {
    font-size: 14px; }
  .main-top .right {
    width: 100%; }
  .main-top-video {
    position: relative;
    top: auto;
    left: auto;
    margin: auto;
    width: 100%; }
  .main-top-video-container {
    background: none;
    width: 100%;
    height: auto;
    position: relative;
    margin-right: 0;
    margin-bottom: 0; }
  .popular-item-info {
    width: 100%; }
  .popular .serv-price-item {
    width: auto; }
  .popular-item-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden; } }

@media (max-width: 500px) {
  .slick-arrow {
    top: 270px; }
  .companies-slider-item-info {
    padding: 40px 40px 30px; }
  .header-navigation {
    top: 64px; }
  .main-top h1 {
    font-size: 28px; }
  .reviews-slider .slick-arrow.slick-next {
    right: 25px; }
  .reviews-slider .slick-arrow.slick-prev {
    left: 25px; }
  .popular-item-img .difference-video-nav span {
    bottom: -50px;
    left: -70px; }
  .difference-video {
    background-position: center center; }
  .difference-video-nav .video-icon i {
    width: 20px;
    height: 20px;
    background-size: cover;
    background-position: center center; }
  .difference-video-nav .video-icon {
    width: 20px;
    height: 20px; }
  .difference-video-nav span {
    font-size: 12px;
    bottom: -70px; }
  .difference-video-nav .video-icon:before {
    width: 50px;
    height: 50px;
    left: -20px;
    top: -15px; }
  .difference-video-nav .video-icon:after {
    width: 70px;
    height: 70px;
    left: -30px;
    top: -25px; }
  .difference-video {
    width: 100%;
    height: 250px; }
  .companies h2 {
    margin-bottom: 30px; }
  .companies-slider-item-img {
    width: 100%;
    height: 250px; }
  .form.modal-form {
    padding: 50px 20px 30px; }
  .order-form {
    padding: 30px 20px; }
  .order .col-3 {
    width: 80px; }
  .order-form-block h3 {
    font-size: 16px; }
  .form-row_count span {
    height: 35px;
    font-size: 20px; }
  .form-row_count input[type=text] {
    padding: 0 3px;
    height: 35px;
    font-size: 20px; }
  .advantages-item {
    margin-bottom: 16px; }
  .header-logo {
    width: 100px;
    margin-right: 10px; }
  body,
  .form-row input {
    font-size: 14px; }
  .footer-top {
    background: #353a45;
    padding: 20px 0; }
  .footer-nav {
    width: calc(50% - 10px);
    min-width: 100px; }
  .footer-nav:last-child {
    min-width: 200px;
    margin-top: 0; }
  .footer-nav:nth-child(3) {
    min-width: 200px; }
  .footer-nav-contacts {
    margin-top: 0; }
  .footer-nav a, .footer-nav p {
    font-size: 14px;
    font-family: "BlissPro"; } }

@media (max-width: 450px) {
  .header-navigation {
    top: 54px; }
  .header-block {
    padding: 10px 0; }
  .reviews p {
    max-height: 250px; }
  .header-phone .phone {
    font-size: 0;
    width: 30px;
    height: 30px;
    background: url(/local/templates/fingrad/css_new/../img/phone.svg) center center no-repeat;
    background-size: cover;
    margin-right: 5px; } }

@media (max-width: 400px) {
  .companies-slider-item-info {
    padding: 80px 10px 20px; }
  .slick-arrow {
    bottom: auto;
    top: 270px;
    background-size: 20px 20px; }
    .slick-arrow.slick-prev {
      left: calc(50% - 60px); }
    .slick-arrow.slick-next {
      right: calc(50% - 60px); }
  .reviews-slider.text-reviews .reviews-slider-item-body {
    padding: 70px 0 20px;
    border: none; }
  .difference {
    padding: 40px 0; }
  .difference-item {
    background-size: 50px 50px;
    padding-left: 60px; }
  h2 {
    font-size: 22px; }
  .main-top h1 {
    font-size: 24px; }
  .main-top-video {
    height: 250px; }
  .reviews {
    padding: 40px 0 100px; }
  .reviews-slider .slick-arrow {
    top: auto;
    bottom: -70px; }
    .reviews-slider .slick-arrow.slick-next {
      right: calc(50% - 60px); }
    .reviews-slider .slick-arrow.slick-prev {
      left: calc(50% - 60px); }
  .reviews-nav {
    width: 100%; }
  .reviews-nav span {
    padding: 14px 10px;
    width: 50%; }
  .popular {
    padding: 40px 0 0; }
  .decisions {
    padding: 40px 0; }
  .order .hide-more,
  .order .show-more {
    font-size: 12px;
    background-position: left 8px;
    padding-left: 20px; }
  .order .show-more {
    background-position: left 3px; }
  .form-row_count input[type="text"] {
    font-size: 16px; }
  .order {
    padding: 80px 0; }
  .faq {
    padding: 40px 0; }
  .advantages {
    padding: 40px 0; }
  .tasks {
    padding: 40px 0; }
  .tasks-item {
    background-position: center top; }
  .footer-nav a.caption, .footer-nav p.caption, .header-phone {
    font-size: 16px; }
  .footer-bottom {
    padding: 10px 0; }
  .companies .wrapper {
    padding: 0 20px; } }

/* End */


/* Start:/local/templates/fingrad/css_new/new.css?1705975540427*/
.video__block {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.video__block iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.blog-content .blog-row .col-3:nth-child(1) {
	padding-right: 20px;
}

.blog-content .blog-row .col-3:nth-child(2) {
	padding-left: 10px;
	padding-right: 10px;
}

.blog-content .blog-row .col-3:nth-child(3) {
	padding-left: 20px;
}
/* End */


/* Start:/local/templates/fingrad/css/dev.css?17059755403186*/
.recaptcha_dev {
    margin: 10px auto 0;
}

.recaptcha_dev > div {
    transform: scale(.89) translateX(-19px);
    margin: 10px auto 10px;
}

@media screen and (max-width: 768px) {
    #demo-form {
        left: 5% !important;
    }
}


.press-content .text-side {
	width: 100%;
	padding-right: 0;
	margin-bottom: 20px;
}

.press-content .text-side h2 {
	font-size: 19px;
}

.press-content a {
	color: #008C68;
	transition: 0.5s all;
}

.press-content a:hover {
	color: #00c290;
}

.download-section {
	width: 100%;
	margin-bottom: -50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.icon-block {
	margin-right: 70px;
	margin-bottom: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
}

.icon-block h3 {
	margin-top: 10px;
	text-align: center;
}

.icon-block a {
	color: #000;
	font-family: "GeometriaBold", sans-serif;
}

.icon-block a:hover {
	opacity: 0.6;
	color: #000;
}

.icon-block img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin-bottom: 20px;
}

.icon-block:last-child {
	margin-right: 0;
}


.files-list {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.files-list a {
	margin-right: 8px;
}

.files-list a:last-child {
	margin-right: 0;
}

@media screen and (max-width: 992px) {
	.press-content .text-side h2 {
		font-size: 17px;
		line-height: 21px;
	}	

	.press-content .text-side p {
		font-size: 17px;
		line-height: 21px;
	}	
}

@media screen and (max-width: 768px) {
	.download-section {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: center;
		align-items: center;
	}

	.icon-block {
		margin-right: 0;
	}	
}

@media screen and (max-width: 576px) {
	.icon-block {
		margin-bottom: 25px;
	}

	.cookie-notification-head .u-table-cell h1 {
		font-size: 40px;
		line-height: 43px;
	}

	.cookie-notification .text-side ul {
		padding-left: 20px;
	}
}

@media screen and (max-width: 400px) {
	.cookie-notification-head .u-table-cell h1 {
		font-size: 28px;
		line-height: 38px;
	}
}


.cookie-notification {
	padding-top: 20px;
	padding-bottom: 40px;
}

.cookie-popup p {
	font-size: 16px;
}

.cookie-notification-head h1 {
	font-size: 50px;
	font-weight: 600;
}
/* End */


/* Start:/local/templates/fingrad/components/bitrix/news.detail/company/style.css?1705975541155*/
div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
}

/* End */
/* /local/templates/fingrad/youtube.css?17059755411083 */
/* /local/templates/fingrad/libs/animate/animate.css?170597554174161 */
/* /local/templates/fingrad/libs/owl-carousel/owl.carousel.css?17059755413635 */
/* /local/templates/fingrad/libs/magnific-popup/magnific-popup.css?17059755415256 */
/* /local/templates/fingrad/fonts/font-awesome/css/font-awesome.min.css?170597554028594 */
/* /local/templates/fingrad/css/main.css?170597554086140 */
/* /local/templates/fingrad/css_new/slick.min.css?17059755402569 */
/* /local/templates/fingrad/css_new/style.css?170390317133599 */
/* /local/templates/fingrad/css_new/media.css?170597554014903 */
/* /local/templates/fingrad/css_new/new.css?1705975540427 */
/* /local/templates/fingrad/css/dev.css?17059755403186 */
/* /local/templates/fingrad/components/bitrix/news.detail/company/style.css?1705975541155 */
