@charset "UTF-8";

@keyframes rotation {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

@-webkit-keyframes bounce {

	0%,
	20%,
	53%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
		transform: translate3d(0, -30px, 0) scaleY(1.1)
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
		transform: translate3d(0, -15px, 0) scaleY(1.05)
	}

	80% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0) scaleY(.95);
		transform: translateZ(0) scaleY(.95)
	}

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

@-webkit-keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

@-webkit-keyframes pulse {

	0%,
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

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

@keyframes pulse {

	0%,
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

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

@-webkit-keyframes rubberBand {

	0%,
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

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

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

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

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

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

@keyframes rubberBand {

	0%,
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

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

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

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

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

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

@-webkit-keyframes shakeX {

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

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

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

@keyframes shakeX {

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

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

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

@-webkit-keyframes shakeY {

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

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

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

@keyframes shakeY {

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

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

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

@-webkit-keyframes headShake {

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

	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg)
	}

	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg)
	}

	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg)
	}

	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg)
	}
}

@keyframes headShake {

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

	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg)
	}

	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg)
	}

	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg)
	}

	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg)
	}
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@-webkit-keyframes tada {

	0%,
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

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

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

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

@keyframes tada {

	0%,
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

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

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

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

@-webkit-keyframes wobble {

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

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

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

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

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

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

@keyframes wobble {

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

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

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

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

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

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

@-webkit-keyframes jello {

	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

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

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

@keyframes jello {

	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

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

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

@-webkit-keyframes heartBeat {

	0%,
	28%,
	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	14%,
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
}

@keyframes heartBeat {

	0%,
	28%,
	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	14%,
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
}

@-webkit-keyframes backInDown {
	0% {
		-webkit-transform: translateY(-1200px) scale(.7);
		transform: translateY(-1200px) scale(.7);
		opacity: .7
	}

	80% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@keyframes backInDown {
	0% {
		-webkit-transform: translateY(-1200px) scale(.7);
		transform: translateY(-1200px) scale(.7);
		opacity: .7
	}

	80% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@-webkit-keyframes backInLeft {
	0% {
		-webkit-transform: translateX(-2000px) scale(.7);
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}

	80% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@keyframes backInLeft {
	0% {
		-webkit-transform: translateX(-2000px) scale(.7);
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}

	80% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@-webkit-keyframes backInRight {
	0% {
		-webkit-transform: translateX(2000px) scale(.7);
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}

	80% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@keyframes backInRight {
	0% {
		-webkit-transform: translateX(2000px) scale(.7);
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}

	80% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@-webkit-keyframes backInUp {
	0% {
		-webkit-transform: translateY(1200px) scale(.7);
		transform: translateY(1200px) scale(.7);
		opacity: .7
	}

	80% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@keyframes backInUp {
	0% {
		-webkit-transform: translateY(1200px) scale(.7);
		transform: translateY(1200px) scale(.7);
		opacity: .7
	}

	80% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

@-webkit-keyframes backOutDown {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	20% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: translateY(700px) scale(.7);
		transform: translateY(700px) scale(.7);
		opacity: .7
	}
}

@keyframes backOutDown {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	20% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: translateY(700px) scale(.7);
		transform: translateY(700px) scale(.7);
		opacity: .7
	}
}

@-webkit-keyframes backOutLeft {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	20% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: translateX(-2000px) scale(.7);
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}
}

@keyframes backOutLeft {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	20% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: translateX(-2000px) scale(.7);
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}
}

@-webkit-keyframes backOutRight {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	20% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: translateX(2000px) scale(.7);
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}
}

@keyframes backOutRight {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	20% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: translateX(2000px) scale(.7);
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}
}

@-webkit-keyframes backOutUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	20% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: translateY(-700px) scale(.7);
		transform: translateY(-700px) scale(.7);
		opacity: .7
	}
}

@keyframes backOutUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	20% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		-webkit-transform: translateY(-700px) scale(.7);
		transform: translateY(-700px) scale(.7);
		opacity: .7
	}
}

@-webkit-keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

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

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

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

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@-webkit-keyframes bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@-webkit-keyframes bounceInLeft {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInLeft {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@-webkit-keyframes bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@-webkit-keyframes bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

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

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

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

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

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

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

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}

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

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

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

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

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

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

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

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

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

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

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

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

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

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

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

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}

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

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

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

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

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

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

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

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}

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

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

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

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

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

@-webkit-keyframes fadeOutTopLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

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

@keyframes fadeOutTopLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

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

@-webkit-keyframes fadeOutTopRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

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

@keyframes fadeOutTopRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

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

@-webkit-keyframes fadeOutBottomRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

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

@keyframes fadeOutBottomRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

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

@-webkit-keyframes fadeOutBottomLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

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

@keyframes fadeOutBottomLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

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

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

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

	to {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

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

	to {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

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

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

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

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}

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

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

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

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

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}

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

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

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

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

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

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

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

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

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

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@-webkit-keyframes lightSpeedOutRight {
	0% {
		opacity: 1
	}

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

@keyframes lightSpeedOutRight {
	0% {
		opacity: 1
	}

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

@-webkit-keyframes lightSpeedOutLeft {
	0% {
		opacity: 1
	}

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

@keyframes lightSpeedOutLeft {
	0% {
		opacity: 1
	}

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

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@-webkit-keyframes rotateOut {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

@keyframes rotateOut {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownLeft {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

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

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

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

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

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

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

@-webkit-keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}

	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}

	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

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

@keyframes rollOut {
	0% {
		opacity: 1
	}

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

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

	50% {
		opacity: 1
	}
}

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

	50% {
		opacity: 1
	}
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

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

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

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

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

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

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

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

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

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

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

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

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

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

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

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

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}

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

	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

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

	to {
		opacity: 0
	}
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	to {
		transform: translateY(0)
	}

	40% {
		transform: translateY(-20px)
	}

	60% {
		transform: translateY(-15px)
	}
}

@keyframes bounce-right {

	0%,
	20%,
	50%,
	80%,
	to {
		transform: translateY(0)
	}

	40%,
	60% {
		-webkit-transform: translateX(4px);
		transform: translateX(4px)
	}
}

@-webkit-keyframes navgetfreeconsultation {

	0%,
	to {
		background-position: 0 50%
	}

	50% {
		background-position: 100% 50%
	}
}

@-moz-keyframes navgetfreeconsultation {

	0%,
	to {
		background-position: 0 50%
	}

	50% {
		background-position: 100% 50%
	}
}

@keyframes navgetfreeconsultation {

	0%,
	to {
		background-position: 0 50%
	}

	50% {
		background-position: 100% 50%
	}
}

.lead-form-container {
	width: 400px;
	position: absolute;
	top: 6%;
	right: 5%
}

.form-container {
	max-width: 600px
}

.form-arn {
	background: #fff
}

.form-arn .free-cons1 {
	color: #000;
	text-align: center;
	margin: 20px 0;
	display: block
}

.form-arn p {
	color: #000;
	margin: 10px 0 5px;
	text-align: left;
	font-size: 13px
}

#liposuction .form-arn .privacy-text {
	text-align: center;
	font-size: 13px;
	font-style: italic;
	font-weight: 300
}

.form-arn .privacy-text a {
	color: #000
}

.form-arn input {
	border: 0
}

.form-arn select {
	background-color: #edf1f9;
	border: 0
}

.form-arn input,
.form-arn textarea {
	width: 100%;
	padding: 10px 5px;
	margin-bottom: 5px;
	background-color: #fff;
	color: #757575
}

.form-collapse p {
	font-size: 15px
}

.form-collapse p:after {
	content: '﹀';
	position: absolute;
	margin: 5px;
	font-size: 20px
}

.form-element {
	position: relative
}

.form-arn .submit-btn {
	padding: 10px 30px 10px 10px;
	color: #fff;
	border: 0;
	background-color: #557a9c;
	background-image: url(../../../images/btn-submit-bg.png);
	background-repeat: no-repeat;
	width: 140px;
	background-position: 83%;
	background-size: 15%;
	margin: 0 auto
}

.form-arn .submit-btn,
.form-collapse {
	cursor: pointer;
	display: block
}

.form-collapse+input,
.form-collapse+input+div {
	display: none
}

.form-collapse+input:checked+div {
	display: block
}

.countryDial1 {
	cursor: pointer;
	height: 41px;
	padding: 0 6px;
	background-color: #efeeee;
	display: flex;
	align-items: center
}

#easy-test .countryPnl2 {
	background-color: #e1e1e1
}

#easy-test .countryPnl2,
.countryPnl1 {
	position: absolute;
	z-index: 10;
	width: 100%;
	display: none
}

#easy-test .form-element .filterTxt2,
.form-element .filterTxt1 {
	background-color: #fff;
	border-radius: 0
}

#easy-test .countryCode2DialList,
.countryCode1DialList {
	cursor: pointer;
	min-height: 150px;
	font-size: 14px;
	text-align: left;
	list-style: none;
	max-height: 220px;
	overflow: auto;
	background: #ededed;
	padding-left: 10px
}

.countryCode1DialList li {
	display: flex
}

#dialCodeSelected1,
#dialCodeSelected2,
#easy-test #countryDial2 {
	display: flex;
	align-items: center
}

.countryDial1:after {
	background-color: #efeeee;
	content: "▾";
	font-size: 18px;
	position: relative;
	left: 5px;
	margin-right: 5px
}

#easy-test #countryDial2 {
	cursor: pointer;
	height: 43px;
	padding: 0 6px;
	background-color: #efeeee
}

#easy-test #dialcodeHolder2,
.header.is-sticky .analysis__text a {
	color: #000
}

#easy-test .countryCode2DialList li,
#easy-test.countryCode2DialList li,
.countryCode1DialList li {
	padding: 13px 10px;
	line-height: 11px;
	margin: 0;
	list-style: none;
	font-size: 14px;
	color: #000;
	border-bottom: 1px solid #ccc
}

#easy-test .countryCode2DialList li {
	display: flex
}

#easy-test #countryDial2 span:last-child:after {
	background-color: #efeeee;
	content: "▾";
	font-size: 18px;
	position: relative;
	left: 5px;
	margin-right: 5px
}

.loader {
	width: 40px;
	height: 40px;
	border: 10px solid #4975c6;
	border-bottom-color: transparent;
	border-radius: 50%;
	box-sizing: border-box;
	margin: 20% auto;
	animation: rotation 1s linear infinite;
	display: none
}

.s-form-cta-buttons {
	justify-content: space-between
}

.s-form-cta-buttons .buttons-call-form {
	color: #fff;
	font-weight: 600;
	text-align: center;
	padding: 20px 0;
	font-size: 13px;
	justify-content: center
}

@media only screen and (max-width:1300px) {
	.lead-form-container {
		width: 100%;
		position: inherit;
		max-width: 400px;
		margin: 0 auto
	}

	.form-container {
		margin: 20px
	}
}

.form-arn .free-cons1 {
	font-size: 1.3rem
}

.form-container {
	-webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, .21);
	-moz-box-shadow: 0 0 18px 0 rgba(0, 0, 0, .21);
	box-shadow: 0 0 18px 0 rgba(0, 0, 0, .21)
}

ul.FootercountryCode1DialList {
	max-height: 120px;
	overflow-y: scroll
}

div.FooterdialCodeSelected1,
ul.FootercountryCode1DialList li {
	display: flex;
	align-items: center;
	cursor: pointer
}

ul.FootercountryCode1DialList li {
	padding: 0 5px;
	max-width: 100%;
	overflow: hidden;
	color: #000
}

ul.FootercountryCode1DialList li:hover {
	background-color: #f2f2f2
}

div.FooterdialCodeSelected1 {
	margin-right: 5px
}

.dialcodeHolder1 {
	padding: 3px 5px;
	margin-right: 3px;
	color: #000
}

.countryPnl1 {
	background-color: #fff;
	border: 1px solid #7aa6db
}

.flag-icon {
	margin-right: 3px;
	font-size: 30px
}

.FooterdialCodeSelected1 span {
	display: inline-block
}

.FooterdialCodeSelected1 span.micon-down {
	margin-left: 7px
}

.video-col section.form-container {
	background: #0000007a;
	border-radius: 30px;
	padding: 10px 20px
}

.video-col section.form-container .form-arn {
	padding-bottom: 25px;
	background: 0 0
}

section.form-container .form-arn .free-cons1 {
	font-size: 28px;
	font-weight: 600
}

.video-col section.form-container .form-arn .free-cons1 {
	color: #fff;
	text-align: center;
	margin: 20px 0;
	display: block
}

.video-col section.form-container .form-arn p {
	color: #fff;
	margin: 10px 0 5px;
	text-align: left;
	font-size: 13px
}

.video-col section.form-container .form-arn .privacy-text a {
	color: #fff;
	text-decoration: underline
}

section.form-container .form-arn input,
section.form-container .form-arn select,
section.form-container .form-arn textarea,
section.form-container .form-element input,
section.form-container .form-element select,
section.form-container .form-element textarea {
	width: 100%;
	font-size: 14px;
	padding: 7px 0;
	text-indent: 5%;
	cursor: pointer;
	color: #4c4c4c;
	font-family: inherit;
	border: 0;
	background-color: #efeeee;
	border-radius: 15px;
	height: 44px !important
}

.r-flx {
	display: flex
}

.dialcodeHolder1 {
	border-radius: 15px;
	background-color: #efeeee;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.micon-arrow {
	border: solid #000;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 2px
}

.micon-right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg)
}

.micon-left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg)
}

.micon-up {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg)
}

.micon-down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg)
}

section.form-container .form-arn input.submit-btn,
section.form-container .form-element .submitbtn {
	border-radius: 15px;
	font-weight: 600;
	padding: 8px 10px !important;
	font-size: 20px;
	background: #dfb437;
	color: #000
}

.countryPnl1 {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px
}

.form-arn {
	padding: 10px
}

.form-container {
	box-shadow: none
}

@media (max-width:996px) {
	.modalContainer .modalContent {
		padding: 0 !important
	}

	section.form-container .form-arn .free-cons1 {
		font-size: 24px
	}
}

section.form-container .form-arn input.FootercountryCode1 {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

:root {
	--mm-ocd-width: 80%;
	--mm-ocd-min-width: 200px;
	--mm-ocd-max-width: 440px
}

body.mm-ocd-opened {
	overflow-y: hidden;
	-ms-scroll-chaining: none;
	overscroll-behavior: none
}

.mm-ocd {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 100%;
	left: 0;
	z-index: 9999;
	overflow: hidden;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	background: 0 0;
	-webkit-transition-property: bottom, background-color;
	-o-transition-property: bottom, background-color;
	transition-property: bottom, background-color;
	-webkit-transition-duration: 0s, .3s;
	-o-transition-duration: 0s, .3s;
	transition-duration: 0s, .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-delay: .45s, .15s;
	-o-transition-delay: .45s, .15s;
	transition-delay: .45s, .15s
}

.mm-ocd--open {
	bottom: 0;
	background: rgba(0, 0, 0, .25);
	-webkit-transition-delay: 0;
	-o-transition-delay: 0;
	transition-delay: 0
}

.mm-ocd__content {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 80%;
	width: var(--mm-ocd-width);
	min-width: 200px;
	min-width: var(--mm-ocd-min-width);
	max-width: 440px;
	max-width: var(--mm-ocd-max-width);
	background: #fff;
	-webkit-transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease
}

.mm-ocd--left .mm-ocd__content {
	left: 0;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0)
}

.mm-ocd--right .mm-ocd__content {
	right: 0;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0)
}

.mm-ocd--open .mm-ocd__content {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.mm-ocd__backdrop {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 3;
	width: calc(100% - 80%);
	width: calc(100% - var(--mm-ocd-width));
	min-width: calc(100% - 440px);
	min-width: calc(100% - var(--mm-ocd-max-width));
	max-width: calc(100% - 200px);
	max-width: calc(100% - var(--mm-ocd-min-width));
	background: 0 0
}

.mm-ocd--left .mm-ocd__backdrop {
	right: 0
}

.mm-ocd--right .mm-ocd__backdrop {
	left: 0
}

.mm-spn,
.mm-spn li {
	padding: 0
}

.mm-spn,
.mm-spn a,
.mm-spn li,
.mm-spn span,
.mm-spn ul {
	display: block;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

:root {
	--mm-spn-item-height: 50px;
	--mm-spn-item-indent: 20px;
	--mm-spn-line-height: 24px
}

.certificate__item {
	padding: 20px
}

.trustPilotSVG {
	width: 100%;
	height: auto;
	max-width: 325px;
	margin: 20px 0 0 30px;
	border-radius: 10px
}

.mm-spn,
.mm-spn ul {
	-webkit-overflow-scrolling: touch
}

.mm-spn {
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color: transparent;
	overflow: hidden;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0)
}

.mm-spn ul {
	position: fixed;
	top: 0;
	left: 100%;
	bottom: 0;
	z-index: 2;
	width: 130%;
	padding: 0 30% 0 0;
	line-height: 24px;
	line-height: var(--mm-spn-line-height);
	overflow: visible;
	overflow-y: auto;
	background: inherit;
	-webkit-transition: left .3s ease 0;
	-o-transition: left .3s ease 0;
	transition: left .3s ease 0;
	cursor: default
}

.mm-spn ul:after {
	content: "";
	display: block;
	height: 50px;
	height: var(--mm-spn-item-height)
}

.mm-spn ul.mm-spn--open,
.mm-spn>ul {
	left: 0
}

.mm-spn ul.mm-spn--parent {
	left: -30%;
	overflow-y: hidden
}

.mm-spn li {
	position: relative;
	background: inherit;
	cursor: pointer
}

.mm-spn li:before {
	content: "";
	position: absolute;
	top: 25px;
	top: calc(var(--mm-spn-item-height)/2);
	right: 25px;
	right: calc(var(--mm-spn-item-height)/2);
	z-index: 0;
	width: 10px;
	height: 10px;
	border-top: 2px solid;
	border-right: 2px solid;
	-webkit-transform: rotate(45deg) translate(0, -50%);
	-ms-transform: rotate(45deg) translate(0, -50%);
	transform: rotate(45deg) translate(0, -50%);
	opacity: .4
}

.mm-spn li:after {
	content: "";
	margin-left: 20px;
	margin-left: var(--mm-spn-item-indent);
	border-top: 1px solid;
	opacity: .15
}

.mm-spn a,
.mm-spn span {
	position: relative;
	z-index: 1;
	padding: 13px 20px;
	padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height))/2) var(--mm-spn-item-indent)
}

.mm-spn a {
	background: inherit;
	text-decoration: none
}

.mm-spn a:not(:last-child) {
	width: calc(100% - 50px);
	width: calc(100% - var(--mm-spn-item-height))
}

.mm-spn a:not(:last-child):after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border-right: 1px solid;
	opacity: .15
}

.mm-spn span {
	background: 0 0
}

.mm-spn.mm-spn--navbar {
	cursor: pointer
}

.mm-spn.mm-spn--navbar:before {
	content: '';
	display: block;
	position: absolute;
	top: 25px;
	top: calc(var(--mm-spn-item-height)/2);
	left: 20px;
	left: var(--mm-spn-item-indent);
	width: 10px;
	height: 10px;
	margin-top: 2px;
	border-top: 2px solid;
	border-left: 2px solid;
	-webkit-transform: rotate(-45deg) translate(50%, -50%);
	-ms-transform: rotate(-45deg) translate(50%, -50%);
	transform: rotate(-45deg) translate(50%, -50%);
	opacity: .4
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,
.iti--allow-dropdown input[readonly]+.iti__flag-container:hover,
.mm-spn.mm-spn--navbar.mm-spn--main {
	cursor: default
}

.mm-spn.mm-spn--navbar.mm-spn--main:before {
	content: none;
	display: none
}

.mm-spn.mm-spn--navbar:after {
	content: attr(data-mm-spn-title);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50px;
	height: var(--mm-spn-item-height);
	padding: 0 40px;
	padding: 0 calc(var(--mm-spn-item-indent)*2);
	line-height: 50px;
	line-height: var(--mm-spn-item-height);
	opacity: .4;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis
}

.mm-spn.mm-spn--navbar.mm-spn--main:after {
	padding-left: 20px;
	padding-left: var(--mm-spn-item-indent)
}

.mm-spn.mm-spn--navbar ul {
	top: 51px;
	top: calc(var(--mm-spn-item-height) + 1px)
}

.mm-spn.mm-spn--navbar ul:before {
	content: '';
	display: block;
	position: fixed;
	top: inherit;
	z-index: 2;
	width: 100%;
	border-top: 1px solid currentColor;
	opacity: .15
}

.mm-spn.mm-spn--light {
	color: #444;
	background: #f3f3f3
}

.mm-spn.mm-spn--dark {
	color: #ddd;
	background: #333
}

.mm-spn.mm-spn--vertical {
	overflow-y: auto
}

.mm-spn.mm-spn--vertical ul {
	width: 100%;
	padding-right: 0;
	position: static;
	margin-top: 6%
}

.mm-spn.mm-spn--vertical ul ul {
	display: none;
	padding-left: 20px;
	padding-left: var(--mm-spn-item-indent)
}

.mm-spn.mm-spn--vertical ul ul:after {
	height: 25px;
	height: calc(var(--mm-spn-item-height)/2)
}

.mm-spn.mm-spn--vertical ul.mm-spn--open {
	display: block
}

.mm-spn.mm-spn--vertical li.mm-spn--open:before {
	-webkit-transform: rotate(135deg) translate(-50%, 0);
	-ms-transform: rotate(135deg) translate(-50%, 0);
	transform: rotate(135deg) translate(-50%, 0)
}

.mm-spn.mm-spn--vertical ul ul li:last-child:after {
	content: none;
	display: none
}

.iti {
	position: relative;
	display: inline-block
}

.iti * {
	box-sizing: border-box;
	-moz-box-sizing: border-box
}

.iti__hide {
	display: none
}

.iti__v-hide {
	visibility: hidden
}

.iti input,
.iti input[type=tel],
.iti input[type=text] {
	position: relative;
	z-index: 0;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-right: 36px;
	margin-right: 0
}

.iti__flag-container {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	padding: 1px
}

.iti__selected-flag {
	z-index: 1;
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 6px 0 8px
}

.iti__arrow {
	margin-left: 6px;
	width: 0;
	height: 0;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-top: 4px solid #555
}

.iti__arrow--up {
	border-top: none;
	border-bottom: 4px solid #555
}

.iti__country-list {
	position: absolute;
	z-index: 2;
	list-style: none;
	text-align: left;
	padding: 0;
	margin: 0 0 0 -1px;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, .2);
	background-color: #fff;
	border: 1px solid #ccc;
	white-space: nowrap;
	max-height: 200px;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch
}

.iti__country-list--dropup {
	bottom: 100%;
	margin-bottom: -1px
}

@media (max-width:500px) {
	.iti__country-list {
		white-space: normal
	}
}

.iti__flag-box {
	display: inline-block;
	width: 20px
}

.iti__divider {
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid #ccc
}

.iti__country {
	padding: 5px 10px;
	outline: 0
}

.iti__dial-code {
	color: #999
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti__country.iti__highlight {
	background-color: rgba(0, 0, 0, .05)
}

.iti__country-name,
.iti__dial-code,
.iti__flag-box {
	vertical-align: middle
}

.iti__country-name,
.iti__flag-box {
	margin-right: 6px
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel],
.iti--allow-dropdown input[type=text],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=tel],
.iti--separate-dial-code input[type=text] {
	padding-right: 6px;
	padding-left: 52px;
	margin-left: 0
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
	right: auto;
	left: 0
}

.iti--allow-dropdown .iti__flag-container:hover {
	cursor: pointer
}

.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag {
	background-color: transparent
}

.iti--separate-dial-code .iti__selected-flag {
	background-color: rgba(0, 0, 0, .05)
}

.iti--separate-dial-code .iti__selected-dial-code {
	margin-left: 6px
}

.iti--container {
	position: absolute;
	top: -1000px;
	left: -1000px;
	z-index: 1060;
	padding: 1px
}

.iti--container:hover {
	cursor: pointer
}

.iti-mobile .iti--container {
	top: 30px;
	bottom: 30px;
	left: 30px;
	right: 30px;
	position: fixed
}

.iti-mobile .iti__country-list {
	max-height: 100%;
	width: 100%
}

.iti-mobile .iti__country {
	padding: 10px;
	line-height: 1.5em
}

.iti__flag {
	width: 20px
}

.iti__flag.iti__be {
	width: 18px
}

.iti__flag.iti__ch {
	width: 15px
}

.iti__flag.iti__mc {
	width: 19px
}

.iti__flag.iti__ne {
	width: 18px
}

.iti__flag.iti__np {
	width: 13px
}

.iti__flag.iti__va {
	width: 15px
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
	.iti__flag {
		background-size: 5652px 15px
	}
}

.iti__flag.iti__ac {
	height: 10px;
	background-position: 0 0
}

.iti__flag.iti__ad {
	height: 14px;
	background-position: -22px 0
}

.iti__flag.iti__ae {
	height: 10px;
	background-position: -44px 0
}

.iti__flag.iti__af {
	height: 14px;
	background-position: -66px 0
}

.iti__flag.iti__ag {
	height: 14px;
	background-position: -88px 0
}

.iti__flag.iti__ai {
	height: 10px;
	background-position: -110px 0
}

.iti__flag.iti__al {
	height: 15px;
	background-position: -132px 0
}

.iti__flag.iti__am {
	height: 10px;
	background-position: -154px 0
}

.iti__flag.iti__ao {
	height: 14px;
	background-position: -176px 0
}

.iti__flag.iti__aq {
	height: 14px;
	background-position: -198px 0
}

.iti__flag.iti__ar {
	height: 13px;
	background-position: -220px 0
}

.iti__flag.iti__as {
	height: 10px;
	background-position: -242px 0
}

.iti__flag.iti__at {
	height: 14px;
	background-position: -264px 0
}

.iti__flag.iti__au {
	height: 10px;
	background-position: -286px 0
}

.iti__flag.iti__aw {
	height: 14px;
	background-position: -308px 0
}

.iti__flag.iti__ax {
	height: 13px;
	background-position: -330px 0
}

.iti__flag.iti__az {
	height: 10px;
	background-position: -352px 0
}

.iti__flag.iti__ba {
	height: 10px;
	background-position: -374px 0
}

.iti__flag.iti__bb {
	height: 14px;
	background-position: -396px 0
}

.iti__flag.iti__bd {
	height: 12px;
	background-position: -418px 0
}

.iti__flag.iti__be {
	height: 15px;
	background-position: -440px 0
}

.iti__flag.iti__bf {
	height: 14px;
	background-position: -460px 0
}

.iti__flag.iti__bg {
	height: 12px;
	background-position: -482px 0
}

.iti__flag.iti__bh {
	height: 12px;
	background-position: -504px 0
}

.iti__flag.iti__bi {
	height: 12px;
	background-position: -526px 0
}

.iti__flag.iti__bj {
	height: 14px;
	background-position: -548px 0
}

.iti__flag.iti__bl {
	height: 14px;
	background-position: -570px 0
}

.iti__flag.iti__bm {
	height: 10px;
	background-position: -592px 0
}

.iti__flag.iti__bn {
	height: 10px;
	background-position: -614px 0
}

.iti__flag.iti__bo {
	height: 14px;
	background-position: -636px 0
}

.iti__flag.iti__bq {
	height: 14px;
	background-position: -658px 0
}

.iti__flag.iti__br {
	height: 14px;
	background-position: -680px 0
}

.iti__flag.iti__bs {
	height: 10px;
	background-position: -702px 0
}

.iti__flag.iti__bt {
	height: 14px;
	background-position: -724px 0
}

.iti__flag.iti__bv {
	height: 15px;
	background-position: -746px 0
}

.iti__flag.iti__bw {
	height: 14px;
	background-position: -768px 0
}

.iti__flag.iti__by {
	height: 10px;
	background-position: -790px 0
}

.iti__flag.iti__bz {
	height: 14px;
	background-position: -812px 0
}

.iti__flag.iti__ca {
	height: 10px;
	background-position: -834px 0
}

.iti__flag.iti__cc {
	height: 10px;
	background-position: -856px 0
}

.iti__flag.iti__cd {
	height: 15px;
	background-position: -878px 0
}

.iti__flag.iti__cf {
	height: 14px;
	background-position: -900px 0
}

.iti__flag.iti__cg {
	height: 14px;
	background-position: -922px 0
}

.iti__flag.iti__ch {
	height: 15px;
	background-position: -944px 0
}

.iti__flag.iti__ci {
	height: 14px;
	background-position: -961px 0
}

.iti__flag.iti__ck {
	height: 10px;
	background-position: -983px 0
}

.iti__flag.iti__cl {
	height: 14px;
	background-position: -1005px 0
}

.iti__flag.iti__cm {
	height: 14px;
	background-position: -1027px 0
}

.iti__flag.iti__cn {
	height: 14px;
	background-position: -1049px 0
}

.iti__flag.iti__co {
	height: 14px;
	background-position: -1071px 0
}

.iti__flag.iti__cp {
	height: 14px;
	background-position: -1093px 0
}

.iti__flag.iti__cr {
	height: 12px;
	background-position: -1115px 0
}

.iti__flag.iti__cu {
	height: 10px;
	background-position: -1137px 0
}

.iti__flag.iti__cv {
	height: 12px;
	background-position: -1159px 0
}

.iti__flag.iti__cw {
	height: 14px;
	background-position: -1181px 0
}

.iti__flag.iti__cx {
	height: 10px;
	background-position: -1203px 0
}

.iti__flag.iti__cy {
	height: 14px;
	background-position: -1225px 0
}

.iti__flag.iti__cz {
	height: 14px;
	background-position: -1247px 0
}

.iti__flag.iti__de {
	height: 12px;
	background-position: -1269px 0
}

.iti__flag.iti__dg {
	height: 10px;
	background-position: -1291px 0
}

.iti__flag.iti__dj {
	height: 14px;
	background-position: -1313px 0
}

.iti__flag.iti__dk {
	height: 15px;
	background-position: -1335px 0
}

.iti__flag.iti__dm {
	height: 10px;
	background-position: -1357px 0
}

.iti__flag.iti__do {
	height: 14px;
	background-position: -1379px 0
}

.iti__flag.iti__dz {
	height: 14px;
	background-position: -1401px 0
}

.iti__flag.iti__ea {
	height: 14px;
	background-position: -1423px 0
}

.iti__flag.iti__ec {
	height: 14px;
	background-position: -1445px 0
}

.iti__flag.iti__ee {
	height: 13px;
	background-position: -1467px 0
}

.iti__flag.iti__eg {
	height: 14px;
	background-position: -1489px 0
}

.iti__flag.iti__eh {
	height: 10px;
	background-position: -1511px 0
}

.iti__flag.iti__er {
	height: 10px;
	background-position: -1533px 0
}

.iti__flag.iti__es {
	height: 14px;
	background-position: -1555px 0
}

.iti__flag.iti__et {
	height: 10px;
	background-position: -1577px 0
}

.iti__flag.iti__eu {
	height: 14px;
	background-position: -1599px 0
}

.iti__flag.iti__fi {
	height: 12px;
	background-position: -1621px 0
}

.iti__flag.iti__fj {
	height: 10px;
	background-position: -1643px 0
}

.iti__flag.iti__fk {
	height: 10px;
	background-position: -1665px 0
}

.iti__flag.iti__fm {
	height: 11px;
	background-position: -1687px 0
}

.iti__flag.iti__fo {
	height: 15px;
	background-position: -1709px 0
}

.iti__flag.iti__fr {
	height: 14px;
	background-position: -1731px 0
}

.iti__flag.iti__ga {
	height: 15px;
	background-position: -1753px 0
}

.iti__flag.iti__gb {
	height: 10px;
	background-position: -1775px 0
}

.iti__flag.iti__gd {
	height: 12px;
	background-position: -1797px 0
}

.iti__flag.iti__ge {
	height: 14px;
	background-position: -1819px 0
}

.iti__flag.iti__gf {
	height: 14px;
	background-position: -1841px 0
}

.iti__flag.iti__gg {
	height: 14px;
	background-position: -1863px 0
}

.iti__flag.iti__gh {
	height: 14px;
	background-position: -1885px 0
}

.iti__flag.iti__gi {
	height: 10px;
	background-position: -1907px 0
}

.iti__flag.iti__gl {
	height: 14px;
	background-position: -1929px 0
}

.iti__flag.iti__gm {
	height: 14px;
	background-position: -1951px 0
}

.iti__flag.iti__gn {
	height: 14px;
	background-position: -1973px 0
}

.iti__flag.iti__gp {
	height: 14px;
	background-position: -1995px 0
}

.iti__flag.iti__gq {
	height: 14px;
	background-position: -2017px 0
}

.iti__flag.iti__gr {
	height: 14px;
	background-position: -2039px 0
}

.iti__flag.iti__gs {
	height: 10px;
	background-position: -2061px 0
}

.iti__flag.iti__gt {
	height: 13px;
	background-position: -2083px 0
}

.iti__flag.iti__gu {
	height: 11px;
	background-position: -2105px 0
}

.iti__flag.iti__gw {
	height: 10px;
	background-position: -2127px 0
}

.iti__flag.iti__gy {
	height: 12px;
	background-position: -2149px 0
}

.iti__flag.iti__hk {
	height: 14px;
	background-position: -2171px 0
}

.iti__flag.iti__hm {
	height: 10px;
	background-position: -2193px 0
}

.iti__flag.iti__hn {
	height: 10px;
	background-position: -2215px 0
}

.iti__flag.iti__hr {
	height: 10px;
	background-position: -2237px 0
}

.iti__flag.iti__ht {
	height: 12px;
	background-position: -2259px 0
}

.iti__flag.iti__hu {
	height: 10px;
	background-position: -2281px 0
}

.iti__flag.iti__ic {
	height: 14px;
	background-position: -2303px 0
}

.iti__flag.iti__id {
	height: 14px;
	background-position: -2325px 0
}

.iti__flag.iti__ie {
	height: 10px;
	background-position: -2347px 0
}

.iti__flag.iti__il {
	height: 15px;
	background-position: -2369px 0
}

.iti__flag.iti__im {
	height: 10px;
	background-position: -2391px 0
}

.iti__flag.iti__in {
	height: 14px;
	background-position: -2413px 0
}

.iti__flag.iti__io {
	height: 10px;
	background-position: -2435px 0
}

.iti__flag.iti__iq {
	height: 14px;
	background-position: -2457px 0
}

.iti__flag.iti__ir {
	height: 12px;
	background-position: -2479px 0
}

.iti__flag.iti__is {
	height: 15px;
	background-position: -2501px 0
}

.iti__flag.iti__it {
	height: 14px;
	background-position: -2523px 0
}

.iti__flag.iti__je {
	height: 12px;
	background-position: -2545px 0
}

.iti__flag.iti__jm {
	height: 10px;
	background-position: -2567px 0
}

.iti__flag.iti__jo {
	height: 10px;
	background-position: -2589px 0
}

.iti__flag.iti__jp {
	height: 14px;
	background-position: -2611px 0
}

.iti__flag.iti__ke {
	height: 14px;
	background-position: -2633px 0
}

.iti__flag.iti__kg {
	height: 12px;
	background-position: -2655px 0
}

.iti__flag.iti__kh {
	height: 13px;
	background-position: -2677px 0
}

.iti__flag.iti__ki {
	height: 10px;
	background-position: -2699px 0
}

.iti__flag.iti__km {
	height: 12px;
	background-position: -2721px 0
}

.iti__flag.iti__kn {
	height: 14px;
	background-position: -2743px 0
}

.iti__flag.iti__kp {
	height: 10px;
	background-position: -2765px 0
}

.iti__flag.iti__kr {
	height: 14px;
	background-position: -2787px 0
}

.iti__flag.iti__kw {
	height: 10px;
	background-position: -2809px 0
}

.iti__flag.iti__ky {
	height: 10px;
	background-position: -2831px 0
}

.iti__flag.iti__kz {
	height: 10px;
	background-position: -2853px 0
}

.iti__flag.iti__la {
	height: 14px;
	background-position: -2875px 0
}

.iti__flag.iti__lb {
	height: 14px;
	background-position: -2897px 0
}

.iti__flag.iti__lc {
	height: 10px;
	background-position: -2919px 0
}

.iti__flag.iti__li {
	height: 12px;
	background-position: -2941px 0
}

.iti__flag.iti__lk {
	height: 10px;
	background-position: -2963px 0
}

.iti__flag.iti__lr {
	height: 11px;
	background-position: -2985px 0
}

.iti__flag.iti__ls {
	height: 14px;
	background-position: -3007px 0
}

.iti__flag.iti__lt {
	height: 12px;
	background-position: -3029px 0
}

.iti__flag.iti__lu {
	height: 12px;
	background-position: -3051px 0
}

.iti__flag.iti__lv {
	height: 10px;
	background-position: -3073px 0
}

.iti__flag.iti__ly {
	height: 10px;
	background-position: -3095px 0
}

.iti__flag.iti__ma {
	height: 14px;
	background-position: -3117px 0
}

.iti__flag.iti__mc {
	height: 15px;
	background-position: -3139px 0
}

.iti__flag.iti__md {
	height: 10px;
	background-position: -3160px 0
}

.iti__flag.iti__me {
	height: 10px;
	background-position: -3182px 0
}

.iti__flag.iti__mf {
	height: 14px;
	background-position: -3204px 0
}

.iti__flag.iti__mg {
	height: 14px;
	background-position: -3226px 0
}

.iti__flag.iti__mh {
	height: 11px;
	background-position: -3248px 0
}

.iti__flag.iti__mk {
	height: 10px;
	background-position: -3270px 0
}

.iti__flag.iti__ml {
	height: 14px;
	background-position: -3292px 0
}

.iti__flag.iti__mm {
	height: 14px;
	background-position: -3314px 0
}

.iti__flag.iti__mn {
	height: 10px;
	background-position: -3336px 0
}

.iti__flag.iti__mo {
	height: 14px;
	background-position: -3358px 0
}

.iti__flag.iti__mp {
	height: 10px;
	background-position: -3380px 0
}

.iti__flag.iti__mq {
	height: 14px;
	background-position: -3402px 0
}

.iti__flag.iti__mr {
	height: 14px;
	background-position: -3424px 0
}

.iti__flag.iti__ms {
	height: 10px;
	background-position: -3446px 0
}

.iti__flag.iti__mt {
	height: 14px;
	background-position: -3468px 0
}

.iti__flag.iti__mu {
	height: 14px;
	background-position: -3490px 0
}

.iti__flag.iti__mv {
	height: 14px;
	background-position: -3512px 0
}

.iti__flag.iti__mw {
	height: 14px;
	background-position: -3534px 0
}

.iti__flag.iti__mx {
	height: 12px;
	background-position: -3556px 0
}

.iti__flag.iti__my {
	height: 10px;
	background-position: -3578px 0
}

.iti__flag.iti__mz {
	height: 14px;
	background-position: -3600px 0
}

.iti__flag.iti__na {
	height: 14px;
	background-position: -3622px 0
}

.iti__flag.iti__nc {
	height: 10px;
	background-position: -3644px 0
}

.iti__flag.iti__ne {
	height: 15px;
	background-position: -3666px 0
}

.iti__flag.iti__nf {
	height: 10px;
	background-position: -3686px 0
}

.iti__flag.iti__ng {
	height: 10px;
	background-position: -3708px 0
}

.iti__flag.iti__ni {
	height: 12px;
	background-position: -3730px 0
}

.iti__flag.iti__nl {
	height: 14px;
	background-position: -3752px 0
}

.iti__flag.iti__no {
	height: 15px;
	background-position: -3774px 0
}

.iti__flag.iti__np {
	height: 15px;
	background-position: -3796px 0
}

.iti__flag.iti__nr {
	height: 10px;
	background-position: -3811px 0
}

.iti__flag.iti__nu {
	height: 10px;
	background-position: -3833px 0
}

.iti__flag.iti__nz {
	height: 10px;
	background-position: -3855px 0
}

.iti__flag.iti__om {
	height: 10px;
	background-position: -3877px 0
}

.iti__flag.iti__pa {
	height: 14px;
	background-position: -3899px 0
}

.iti__flag.iti__pe {
	height: 14px;
	background-position: -3921px 0
}

.iti__flag.iti__pf {
	height: 14px;
	background-position: -3943px 0
}

.iti__flag.iti__pg {
	height: 15px;
	background-position: -3965px 0
}

.iti__flag.iti__ph {
	height: 10px;
	background-position: -3987px 0
}

.iti__flag.iti__pk {
	height: 14px;
	background-position: -4009px 0
}

.iti__flag.iti__pl {
	height: 13px;
	background-position: -4031px 0
}

.iti__flag.iti__pm {
	height: 14px;
	background-position: -4053px 0
}

.iti__flag.iti__pn {
	height: 10px;
	background-position: -4075px 0
}

.iti__flag.iti__pr {
	height: 14px;
	background-position: -4097px 0
}

.iti__flag.iti__ps {
	height: 10px;
	background-position: -4119px 0
}

.iti__flag.iti__pt {
	height: 14px;
	background-position: -4141px 0
}

.iti__flag.iti__pw {
	height: 13px;
	background-position: -4163px 0
}

.iti__flag.iti__py {
	height: 11px;
	background-position: -4185px 0
}

.iti__flag.iti__qa {
	height: 8px;
	background-position: -4207px 0
}

.iti__flag.iti__re {
	height: 14px;
	background-position: -4229px 0
}

.iti__flag.iti__ro {
	height: 14px;
	background-position: -4251px 0
}

.iti__flag.iti__rs {
	height: 14px;
	background-position: -4273px 0
}

.iti__flag.iti__ru {
	height: 14px;
	background-position: -4295px 0
}

.iti__flag.iti__rw {
	height: 14px;
	background-position: -4317px 0
}

.iti__flag.iti__sa {
	height: 14px;
	background-position: -4339px 0
}

.iti__flag.iti__sb {
	height: 10px;
	background-position: -4361px 0
}

.iti__flag.iti__sc {
	height: 10px;
	background-position: -4383px 0
}

.iti__flag.iti__sd {
	height: 10px;
	background-position: -4405px 0
}

.iti__flag.iti__se {
	height: 13px;
	background-position: -4427px 0
}

.iti__flag.iti__sg {
	height: 14px;
	background-position: -4449px 0
}

.iti__flag.iti__sh {
	height: 10px;
	background-position: -4471px 0
}

.iti__flag.iti__si {
	height: 10px;
	background-position: -4493px 0
}

.iti__flag.iti__sj {
	height: 15px;
	background-position: -4515px 0
}

.iti__flag.iti__sk {
	height: 14px;
	background-position: -4537px 0
}

.iti__flag.iti__sl {
	height: 14px;
	background-position: -4559px 0
}

.iti__flag.iti__sm {
	height: 15px;
	background-position: -4581px 0
}

.iti__flag.iti__sn {
	height: 14px;
	background-position: -4603px 0
}

.iti__flag.iti__so {
	height: 14px;
	background-position: -4625px 0
}

.iti__flag.iti__sr {
	height: 14px;
	background-position: -4647px 0
}

.iti__flag.iti__ss {
	height: 10px;
	background-position: -4669px 0
}

.iti__flag.iti__st {
	height: 10px;
	background-position: -4691px 0
}

.iti__flag.iti__sv {
	height: 12px;
	background-position: -4713px 0
}

.iti__flag.iti__sx {
	height: 14px;
	background-position: -4735px 0
}

.iti__flag.iti__sy {
	height: 14px;
	background-position: -4757px 0
}

.iti__flag.iti__sz {
	height: 14px;
	background-position: -4779px 0
}

.iti__flag.iti__ta {
	height: 10px;
	background-position: -4801px 0
}

.iti__flag.iti__tc {
	height: 10px;
	background-position: -4823px 0
}

.iti__flag.iti__td {
	height: 14px;
	background-position: -4845px 0
}

.iti__flag.iti__tf {
	height: 14px;
	background-position: -4867px 0
}

.iti__flag.iti__tg {
	height: 13px;
	background-position: -4889px 0
}

.iti__flag.iti__th {
	height: 14px;
	background-position: -4911px 0
}

.iti__flag.iti__tj {
	height: 10px;
	background-position: -4933px 0
}

.iti__flag.iti__tk {
	height: 10px;
	background-position: -4955px 0
}

.iti__flag.iti__tl {
	height: 10px;
	background-position: -4977px 0
}

.iti__flag.iti__tm {
	height: 14px;
	background-position: -4999px 0
}

.iti__flag.iti__tn {
	height: 14px;
	background-position: -5021px 0
}

.iti__flag.iti__to {
	height: 10px;
	background-position: -5043px 0
}

.iti__flag.iti__tr {
	height: 14px;
	background-position: -5065px 0
}

.iti__flag.iti__tt {
	height: 12px;
	background-position: -5087px 0
}

.iti__flag.iti__tv {
	height: 10px;
	background-position: -5109px 0
}

.iti__flag.iti__tw {
	height: 14px;
	background-position: -5131px 0
}

.iti__flag.iti__tz {
	height: 14px;
	background-position: -5153px 0
}

.iti__flag.iti__ua {
	height: 14px;
	background-position: -5175px 0
}

.iti__flag.iti__ug {
	height: 14px;
	background-position: -5197px 0
}

.iti__flag.iti__um {
	height: 11px;
	background-position: -5219px 0
}

.iti__flag.iti__un {
	height: 14px;
	background-position: -5241px 0
}

.iti__flag.iti__us {
	height: 11px;
	background-position: -5263px 0
}

.iti__flag.iti__uy {
	height: 14px;
	background-position: -5285px 0
}

.iti__flag.iti__uz {
	height: 10px;
	background-position: -5307px 0
}

.iti__flag.iti__va {
	height: 15px;
	background-position: -5329px 0
}

.iti__flag.iti__vc {
	height: 14px;
	background-position: -5346px 0
}

.iti__flag.iti__ve {
	height: 14px;
	background-position: -5368px 0
}

.iti__flag.iti__vg {
	height: 10px;
	background-position: -5390px 0
}

.iti__flag.iti__vi {
	height: 14px;
	background-position: -5412px 0
}

.iti__flag.iti__vn {
	height: 14px;
	background-position: -5434px 0
}

.iti__flag.iti__vu {
	height: 12px;
	background-position: -5456px 0
}

.iti__flag.iti__wf {
	height: 14px;
	background-position: -5478px 0
}

.iti__flag.iti__ws {
	height: 10px;
	background-position: -5500px 0
}

.iti__flag,
.iti__flag.iti__xk {
	height: 15px;
	background-position: -5522px 0
}

.iti__flag.iti__ye {
	height: 14px;
	background-position: -5544px 0
}

.iti__flag.iti__yt {
	height: 14px;
	background-position: -5566px 0
}

.iti__flag.iti__za {
	height: 14px;
	background-position: -5588px 0
}

.iti__flag.iti__zm {
	height: 14px;
	background-position: -5610px 0
}

.iti__flag.iti__zw {
	height: 10px;
	background-position: -5632px 0
}

.iti__flag {
	box-shadow: 0 0 1px 0 #888;
	background-image: url(../images/flags.png);
	background-repeat: no-repeat;
	background-color: #dbdbdb;
	background-position: 20px 0
}

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
	.iti__flag {
		background-image: url(../images/flags@2x.png)
	}
}

.iti__flag.iti__np {
	background-color: transparent
}

:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1
}

.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animate__animated.animate__infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: var(--animate-repeat);
	animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
	-webkit-animation-iteration-count: 2;
	animation-iteration-count: 2;
	-webkit-animation-iteration-count: calc(var(--animate-repeat)*2);
	animation-iteration-count: calc(var(--animate-repeat)*2)
}

.animate__animated.animate__repeat-3 {
	-webkit-animation-iteration-count: 3;
	animation-iteration-count: 3;
	-webkit-animation-iteration-count: calc(var(--animate-repeat)*3);
	animation-iteration-count: calc(var(--animate-repeat)*3)
}

.animate__animated.animate__delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-delay: var(--animate-delay);
	animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-delay: calc(var(--animate-delay)*2);
	animation-delay: calc(var(--animate-delay)*2)
}

.animate__animated.animate__delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
	-webkit-animation-delay: calc(var(--animate-delay)*3);
	animation-delay: calc(var(--animate-delay)*3)
}

.animate__animated.animate__delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
	-webkit-animation-delay: calc(var(--animate-delay)*4);
	animation-delay: calc(var(--animate-delay)*4)
}

.animate__animated.animate__delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
	-webkit-animation-delay: calc(var(--animate-delay)*5);
	animation-delay: calc(var(--animate-delay)*5)
}

.animate__animated.animate__faster {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-duration: calc(var(--animate-duration)/2);
	animation-duration: calc(var(--animate-duration)/2)
}

.animate__animated.animate__fast {
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-duration: calc(var(--animate-duration)*.8);
	animation-duration: calc(var(--animate-duration)*.8)
}

.animate__animated.animate__slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration)*2);
	animation-duration: calc(var(--animate-duration)*2)
}

.animate__animated.animate__slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-duration: calc(var(--animate-duration)*3);
	animation-duration: calc(var(--animate-duration)*3)
}

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

	.animate__animated[class*=Out] {
		opacity: 0
	}
}

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

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

.animate__pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}

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

.animate__shakeX {
	-webkit-animation-name: shakeX;
	animation-name: shakeX
}

.animate__shakeY {
	-webkit-animation-name: shakeY;
	animation-name: shakeY
}

.animate__headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake
}

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

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

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

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

.animate__heartBeat {
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-duration: calc(var(--animate-duration)*1.3);
	animation-duration: calc(var(--animate-duration)*1.3);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}

.animate__backInDown {
	-webkit-animation-name: backInDown;
	animation-name: backInDown
}

.animate__backInLeft {
	-webkit-animation-name: backInLeft;
	animation-name: backInLeft
}

.animate__backInRight {
	-webkit-animation-name: backInRight;
	animation-name: backInRight
}

.animate__backInUp {
	-webkit-animation-name: backInUp;
	animation-name: backInUp
}

.animate__backOutDown {
	-webkit-animation-name: backOutDown;
	animation-name: backOutDown
}

.animate__backOutLeft {
	-webkit-animation-name: backOutLeft;
	animation-name: backOutLeft
}

.animate__backOutRight {
	-webkit-animation-name: backOutRight;
	animation-name: backOutRight
}

.animate__backOutUp {
	-webkit-animation-name: backOutUp;
	animation-name: backOutUp
}

.animate__bounceIn {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration)*.75);
	animation-duration: calc(var(--animate-duration)*.75);
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

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

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

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

.animate__bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

.animate__bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration)*.75);
	animation-duration: calc(var(--animate-duration)*.75);
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__fadeInTopLeft {
	-webkit-animation-name: fadeInTopLeft;
	animation-name: fadeInTopLeft
}

.animate__fadeInTopRight {
	-webkit-animation-name: fadeInTopRight;
	animation-name: fadeInTopRight
}

.animate__fadeInBottomLeft {
	-webkit-animation-name: fadeInBottomLeft;
	animation-name: fadeInBottomLeft
}

.animate__fadeInBottomRight {
	-webkit-animation-name: fadeInBottomRight;
	animation-name: fadeInBottomRight
}

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

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

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

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

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

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

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

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

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

.animate__fadeOutTopLeft {
	-webkit-animation-name: fadeOutTopLeft;
	animation-name: fadeOutTopLeft
}

.animate__fadeOutTopRight {
	-webkit-animation-name: fadeOutTopRight;
	animation-name: fadeOutTopRight
}

.animate__fadeOutBottomRight {
	-webkit-animation-name: fadeOutBottomRight;
	animation-name: fadeOutBottomRight
}

.animate__fadeOutBottomLeft {
	-webkit-animation-name: fadeOutBottomLeft;
	animation-name: fadeOutBottomLeft
}

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

.animate__flipInX,
.animate__flipInY,
.animate__flipOutX,
.animate__flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}

.animate__flipInY,
.animate__flipOutX,
.animate__flipOutY {
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

.animate__flipOutX,
.animate__flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration)*.75);
	animation-duration: calc(var(--animate-duration)*.75);
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX
}

.animate__flipOutY {
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY
}

.animate__lightSpeedInLeft,
.animate__lightSpeedInRight {
	-webkit-animation-name: lightSpeedInRight;
	animation-name: lightSpeedInRight;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

.animate__lightSpeedInLeft {
	-webkit-animation-name: lightSpeedInLeft;
	animation-name: lightSpeedInLeft
}

.animate__lightSpeedOutLeft,
.animate__lightSpeedOutRight {
	-webkit-animation-name: lightSpeedOutRight;
	animation-name: lightSpeedOutRight;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

.animate__lightSpeedOutLeft {
	-webkit-animation-name: lightSpeedOutLeft;
	animation-name: lightSpeedOutLeft
}

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

.animate__rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom
}

.animate__rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom
}

.animate__rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom
}

.animate__rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom
}

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

.animate__rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom
}

.animate__rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom
}

.animate__rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom
}

.animate__rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom
}

.animate__hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration)*2);
	animation-duration: calc(var(--animate-duration)*2);
	-webkit-animation-name: hinge;
	animation-name: hinge;
	-webkit-transform-origin: top left;
	transform-origin: top left
}

.animate__jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox
}

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

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

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

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

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

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

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

.animate__zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

.animate__zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}

.animate__zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
	-webkit-transform-origin: left center;
	transform-origin: left center
}

.animate__zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
	-webkit-transform-origin: right center;
	transform-origin: right center
}

.animate__zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}

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

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

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

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

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

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

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

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

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

ul {
	list-style-type: none
}

a {
	text-decoration: none
}

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

body,
html {
	height: 100%
}

body {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	background-color: #000
}

.container {
	max-width: 1200px;
	margin: 0 auto
}

.analysis:before,
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%
}

.header {
	z-index: 9;
	transition: background-color .36s ease
}

.header>.container {
	position: relative
}

.header__logo {
	padding: 20px 0;
	transition: padding .36s ease
}

.header__menu-button {
	position: absolute;
	top: 40px;
	right: 10px;
	transition: top .36s ease
}

.header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #111
}

.header.is-sticky .analysis__text {
	color: #000;
	font-weight: 400;
	font-size: 19px
}

.header.is-sticky .header__logo {
	padding-top: 10px;
	padding-bottom: 10px
}

.header.is-sticky .header__menu-button {
	top: 27px
}

.analysis {
	position: relative;
	width: 100%;
	padding: 20px 0;
	z-index: 9;
	text-align: center;
	transition: padding-bottom .36s ease
}

.header.is-sticky .analysis {
	padding: 10px 0;
	background: #dfb437;
	z-index: 99
}

.analysis:before {
	content: '';
	height: 1px;
	background-color: #fff;
	opacity: .2
}

.analysis>.container {
	display: flex;
	align-items: center;
	justify-content: center
}

.header.is-sticky .analysis__icon {
	background: url(../images/zoom.svg);
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	background-size: contain
}

.analysis__icon {
	display: inline-block;
	margin-right: 10px;
	width: 55px;
	height: 55px;
	background: url(../images/zoom-white.svg);
	background-repeat: no-repeat
}

.analysis__icon svg {
	transition: width .5s
}

.analysis__text {
	font-size: 24px;
	font-weight: 400;
	margin-right: 25px
}

.analysis__text a,
body {
	color: #fff
}

.analysis__button {
	position: relative;
	display: inline-block;
	padding-right: 30px;
	font-size: 18px;
	font-weight: 700;
	color: #dfb437
}

.analysis__button:before,
.header.is-sticky .analysis .analysis__button:before {
	content: '';
	position: absolute;
	right: 0;
	width: 37px;
	height: 26px;
	background-repeat: no-repeat
}

.analysis__button:before {
	top: -7px;
	background: url(../images/get-ok.png)
}

.header.is-sticky .analysis .analysis__icon svg {
	width: 32px;
	height: 32px
}

.header.is-sticky .analysis .analysis__button {
	-webkit-text-fill-color: inherit;
	color: #fff
}

.header.is-sticky .analysis .analysis__button:before {
	top: -13px;
	background: url(../images/get-ok-black.png)
}

.dentbul-slider {
	position: relative;
	height: 840px
}

.dentbul-content {
	width: 100%;
	z-index: 100;
	position: absolute;
	top: 56%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.dentbul-title {
	padding: 0 20px;
	font-size: 45px;
	font-weight: 700;
	line-height: 50px;
	margin-bottom: 30px;
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}

.dentbul-text {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 20px;
	line-height: 30px
}

.dentbul-button {
	position: relative;
	display: inline-block;
	padding: 0 45px 0 15px;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
	line-height: 42px;
	color: #fff;
	border: 3px solid #269f94;
	background: rgba(0, 0, 0, .39);
	opacity: .9;
	box-shadow: 0 16px 24px rgba(42, 234, 246, .2), 0 2px 6px rgba(42, 234, 246, .12), 0 0 1px rgba(42, 234, 246, .04);
	border-radius: 40px
}

.dentbul-button-icon {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 27px;
	height: 27px;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjk5OTggMC42NjY2ODdDNi42Mzk4NCAwLjY2NjY4NyAwLjY2NjUwNCA2LjY0MDAyIDAuNjY2NTA0IDE0QzAuNjY2NTA0IDIxLjM2IDYuNjM5ODQgMjcuMzMzNCAxMy45OTk4IDI3LjMzMzRDMjEuMzU5OCAyNy4zMzM0IDI3LjMzMzIgMjEuMzYgMjcuMzMzMiAxNEMyNy4zMzMyIDYuNjQwMDIgMjEuMzU5OCAwLjY2NjY4NyAxMy45OTk4IDAuNjY2Njg3Wk0xMy45OTk4IDI0LjY2NjdDOC4xMTk4NCAyNC42NjY3IDMuMzMzMTcgMTkuODggMy4zMzMxNyAxNEMzLjMzMzE3IDguMTIwMDIgOC4xMTk4NCAzLjMzMzM1IDEzLjk5OTggMy4zMzMzNUMxOS44Nzk4IDMuMzMzMzUgMjQuNjY2NSA4LjEyMDAyIDI0LjY2NjUgMTRDMjQuNjY2NSAxOS44OCAxOS44Nzk4IDI0LjY2NjcgMTMuOTk5OCAyNC42NjY3Wk0xMC42NjY1IDIwTDE5Ljk5OTggMTRMMTAuNjY2NSA4LjAwMDAyVjIwWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==) no-repeat
}

.dentbul-button-down {
	position: absolute;
	left: 0;
	bottom: 95px;
	width: 100%;
	text-align: center;
	z-index: 99
}

.dentbul-button-down svg {
	cursor: pointer
}

.dentbul-video {
	width: 100%;
	height: 100vh;
	object-fit: cover
}

.dentbul-doctor {
	position: relative;
	overflow-x: clip;
	padding: 200px 0 120px
}

.dentbul-doctor-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}

.dentbul-doctor-title {
	flex-wrap: wrap;
	width: 55%;
	font-size: 72px;
	font-weight: 400;
	line-height: 90px;
	overflow: hidden
}

.dentbul-doctor-title-label {
	display: block;
	color: #dfb437
}

.dentbul-doctor-text {
	width: 45%
}

.dentbul-doctor-text p {
	font-size: 27px;
	line-height: 36px
}

.dentbul-doctor-button {
	position: relative;
	display: inline-block;
	margin-top: 40px;
	padding: 10px 70px 10px 50px;
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	line-height: 42px;
	border: 5px solid #dfb437;
	background: rgba(0, 0, 0, .39);
	opacity: .9;
	box-shadow: 0 16px 24px rgb(223 180 55/25%), 0 2px 6px rgb(42 234 246/12%), 0 0 1px rgb(42 234 246/4%);
	border-radius: 40px
}

.dentbul-doctor-button:hover {
	background: #dfb437
}

.dentbul-doctor-button-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 27px;
	height: 27px;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkgMTFWMjBIMTFWMTFIMjBWOUgxMVYwTDkgOC43NDIyOGUtMDhWOUgwVjExSDlaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K) no-repeat
}

.badge {
	margin-bottom: 130px;
	padding-bottom: 40px;
	background: #0b6ee2;
	overflow-x: clip
}

.badge:after,
.badge>.container:after {
	left: 0;
	background: #fff;
	-webkit-border-top-right-radius: 150px;
	-moz-border-radius-topright: 150px;
	border-top-right-radius: 150px
}

.badge:after {
	top: -85px;
	height: 200px;
	transform: skew(0deg, -3deg);
	background: #0b6ee2
}

.badge,
.badge>.container,
.badge__content {
	position: relative
}

.badge>.container:after {
	content: '';
	position: absolute;
	top: -120px;
	width: 90%;
	height: 150px;
	transform: skew(10deg, -10deg);
	z-index: -1;
	background: #2ae9f5
}

.badge:after,
.badge>.container:before,
.welcome:after {
	content: '';
	position: absolute;
	width: 100%;
	z-index: 0
}

.badge>.container:before {
	bottom: 230px;
	height: 680px;
	background: url(../images/webp/dr.webp) no-repeat center bottom;
	background-size: contain;
	pointer-events: none;
	transition: height .36s ease
}

.badge__content {
	display: flex;
	justify-content: space-between;
	z-index: 9;
	background: #0b6ee2
}

.badge__item {
	text-align: center
}

.badge__text {
	display: block;
	font-size: 20px;
	line-height: 26px;
	padding: 0 10px
}

.badge__text span {
	display: block;
	margin-top: 10px;
	font-weight: 600
}

.certificate {
	padding: 2% 0;
	overflow: hidden;
	background: #2d2d2d
}

.certificate__title {
	display: block;
	margin-bottom: 50px;
	text-align: center;
	font-size: 58px;
	background: #dfb437;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}

.certificate__items {
	display: flex;
	align-items: center;
	justify-content: center
}

.certificate__item-icon {
	display: block;
	width: 140px;
	height: 140px;
	text-align: center;
	border-radius: 50%;
	background-color: #fff
}

.certificate__item img {
	width: 100%;
	height: 100%;
	border-radius: 90px
}

.welcome {
	position: relative;
	padding: 310px 0 210px;
	margin-bottom: 50px;
	background: url(../images/webp/welcome_bg.webp) no-repeat top center;
	background-size: cover
}

.welcome:after {
	bottom: 0;
	left: 0;
	max-height: 500px;
	height: 100%;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0, #111 20%)
}

.welcome__content {
	position: relative;
	z-index: 1
}

.welcome__icon {
	display: block;
	width: 122px;
	height: 83px;
	margin: 0 auto 55px
}

.welcome__title {
	display: block;
	margin-bottom: 10px;
	font-size: 56px;
	font-weight: 300;
	text-align: center
}

.welcome__text {
	font-size: 18px;
	line-height: 24px;
	color: #ebebeb;
	text-align: center
}

.welcome__text p {
	margin-bottom: 20px
}

.welcome__text p:last-child {
	margin-bottom: 0
}

.service {
	position: relative;
	padding: 3% 0
}

.service.service-mobile {
	display: none
}

.service__title {
	font-size: 58px;
	font-weight: 300;
	margin-bottom: 60px;
	text-align: center
}

.service__title-sub {
	display: block;
	margin-bottom: 45px;
	font-size: 36px;
	color: #d3d3d3;
	font-weight: 300
}

.service__items {
	position: relative;
	display: flex;
	justify-content: space-between
}

.service__items:before {
	position: absolute;
	display: block;
	top: calc(50% - 10px);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	width: 100%;
	height: 0;
	z-index: -1
}

.service__line {
	position: relative;
	width: 68%;
	height: 0;
	margin: 0 auto 22px;
	border-top: 3px dashed #163c3f;
	z-index: -1
}

.service__line:after,
.service__line:before {
	content: "";
	position: absolute;
	width: 0;
	height: 50px;
	border-right: 3px dashed #163c3f;
	z-index: -1
}

.service__line:before {
	top: 0;
	left: 0
}

.service__line:after {
	top: -50px;
	right: 0
}

.service__item {
	position: relative;
	width: 100%;
	margin: 0 40px 40px 0;
	padding: 30px;
	border: 5px solid #dfb437;
	box-sizing: border-box;
	border-radius: 20px;
	text-align: center;
	background-color: #fff
}

.service__item:last-child {
	margin-right: 0
}

.service__item-icon {
	margin-bottom: 15px;
	text-align: left;
	min-height: 80px
}

.service__item-icon svg {
	height: 75px
}

.service__item-text {
	font-weight: 700;
	margin-bottom: 20px
}

.service__item-desc,
.service__item-text {
	font-size: 18px;
	color: #000;
	text-align: left
}

.methods {
	position: relative;
	overflow-x: clip;
	margin-bottom: 90px
}

.methods-title {
	margin-bottom: 60px;
	font-size: 58px;
	font-weight: 300;
	text-align: center
}

.methods-cols {
	display: flex;
	justify-content: space-between;
	padding: 0
}

.methods-col {
	width: 100%
}

.methods-col:first-child {
	margin-right: 15px
}

.methods-col:last-child {
	padding-top: 180px;
	margin-left: 15px
}

.methods-card {
	padding: 1px;
	margin-bottom: 30px;
	box-shadow: 0 24px 32px rgba(0, 0, 0, .04), 0 16px 24px rgba(0, 0, 0, .04), 0 4px 8px rgba(0, 0, 0, .04), 0 0 1px rgba(0, 0, 0, .04);
	border-radius: 20px
}

.faq__box-text p:last-child,
.methods-card:last-child {
	margin-bottom: 0
}

.methods-card-content {
	position: relative;
	padding: 40px;
	background: #1e1e1e;
	box-shadow: 0 16px 24px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .04), 0 0 1px rgba(0, 0, 0, .04);
	border-radius: 45px;
	display: inline-block
}

.methods-card-icon {
	position: absolute;
	top: 0;
	left: 0
}

.methods-card-title {
	position: relative;
	margin-bottom: 25px;
	padding-left: 110px;
	font-size: 32px;
	font-weight: 400;
	color: #fff
}

.methods-card-title .bold {
	font-size: 50px;
	font-weight: 700;
	line-height: 50px;
	width: 100%;
	display: inline-block
}

.methods-card-text {
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	color: #ebebeb
}

.methods-card-text p {
	margin-bottom: 20px;
	margin-top: 30px
}

.methods-card-button {
	text-align: center;
	padding: 20px 0
}

.methods-card-button a {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	color: #000;
	background: #dfb437;
	padding: 20px 60px 20px 30px;
	border-radius: 25px;
	float: right;
	display: inline-block
}

.methods-card-button a:before {
	content: '';
	position: absolute;
	top: 17px;
	right: 20px;
	width: 21px;
	height: 26px;
	background: url(../images/ok.svg) no-repeat
}

.whatsapp {
	margin-bottom: 90px
}

.whatsapp__box {
	position: relative;
	display: flex;
	align-content: space-between;
	align-items: center;
	padding: 18px 35px;
	background-color: #64af61;
	background: #64af61;
	box-shadow: 0 24px 32px rgba(17, 182, 155, .14), 0 16px 24px rgba(17, 182, 155, .1), 0 2px 6px rgba(17, 182, 155, .08), 0 0 1px rgba(0, 0, 0, .04);
	border-radius: 20px
}

.whatsapp__icon {
	margin-right: 35px
}

.whatsapp__icon svg {
	width: 60px
}

.whatsapp__content {
	padding-right: 220px
}

.whatsapp__title {
	font-size: 41px;
	font-weight: 300
}

.whatsapp__text {
	font-size: 43px;
	font-weight: 700
}

.whatsapp__button {
	position: absolute;
	right: 35px;
	padding: 12px 64px;
	border-radius: 40px;
	background-color: #fff;
	font-size: 32px;
	font-weight: 600;
	color: #000
}

.footer__location a:hover,
.footer__social a:hover,
.whatsapp__button:hover {
	opacity: .7
}

.dentbul-patient {
	position: relative;
	margin-bottom: 130px;
	overflow: hidden
}

.dentbul-patient-title {
	margin-bottom: 80px;
	font-size: 58px;
	line-height: 84px
}

.dentbul-patient-slide {
	max-width: 750px;
	background: #161616;
	padding: 5%
}

.dentbul-patient-slider {
	position: relative;
	padding-bottom: 40px
}

#dentbul-patient-slider .swiper-slide {
	max-width: 750px
}

.dentbul-patient-video {
	margin-bottom: 30px;
	opacity: .5
}

#dentbul-patient-slider .swiper-slide-active .dentbul-patient-video {
	opacity: 1
}

.dentbul-patient-video iframe {
	width: 100%;
	min-height: 420px;
	height: 100%;
	border: 0
}

.dentbul-patient-content {
	display: none
}

#dentbul-patient-slider .swiper-slide-active .dentbul-patient-content {
	display: block
}

#dentbul-patient-slider .swiper-slide-active .swiper-button-next,
#dentbul-patient-slider .swiper-slide-active .swiper-button-prev {
	display: inline-block
}

.dentbul-patient-writer {
	display: block;
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 24px;
	color: #fff
}

.dentbul-patient-comment p {
	font-size: 18px;
	font-weight: 300
}

.dentbul-patient-writer span {
	display: block;
	font-size: 14px;
	color: #7e7e7e
}

.before-after {
	margin-bottom: 120px;
	margin-top: 50px
}

.before-after>.container {
	padding: 0
}

.before-after__slider,
.comment .container {
	position: relative
}

.before-after__title {
	display: block;
	text-align: center;
	margin-bottom: 100px;
	font-size: 58px;
	font-weight: 300;
	letter-spacing: -.01em
}

.before-after__image {
	margin-bottom: 35px;
	text-align: center;
	background: 0 0
}

.before-after__image img {
	border-radius: 20px;
	width: 80%;
	margin-top: 14%;
	height: auto
}

.before-after__content {
	overflow: hidden
}

.comment {
	position: relative;
	margin-bottom: 100px
}

.comment__content {
	overflow: hidden
}

.comment__boxes {
	position: relative;
	padding: 0
}

.comment__cols {
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1
}

#leadForm,
.comment__col,
.comment__cols {
	position: relative
}

.comment__col:first-child {
	width: 60%;
	padding-right: 30px
}

.comment__col:last-child {
	width: 100%;
	padding-left: 30px
}

.comment__title {
	margin-bottom: 60px;
	font-size: 56px;
	font-weight: 300;
	line-height: 62px;
	letter-spacing: -.01em;
	text-align: center
}

.comment__text {
	font-size: 18px;
	line-height: 24px;
	color: #ebebeb
}

.comment__slider {
	width: 100%;
	height: 561px;
	overflow: hidden
}

.comment__slider-button-next,
.comment__slider-button-prev {
	position: absolute;
	top: 50%;
	width: 57px;
	height: 57px;
	cursor: pointer
}

.comment__slider-button-prev {
	background-repeat: no-repeat;
	background: url(../images/circle-prev.png);
	z-index: 99;
	left: -70px
}

.comment__slider-button-next {
	background: url(../images/circle-next.png);
	right: -70px;
	z-index: 9999;
	background-repeat: no-repeat
}

.comment__box {
	display: block;
	height: 100%;
	overflow-y: auto;
	margin-bottom: 15px;
	padding: 30px;
	background: #fff
}

.comment__box-title {
	font-size: 24px;
	line-height: 33px;
	color: #000;
	font-weight: 600;
	margin-bottom: 20px
}

.comment__box-text {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 30px;
	color: #000
}

.comment__box-name {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #000;
	margin-top: 40px
}

.comment__logo {
	text-align: right
}

.comment__logo svg {
	width: 150px
}

#comment__slider .swiper-wrapper {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column
}

.video,
.video__title {
	margin-bottom: 55px;
	text-align: center
}

.video__title {
	margin-bottom: 40px;
	font-weight: 300;
	font-size: 76px;
	line-height: 80px;
	letter-spacing: -.01em
}

.video__box iframe {
	width: 100%;
	min-height: 625px;
	border: 0
}

.package {
	margin-bottom: 0;
	background: #161616
}

.package__box {
	padding: 40px 0 100px;
	border-radius: 20px
}

.package__content,
.package__title {
	text-align: center;
	margin-bottom: 50px
}

.package__title {
	margin-bottom: 20px;
	font-weight: 300;
	font-size: 58px;
	line-height: 86px;
	letter-spacing: -.01em
}

.package__text {
	font-size: 18px;
	line-height: 24px;
	color: #ebebeb
}

.packages {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%
}

.package__card {
	position: relative;
	margin-right: 20px;
	border-radius: 40px;
	width: 100%
}

.footer__social a:last-child,
.package__card:last-child {
	margin-right: 0
}

.package__card-content {
	min-height: 750px;
	padding: 95px 25px 25px;
	background: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .04), 0 2px 6px rgba(0, 0, 0, .04), 0 0 1px rgba(0, 0, 0, .04);
	border-radius: 40px
}

.package__card-label,
.package__card-label-price {
	position: absolute;
	right: 30px;
	line-height: 16px;
	color: #fff;
	border-radius: 8px
}

.package__card-label {
	top: 20px;
	padding: 7px 10px;
	font-size: 17px;
	background: #009b7a
}

.package__card-label-price {
	top: 55px;
	padding: 10px 20px;
	font-size: 28px;
	background: #0059ce;
	font-weight: 600
}

.package__card-title {
	font-weight: 800;
	font-size: 46px;
	color: #000;
	line-height: 54px
}

.package__card-price,
.package__card-title-sub {
	margin-bottom: 10px;
	font-size: 28px;
	line-height: 38px;
	color: #000;
	font-weight: 600
}

.package__card-price {
	margin-bottom: 15px;
	font-size: 40px;
	color: #144fe7
}

.package__card-list li {
	position: relative;
	display: block;
	padding-left: 30px;
	margin-bottom: 7px;
	font-size: 20px;
	line-height: 50px;
	color: #000
}

.package__card-list li:before {
	content: '';
	position: absolute;
	top: 19px;
	left: 0;
	width: 18px;
	height: 13px;
	background: url(../images/check.png)
}

.package__card-button {
	display: block;
	padding: 15px 0;
	text-align: center
}

.package__card-button a {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	color: #000;
	background: #dfb437;
	padding: 14px 60px 14px 30px;
	border-radius: 25px;
	display: inline-block
}

.package__card-button a:before {
	content: '';
	position: absolute;
	top: 13px;
	right: 20px;
	width: 21px;
	height: 26px;
	background: url(../images/ok.svg) no-repeat
}

.package__card.vip,
.package__card.vip .package__card-content {
	box-shadow: 0 24px 32px rgba(17, 110, 178, .14), 0 16px 24px rgba(0, 0, 0, .06), 0 4px 8px rgba(0, 0, 0, .07), 0 0 1px rgba(0, 0, 0, .06)
}

.package__card.vip {
	background: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(263.75deg, #2aeaf6 0, #dfb437 100%)
}

.package__card.vip .package__card-content {
	background: #0b6ee2
}

.package__card.vip .package__card-button a,
.package__card.vip .package__card-list li,
.package__card.vip .package__card-price,
.package__card.vip .package__card-title,
.package__card.vip .package__card-title-sub {
	color: #fff
}

.package__card.vip .package__card-list li:before {
	background: #fff
}

.package__card.vip .package__card-button a:before {
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAyMSAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjQxMzIgOUwxMS45OTkgMTcuNDE0MkwxMC41ODQ4IDE2TDE2LjU4NDggOS45OTk5OUgtMC4wMDA5NzY1NjJWNy45OTk5OUgxNi41ODQ4TDEwLjU4NDggMkwxMS45OTkgMC41ODU3ODVMMjAuNDEzMiA5WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==) no-repeat
}

.md-bio,
.package__description {
	display: flex;
	justify-content: space-between
}

.package__description {
	padding: 30px;
	margin-top: -220px
}

.md-bio {
	width: 100%;
	align-items: center;
	padding: 30px 20px;
	margin-right: 15px;
	background: #fff;
	border-radius: 20px
}

.md-bio__image {
	margin-right: 30px
}

.md-bio__title {
	margin-bottom: 10px;
	font-size: 26px;
	font-weight: 600;
	line-height: 33px;
	color: #454545
}

.md-bio__text {
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	color: #454545
}

.therapy {
	width: 100%;
	padding: 30px 20px;
	margin-left: 15px;
	background: #5bb1cc;
	border-radius: 20px
}

.therapy__title {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 26px;
	line-height: 33px;
	color: #fff
}

.therapy__text {
	font-size: 14px;
	line-height: 21px;
	color: #fff
}

.therapy__text .block {
	margin-top: 10px
}

.therapy__list li {
	position: relative;
	display: block;
	margin-bottom: 5px;
	padding-left: 10px
}

.therapy__list li:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 3px;
	height: 3px;
	background: #fff
}

.faq {
	margin-bottom: 180px
}

.faq__title {
	width: 60%;
	margin-bottom: 40px;
	font-weight: 300;
	font-size: 76px;
	line-height: 80px;
	letter-spacing: -.01em
}

.faq__box {
	padding-bottom: 15px;
	margin-bottom: 30px;
	border-bottom: 1px solid #494949
}

.faq__box-text,
.faq__box-title {
	font-size: 18px;
	line-height: 24px;
	color: #ebebeb
}

.faq__box-title {
	position: relative;
	padding-right: 30px;
	font-weight: 500;
	cursor: pointer
}

.faq__box-title:after {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	width: 23px;
	height: 14px;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAyNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIzLjIxODkgMS45OTk4OEwyMS4zMzMzIDAuMTE0MjU4TDExLjk5OTkgOS40NDc1OUwyLjY2NjU4IDAuMTE0MjU3TDAuNzgwOTY2IDEuOTk5ODhMMTEuOTk5OSAxMy4yMTg4TDIzLjIxODkgMS45OTk4OFoiIGZpbGw9IiMyM0MwQTQiLz4KPC9zdmc+Cg==) no-repeat
}

.faq__box.selected .faq__box-title {
	color: #dfb437
}

.faq__box.selected .faq__box-text {
	display: block
}

.faq__box.selected .faq__box-title:after {
	transform: rotate(-180deg)
}

.faq__box-text {
	display: none;
	margin-top: 20px
}

.faq__box-text p {
	margin-bottom: 20px
}

.footer {
	padding: 60px 0;
	background: #1e1e1e;
	height: 400px
}

.footer__logo {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 70px
}

.footer__menu {
	padding-bottom: 38px;
	margin-bottom: 38px;
	border-bottom: 1px solid #555
}

.footer__menu a {
	font-size: 18px;
	font-weight: 400;
	color: #fff
}

.footer__boxes,
.footer__menu {
	display: flex;
	justify-content: space-between
}

.footer__tel {
	margin-bottom: 5px
}

.footer__tel a {
	font-size: 20px;
	font-weight: 600;
	color: #fff
}

.footer__mail,
.footer__tel {
	display: block
}

.footer__address-title {
	display: block;
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 600;
	color: #fff
}

.footer__address-text,
.footer__mail a {
	font-size: 18px;
	font-weight: 400;
	color: #fff
}

.footer__location a {
	position: relative;
	display: inline-block;
	padding: 11px 50px 11px 22px;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #2a2a2a;
	border-radius: 40px;
	background: #fff
}

.footer__location a:after {
	content: '';
	position: absolute;
	top: 13px;
	right: 26px;
	width: 16px;
	height: 20px;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAxNiAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04IDQuNUM2LjA2NyA0LjUgNC41IDYuMDY3IDQuNSA4QzQuNSA5LjkzMyA2LjA2NyAxMS41IDggMTEuNUM5LjkzMyAxMS41IDExLjUgOS45MzMgMTEuNSA4QzExLjUgNi4wNjcgOS45MzMgNC41IDggNC41Wk02LjUgOEM2LjUgNy4xNzE1NyA3LjE3MTU3IDYuNSA4IDYuNUM4LjgyODQzIDYuNSA5LjUgNy4xNzE1NyA5LjUgOEM5LjUgOC44Mjg0MyA4LjgyODQzIDkuNSA4IDkuNUM3LjE3MTU3IDkuNSA2LjUgOC44Mjg0MyA2LjUgOFoiIGZpbGw9IiMyQTJBMkEiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04IDBDMy41ODE3MiAwIDAgMy41ODE3MiAwIDhDMCA5LjQ3MjEzIDAuNTExMDU2IDEwLjk0ODIgMS4yMDYgMTIuMjg4NEMxLjkwNTQzIDEzLjYzNzQgMi44MjY0IDE0LjkxNTggMy43MjgwNyAxNi4wMTA3QzQuNjMyMTggMTcuMTA4NiA1LjUzMzUgMTguMDQxOCA2LjIwNzcxIDE4LjY5OTlDNi41NDU0NCAxOS4wMjk2IDYuODI3NzIgMTkuMjkxOCA3LjAyNjkyIDE5LjQ3MjdDNy4xMjY1NiAxOS41NjMyIDcuMjA1NTIgMTkuNjMzNCA3LjI2MDM2IDE5LjY4MThDNy4yODc3OCAxOS43MDU5IDcuMzA5MTggMTkuNzI0NiA3LjMyNDEzIDE5LjczNzZDNy4zMjg4IDE5Ljc0MTYgNy4zMzI4NCAxOS43NDUxIDcuMzM2MjQgMTkuNzQ4MUw3LjM0MTY2IDE5Ljc1MjhMNy4zNDg4MiAxOS43NTg5QzcuMzQ5MDMgMTkuNzU5MSA3LjM0OTIxIDE5Ljc1OTMgOCAxOUw3LjM0OTIxIDE5Ljc1OTNMOCAyMC4zMTcxTDguNjUwNzkgMTkuNzU5M0w4IDE5QzguNjUwNzkgMTkuNzU5MyA4LjY1MDk3IDE5Ljc1OTEgOC42NTExOCAxOS43NTg5TDguNjU4MzQgMTkuNzUyOEw4LjY2NDc3IDE5Ljc0NzJDOC42Njc5NSAxOS43NDQ1IDguNjcxNjUgMTkuNzQxMiA4LjY3NTg3IDE5LjczNzZDOC42OTA4MiAxOS43MjQ2IDguNzEyMjIgMTkuNzA1OSA4LjczOTY0IDE5LjY4MThDOC43OTQ0OCAxOS42MzM0IDguODczNDQgMTkuNTYzMiA4Ljk3MzA4IDE5LjQ3MjdDOS4xNzIyOCAxOS4yOTE4IDkuNDU0NTYgMTkuMDI5NiA5Ljc5MjI5IDE4LjY5OTlDMTAuNDY2NSAxOC4wNDE4IDExLjM2NzggMTcuMTA4NiAxMi4yNzE5IDE2LjAxMDdDMTMuMTczNiAxNC45MTU4IDE0LjA5NDYgMTMuNjM3NCAxNC43OTQgMTIuMjg4NEMxNS40ODg5IDEwLjk0ODIgMTYgOS40NzIxMyAxNiA4QzE2IDMuNTgxNzIgMTIuNDE4MyAwIDggMFpNOC4zOTUyMSAxNy4yNjg4QzguMjUxNyAxNy40MDg5IDguMTE5MTQgMTcuNTM1NyA4IDE3LjY0ODFDNy44ODA4NiAxNy41MzU3IDcuNzQ4MyAxNy40MDg5IDcuNjA0NzkgMTcuMjY4OEM2Ljk2NjUgMTYuNjQ1NyA2LjExNzgyIDE1Ljc2NjQgNS4yNzE5MyAxNC43MzkzQzQuNDIzNiAxMy43MDkyIDMuNTk0NTcgMTIuNTUwMSAyLjk4MTUgMTEuMzY3OEMyLjM2Mzk0IDEwLjE3NjggMiA5LjAyNzg3IDIgOEMyIDQuNjg2MjkgNC42ODYyOSAyIDggMkMxMS4zMTM3IDIgMTQgNC42ODYyOSAxNCA4QzE0IDkuMDI3ODcgMTMuNjM2MSAxMC4xNzY4IDEzLjAxODUgMTEuMzY3OEMxMi40MDU0IDEyLjU1MDEgMTEuNTc2NCAxMy43MDkyIDEwLjcyODEgMTQuNzM5M0M5Ljg4MjE4IDE1Ljc2NjQgOS4wMzM1IDE2LjY0NTcgOC4zOTUyMSAxNy4yNjg4WiIgZmlsbD0iIzJBMkEyQSIvPgo8L3N2Zz4K) no-repeat
}

.footer__social {
	display: block
}

.footer__social a {
	display: inline-block;
	width: 32px;
	height: 32px;
	margin-right: 20px;
	background-position: center center
}

.footer__social .fb {
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMyIDE2QzMyIDcuMTYzNDQgMjQuODM2NiAwIDE2IDBDNy4xNjM0NCAwIDAgNy4xNjM0NCAwIDE2QzAgMjMuOTg1OSA1Ljg1MDk0IDMwLjYwNTMgMTMuNSAzMS44MDU2VjIwLjYyNUg5LjQzNzVWMTZIMTMuNVYxMi40NzVDMTMuNSA4LjQ2NSAxNS44ODg4IDYuMjUgMTkuNTQzNCA2LjI1QzIxLjI5MzQgNi4yNSAyMy4xMjUgNi41NjI1IDIzLjEyNSA2LjU2MjVWMTAuNUgyMS4xMDc1QzE5LjEyIDEwLjUgMTguNSAxMS43MzM0IDE4LjUgMTNWMTZIMjIuOTM3NUwyMi4yMjgxIDIwLjYyNUgxOC41VjMxLjgwNTZDMjYuMTQ5MSAzMC42MDUzIDMyIDIzLjk4NTkgMzIgMTZaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMjIuMjI4MSAyMC42MjVMMjIuOTM3NSAxNkgxOC41VjEzQzE4LjUgMTEuNzM0NyAxOS4xMiAxMC41IDIxLjEwNzUgMTAuNUgyMy4xMjVWNi41NjI1QzIzLjEyNSA2LjU2MjUgMjEuMjk0MSA2LjI1IDE5LjU0MzQgNi4yNUMxNS44ODg4IDYuMjUgMTMuNSA4LjQ2NSAxMy41IDEyLjQ3NVYxNkg5LjQzNzVWMjAuNjI1SDEzLjVWMzEuODA1NkMxNS4xNTY2IDMyLjA2NDggMTYuODQzNCAzMi4wNjQ4IDE4LjUgMzEuODA1NlYyMC42MjVIMjIuMjI4MVoiIGZpbGw9IiMyQTJBMkEiLz4KPC9zdmc+Cg==) no-repeat
}

.footer__social .tt {
	background: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAgMTAwIj48cGF0aCBkPSJNNzQuMDg5IDIxLjI1NGMtNC4xMjEtNC43OTEtNi4yOC0xMC45ODEtNi4xMDgtMTcuMjgzbC0xNS4zOTktLjM3MnY2My4yOTRjLjIxNSAxOS41MzYtMzAuNjUxIDE5LjA2Mi0yOC4yMDktMi41MzIgMS40OTMtOC41ODYgMTAuNzE5LTEzLjg3IDE4LjkxNy0xMC44ODNWMzcuNzY2QzI1LjQ0MiAzNC42NTggOC41MjggNDguODY0IDguNzA2IDY2Ljk2MmMxLjU2IDM5LjI1IDU3Ljg1NiAzOS4yNTUgNTkuNDE4IDAtLjM5My0xLjQwNS0uMTczLTI3LjU2MS0uMjI5LTI5Ljc2N2E0MS42MzIgNDEuNjMyIDAgMCAwIDIzLjQgNi4yNTZWMjcuMjI0Yy03LjYyOCAwLTEzLjQ0OS0yLjAyOC0xNy4yMDYtNS45N3oiIGlkPSJMYXllcl8yIiBmaWxsPSIjZmZmZmZmIiBjbGFzcz0iZmlsbC02OWM5ZDAiPjwvcGF0aD48L3N2Zz4=) no-repeat
}

.footer__social .tw {
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjA2MzQgMjkuMDAwN0MyMi4xMzg5IDI5LjAwMDcgMjguNzQzNyAxOC45OTYyIDI4Ljc0MzcgMTAuMzIwNEMyOC43NDM3IDEwLjAzNjIgMjguNzQzNyA5Ljc1MzMzIDI4LjcyNDUgOS40NzE3M0MzMC4wMDk0IDguNTQyMzQgMzEuMTE4NSA3LjM5MTU3IDMyIDYuMDczMzNDMzAuODAxOSA2LjYwNDUzIDI5LjUzMDcgNi45NTI3MyAyOC4yMjkxIDcuMTA2MjlDMjkuNTk5OCA2LjI4NTg3IDMwLjYyNTUgNC45OTUzMyAzMS4xMTU1IDMuNDc0OTNDMjkuODI2OCA0LjIzOTc0IDI4LjQxNjggNC43Nzg3IDI2Ljk0NjYgNS4wNjg1M0MyNS45NTY3IDQuMDE1OTYgMjQuNjQ3NSAzLjMxODk4IDIzLjIyMTYgMy4wODU0NEMyMS43OTU3IDIuODUxOSAyMC4zMzI2IDMuMDk0ODEgMTkuMDU4NiAzLjc3NjZDMTcuNzg0NyA0LjQ1ODM4IDE2Ljc3MSA1LjU0MTAzIDE2LjE3NDMgNi44NTY5OUMxNS41Nzc3IDguMTcyOTYgMTUuNDMxNCA5LjY0ODg4IDE1Ljc1ODEgMTEuMDU2NEMxMy4xNDc5IDEwLjkyNTQgMTAuNTk0MyAxMC4yNDcxIDguMjYzMjcgOS4wNjUzNEM1LjkzMjIgNy44ODM1OSAzLjg3NTY5IDYuMjI0ODggMi4yMjcyIDQuMTk2ODVDMS4zODc2NCA1LjY0MjE4IDEuMTMwNSA3LjM1MzE1IDEuNTA4MTMgOC45ODE0MUMxLjg4NTc3IDEwLjYwOTcgMi44Njk3OSAxMi4wMzI4IDQuMjU5ODQgMTIuOTYxQzMuMjE0OTggMTIuOTMwNCAyLjE5Mjg2IDEyLjY0ODUgMS4yOCAxMi4xMzkyVjEyLjIyMjRDMS4yODA0MSAxMy43MzgyIDEuODA1MTMgMTUuMjA3MiAyLjc2NTE2IDE2LjM4MDNDMy43MjUxOSAxNy41NTMzIDUuMDYxNDEgMTguMzU4MSA2LjU0NzIgMTguNjU4M0M1LjU4MDY0IDE4LjkyMTkgNC41NjY1IDE4Ljk2MDUgMy41ODI3MiAxOC43NzA5QzQuMDAyNDIgMjAuMDc1NCA0LjgxOTI0IDIxLjIxNiA1LjkxODk5IDIyLjAzMzVDNy4wMTg3MyAyMi44NTEgOC4zNDY0NCAyMy4zMDQ0IDkuNzE2NDggMjMuMzMwM0M4LjM1NTI1IDI0LjQwMDMgNi43OTY0MiAyNS4xOTEzIDUuMTI5MTcgMjUuNjU4M0MzLjQ2MTkxIDI2LjEyNTIgMS43MTg5NSAyNi4yNTg5IDAgMjYuMDUxNkMzLjAwMjQ0IDI3Ljk3ODMgNi40OTU5IDI5LjAwMDMgMTAuMDYzNCAyOC45OTU2IiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K) no-repeat
}

.footer__social .ins {
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2IDIuODgxMjVDMjAuMjc1IDIuODgxMjUgMjAuNzgxMiAyLjkgMjIuNDYyNSAyLjk3NUMyNC4wMjUgMy4wNDM3NSAyNC44Njg3IDMuMzA2MjUgMjUuNDMxMiAzLjUyNUMyNi4xNzUgMy44MTI1IDI2LjcxMjUgNC4xNjI1IDI3LjI2ODcgNC43MTg3NUMyNy44MzEyIDUuMjgxMjUgMjguMTc1IDUuODEyNSAyOC40NjI1IDYuNTU2MjVDMjguNjgxMiA3LjExODc1IDI4Ljk0MzggNy45Njg3NSAyOS4wMTI1IDkuNTI1QzI5LjA4NzUgMTEuMjEyNSAyOS4xMDYzIDExLjcxODcgMjkuMTA2MyAxNS45ODc1QzI5LjEwNjMgMjAuMjYyNSAyOS4wODc1IDIwLjc2ODcgMjkuMDEyNSAyMi40NUMyOC45NDM4IDI0LjAxMjUgMjguNjgxMiAyNC44NTYyIDI4LjQ2MjUgMjUuNDE4N0MyOC4xNzUgMjYuMTYyNSAyNy44MjUgMjYuNyAyNy4yNjg3IDI3LjI1NjJDMjYuNzA2MiAyNy44MTg3IDI2LjE3NSAyOC4xNjI1IDI1LjQzMTIgMjguNDVDMjQuODY4NyAyOC42Njg3IDI0LjAxODcgMjguOTMxMiAyMi40NjI1IDI5QzIwLjc3NSAyOS4wNzUgMjAuMjY4OCAyOS4wOTM3IDE2IDI5LjA5MzdDMTEuNzI1IDI5LjA5MzcgMTEuMjE4OCAyOS4wNzUgOS41Mzc1IDI5QzcuOTc1IDI4LjkzMTIgNy4xMzEyNSAyOC42Njg3IDYuNTY4NzUgMjguNDVDNS44MjUgMjguMTYyNSA1LjI4NzUgMjcuODEyNSA0LjczMTI1IDI3LjI1NjJDNC4xNjg3NSAyNi42OTM3IDMuODI1IDI2LjE2MjUgMy41Mzc1IDI1LjQxODdDMy4zMTg3NSAyNC44NTYyIDMuMDU2MjUgMjQuMDA2MiAyLjk4NzUgMjIuNDVDMi45MTI1IDIwLjc2MjUgMi44OTM3NSAyMC4yNTYyIDIuODkzNzUgMTUuOTg3NUMyLjg5Mzc1IDExLjcxMjUgMi45MTI1IDExLjIwNjIgMi45ODc1IDkuNTI1QzMuMDU2MjUgNy45NjI1IDMuMzE4NzUgNy4xMTg3NSAzLjUzNzUgNi41NTYyNUMzLjgyNSA1LjgxMjUgNC4xNzUgNS4yNzUgNC43MzEyNSA0LjcxODc1QzUuMjkzNzUgNC4xNTYyNSA1LjgyNSAzLjgxMjUgNi41Njg3NSAzLjUyNUM3LjEzMTI1IDMuMzA2MjUgNy45ODEyNSAzLjA0Mzc1IDkuNTM3NSAyLjk3NUMxMS4yMTg4IDIuOSAxMS43MjUgMi44ODEyNSAxNiAyLjg4MTI1Wk0xNiAwQzExLjY1NjIgMCAxMS4xMTI1IDAuMDE4NzUgOS40MDYyNSAwLjA5Mzc1QzcuNzA2MjUgMC4xNjg3NSA2LjUzNzUgMC40NDM3NSA1LjUyNSAwLjgzNzVDNC40Njg3NSAxLjI1IDMuNTc1IDEuNzkzNzUgMi42ODc1IDIuNjg3NUMxLjc5Mzc1IDMuNTc1IDEuMjUgNC40Njg3NSAwLjgzNzUgNS41MTg3NUMwLjQ0Mzc1IDYuNTM3NSAwLjE2ODc1IDcuNyAwLjA5Mzc1IDkuNEMwLjAxODc1IDExLjExMjUgMCAxMS42NTYyIDAgMTZDMCAyMC4zNDM3IDAuMDE4NzUgMjAuODg3NSAwLjA5Mzc1IDIyLjU5MzdDMC4xNjg3NSAyNC4yOTM3IDAuNDQzNzUgMjUuNDYyNSAwLjgzNzUgMjYuNDc1QzEuMjUgMjcuNTMxMiAxLjc5Mzc1IDI4LjQyNSAyLjY4NzUgMjkuMzEyNUMzLjU3NSAzMC4yIDQuNDY4NzUgMzAuNzUgNS41MTg3NSAzMS4xNTYyQzYuNTM3NSAzMS41NSA3LjcgMzEuODI1IDkuNCAzMS45QzExLjEwNjIgMzEuOTc1IDExLjY1IDMxLjk5MzcgMTUuOTkzNyAzMS45OTM3QzIwLjMzNzUgMzEuOTkzNyAyMC44ODEzIDMxLjk3NSAyMi41ODc1IDMxLjlDMjQuMjg3NSAzMS44MjUgMjUuNDU2MyAzMS41NSAyNi40Njg4IDMxLjE1NjJDMjcuNTE4OCAzMC43NSAyOC40MTI1IDMwLjIgMjkuMyAyOS4zMTI1QzMwLjE4NzUgMjguNDI1IDMwLjczNzUgMjcuNTMxMiAzMS4xNDM3IDI2LjQ4MTJDMzEuNTM3NSAyNS40NjI1IDMxLjgxMjUgMjQuMyAzMS44ODc1IDIyLjZDMzEuOTYyNSAyMC44OTM3IDMxLjk4MTMgMjAuMzUgMzEuOTgxMyAxNi4wMDYyQzMxLjk4MTMgMTEuNjYyNSAzMS45NjI1IDExLjExODcgMzEuODg3NSA5LjQxMjVDMzEuODEyNSA3LjcxMjUgMzEuNTM3NSA2LjU0Mzc1IDMxLjE0MzcgNS41MzEyNUMzMC43NSA0LjQ2ODc1IDMwLjIwNjMgMy41NzUgMjkuMzEyNSAyLjY4NzVDMjguNDI1IDEuOCAyNy41MzEyIDEuMjUgMjYuNDgxMyAwLjg0Mzc1QzI1LjQ2MjUgMC40NSAyNC4zIDAuMTc1IDIyLjYgMC4xQzIwLjg4NzUgMC4wMTg3NSAyMC4zNDM4IDAgMTYgMFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xNiA3Ljc4MTI1QzExLjQ2MjUgNy43ODEyNSA3Ljc4MTI1IDExLjQ2MjUgNy43ODEyNSAxNkM3Ljc4MTI1IDIwLjUzNzUgMTEuNDYyNSAyNC4yMTg4IDE2IDI0LjIxODhDMjAuNTM3NSAyNC4yMTg4IDI0LjIxODggMjAuNTM3NSAyNC4yMTg4IDE2QzI0LjIxODggMTEuNDYyNSAyMC41Mzc1IDcuNzgxMjUgMTYgNy43ODEyNVpNMTYgMjEuMzMxMkMxMy4wNTYzIDIxLjMzMTIgMTAuNjY4NyAxOC45NDM4IDEwLjY2ODcgMTZDMTAuNjY4NyAxMy4wNTYzIDEzLjA1NjMgMTAuNjY4NyAxNiAxMC42Njg3QzE4Ljk0MzggMTAuNjY4NyAyMS4zMzEyIDEzLjA1NjMgMjEuMzMxMiAxNkMyMS4zMzEyIDE4Ljk0MzggMTguOTQzOCAyMS4zMzEyIDE2IDIxLjMzMTJaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMjYuNDYyNSA3LjQ1NTg2QzI2LjQ2MjUgOC41MTgzNiAyNS42IDkuMzc0NjIgMjQuNTQzOCA5LjM3NDYyQzIzLjQ4MTMgOS4zNzQ2MiAyMi42MjUgOC41MTIxMSAyMi42MjUgNy40NTU4NkMyMi42MjUgNi4zOTMzNiAyMy40ODc1IDUuNTM3MTEgMjQuNTQzOCA1LjUzNzExQzI1LjYgNS41MzcxMSAyNi40NjI1IDYuMzk5NjEgMjYuNDYyNSA3LjQ1NTg2WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==) no-repeat
}

.footer__social .lin {
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0yOS42Mzc4IDBIMi4zNjIyMkMxLjczNTcyIDAgMS4xMzQ4OCAwLjI0ODg3NyAwLjY5MTg3OSAwLjY5MTg3OUMwLjI0ODg3NyAxLjEzNDg4IDAgMS43MzU3MiAwIDIuMzYyMjJWMjkuNjM3OEMwIDMwLjI2NDMgMC4yNDg4NzcgMzAuODY1MSAwLjY5MTg3OSAzMS4zMDgxQzEuMTM0ODggMzEuNzUxMSAxLjczNTcyIDMyIDIuMzYyMjIgMzJIMjkuNjM3OEMzMC4yNjQzIDMyIDMwLjg2NTEgMzEuNzUxMSAzMS4zMDgxIDMxLjMwODFDMzEuNzUxMSAzMC44NjUxIDMyIDMwLjI2NDMgMzIgMjkuNjM3OFYyLjM2MjIyQzMyIDEuNzM1NzIgMzEuNzUxMSAxLjEzNDg4IDMxLjMwODEgMC42OTE4NzlDMzAuODY1MSAwLjI0ODg3NyAzMC4yNjQzIDAgMjkuNjM3OCAwWk05LjUzNzc4IDI3LjI2SDQuNzI2NjdWMTEuOTc3OEg5LjUzNzc4VjI3LjI2Wk03LjEyODg5IDkuODZDNi41ODMxNSA5Ljg1NjkzIDYuMDUwNTUgOS42OTIyNiA1LjU5ODMxIDkuMzg2NzhDNS4xNDYwNyA5LjA4MTMxIDQuNzk0NDUgOC42NDg3MSA0LjU4Nzg0IDguMTQzNTlDNC4zODEyMiA3LjYzODQ2IDQuMzI4ODYgNy4wODM0NiA0LjQzNzM4IDYuNTQ4NjFDNC41NDU4OSA2LjAxMzc2IDQuODEwNCA1LjUyMzA0IDUuMTk3NTQgNS4xMzgzOEM1LjU4NDY4IDQuNzUzNzIgNi4wNzcwOSA0LjQ5MjM2IDYuNjEyNjIgNC4zODcyOEM3LjE0ODE2IDQuMjgyMjEgNy43MDI4MiA0LjMzODEyIDguMjA2NiA0LjU0Nzk4QzguNzEwMzkgNC43NTc4NCA5LjE0MDcyIDUuMTEyMjIgOS40NDMyOSA1LjU2NjQyQzkuNzQ1ODUgNi4wMjA2MSA5LjkwNzEgNi41NTQyNiA5LjkwNjY3IDcuMUM5LjkxMTgyIDcuNDY1MzggOS44NDMzNSA3LjgyODA1IDkuNzA1MzUgOC4xNjY0MUM5LjU2NzM1IDguNTA0NzYgOS4zNjI2NCA4LjgxMTg3IDkuMTAzNDMgOS4wNjk0MkM4Ljg0NDIxIDkuMzI2OTggOC41MzU4IDkuNTI5NzEgOC4xOTY1NyA5LjY2NTUzQzcuODU3MzMgOS44MDEzNiA3LjQ5NDIzIDkuODY3NDkgNy4xMjg4OSA5Ljg2Wk0yNy4yNzExIDI3LjI3MzNIMjIuNDYyMlYxOC45MjQ0QzIyLjQ2MjIgMTYuNDYyMiAyMS40MTU2IDE1LjcwMjIgMjAuMDY0NCAxNS43MDIyQzE4LjYzNzggMTUuNzAyMiAxNy4yMzc4IDE2Ljc3NzggMTcuMjM3OCAxOC45ODY3VjI3LjI3MzNIMTIuNDI2N1YxMS45ODg5SDE3LjA1MzNWMTQuMTA2N0gxNy4xMTU2QzE3LjU4IDEzLjE2NjcgMTkuMjA2NyAxMS41NiAyMS42ODg5IDExLjU2QzI0LjM3MzMgMTEuNTYgMjcuMjczMyAxMy4xNTMzIDI3LjI3MzMgMTcuODJMMjcuMjcxMSAyNy4yNzMzWiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMCI+CjxyZWN0IHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K) no-repeat
}

.footer__social .yt {
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0zMS4zNjI3IDguMjQ3NTRDMzEuMTgxNyA3LjU2Njc2IDMwLjgyNTIgNi45NDU0MyAzMC4zMjg3IDYuNDQ1NzVDMjkuODMyMiA1Ljk0NjA2IDI5LjIxMzIgNS41ODU1NCAyOC41MzM2IDUuNDAwMjdDMjYuMDMxNyA0LjcyNzU0IDE2LjAzMTcgNC43Mjc1NCAxNi4wMzE3IDQuNzI3NTRDMTYuMDMxNyA0LjcyNzU0IDYuMDMxNzQgNC43Mjc1NCAzLjUyOTkyIDUuNDAwMjdDMi44NTAzMSA1LjU4NTU0IDIuMjMxMjggNS45NDYwNiAxLjczNDc5IDYuNDQ1NzVDMS4yMzgyOSA2Ljk0NTQzIDAuODgxNzQ2IDcuNTY2NzYgMC43MDA4MjkgOC4yNDc1NEMwLjAzMTczODQgMTAuNzYwMyAwLjAzMTczODMgMTYuMDAwMyAwLjAzMTczODMgMTYuMDAwM0MwLjAzMTczODMgMTYuMDAwMyAwLjAzMTczODQgMjEuMjQwMyAwLjcwMDgyOSAyMy43NTNDMC44ODE3NDYgMjQuNDMzOCAxLjIzODI5IDI1LjA1NTEgMS43MzQ3OSAyNS41NTQ4QzIuMjMxMjggMjYuMDU0NSAyLjg1MDMxIDI2LjQxNSAzLjUyOTkyIDI2LjYwMDNDNi4wMzE3NCAyNy4yNzMgMTYuMDMxNyAyNy4yNzMgMTYuMDMxNyAyNy4yNzNDMTYuMDMxNyAyNy4yNzMgMjYuMDMxNyAyNy4yNzMgMjguNTMzNiAyNi42MDAzQzI5LjIxMzIgMjYuNDE1IDI5LjgzMjIgMjYuMDU0NSAzMC4zMjg3IDI1LjU1NDhDMzAuODI1MiAyNS4wNTUxIDMxLjE4MTcgMjQuNDMzOCAzMS4zNjI3IDIzLjc1M0MzMi4wMzE3IDIxLjI0MDMgMzIuMDMxNyAxNi4wMDAzIDMyLjAzMTcgMTYuMDAwM0MzMi4wMzE3IDE2LjAwMDMgMzIuMDMxNyAxMC43NjAzIDMxLjM2MjcgOC4yNDc1NFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xMi43NTg4IDIwLjc1ODZWMTEuMjQyMkwyMS4xMjI0IDE2LjAwMDRMMTIuNzU4OCAyMC43NTg2WiIgZmlsbD0iIzExNkVCMiIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwIj4KPHJlY3Qgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=) no-repeat
}

.footer__bar {
	padding: 20px 0 100px;
	background: #1f1f1f
}

.footer__copyright,
.footer__provenexpert {
	position: relative;
	font-size: 14px;
	line-height: 16px;
	color: #fff
}

.footer__copyright .dmca {
	display: none;
	position: absolute;
	top: -2px;
	right: -48px
}

.footer__provenexpert {
	float: right
}

.footer__provenexpert a {
	color: #fff
}

.footer__provenexpert:after {
	content: '';
	position: absolute;
	top: -2px;
	left: -120px;
	width: 114px;
	height: 20px;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE0IiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMTE0IDIwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTkuOTg5NSAxLjYxNjIxTDEyLjc0MTYgNy4xMTgyTDE4LjgyNDcgOC4wMzUzN0wxNC40NDI0IDEyLjM1M0wxNS40NSAxOC40MjE4TDkuOTg5NSAxNS41ODgyTDQuNTI5MDUgMTguNDIxOEw1LjUzNjU2IDEyLjM1M0wxLjE1NDMgOC4wMzUzN0w3LjIzNzQzIDcuMTE4Mkw5Ljk4OTUgMS42MTYyMVpNOS45ODk1IDUuMzQxODJMOC4zNDExMiA4LjYzNzNMNC42OTc1NiA5LjE4NjY1TDcuMzIyMzcgMTEuNzcyN0w2LjcxODkgMTUuNDA3N0w5Ljk4OTUgMTMuNzEwNUwxMy4yNjAxIDE1LjQwNzdMMTIuNjU2NiAxMS43NzI3TDE1LjI4MTQgOS4xODY2NUwxMS42Mzc5IDguNjM3M0w5Ljk4OTUgNS4zNDE4MloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMzIzIDEuNjE2MjFMMzYuMDc1MSA3LjExODJMNDIuMTU4MiA4LjAzNTM3TDM3Ljc3NTkgMTIuMzUzTDM4Ljc4MzUgMTguNDIxOEwzMy4zMjMgMTUuNTg4MkwyNy44NjI1IDE4LjQyMThMMjguODcwMSAxMi4zNTNMMjQuNDg3OCA4LjAzNTM3TDMwLjU3MDkgNy4xMTgyTDMzLjMyMyAxLjYxNjIxWk0zMy4zMjMgNS4zNDE4MkwzMS42NzQ2IDguNjM3M0wyOC4wMzExIDkuMTg2NjVMMzAuNjU1OSAxMS43NzI3TDMwLjA1MjQgMTUuNDA3N0wzMy4zMjMgMTMuNzEwNUwzNi41OTM2IDE1LjQwNzdMMzUuOTkwMSAxMS43NzI3TDM4LjYxNDkgOS4xODY2NUwzNC45NzE0IDguNjM3M0wzMy4zMjMgNS4zNDE4MloiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNTYuNjU2IDEuNjE2MjFMNTkuNDA4MSA3LjExODJMNjUuNDkxMiA4LjAzNTM3TDYxLjEwOSAxMi4zNTNMNjIuMTE2NSAxOC40MjE4TDU2LjY1NiAxNS41ODgyTDUxLjE5NTUgMTguNDIxOEw1Mi4yMDMxIDEyLjM1M0w0Ny44MjA4IDguMDM1MzdMNTMuOTAzOSA3LjExODJMNTYuNjU2IDEuNjE2MjFaTTU2LjY1NiA1LjM0MTgyTDU1LjAwNzYgOC42MzczTDUxLjM2NDEgOS4xODY2NUw1My45ODg5IDExLjc3MjdMNTMuMzg1NCAxNS40MDc3TDU2LjY1NiAxMy43MTA1TDU5LjkyNjYgMTUuNDA3N0w1OS4zMjMxIDExLjc3MjdMNjEuOTQ4IDkuMTg2NjVMNTguMzA0NCA4LjYzNzNMNTYuNjU2IDUuMzQxODJaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTc5Ljk4OTUgMS42MTYyMUw4Mi43NDE2IDcuMTE4Mkw4OC44MjQ3IDguMDM1MzdMODQuNDQyNCAxMi4zNTNMODUuNDUgMTguNDIxOEw3OS45ODk1IDE1LjU4ODJMNzQuNTI5IDE4LjQyMThMNzUuNTM2NiAxMi4zNTNMNzEuMTU0MyA4LjAzNTM3TDc3LjIzNzQgNy4xMTgyTDc5Ljk4OTUgMS42MTYyMVpNNzkuOTg5NSA1LjM0MTgyTDc4LjM0MTEgOC42MzczTDc0LjY5NzYgOS4xODY2NUw3Ny4zMjI0IDExLjc3MjdMNzYuNzE4OSAxNS40MDc3TDc5Ljk4OTUgMTMuNzEwNUw4My4yNjAxIDE1LjQwNzdMODIuNjU2NiAxMS43NzI3TDg1LjI4MTQgOS4xODY2NUw4MS42Mzc5IDguNjM3M0w3OS45ODk1IDUuMzQxODJaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEwMy4zMjMgMS42MTYyMUwxMDYuMDc1IDcuMTE4MkwxMTIuMTU4IDguMDM1MzdMMTA3Ljc3NiAxMi4zNTNMMTA4Ljc4MyAxOC40MjE4TDEwMy4zMjMgMTUuNTg4Mkw5Ny44NjI1IDE4LjQyMThMOTguODcwMSAxMi4zNTNMOTQuNDg3OCA4LjAzNTM3TDEwMC41NzEgNy4xMTgyTDEwMy4zMjMgMS42MTYyMVpNMTAzLjMyMyA1LjM0MTgyTDEwMS42NzUgOC42MzczTDk4LjAzMTEgOS4xODY2NUwxMDAuNjU2IDExLjc3MjdMMTAwLjA1MiAxNS40MDc3TDEwMy4zMjMgMTMuNzEwNUwxMDYuNTk0IDE1LjQwNzdMMTA1Ljk5IDExLjc3MjdMMTA4LjYxNSA5LjE4NjY1TDEwNC45NzEgOC42MzczTDEwMy4zMjMgNS4zNDE4MloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=) no-repeat
}

.lead__form {
	display: none;
	z-index: 999;
	position: fixed;
	opacity: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: auto;
	max-width: 370px;
	width: 100%;
	background: #fff;
	padding: 20px;
	border-radius: 5px;
	-moz-box-shadow: 0 0 5px #444;
	-webkit-box-shadow: 0 0 5px #444;
	box-shadow: 0 0 5px #444
}

.lead__form-row {
	width: 100%;
	margin-bottom: 14px
}

.lead__form-title {
	margin-bottom: 20px;
	font-size: 26px;
	color: #000
}

.lead__form-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 16px;
	height: 16px;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuOTk5ODUgNi41ODU3OUwxLjYzNTg5IDAuMjIxODMyTDAuMjIxNjggMS42MzYwNUw2LjU4NTY0IDguMDAwMDFMMC4yMjE2OCAxNC4zNjRMMS42MzU4OSAxNS43NzgyTDcuOTk5ODUgOS40MTQyMkwxNC4zNjM4IDE1Ljc3ODJMMTUuNzc4IDE0LjM2NEw5LjQxNDA3IDguMDAwMDFMMTUuNzc4IDEuNjM2MDVMMTQuMzYzOCAwLjIyMTgzMkw3Ljk5OTg1IDYuNTg1NzlaIiBmaWxsPSIjMTE2RUIyIi8+Cjwvc3ZnPgo=) no-repeat;
	z-index: 1
}

.lead__form .form-button {
	margin-top: 5px
}

.mobile-sticky,
.overlay {
	position: fixed;
	z-index: 999
}

.overlay {
	opacity: 0;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000
}

.mobile-sticky {
	right: 20px;
	bottom: 20px
}

.mobile-sticky a {
	float: left;
	margin-left: 10px
}

.mobile-sticky__whatsapp {
	display: inline-block;
	width: 46px;
	height: 46px;
	box-shadow: 0 24px 32px rgba(0, 168, 89, .14), 0 16px 24px rgba(0, 168, 89, .04), 0 4px 8px rgba(0, 168, 89, .04), 0 0 1px rgba(0, 168, 89, .04);
	border-radius: 40px;
	background: #00a859 url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjcxODQgMTYuMDg4N0MyMC42NjM5IDE2LjA2MjUgMTguNjIyNiAxNS4wNTczIDE4LjI1OTkgMTQuOTI2OEMxOC4xMTE4IDE0Ljg3MzYgMTcuOTUzMiAxNC44MjE3IDE3Ljc4NDQgMTQuODIxN0MxNy41MDg4IDE0LjgyMTcgMTcuMjc3MyAxNC45NTkxIDE3LjA5NjkgMTUuMjI4OUMxNi44OTMgMTUuNTMyIDE2LjI3NTcgMTYuMjUzNSAxNi4wODUgMTYuNDY5MUMxNi4wNjAxIDE2LjQ5NzUgMTYuMDI2MSAxNi41MzE1IDE2LjAwNTcgMTYuNTMxNUMxNS45ODc0IDE2LjUzMTUgMTUuNjcxNSAxNi40MDE0IDE1LjU3NTkgMTYuMzU5OUMxMy4zODYyIDE1LjQwODcgMTEuNzI0MSAxMy4xMjEzIDExLjQ5NjIgMTIuNzM1NkMxMS40NjM2IDEyLjY4MDEgMTEuNDYyMiAxMi42NTUgMTEuNDYyIDEyLjY1NUMxMS40NyAxMi42MjU2IDExLjU0MzYgMTIuNTUxOCAxMS41ODE2IDEyLjUxMzdDMTEuNjkyOCAxMi40MDM3IDExLjgxMzIgMTIuMjU4NyAxMS45Mjk4IDEyLjExODRDMTEuOTg1IDEyLjA1MiAxMi4wNDAyIDExLjk4NTQgMTIuMDk0NSAxMS45MjI3QzEyLjI2MzYgMTEuNzI2IDEyLjMzODkgMTEuNTczMiAxMi40MjYyIDExLjM5NjNMMTIuNDcxOSAxMS4zMDQ0QzEyLjY4NSAxMC44ODExIDEyLjUwMyAxMC41MjM4IDEyLjQ0NDIgMTAuNDA4NEMxMi4zOTU5IDEwLjMxMTkgMTEuNTM0IDguMjMxNjkgMTEuNDQyMyA4LjAxMzE0QzExLjIyMiA3LjQ4NTc4IDEwLjkzMDggNy4yNDAyMyAxMC41MjYyIDcuMjQwMjNDMTAuNDg4NiA3LjI0MDIzIDEwLjUyNjIgNy4yNDAyMyAxMC4zNjg3IDcuMjQ2ODdDMTAuMTc3IDcuMjU0OTYgOS4xMzI4OCA3LjM5MjQyIDguNjcxMjQgNy42ODM0MkM4LjE4MTcgNy45OTIwNSA3LjM1MzUyIDguOTc1ODcgNy4zNTM1MiAxMC43MDYxQzcuMzUzNTIgMTIuMjYzMiA4LjM0MTcgMTMuNzMzNSA4Ljc2NTk3IDE0LjI5MjdDOC43NzY1MiAxNC4zMDY4IDguNzk1ODggMTQuMzM1NCA4LjgyMzk3IDE0LjM3NjVDMTAuNDQ4OCAxNi43NDk0IDEyLjQ3NDMgMTguNTA4IDE0LjUyNzcgMTkuMzI4MkMxNi41MDQ1IDIwLjExNzkgMTcuNDQwNiAyMC4yMDkyIDE3Ljk3MjggMjAuMjA5MkMxNy45NzI5IDIwLjIwOTIgMTcuOTcyOSAyMC4yMDkyIDE3Ljk3MjkgMjAuMjA5MkMxOC4xOTY1IDIwLjIwOTIgMTguMzc1NSAyMC4xOTE2IDE4LjUzMzQgMjAuMTc2MUwxOC42MzM2IDIwLjE2NjVDMTkuMzE2NSAyMC4xMDYgMjAuODE3MyAxOS4zMjgzIDIxLjE1ODYgMTguMzc5N0MyMS40Mjc1IDE3LjYzMjUgMjEuNDk4NCAxNi44MTYyIDIxLjMxOTUgMTYuNTE5OUMyMS4xOTcgMTYuMzE4NCAyMC45ODU4IDE2LjIxNzEgMjAuNzE4NCAxNi4wODg3WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTE0LjI0ODUgMEM2LjY2NTI2IDAgMC40OTU3OTcgNi4xMjMxIDAuNDk1Nzk3IDEzLjY0OTRDMC40OTU3OTcgMTYuMDgzNyAxLjE0NzI1IDE4LjQ2NjUgMi4zODEzNCAyMC41NTE5TDAuMDE5MjUxNiAyNy41MTk3Qy0wLjAyNDc0ODQgMjcuNjQ5NiAwLjAwNzk3ODg5IDI3Ljc5MzIgMC4xMDQwNyAyNy44OTFDMC4xNzM0MzQgMjcuOTYxOCAwLjI2NzUyNSAyOCAwLjM2MzYxNiAyOEMwLjQwMDQzNCAyOCAwLjQzNzUyNSAyNy45OTQ1IDAuNDczNzA3IDI3Ljk4MjlMNy43MzkxNyAyNS42NzQyQzkuNzI3MzUgMjYuNzM2NSAxMS45NzQ0IDI3LjI5NzIgMTQuMjQ4NiAyNy4yOTcyQzIxLjgzMTIgMjcuMjk3MyAyOCAyMS4xNzQ4IDI4IDEzLjY0OTRDMjggNi4xMjMxIDIxLjgzMTIgMCAxNC4yNDg1IDBaTTE0LjI0ODUgMjQuNDU0QzEyLjEwODYgMjQuNDU0IDEwLjAzNiAyMy44MzYxIDguMjU0MzUgMjIuNjY3QzguMTk0NDQgMjIuNjI3NyA4LjEyNDg5IDIyLjYwNzUgOC4wNTQ4OSAyMi42MDc1QzguMDE3ODkgMjIuNjA3NSA3Ljk4MDggMjIuNjEzMSA3Ljk0NDcxIDIyLjYyNDZMNC4zMDUxNiAyMy43ODE1TDUuNDgwMDcgMjAuMzE1MkM1LjUxODA3IDIwLjIwMyA1LjQ5OTA3IDIwLjA3OTMgNS40MjkwNyAxOS45ODM3QzQuMDcyMzUgMTguMTI5OCAzLjM1NTE2IDE1LjkzOTYgMy4zNTUxNiAxMy42NDk0QzMuMzU1MTYgNy42OTA5MiA4LjI0MTg5IDIuODQzMjggMTQuMjQ4NCAyLjg0MzI4QzIwLjI1NDMgMi44NDMyOCAyNS4xNDA1IDcuNjkwOTIgMjUuMTQwNSAxMy42NDk0QzI1LjE0MDUgMTkuNjA3MSAyMC4yNTQ0IDI0LjQ1NCAxNC4yNDg1IDI0LjQ1NFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=) no-repeat center center
}

.mobile-sticky__analysis {
	box-shadow: 0 24px 32px rgba(17, 110, 178, .14), 0 16px 24px rgba(17, 110, 178, .04), 0 4px 8px rgba(17, 110, 178, .04), 0 0 1px rgba(17, 110, 178, .04);
	border-radius: 40px;
	padding: 7px 20px 7px 58px;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: #f2faff;
	background: #0b6ee2 url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMjciIHZpZXdCb3g9IjAgMCAzMCAyNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjUgOC4xNzk2OUM1LjE3MDA1IDguMTc5NjkgMy4yODEyNSAxMC4wNjg1IDMuMjgxMjUgMTIuMzk4NEMzLjI4MTI1IDE0LjcyODQgNS4xNzAwNSAxNi42MTcyIDcuNSAxNi42MTcyQzkuODI5OTUgMTYuNjE3MiAxMS43MTg4IDE0LjcyODQgMTEuNzE4OCAxMi4zOTg0QzExLjcxODggMTAuMDY4NSA5LjgyOTk1IDguMTc5NjkgNy41IDguMTc5NjlaTTUuMTU2MjUgMTIuMzk4NEM1LjE1NjI1IDExLjEwNCA2LjIwNTU4IDEwLjA1NDcgNy41IDEwLjA1NDdDOC43OTQ0MiAxMC4wNTQ3IDkuODQzNzUgMTEuMTA0IDkuODQzNzUgMTIuMzk4NEM5Ljg0Mzc1IDEzLjY5MjkgOC43OTQ0MiAxNC43NDIyIDcuNSAxNC43NDIyQzYuMjA1NTggMTQuNzQyMiA1LjE1NjI1IDEzLjY5MjkgNS4xNTYyNSAxMi4zOTg0WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjUgMTguMDIzNEMzLjM1Nzg2IDE4LjAyMzQgMCAyMS4zODEzIDAgMjUuNTIzNFYyNi45Mjk3SDE1VjI1LjUyMzRDMTUgMjEuMzgxMyAxMS42NDIxIDE4LjAyMzQgNy41IDE4LjAyMzRaTTcuNSAxOS44OTg0QzEwLjQ0ODcgMTkuODk4NCAxMi44Njc2IDIyLjE2NzQgMTMuMTA1NyAyNS4wNTQ3SDEuODk0MjVDMi4xMzI0NSAyMi4xNjc0IDQuNTUxMjUgMTkuODk4NCA3LjUgMTkuODk4NFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzAgMEgxNVYxNUwxOS43MzY0IDExLjQwMDJIMzBWMFpNMjguNSAxLjYyODYxVjkuNzcxNjRIMTkuMjYzNkwxNi41IDExLjg3MlYxLjYyODYxSDI4LjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K) no-repeat left 20px top 10px;
	border: 2px solid #198e7e
}

.gradient-text {
	background: #dfb437;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}

.bold,
.gradient-text {
	font-weight: 600
}

.block {
	display: block
}

.form-input {
	width: 100%;
	padding: 12px 12px 12px 48px;
	background: #fff;
	border: 1px solid #d5d4dc;
	box-sizing: border-box;
	border-radius: 8px;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: .2px;
	color: #8b849b;
	outline-color: #116eb2
}

.form-input-icon {
	position: relative
}

.form-input-icon:after {
	content: '';
	position: absolute;
	top: 0;
	left: 15px;
	z-index: 1
}

.form-input-icon.icon-user:after {
	width: 20px;
	height: 22px;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAyQzkuNTE0NzIgMiA3LjUgNC4wMTQ3MiA3LjUgNi41QzcuNSA4Ljk4NTI4IDkuNTE0NzIgMTEgMTIgMTFDMTQuNDg1MyAxMSAxNi41IDguOTg1MjggMTYuNSA2LjVDMTYuNSA0LjAxNDcyIDE0LjQ4NTMgMiAxMiAyWk05LjUgNi41QzkuNSA1LjExOTI5IDEwLjYxOTMgNCAxMiA0QzEzLjM4MDcgNCAxNC41IDUuMTE5MjkgMTQuNSA2LjVDMTQuNSA3Ljg4MDcxIDEzLjM4MDcgOSAxMiA5QzEwLjYxOTMgOSA5LjUgNy44ODA3MSA5LjUgNi41WiIgZmlsbD0iIzExNkVCMiIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEyIDEyLjVDNy41ODE3MiAxMi41IDQgMTYuMDgxNyA0IDIwLjVWMjJIMjBWMjAuNUMyMCAxNi4wODE3IDE2LjQxODMgMTIuNSAxMiAxMi41Wk0xMiAxNC41QzE1LjE0NTMgMTQuNSAxNy43MjU0IDE2LjkyMDIgMTcuOTc5NSAyMEg2LjAyMDU0QzYuMjc0NjEgMTYuOTIwMiA4Ljg1NDY3IDE0LjUgMTIgMTQuNVoiIGZpbGw9IiMxMTZFQjIiLz4KPC9zdmc+Cg==) no-repeat
}

.form-input-icon.icon-mail:after {
	width: 22px;
	height: 20px;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yIDRIMjJWMjBIMlY0Wk00IDZWNy4zNTAxM0wxMiAxMC45MDU3TDIwIDcuMzUwMTNWNkg0Wk0yMCA5LjUzODc2TDEyIDEzLjA5NDNMNCA5LjUzODc2VjE4SDIwVjkuNTM4NzZaIiBmaWxsPSIjMTE2RUIyIi8+Cjwvc3ZnPgo=) no-repeat
}

.form-button {
	width: 100%;
	background: #116eb2;
	border-radius: 40px;
	padding: 13px;
	font-size: 18px;
	text-align: center;
	color: #fff;
	border: 0;
	text-transform: uppercase;
	cursor: pointer
}

.form-button:hover {
	opacity: .8
}

#dentbul-slider .swiper-slide:after,
#dentbul-slider .swiper-slide:before {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 9
}

#dentbul-slider .swiper-slide:after {
	transform: rotate(-180deg);
	bottom: 0;
	height: 60%;
	background: linear-gradient(180deg, #000 20%, rgba(17, 17, 17, 0) 100%)
}

#dentbul-slider .swiper-slide:before {
	height: 60%;
	top: 0;
	background: linear-gradient(180deg, #111 0, rgba(17, 17, 17, 0) 100%)
}

.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1
}

.swiper-container-vertical>.swiper-wrapper {
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform
}

.swiper-container-free-mode>.swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-container-pointer-events {
	touch-action: pan-y
}

.swiper-container-pointer-events.swiper-container-vertical {
	touch-action: pan-x
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform
}

.swiper-slide-active img {
	width: 100%;
	margin-top: 0;
	background: 0 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(.5)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(.5)
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform, .2s left
}

#before-after__slider .before-after__slider-pagination,
#dentbul-slider .swiper-pagination {
	position: absolute;
	right: 0;
	left: 0;
	text-align: center;
	transition: .3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10
}

#dentbul-slider .swiper-pagination {
	bottom: 90px
}

#before-after__slider .swiper-pagination-bullets .swiper-pagination-bullet,
#dentbul-patient-slider .swiper-pagination-bullets .swiper-pagination-bullet,
#dentbul-slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	vertical-align: middle;
	display: inline-block
}

#before-after__slider .swiper-pagination-bullets .swiper-pagination-bullet,
#dentbul-patient-slider .swiper-pagination-bullets .swiper-pagination-bullet,
#dentbul-slider.swiper-container .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	margin: 0 5px;
	-webkit-backdrop-filter: invert(1);
	backdrop-filter: invert(1);
	background-color: transparent;
	border-radius: 5px;
	opacity: 1
}

#before-after__slider .swiper-pagination-bullets .swiper-pagination-bullet-active,
#dentbul-patient-slider .swiper-pagination-bullets .swiper-pagination-bullet-active,
#dentbul-slider.swiper-container .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
	background-color: #ffc107;
	padding: 5px
}

#before-after__slider .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
#dentbul-slider.swiper-container .swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	bottom: -100px;
	padding-bottom: 50px
}

#before-after__slider .before-after__slider-button-next,
#before-after__slider .before-after__slider-button-prev {
	position: absolute;
	width: 26px;
	height: 47px;
	z-index: 9;
	cursor: pointer
}

#dentbul-slider .swiper-button-next,
#dentbul-slider .swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 26px;
	height: 47px;
	z-index: 9;
	cursor: pointer
}

#before-after__slider .before-after__slider-button-prev,
#dentbul-slider .swiper-button-prev {
	left: 0;
	background: url(../images/prev.png)
}

#before-after__slider .before-after__slider-button-next,
#dentbul-slider .swiper-button-next {
	right: 0;
	background: url(../images/next.png);
	background-repeat: no-repeat
}

#dentbul-patient-slider .swiper-button-next,
#dentbul-patient-slider .swiper-button-prev {
	display: none;
	position: absolute;
	top: 200px;
	width: 25px;
	height: 48px;
	z-index: 9;
	cursor: pointer
}

#dentbul-patient-slider .dentbul-patient-slider-pagination,
#dentbul-patient-slider .swiper-pagination {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	transition: .3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10
}

#before-after__slider .before-after__slider-button-next,
#before-after__slider .before-after__slider-button-prev {
	top: 42%
}

#before-after__slider .before-after__slider-pagination {
	bottom: 0
}

#dentbul-patient-slider .swiper-button-prev {
	left: -73px;
	background: url(../images/prev.png)
}

#dentbul-patient-slider .swiper-button-next {
	right: -73px;
	background: url(../images/next.png)
}

.bounce {
	-moz-animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	animation: bounce 2s infinite
}

.bounce-right {
	-moz-animation: bounce-right 2s infinite;
	-webkit-animation: bounce-right 2s infinite;
	animation: bounce-right 2s infinite
}

.analysis__button,
.methods-card-button a {
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-transition-duration: .1s;
	transition-duration: .1s
}

.analysis__button:before,
.methods-card-button a:before,
.package__card-button:before {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: .1s;
	transition-duration: .1s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}

.analysis__button:hover:before,
.methods-card-button a:hover:before,
.package__card-button a:hover:before {
	-webkit-transform: translateX(4px);
	transform: translateX(4px)
}

.iti {
	width: 100%
}

.iti--separate-dial-code .iti__selected-dial-code,
.iti__country {
	color: #8b849b
}

.form-error {
	border: 1px solid #d8000c
}

.alert {
	padding: 10px
}

.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb
}

.alert-success {
	color: #363;
	background-color: #cfc;
	border-color: #bfecbf
}

.form-result,
.mm-spn li:after,
.mm-spn li:before {
	display: none
}

.mm-ocd__content,
.mm-spn.mm-spn--light {
	background: #000
}

.mm-spn a,
.mm-spn span {
	color: #fff
}

.mm-spn a {
	font-weight: 300;
	font-size: 22px;
	line-height: normal;
	transition: color .5s ease-out
}

.mm-spn a:hover {
	opacity: 1;
	color: #dfb437;
	font-weight: 600;
	transition: padding-left .5s ease-out;
	padding-left: 30px
}

.mobile-menu_logo {
	padding-top: 20px;
	padding-bottom: 10px;
	text-align: center
}

@media (max-width:2200px) {
	.methods:after {
		top: 8%
	}
}

@media (max-width:1430px) {
	.methods:after {
		right: -105%
	}

	.methods:before {
		left: -105%
	}
}

@media (max-width:1050px) {
	.methods:after {
		right: -120%
	}

	.methods:before {
		left: -120%
	}
}

@media (max-width:1200px) {
	.package__description {
		display: block
	}

	.md-bio {
		margin: 0;
		width: auto
	}

	.therapy {
		margin: 20px 0 0
	}
}

@media (max-width:1080px) {
	.comment {
		background: 0 0;
		padding: 5% 30px
	}
}

@media (max-width:1020px) {
	.methods-cols {
		padding: 0
	}

	.comment__cols {
		display: block
	}

	.comment__col:first-child,
	.comment__col:last-child {
		padding: 0;
		width: 100%
	}

	.comment .container:after {
		top: 0;
		width: 100%;
		height: 100%
	}
}

@media (max-width:992px) {
	.badge>.container:before {
		height: 580px
	}

	.dentbul-doctor-title {
		font-size: 80px
	}

	.dentbul-doctor-text p {
		font-size: 16px
	}

	.dentbul-doctor-title-label {
		font-size: 30px
	}
}

@media (max-width:890px) {
	.service__items {
		display: inline-block
	}

	.comment__slider-button-next,
	.comment__slider-button-prev {
		display: none
	}

	.methods-cols {
		display: block
	}

	.methods:after {
		right: -160%
	}

	.methods:before {
		left: -160%
	}

	.methods-title {
		font-size: 66px
	}

	.methods-col:last-child {
		padding: 0;
		margin: 0
	}

	.methods-card:last-child {
		margin-bottom: 30px
	}

	.before-after__image {
		text-align: center
	}

	.package__card.active .package__card-list,
	.packages {
		display: block
	}

	.package__card {
		margin: 0 0 20px;
		cursor: pointer
	}

	.footer__box:last-child,
	.footer__menu a:last-child,
	.package__card:last-child {
		margin-bottom: 0
	}

	.package__card-content {
		min-height: auto
	}

	.footer__menu {
		display: block
	}

	.footer__menu a {
		margin-bottom: 20px
	}

	.footer__boxes,
	.footer__menu a {
		display: block;
		text-align: center
	}

	.footer__box {
		margin-bottom: 30px
	}

	.footer__bar {
		padding-bottom: 100px;
		text-align: center
	}

	.footer__copyright {
		display: block;
		margin-bottom: 10px
	}

	.footer__provenexpert {
		display: inline-block;
		float: none;
		margin-top: 10px;
		padding-top: 25px
	}

	.footer__provenexpert:after {
		left: 57px
	}

	.footer__copyright .dmca {
		position: relative;
		right: 0;
		top: 5px
	}
}

@media (max-width:868px) {
	.dentbul-doctor-title {
		font-size: 60px;
		width: 60%;
		line-height: 70px
	}

	.dentbul-doctor-text {
		width: 40%
	}

	.badge>.container:before {
		height: 520px;
		background-position: left center
	}

	.certificate__items {
		display: block;
		text-align: center
	}

	.certificate__item {
		float: left;
		width: 50%;
		margin-bottom: 20px;
		text-align: center
	}

	.certificate__item:last-child {
		margin-bottom: 0
	}

	.certificate__item-icon {
		margin: 0 auto
	}

	.dentbul-patient-video iframe {
		width: 100%
	}

	#dentbul-patient-slider .swiper-button-next {
		right: 25px;
		display: none !important
	}

	#dentbul-patient-slider .swiper-slide-active .dentbul-patient-content,
	.dentbul-patient-writer {
		display: block
	}

	#dentbul-patient-slider .swiper-button-prev {
		display: none !important
	}

	.methods-card-title {
		padding-top: 40px
	}
}

@media (max-width:768px) {

	.methods:after,
	.methods:before {
		display: none
	}
}

@media (max-width:596px) {
	.modalContainer .modalContent {
		width: 80%
	}

	.package__card-button {
		DISPLAY: inline-block
	}

	.dentbul-patient-slider {
		padding: 10px 20px 50px
	}

	.comment__box-text {
		font-size: 16px
	}

	.analysis__button span,
	.comment__slider-button-next,
	.comment__slider-button-prev {
		display: none
	}

	.swiper-slide-active img {
		height: auto
	}

	.methods-card-button a:before {
		top: 10px;
		width: 15px;
		background-size: 100%
	}

	.methods-card-button a {
		padding: 10px 57px 10px 27px;
		font-size: 16px
	}

	.methods-card-text p {
		font-size: 16px;
		padding: 0 10px
	}

	.service__items {
		display: inline-block
	}

	#before-after__slider .before-after__slider-button-next,
	#dentbul-slider .swiper-button-next {
		right: 15px
	}

	#before-after__slider .before-after__slider-button-prev,
	#dentbul-slider .swiper-button-prev {
		left: 15px
	}

	.before-after__image img {
		width: 75%
	}

	.analysis__icon {
		width: 31px;
		background-size: 100%;
		height: 32px
	}

	.dentbul-doctor-button {
		font-size: 16px;
		border: 3px solid #dfb437;
		text-align: center
	}

	#dentbul-forms {
		margin-top: 50%;
		padding: 20px 30px !important;
		height: 680px
	}

	.video-content {
		display: inline-block !important;
		margin-top: 60px
	}

	.getfreeconsultation .form-content input {
		width: 100% !important
	}

	.getfreeconsultation .form-wrapper {
		padding: 30px !important
	}

	.header__logo {
		padding: 10px 0 10px 10px
	}

	.header__logo svg {
		width: 170px;
		height: auto
	}

	.header.is-sticky .header__menu-button,
	.header__menu-button {
		top: 20px;
		right: 20px
	}

	.analysis.is-sticky,
	.header.is-sticky .analysis {
		padding: 5px 0
	}

	.mobile-sticky {
		width: 100%;
		right: auto;
		left: auto;
		bottom: 10px
	}

	.mobile-sticky__whatsapp {
		float: right !important;
		margin: 0 10px 0 0
	}

	.mobile-sticky__analysis {
		float: left;
		margin-right: 10px
	}

	.analysis__text {
		font-size: 16px;
		margin: 0 5px 0 0
	}

	.analysis__button:before {
		top: -7px !important;
		background-size: 100% !important;
		width: 24px !important;
		max-height: 15px
	}

	.dentbul-button-down {
		bottom: 33%;
		display: none
	}

	.dentbul-text,
	.dentbul-title {
		padding: 0;
		text-align: center
	}

	.dentbul-title {
		font-size: 28px;
		line-height: 28px;
		font-weight: 800
	}

	.dentbul-text {
		font-size: 18px;
		line-height: 20px;
		margin-bottom: 40px
	}

	.dentbul-doctor-title {
		display: block;
		width: 100%;
		font-size: 28px;
		line-height: 46px
	}

	.dentbul-doctor-title-label {
		display: block;
		width: 100%;
		margin: 10px 0 20px;
		font-size: 24px;
		line-height: 24px
	}

	.dentbul-doctor-text {
		width: 100%
	}

	.dentbul-doctor {
		margin-top: 10px;
		padding-bottom: 520px
	}

	.badge__content,
	.badge__item {
		display: block
	}

	.badge__content:after {
		content: ".";
		display: block;
		height: 0;
		clear: both;
		visibility: hidden
	}

	.badge>.container:before {
		bottom: 420px;
		height: 420px;
		background-position: center top
	}

	.badge:after {
		width: 120%
	}

	.badge>.container:after {
		width: 95%
	}

	.badge__item {
		width: 50%;
		float: left;
		margin-bottom: 10px;
		text-align: center
	}

	.badge__text {
		font-size: 17px
	}

	.certificate__item svg {
		width: 90px;
		height: 90px
	}

	.certificate__item {
		height: inherit;
		padding: 0
	}

	.certificate {
		padding: 10% 5%
	}

	.welcome {
		padding-top: 200px;
		padding-bottom: 0;
		background-size: contain
	}

	.welcome:after {
		top: 0;
		height: 100%;
		bottom: inherit;
		background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0, #111 40%)
	}

	.welcome__icon {
		margin-bottom: 20px
	}

	.service__title {
		font-size: 36px
	}

	.service__title-sub {
		font-size: 24px
	}

	.service__items:last-child .service__item:last-child:before {
		display: none
	}

	.methods-card-title {
		padding-left: 75px
	}

	.methods-card-icon img,
	.methods-card-icon svg {
		max-width: 65px;
		height: 100%
	}

	.methods-card-title .bold {
		display: block;
		font-size: 30px
	}

	.methods-card-content {
		padding: 20px 10px;
		border-radius: 20px
	}

	.methods {
		margin-bottom: 0;
		padding: 0 20px
	}

	.whatsapp {
		margin-bottom: 60px;
		padding: 5% 20px
	}

	.whatsapp__box {
		display: block
	}

	.whatsapp__content {
		padding: 0
	}

	.whatsapp__button {
		position: relative;
		right: inherit;
		display: inline-block;
		margin-top: 20px;
		padding: 10px 60px;
		font-size: 18px
	}

	.dentbul-patient {
		margin-bottom: 60px
	}

	.before-after__title,
	.certificate__title {
		text-align: center
	}

	.before-after__title,
	.certificate__title,
	.comment__title {
		font-size: 28px;
		line-height: 42px;
		margin-bottom: 40px
	}

	.faq__title,
	.dentbul-patient-title,
	.methods-title,
	.package__title,
	.video__title,
	.welcome__title {
		font-size: 28px;
		line-height: 42px;
		text-align: center;
		margin-bottom: 40px
	}

	.comment__title {
		text-align: left
	}

	.faq__title {
		width: 100%
	}

	.before-after {
		margin: 0
	}

	.comment {
		margin-bottom: 60px;
		padding: 5% 30px
	}

	.comment__boxes {
		padding: 0
	}

	.comment__slider-button-next {
		margin-bottom: 10px
	}

	.md-bio,
	.service.service-mobile {
		display: block
	}

	.md-bio__image {
		display: block;
		margin: 0 0 10px;
		text-align: center
	}

	.service {
		padding: 10% 5%;
		margin: 0
	}

	.badge,
	.faq,
	.package,
	.video,
	.welcome {
		margin-bottom: 0
	}

	.package__description {
		padding-bottom: 0
	}

	.package__box {
		padding: 30px 20px 70px
	}

	.service__title-sub {
		margin-bottom: 20px
	}

	.dentbul-patient-video iframe,
	.video__box iframe {
		min-height: 240px
	}

	.methods-card-title {
		padding-top: 0;
		font-size: 20px
	}
}

@media (max-width:460px) {
	#dentbul-forms {
		margin-top: 45px;
		height: 900px
	}

	.whatsapp__text,
	.whatsapp__title {
		font-size: 24px
	}

	main .trustPilotSVG {
		max-width: 80%;
		margin: 0 auto;
		display: block
	}

	.welcome:after {
		background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0, #111 30%)
	}

	.welcome {
		padding-top: 120px
	}

	.badge>.container:before {
		bottom: 350px;
		height: 420px;
		background-position: center top
	}

	.dentbul-doctor {
		padding: 10% 30px;
		margin: 0
	}

	.certificate__item-icon {
		width: 120px;
		height: 120px
	}

	.before-after__image {
		padding: 5px;
		margin-bottom: 0
	}

	.before-after__image img {
		max-width: 80%;
		height: 80%
	}
}

.navgetfreeconsultation {
	background: linear-gradient(270deg, #000, #565656, #a8a8a8);
	background-size: 600% 600%;
	-webkit-animation: navgetfreeconsultation 30s ease infinite;
	-moz-animation: navgetfreeconsultation 30s ease infinite;
	animation: navgetfreeconsultation 30s ease infinite;
	margin-top: 30px !important
}

.navgetfreeconsultation a {
	font-weight: 700
}

.getfreeconsultation .form-wrapper h2 {
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 20px
}

.getfreeconsultation .form-wrapper {
	background: #1b5c92;
	border-radius: 30px;
	padding: 40px;
	width: 100%;
	display: inline-block;
	margin-bottom: 100px
}

.getfreeconsultation .form-content .submit {
	background: #009b7a;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	padding: 17px;
	float: right;
	width: 300px
}

.getfreeconsultation .form-content input {
	width: 48%;
	float: left;
	padding: 20px;
	border-radius: 30px;
	border: 0;
	margin-right: 2%;
	margin-bottom: 2%
}

.swiper-notification {
	display: none
}

.skrollable {
	position: fixed;
	z-index: 100
}

.skrollable .skrollable,
.skrollr-mobile .skrollable {
	position: absolute
}

.skrollable .skrollable .skrollable {
	position: static
}

.video-thumbnail {
	position: relative;
	display: inline-block;
	cursor: pointer
}

.video-thumbnail:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	content: "►";
	font-size: 100px;
	color: #fff;
	opacity: .8;
	text-shadow: 0 0 30px rgba(0, 0, 0, .5)
}

.video-thumbnail:hover:before {
	color: #eee
}

.video-content {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%
}

.package__card-button a {
	float: none
}