@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 *
 * Copyright (c) 2022 Animate.css
 */
@import url(https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Roboto&display=swap);

: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-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important
	}

	.animate__animated[class*=Out] {
		opacity: 0
	}
}

@-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);
		transform: translateZ(0)
	}
	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		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);
		transform: translate3d(0, -15px, 0) scaleY(1.05)
	}
	80% {
		transform: translateZ(0) scaleY(.95);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	90% {
		transform: translate3d(0, -4px, 0) scaleY(1.02)
	}
}

@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);
		transform: translateZ(0)
	}
	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		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);
		transform: translate3d(0, -15px, 0) scaleY(1.05)
	}
	80% {
		transform: translateZ(0) scaleY(.95);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	90% {
		transform: translate3d(0, -4px, 0) scaleY(1.02)
	}
}

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

@-webkit-keyframes flash {
	0%, 50%, to {
		opacity: 1
	}
	25%, 75% {
		opacity: 0
	}
}

@keyframes flash {
	0%, 50%, to {
		opacity: 1
	}
	25%, 75% {
		opacity: 0
	}
}

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

@-webkit-keyframes pulse {
	0%, to {
		transform: scaleX(1)
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05)
	}
}

@keyframes pulse {
	0%, to {
		transform: scaleX(1)
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05)
	}
}

.animate__pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}

@-webkit-keyframes rubberBand {
	0%, to {
		transform: scaleX(1)
	}
	30% {
		transform: scale3d(1.25, .75, 1)
	}
	40% {
		transform: scale3d(.75, 1.25, 1)
	}
	50% {
		transform: scale3d(1.15, .85, 1)
	}
	65% {
		transform: scale3d(.95, 1.05, 1)
	}
	75% {
		transform: scale3d(1.05, .95, 1)
	}
}

@keyframes rubberBand {
	0%, to {
		transform: scaleX(1)
	}
	30% {
		transform: scale3d(1.25, .75, 1)
	}
	40% {
		transform: scale3d(.75, 1.25, 1)
	}
	50% {
		transform: scale3d(1.15, .85, 1)
	}
	65% {
		transform: scale3d(.95, 1.05, 1)
	}
	75% {
		transform: scale3d(1.05, .95, 1)
	}
}

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

@-webkit-keyframes shakeX {
	0%, to {
		transform: translateZ(0)
	}
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(-10px, 0, 0)
	}
	20%, 40%, 60%, 80% {
		transform: translate3d(10px, 0, 0)
	}
}

@keyframes shakeX {
	0%, to {
		transform: translateZ(0)
	}
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(-10px, 0, 0)
	}
	20%, 40%, 60%, 80% {
		transform: translate3d(10px, 0, 0)
	}
}

.animate__shakeX {
	-webkit-animation-name: shakeX;
	animation-name: shakeX
}

@-webkit-keyframes shakeY {
	0%, to {
		transform: translateZ(0)
	}
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(0, -10px, 0)
	}
	20%, 40%, 60%, 80% {
		transform: translate3d(0, 10px, 0)
	}
}

@keyframes shakeY {
	0%, to {
		transform: translateZ(0)
	}
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(0, -10px, 0)
	}
	20%, 40%, 60%, 80% {
		transform: translate3d(0, 10px, 0)
	}
}

.animate__shakeY {
	-webkit-animation-name: shakeY;
	animation-name: shakeY
}

@-webkit-keyframes headShake {
	0% {
		transform: translateX(0)
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg)
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg)
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg)
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg)
	}
	50% {
		transform: translateX(0)
	}
}

@keyframes headShake {
	0% {
		transform: translateX(0)
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg)
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg)
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg)
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg)
	}
	50% {
		transform: translateX(0)
	}
}

.animate__headShake {
	-webkit-animation-name: headShake;
	animation-name: headShake;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}

@-webkit-keyframes swing {
	20% {
		transform: rotate(15deg)
	}
	40% {
		transform: rotate(-10deg)
	}
	60% {
		transform: rotate(5deg)
	}
	80% {
		transform: rotate(-5deg)
	}
	to {
		transform: rotate(0)
	}
}

@keyframes swing {
	20% {
		transform: rotate(15deg)
	}
	40% {
		transform: rotate(-10deg)
	}
	60% {
		transform: rotate(5deg)
	}
	80% {
		transform: rotate(-5deg)
	}
	to {
		transform: rotate(0)
	}
}

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

@-webkit-keyframes tada {
	0%, to {
		transform: scaleX(1)
	}
	10%, 20% {
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}
	30%, 50%, 70%, 90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}
	40%, 60%, 80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}
}

@keyframes tada {
	0%, to {
		transform: scaleX(1)
	}
	10%, 20% {
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}
	30%, 50%, 70%, 90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}
	40%, 60%, 80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}
}

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

@-webkit-keyframes wobble {
	0%, to {
		transform: translateZ(0)
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}
}

@keyframes wobble {
	0%, to {
		transform: translateZ(0)
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}
}

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

@-webkit-keyframes jello {
	0%, 11.1%, to {
		transform: translateZ(0)
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg)
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}
	66.6% {
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}
	77.7% {
		transform: skewX(.390625deg) skewY(.390625deg)
	}
	88.8% {
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

@keyframes jello {
	0%, 11.1%, to {
		transform: translateZ(0)
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg)
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}
	66.6% {
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}
	77.7% {
		transform: skewX(.390625deg) skewY(.390625deg)
	}
	88.8% {
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

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

@-webkit-keyframes heartBeat {
	0%, 28%, 70% {
		transform: scale(1)
	}
	14%, 42% {
		transform: scale(1.3)
	}
}

@keyframes heartBeat {
	0%, 28%, 70% {
		transform: scale(1)
	}
	14%, 42% {
		transform: scale(1.3)
	}
}

.animate__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-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}

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

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

.animate__backInDown {
	-webkit-animation-name: backInDown;
	animation-name: backInDown
}

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

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

.animate__backInLeft {
	-webkit-animation-name: backInLeft;
	animation-name: backInLeft
}

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

@keyframes backInRight {
	0% {
		opacity: .7;
		transform: translateX(2000px) scale(.7)
	}
	80% {
		opacity: .7;
		transform: translateX(0) scale(.7)
	}
	to {
		opacity: 1;
		transform: scale(1)
	}
}

.animate__backInRight {
	-webkit-animation-name: backInRight;
	animation-name: backInRight
}

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

@keyframes backInUp {
	0% {
		opacity: .7;
		transform: translateY(1200px) scale(.7)
	}
	80% {
		opacity: .7;
		transform: translateY(0) scale(.7)
	}
	to {
		opacity: 1;
		transform: scale(1)
	}
}

.animate__backInUp {
	-webkit-animation-name: backInUp;
	animation-name: backInUp
}

@-webkit-keyframes backOutDown {
	0% {
		opacity: 1;
		transform: scale(1)
	}
	20% {
		opacity: .7;
		transform: translateY(0) scale(.7)
	}
	to {
		opacity: .7;
		transform: translateY(700px) scale(.7)
	}
}

@keyframes backOutDown {
	0% {
		opacity: 1;
		transform: scale(1)
	}
	20% {
		opacity: .7;
		transform: translateY(0) scale(.7)
	}
	to {
		opacity: .7;
		transform: translateY(700px) scale(.7)
	}
}

.animate__backOutDown {
	-webkit-animation-name: backOutDown;
	animation-name: backOutDown
}

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

@keyframes backOutLeft {
	0% {
		opacity: 1;
		transform: scale(1)
	}
	20% {
		opacity: .7;
		transform: translateX(0) scale(.7)
	}
	to {
		opacity: .7;
		transform: translateX(-2000px) scale(.7)
	}
}

.animate__backOutLeft {
	-webkit-animation-name: backOutLeft;
	animation-name: backOutLeft
}

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

@keyframes backOutRight {
	0% {
		opacity: 1;
		transform: scale(1)
	}
	20% {
		opacity: .7;
		transform: translateX(0) scale(.7)
	}
	to {
		opacity: .7;
		transform: translateX(2000px) scale(.7)
	}
}

.animate__backOutRight {
	-webkit-animation-name: backOutRight;
	animation-name: backOutRight
}

@-webkit-keyframes backOutUp {
	0% {
		opacity: 1;
		transform: scale(1)
	}
	20% {
		opacity: .7;
		transform: translateY(0) scale(.7)
	}
	to {
		opacity: .7;
		transform: translateY(-700px) scale(.7)
	}
}

@keyframes backOutUp {
	0% {
		opacity: 1;
		transform: scale(1)
	}
	20% {
		opacity: .7;
		transform: translateY(0) scale(.7)
	}
	to {
		opacity: .7;
		transform: translateY(-700px) scale(.7)
	}
}

.animate__backOutUp {
	-webkit-animation-name: backOutUp;
	animation-name: backOutUp
}

@-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;
		transform: scale3d(.3, .3, .3)
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1)
	}
	40% {
		transform: scale3d(.9, .9, .9)
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		transform: scale3d(.97, .97, .97)
	}
	to {
		opacity: 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;
		transform: scale3d(.3, .3, .3)
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1)
	}
	40% {
		transform: scale3d(.9, .9, .9)
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		transform: scale3d(.97, .97, .97)
	}
	to {
		opacity: 1;
		transform: scaleX(1)
	}
}

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

@-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;
		transform: translate3d(0, -3000px, 0) scaleY(3)
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0) scaleY(.9)
	}
	75% {
		transform: translate3d(0, -10px, 0) scaleY(.95)
	}
	90% {
		transform: translate3d(0, 5px, 0) scaleY(.985)
	}
	to {
		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;
		transform: translate3d(0, -3000px, 0) scaleY(3)
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0) scaleY(.9)
	}
	75% {
		transform: translate3d(0, -10px, 0) scaleY(.95)
	}
	90% {
		transform: translate3d(0, 5px, 0) scaleY(.985)
	}
	to {
		transform: translateZ(0)
	}
}

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

@-webkit-keyframes bounceInLeft {
	0%, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0) scaleX(3)
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0) scaleX(1)
	}
	75% {
		transform: translate3d(-10px, 0, 0) scaleX(.98)
	}
	90% {
		transform: translate3d(5px, 0, 0) scaleX(.995)
	}
	to {
		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;
		transform: translate3d(-3000px, 0, 0) scaleX(3)
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0) scaleX(1)
	}
	75% {
		transform: translate3d(-10px, 0, 0) scaleX(.98)
	}
	90% {
		transform: translate3d(5px, 0, 0) scaleX(.995)
	}
	to {
		transform: translateZ(0)
	}
}

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

@-webkit-keyframes bounceInRight {
	0%, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0) scaleX(3)
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0) scaleX(1)
	}
	75% {
		transform: translate3d(10px, 0, 0) scaleX(.98)
	}
	90% {
		transform: translate3d(-5px, 0, 0) scaleX(.995)
	}
	to {
		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;
		transform: translate3d(3000px, 0, 0) scaleX(3)
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0) scaleX(1)
	}
	75% {
		transform: translate3d(10px, 0, 0) scaleX(.98)
	}
	90% {
		transform: translate3d(-5px, 0, 0) scaleX(.995)
	}
	to {
		transform: translateZ(0)
	}
}

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

@-webkit-keyframes bounceInUp {
	0%, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0) scaleY(5)
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0) scaleY(.9)
	}
	75% {
		transform: translate3d(0, 10px, 0) scaleY(.95)
	}
	90% {
		transform: translate3d(0, -5px, 0) scaleY(.985)
	}
	to {
		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;
		transform: translate3d(0, 3000px, 0) scaleY(5)
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0) scaleY(.9)
	}
	75% {
		transform: translate3d(0, 10px, 0) scaleY(.95)
	}
	90% {
		transform: translate3d(0, -5px, 0) scaleY(.985)
	}
	to {
		transform: translateZ(0)
	}
}

.animate__bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	20% {
		transform: scale3d(.9, .9, .9)
	}
	50%, 55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1)
	}
	to {
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
}

@keyframes bounceOut {
	20% {
		transform: scale3d(.9, .9, .9)
	}
	50%, 55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1)
	}
	to {
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__fadeInTopLeft {
	-webkit-animation-name: fadeInTopLeft;
	animation-name: fadeInTopLeft
}

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

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

.animate__fadeInTopRight {
	-webkit-animation-name: fadeInTopRight;
	animation-name: fadeInTopRight
}

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

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

.animate__fadeInBottomLeft {
	-webkit-animation-name: fadeInBottomLeft;
	animation-name: fadeInBottomLeft
}

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

@keyframes fadeInBottomRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 100%, 0)
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.animate__fadeInBottomRight {
	-webkit-animation-name: fadeInBottomRight;
	animation-name: fadeInBottomRight
}

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

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

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

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

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}
}

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

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

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
}

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

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

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

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

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

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

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

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

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}
}

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

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

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
}

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

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

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

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

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

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

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

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

@keyframes fadeOutTopLeft {
	0% {
		opacity: 1;
		transform: translateZ(0)
	}
	to {
		opacity: 0;
		transform: translate3d(-100%, -100%, 0)
	}
}

.animate__fadeOutTopLeft {
	-webkit-animation-name: fadeOutTopLeft;
	animation-name: fadeOutTopLeft
}

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

@keyframes fadeOutTopRight {
	0% {
		opacity: 1;
		transform: translateZ(0)
	}
	to {
		opacity: 0;
		transform: translate3d(100%, -100%, 0)
	}
}

.animate__fadeOutTopRight {
	-webkit-animation-name: fadeOutTopRight;
	animation-name: fadeOutTopRight
}

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

@keyframes fadeOutBottomRight {
	0% {
		opacity: 1;
		transform: translateZ(0)
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 100%, 0)
	}
}

.animate__fadeOutBottomRight {
	-webkit-animation-name: fadeOutBottomRight;
	animation-name: fadeOutBottomRight
}

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

@keyframes fadeOutBottomLeft {
	0% {
		opacity: 1;
		transform: translateZ(0)
	}
	to {
		opacity: 0;
		transform: translate3d(-100%, 100%, 0)
	}
}

.animate__fadeOutBottomLeft {
	-webkit-animation-name: fadeOutBottomLeft;
	animation-name: fadeOutBottomLeft
}

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

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

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

@-webkit-keyframes flipInX {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateX(-20deg)
	}
	60% {
		opacity: 1;
		transform: perspective(400px) rotateX(10deg)
	}
	80% {
		transform: perspective(400px) rotateX(-5deg)
	}
	to {
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateX(-20deg)
	}
	60% {
		opacity: 1;
		transform: perspective(400px) rotateX(10deg)
	}
	80% {
		transform: perspective(400px) rotateX(-5deg)
	}
	to {
		transform: perspective(400px)
	}
}

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

@-webkit-keyframes flipInY {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateY(-20deg)
	}
	60% {
		opacity: 1;
		transform: perspective(400px) rotateY(10deg)
	}
	80% {
		transform: perspective(400px) rotateY(-5deg)
	}
	to {
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateY(-20deg)
	}
	60% {
		opacity: 1;
		transform: perspective(400px) rotateY(10deg)
	}
	80% {
		transform: perspective(400px) rotateY(-5deg)
	}
	to {
		transform: perspective(400px)
	}
}

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

@-webkit-keyframes flipOutX {
	0% {
		transform: perspective(400px)
	}
	30% {
		opacity: 1;
		transform: perspective(400px) rotateX(-20deg)
	}
	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
}

@keyframes flipOutX {
	0% {
		transform: perspective(400px)
	}
	30% {
		opacity: 1;
		transform: perspective(400px) rotateX(-20deg)
	}
	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
}

.animate__flipOutX {
	-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;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
	0% {
		transform: perspective(400px)
	}
	30% {
		opacity: 1;
		transform: perspective(400px) rotateY(-15deg)
	}
	to {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
}

@keyframes flipOutY {
	0% {
		transform: perspective(400px)
	}
	30% {
		opacity: 1;
		transform: perspective(400px) rotateY(-15deg)
	}
	to {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
}

.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: flipOutY;
	animation-name: flipOutY;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes lightSpeedInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(-30deg)
	}
	60% {
		opacity: 1;
		transform: skewX(20deg)
	}
	80% {
		transform: skewX(-5deg)
	}
	to {
		transform: translateZ(0)
	}
}

@keyframes lightSpeedInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(-30deg)
	}
	60% {
		opacity: 1;
		transform: skewX(20deg)
	}
	80% {
		transform: skewX(-5deg)
	}
	to {
		transform: translateZ(0)
	}
}

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

@-webkit-keyframes lightSpeedInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) skewX(30deg)
	}
	60% {
		opacity: 1;
		transform: skewX(-20deg)
	}
	80% {
		transform: skewX(5deg)
	}
	to {
		transform: translateZ(0)
	}
}

@keyframes lightSpeedInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) skewX(30deg)
	}
	60% {
		opacity: 1;
		transform: skewX(-20deg)
	}
	80% {
		transform: skewX(5deg)
	}
	to {
		transform: translateZ(0)
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

.animate__rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
	transform-origin: left bottom
}

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

@keyframes rotateInDownRight {
	0% {
		opacity: 0;
		transform: rotate(45deg)
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.animate__rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
	transform-origin: right bottom
}

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

@keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		transform: rotate(45deg)
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.animate__rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
	transform-origin: left bottom
}

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

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

.animate__rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
	transform-origin: right bottom
}

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

@keyframes rotateOut {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: rotate(200deg)
	}
}

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

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

@keyframes rotateOutDownLeft {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: rotate(45deg)
	}
}

.animate__rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
	transform-origin: left bottom
}

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

@keyframes rotateOutDownRight {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: rotate(-45deg)
	}
}

.animate__rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
	transform-origin: right bottom
}

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

@keyframes rotateOutUpLeft {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: rotate(-45deg)
	}
}

.animate__rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
	transform-origin: left bottom
}

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

@keyframes rotateOutUpRight {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: rotate(90deg)
	}
}

.animate__rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
	transform-origin: right bottom
}

@-webkit-keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	20%, 60% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(80deg)
	}
	40%, 80% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg)
	}
	to {
		opacity: 0;
		transform: translate3d(0, 700px, 0)
	}
}

@keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	20%, 60% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(80deg)
	}
	40%, 80% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg)
	}
	to {
		opacity: 0;
		transform: translate3d(0, 700px, 0)
	}
}

.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;
	transform-origin: top left
}

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

@keyframes jackInTheBox {
	0% {
		opacity: 0;
		transform: scale(.1) rotate(30deg);
		transform-origin: center bottom
	}
	50% {
		transform: rotate(-10deg)
	}
	70% {
		transform: rotate(3deg)
	}
	to {
		opacity: 1;
		transform: scale(1)
	}
}

.animate__jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox
}

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

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

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

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

@keyframes rollOut {
	0% {
		opacity: 1
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate(120deg)
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

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

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

.animate__zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
	transform-origin: center bottom
}

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

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

.animate__zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
	transform-origin: left center
}

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

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

.animate__zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
	transform-origin: right center
}

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

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

.animate__zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
	transform-origin: center bottom
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes slideOutDown {
	0% {
		transform: translateZ(0)
	}
	to {
		transform: translate3d(0, 100%, 0);
		visibility: hidden
	}
}

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

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

@keyframes slideOutLeft {
	0% {
		transform: translateZ(0)
	}
	to {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden
	}
}

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

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

@keyframes slideOutRight {
	0% {
		transform: translateZ(0)
	}
	to {
		transform: translate3d(100%, 0, 0);
		visibility: hidden
	}
}

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

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

@keyframes slideOutUp {
	0% {
		transform: translateZ(0)
	}
	to {
		transform: translate3d(0, -100%, 0);
		visibility: hidden
	}
}

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

* {
	border: 0;
	box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

:after, :before {
	box-sizing: border-box
}

:active, :focus, a:active, a:focus {
	outline: 0
}

a:hover, a:visited {
	text-decoration: none
}

aside, footer, header, nav {
	display: block
}

body, html {
	height: 100%;
	width: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%
}

input, textarea {
	font-family: inherit
}

input::-ms-clear {
	display: none
}

button {
	font-family: inherit;
	cursor: pointer
}

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

ul li {
	list-style: none
}

img {
	vertical-align: top
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: 400
}

.body {
	font-family: "Gotham Pro";
	font-size: 18px;
	background: #fdfcfb
}

h1 {
	font-size: 42px;
	font-weight: 900;
	color: #fff
}

a {
	text-decoration: none
}

.text-fish {
	background: #27282c
}

.anchor {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 1px;
	height: 70px;
	background: 0 0
}

section {
	overflow: hidden;
	position: relative
}

.section_bottom {
	margin: 0 0 20px
}

p {
	font-size: 22px;
	font-weight: 300;
	line-height: 30px
}

.top {
	display: block;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: 0 0;
	border: 1px solid grey;
	z-index: 3;
	transition: .4s
}

.top::before {
	content: "";
	width: 20px;
	height: 2px;
	background: grey;
	position: absolute;
	top: 48%;
	left: 21%;
	transform: rotate(-45deg);
	transition: .4s
}

.top::after {
	content: "";
	width: 20px;
	height: 2px;
	background: grey;
	position: absolute;
	top: 48%;
	right: 21%;
	transform: rotate(45deg);
	transition: .4s
}

.top:hover {
	border: 1px solid red
}

.top:hover::after, .top:hover::before {
	background: red
}

.top_hidden {
	display: none
}

@-webkit-keyframes rotateY {
	0% {
		transform: rotateY(0)
	}
	100% {
		transform: rotateY(180deg)
	}
}

@keyframes rotateY {
	0% {
		transform: rotateY(0)
	}
	100% {
		transform: rotateY(180deg)
	}
}

@-webkit-keyframes rotateX {
	0% {
		transform: rotateX(0)
	}
	100% {
		transform: rotateX(360deg)
	}
}

@keyframes rotateX {
	0% {
		transform: rotateX(0)
	}
	100% {
		transform: rotateX(360deg)
	}
}

.background {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-image: linear-gradient(135deg, #fdfcfb 0, #e2d1c3 100%);
	z-index: -1
}

@font-face {
	font-family: "Gotham Pro";
	src: url(../fonts/GothamPro-Light.eot);
	src: local("./../fonts/GothamPro-Light"), local("./../fonts/GothamPro-Light"), url(../fonts/GothamPro-Light.eot?#iefix) format("embedded-opentype"), url(../fonts/GothamPro-Light.woff) format("woff"), url(../fonts/GothamPro-Light.ttf) format("truetype");
	font-weight: 300;
	font-style: normal
}

@font-face {
	font-family: "Gotham Pro";
	src: url(../fonts/GothamPro.eot);
	src: local("./../fonts/GothamPro"), local("./../fonts/GothamPro"), url(../fonts/GothamPro.eot?#iefix) format("embedded-opentype"), url(../fonts/GothamPro.woff) format("woff"), url(../fonts/GothamPro.ttf) format("truetype");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: "Gotham Pro";
	src: url(../fonts/GothamPro-Medium.eot);
	src: local("./../fonts/GothamPro-Medium"), local("./../fonts/GothamPro-Medium"), url(../fonts/GothamPro-Medium.eot?#iefix) format("embedded-opentype"), url(../fonts/GothamPro-Medium.woff) format("woff"), url(../fonts/GothamPro-Medium.ttf) format("truetype");
	font-weight: 700;
	font-style: normal
}

@font-face {
	font-family: "Gotham Pro";
	src: url(../fonts/GothamPro-Bold.eot);
	src: local("./../fonts/GothamPro-Bold"), local("./../fonts/GothamPro-Bold"), url(../fonts/GothamPro-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/GothamPro-Bold.woff) format("woff"), url(../fonts/GothamPro-Bold.ttf) format("truetype");
	font-weight: 900;
	font-style: normal
}

@font-face {
	font-family: "Gotham Pro";
	src: url(../fonts/GothamPro-Bold.eot);
	src: local("./../fonts/GothamPro-Bold"), local("./../fonts/GothamPro-Bold"), url(../fonts/GothamPro-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/GothamPro-Bold.woff) format("woff"), url(../fonts/GothamPro-Bold.ttf) format("truetype");
	font-weight: 700;
	font-style: normal
}

.container {
	width: 1440px;
	height: 100%;
	margin: 0 auto
}

@media screen and (max-width: 1440px) {
	.container {
		width: 100%
	}
}

.link {
	color: #fff
}

.points {
	display: flex;
	justify-content: flex-end;
	width: 200px;
	font-family: Roboto, sans-serif;
	position: fixed;
	right: 50%;
	top: 50%;
	transform: translate(calc(-50% + 820px), calc(-50% + 70px));
	list-style-type: none;
	color: #a4a4a4;
	background: linear-gradient(270deg, #18191c 0, rgba(0, 0, 0, 0) 77.83%);
	padding: 40px 0;
	z-index: 3
}

.points li {
	position: relative;
	margin: 0 0 60px
}

.points li:last-of-type {
	margin: 0
}

.points__item {
	color: #fff;
	transition: .4s;
	padding: 20px 38px 20px 6px
}

.points__item:hover {
	color: red;
	cursor: pointer
}

.points__item::before {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: -18px;
	width: 13px;
	height: 13px;
	border: 1px solid #a4a4a4;
	border-radius: 50%
}

.active::after {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: -15px;
	width: 7px;
	height: 7px;
	background: red;
	border-radius: 50%
}

@media screen and (max-width: 1400px) {
	.points {
		right: 0;
		transform: translate(0, -50%)
	}
}

@media screen and (max-width: 992px) {
	.points {
		width: 140px
	}

	.points li {
		margin: 0 0 30px;
		opacity: .4
	}

	.points__item {
		font-size: 16px;
		padding: 20px 25px 20px 6px
	}

	.points__item:hover {
		color: #a4a4a4;
		cursor: text
	}

	.points__item::before {
		top: 4px;
		left: -18px
	}

	.active::after {
		top: 7px
	}
}

@media screen and (max-width: 414px) {
	.points {
		width: 110px
	}

	.points__item {
		padding: 10px 10px 6px
	}
}

.btn {
	width: 197px;
	height: 44px;
	background: rgba(255, 255, 255, .09);
	text-transform: uppercase;
	font-size: 16px;
	color: #fff;
	border: none;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid red;
	border-left: 1px solid red;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .4s;
	padding: 2px 0 0
}

.btn:hover {
	border: none;
	border-top: 1px solid red;
	border-right: 1px solid red;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff
}

.header {
	height: 70px;
	width: 1440px;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4
}

.header_black {
	background: #000
}

.header_full {
	width: 100%
}

.header__content {
	width: 1440px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #000;
	padding: 0 30px;
	margin: 0 auto
}

.header__row {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #000;
	padding: 0 30px
}

.header__hamburger {
	display: none
}

.header__logo {
	position: relative;
	display: inline-block;
	overflow: hidden;
	font-weight: 700;
	color: #fff;
	border-right: 1px solid #dc1313;
	border-bottom: 1px solid #dc1313;
	padding: 0 3px 0 0;
	cursor: pointer
}

.header__logo span {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	transform: translateX(-100%);
	transition: transform 275ms
}

.header__logo span::before {
	display: inline-block;
	content: attr(data-content);
	color: red;
	transform: translateX(100%);
	transition: transform 275ms
}

.header__logo:hover span, .header__logo:hover span::before {
	transform: translateX(0)
}

.header__link {
	color: #b6b6b6;
	text-decoration: none;
	position: relative
}

.header__link::before {
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #dc1313;
	transition: .4s
}

.header__link:hover::before {
	width: 100%
}

@media screen and (max-width: 1400px) {
	.header, .header__content {
		width: 100%
	}
}

@media screen and (max-width: 1024px) {
	.header__logo {
		display: none
	}

	.header__hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 50px;
		width: 40px;
		cursor: text;
		padding: 10px 10px 10px 0
	}

	.header__hamburger span:nth-child(odd) {
		color: #fff;
		font-size: 12px;
		line-height: 12px;
		border-right: 1px solid red;
		border-bottom: 3px solid #dc1313;
		padding: 0
	}

	.header__hamburger span:nth-child(2) {
		width: 25px;
		height: 2px;
		background: red
	}
}

@media screen and (max-width: 992px) {
	.btn:visited {
		border: none;
		border-bottom: 1px solid red;
		border-left: 1px solid red
	}

	.header__link {
		color: #fff
	}
}

@media screen and (max-width: 414px) {
	.header__row {
		padding: 0 15px
	}

	.header__phone {
		font-size: 12px
	}
}

.menu {
	display: flex;
	justify-content: space-between;
	color: #fff
}

.menu__close {
	display: none
}

.menu__item {
	position: relative;
	color: #b6b6b6;
	padding: 10px 30px
}

.menu__item::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 30px;
	height: 1px;
	width: 0;
	background: red;
	transition: .3s
}

.menu__item:hover::before, .menu__item_active::before {
	width: calc(100% - 60px)
}

@media screen and (max-width: 1400px) {
	.menu__item {
		padding: 10px 18px
	}
}

@media screen and (max-width: 1024px) {
	.menu {
		position: absolute;
		top: 0;
		left: -90vw;
		flex-direction: column;
		align-items: center;
		width: 90vw;
		height: 80vh;
		min-width: 250px;
		max-width: 700px;
		background: #000;
		font-size: 20px;
		text-transform: uppercase;
		padding: 50px;
		z-index: 1;
		transition: .4s
	}

	.menu .menu__close {
		display: block;
		position: absolute;
		top: 10px;
		left: 25px;
		font-size: 60px;
		z-index: 1
	}

	.menu__item::before {
		display: none
	}

	.menu_active {
		left: 0
	}
}

.first {
	position: relative;
	width: 100%
}

.first__row {
	width: 100%;
	background-image: url(../img/first/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 186px 103px 116px 135px
}

.first__content {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.first__utp {
	min-width: 540px
}

.first__title {
	display: inline;
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	line-height: 52px
}

.first__title span {
	display: block;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	color: #797979
}

.first__image, .first__image img {
	width: 100%
}

.first .red-line {
	width: 47px;
	height: 2px;
	margin: 0 0 35px;
	background: #dc1313
}

.first__title_block {
	display: block;
	margin: 0 0 90px
}

@media screen and (max-width: 1280px) {
	.first__row {
		padding: 186px 50px 116px 80px
	}

	.first__utp {
		min-width: 350px
	}

	.first__utp__title {
		font-size: 37px;
		line-height: 43px
	}
}

@media screen and (max-width: 992px) {
	.first__row {
		padding: 150px 50px 110px
	}

	.first__content {
		flex-direction: column
	}

	.first__utp {
		order: 2
	}

	.first__image {
		order: 1;
		text-align: center;
		width: 80%
	}
}

@media screen and (max-width: 576px) {
	.first__image {
		width: 100%
	}

	.first__row {
		padding: 100px 30px 70px
	}

	.first__utp {
		min-width: 100%
	}

	.first__title {
		font-size: 27px;
		line-height: 37px;
		margin: 0 0 60px
	}
}

.title {
	font-size: 85px;
	line-height: 1.2;
	color: #ebebeb
}

.title_black {
	font-weight: 700;
	font-size: 70px;
	line-height: 53px;
	color: #101010
}

.title__good {
	color: #e6e6e6;
	font-size: 48px;
	line-height: 1
}

@media screen and (max-width: 576px) {
	.title {
		font-size: 36px
	}
}

@media screen and (max-width: 414px) {
	.title {
		font-size: 30px
	}
}

.subtitle {
	font-size: 18px;
	line-height: 163%;
	color: #676767
}

.goods {
	position: relative;
	min-height: 1507px;
	background: #000100;
	padding: 85px 211px 125px 76px
}

.goods__title {
	margin: 0 0 127px
}

.goods span {
	font-size: 29px;
	line-height: 28px;
	color: #797979
}

.goods__list {
	display: grid;
	grid-template-columns:repeat(4, 280px);
	grid-template-rows:repeat(5, 210px);
	gap: 10px;
	grid-template-areas:". two . text" "one two three text" "one five three four" ". five six four" ". . six ."
}

.goods__item {
	overflow: hidden;
	width: 280px;
	cursor: pointer
}

.goods__item:hover {
	box-shadow: 0 0 40px rgba(255, 255, 255, .5)
}

.goods__item img {
	width: 100%;
	height: 100%
}

.goods__item-1 {
	grid-area: one
}

.goods__item-2 {
	grid-area: two
}

.goods__item-3 {
	grid-area: three
}

.goods__item-text {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	color: #a3a2a2;
	grid-area: text
}

.goods__item-text:hover {
	cursor: auto;
	box-shadow: none
}

.goods__item-4 {
	grid-area: four
}

.goods__item-5 {
	grid-area: five
}

.goods__item-6 {
	grid-area: six
}

.goods__names {
	line-height: 35px;
	color: #797979;
	padding: 0 0 0 50px
}

.goods__name {
	position: relative;
	list-style: decimal
}

.goods__name a {
	color: #797979
}

.goods__name::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 0;
	background: red;
	transition: .3s
}

.goods__name:hover {
	color: #fff;
	position: relative;
	cursor: pointer
}

.goods__name:hover a {
	color: #fff
}

.goods__name:hover::before {
	width: 23px
}

.goods__name_active {
	color: #fff;
	position: relative
}

.goods__name_active::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: -55px;
	width: 23px;
	height: 1px;
	background: #dc1313
}

@media screen and (max-width: 1400px) {
	.goods {
		padding: 85px 211px 125px 0
	}
}

@media screen and (max-width: 1280px) {
	.goods {
		padding: 40px 80px
	}

	.goods__title {
		margin: 0 0 80px
	}

	.goods__list {
		display: grid;
		grid-template-columns:repeat(3, 280px);
		grid-template-rows:repeat(7, 210px);
		gap: 11px;
		grid-template-areas:"one . ." "one two text" "three two text" "three four five" ". four five" ". . six" ". . six"
	}
}

@media screen and (max-width: 1140px) {
	.goods {
		padding: 20px 50px
	}

	.goods__title {
		margin: 0 0 40px
	}

	.goods__list {
		display: grid;
		grid-template-columns:repeat(3, 280px);
		grid-template-rows:repeat(7, 210px);
		gap: 11px;
		grid-template-areas:"one . ." "one two text" "three two text" "three four ." "five four ." "five six ." ". six ."
	}
}

@media screen and (max-width: 992px) {
	.goods {
		padding: 20px 50px
	}

	.goods__title {
		margin: 0 0 40px
	}

	.goods__list {
		display: grid;
		grid-template-columns:repeat(2, 280px);
		grid-template-rows:repeat(8, 210px);
		gap: 11px;
		grid-template-areas:"one ." "one text" "two text" "two three" "four three" "four five" "six five" "six ."
	}

	.goods__item-5, .goods__item-6 {
		display: none
	}
}

@media screen and (max-width: 768px) {
	.goods {
		padding: 20px 50px
	}

	.goods__title {
		margin: 0 0 40px
	}

	.goods__list {
		display: grid;
		grid-template-columns:repeat(2, 280px);
		grid-template-rows:repeat(8, 210px);
		gap: 11px;
		grid-template-areas:"one ." "one text" "two text" "two ." "three ." "three ." "four ." "four ."
	}
}

@media screen and (max-width: 576px) {
	.goods {
		padding: 0 30px
	}

	.goods__title {
		margin: 0 0 20px;
		font-size: 57px;
		line-height: 57px
	}

	.goods__list {
		display: grid;
		grid-template-columns:repeat(1, 280px);
		grid-template-rows:repeat(10, 210px);
		gap: 11px;
		grid-template-areas:"one" "one" "text" "text" "two" "two" "three" "three" "four" "four"
	}
}

@media screen and (max-width: 414px) {
	.goods {
		padding: 10px
	}

	.goods__title {
		margin: 0 0 40px;
		font-size: 42px;
		line-height: 42px
	}
}

.galvanization {
	background: #fff
}

.parallax {
	position: relative
}

.parallax__group {
	width: 100%;
	height: 100vh
}

.parallax__layer-back {
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1
}

.parallax__layer-back_galvanization {
	height: calc(100vh - 280px);
	background-image: url(../img/parallax/galvan.jpg)
}

.parallax__layer-back_painted {
	height: calc(100vh - 365px);
	background-image: url(../img/parallax/color.jpg)
}

.parallax__layer-back_stainless {
	height: calc(100vh - 365px);
	background-image: url(../img/parallax/stainless.jpg)
}

.parallax__layer-base {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #fff;
	opacity: .9;
	z-index: 2
}

.parallax__layer-base_galvanization {
	min-height: 280px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 75px
}

.parallax__layer-base_painted, .parallax__layer-base_stainless {
	width: 100%;
	min-height: 365px;
	display: block;
	padding: 40px 0
}

.parallax__layer-base_stainless {
	padding: 40px 0 40px 50px
}

.parallax__title {
	flex: 1 0 650px;
	font-weight: 700;
	font-size: 94px;
	line-height: 125%;
	text-transform: uppercase;
	color: #101010
}

.parallax__title_painted {
	text-align: center
}

.parallax__subtitle {
	flex: 1 1 542px;
	font-size: 18px;
	line-height: 140%;
	color: #676767;
	text-align: center;
	margin: 0 0 0 56px;
	max-width: 540px
}

.parallax__subtitle_painted {
	margin: 0 auto
}

.parallax__subtitle_stainless {
	margin: 0;
	text-align: start
}

.parallax__more {
	font-size: 16px;
	line-height: 163%;
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	text-transform: lowercase;
	text-decoration: none;
	color: red;
	background: transparent;
	border: 1px solid red;
	border-radius: 5px;
	padding: 5px 10px;
}

.parallax__more:hover {
	background: red;
	color: white;
	border: 1px solid white;
}

@media screen and (max-width: 1140px) {
	.parallax__layer-base_galvanization {
		display: block
	}

	.parallax__subtitle_galvanization {
		margin: 0;
		text-align: start
	}
}

@media screen and (max-width: 800px) {
	.parallax__title {
		font-size: 60px
	}
}

@media screen and (max-width: 576px) {
	.parallax__layer-back {
		height: calc(100vh - 290px)
	}

	.parallax__layer-base {
		min-height: 290px;
		padding: 30px 10px
	}

	.parallax__title {
		font-size: 35px;
		text-align: center
	}

	.parallax__subtitle {
		font-size: 16px;
		max-width: 310px;
		margin: 0 auto;
		text-align: center
	}
}

.froze {
	min-height: -webkit-fit-content;
	min-height: -moz-fit-content;
	min-height: fit-content;
	width: 100%;
	background: #fff
}

.froze__wrap {
	display: flex;
	justify-content: center
}

.froze__schema {
	flex: 1 0 50%
}

.froze__schema img {
	max-width: 90%
}

.froze__description {
	flex: 1 1 50%;
	padding: 180px 25px 30px 99px
}

.froze__title {
	margin-bottom: 33px
}

.froze__title span {
	font-weight: 400;
	font-size: 22px;
	line-height: 21px;
	color: #3a3637
}

.froze__subtitle {
	margin: 0 0 20px;
}

@media screen and (max-width: 1280px) {
	.froze__description {
		padding: 145px 25px 10px
	}
}

@media screen and (max-width: 1024px) {
	.froze__schema {
		flex: 1 0 55%
	}

	.froze__description {
		flex: 1 0 35%
	}

	.froze__title {
		font-size: 54px;
		line-height: 42px
	}

	.froze__wrap {
		flex-direction: column;
		justify-content: center
	}

	.froze__schema {
		flex: 1 1 100%
	}

	.froze__description {
		flex: 1 1 100%;
		padding: 25px 25px 35px
	}
}

@media screen and (max-width: 576px) {
	.froze__title {
		font-size: 45px;
		line-height: 40px;
		margin-bottom: 20px
	}

	.froze__title span {
		font-size: 18px
	}

	.froze__subtitle {
		font-size: 16px;
		line-height: 143%;
		margin: 0 0 20px;
	}
}

.coloring {
	overflow: hidden;
	position: relative;
	min-height: 800px;
	width: 100%;
	background: #000
}

.coloring__image {
	position: relative;
	width: 100%
}

.coloring__image img {
	min-height: 100%;
	max-width: 100%
}

.coloring__description {
	position: absolute;
	bottom: 22%;
	right: 11%;
	max-width: 545px
}

.coloring__title {
	font-weight: 700;
	font-size: 90px;
	line-height: 86px;
	margin-bottom: 30px
}

.coloring__subtitle {
	color: #b7b7b7;
	margin: 0 0 20px
}

@media screen and (max-width: 1280px) {
	.coloring__description {
		max-width: 85%;
		bottom: 3%;
		right: 9%
	}

	.coloring__title {
		font-size: 70px;
		line-height: 63px;
		margin-bottom: 0
	}

	.coloring__subtitle {
		margin-bottom: 3px
	}
}

@media screen and (max-width: 1024px) {
	.coloring__description {
		max-width: 80%
	}

	.coloring__title {
		font-size: 54px;
		line-height: 50px
	}
}

@media screen and (max-width: 690px) {
	.coloring {
		min-height: 660px
	}

	.coloring__image img {
		max-width: 100%
	}

	.coloring__title {
		font-size: 44px;
		line-height: 62px
	}

	.coloring__subtitle {
		font-size: 16px;
		line-height: 143%
	}
}

.delivery {
	position: relative;
	min-height: 830px;
	width: 100%;
	background: #030303;
	padding: 90px 98px 10px 50px;
	z-index: 1
}

.delivery__description {
	max-width: 500px;
	margin-top: 12%
}

.delivery__title {
	font-weight: 700;
	font-size: 132px;
	line-height: 127px;
	text-transform: uppercase;
	margin: 0 0 30px
}

.delivery__subtitle {
	color: #b7b7b7
}

.delivery__image {
	position: absolute;
	right: 12%;
	bottom: 10px
}

.delivery__image img {
	max-width: 100%
}

@media screen and (max-width: 1400px) {
	.delivery__description {
		margin-top: 0
	}
}

@media screen and (max-width: 1000px) {
	.delivery {
		padding: 90px 40px 10px
	}

	.delivery__description {
		max-width: 90%
	}

	.delivery__title {
		margin-bottom: 30px;
		font-size: 85px;
		line-height: 88px
	}
}

@media screen and (max-width: 800px) {
	.delivery {
		min-height: 700px
	}

	.delivery__title {
		font-size: 43px;
		line-height: 45px
	}

	.delivery__subtitle {
		font-size: 16px;
		line-height: 143%
	}
}

.price {
	position: relative;
	width: 100%;
	background-image: url(../img/price/bgprice.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 200px 150px 150px;
	z-index: 0
}

.price__content {
	display: flex
}

.price__left {
	width: 50%
}

.price__logo {
	font-size: 20px;
	line-height: 19px;
	color: #dc1313;
	text-transform: uppercase;
	margin-bottom: 30px
}

.price__logo span {
	font-weight: 700;
	font-size: 50px;
	line-height: 38px
}

.price__h4 {
	font-weight: 700;
	font-size: 38px;
	line-height: 36px;
	color: #292929;
	margin-bottom: 20px
}

.price__description {
	font-size: 18px;
	line-height: 163%;
	color: #1e1e1e;
	margin-bottom: 30px
}

.price__btn {
	display: inline;
	background: #dc1313;
	font-size: 16px;
	text-align: center;
	color: #fff;
	transition: 1s;
	border: 3px solid #fff;
	padding: 15px 54px
}

.price__btn:hover {
	color: #dc1313;
	background: #fff;
	border: 3px solid #dc1313;
	transform: scale(1.1)
}

.price__img {
	width: 50%
}

.price__img img {
	width: 100%
}

.price__text {
	margin: 0 0 30px
}

@media screen and (max-width: 1024px) {
	.price {
		padding: 150px 100px
	}

	.price__left {
		width: 100%
	}

	.price__img {
		display: none
	}
}

@media screen and (max-width: 600px) {
	.delivery {
		min-height: 600px
	}

	.price {
		padding: 100px 50px
	}
}

@media screen and (max-width: 414px) {
	.delivery {
		min-height: 520px
	}

	.price {
		padding: 50px 15px
	}

	.price__btn {
		display: inline-block;
		padding: 15px 30px
	}
}

.icon {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: .6s;
	margin: 10px
}

.icon img {
	width: 25px;
	height: 25px;
	transition: .1s
}

.icon img:hover {
	width: 30px;
	height: 30px
}

.icon__cart {
	display: none
}

.icon__cart_active::before {
	content: "";
	display: block;
	position: absolute;
	top: -4px;
	right: -4px;
	width: 12px;
	height: 12px;
	border: 1px solid red;
	background: red;
	border-radius: 50%;
	color: red
}

.icon__cart span {
	color: #fff;
	font-size: 10px;
	position: absolute;
	top: -2px;
	right: -1px
}

.icon__cart .hidden {
	display: none
}

.icon__whatsapp {
	position: relative
}

.icon__whatsapp-link {
	display: none
}

.icon__whatsapp-link_active {
	display: block;
	position: absolute;
	top: 30px;
	left: -150px;
	color: #fff;
	background: #24a1de;
	width: 150px;
	border: 1px solid #24a1de;
	border-radius: 20px 0 20px 20px;
	text-align: center;
	padding: 10px;
	transition: .4s
}

.icon__whatsapp-link_active:hover {
	color: #fff;
	background: #0e5071
}

.slider {
	transform: translateY(0);
	transition: 2s;
	background: red
}

.slider img {
	height: 430px;
	filter: grayscale(100%);
	transition: 1s
}

.slider:hover img {
	filter: grayscale(0)
}

.button {
	align-self: start;
	border: 1px solid red;
	border-radius: 20px;
	color: #fff;
	background: 0 0;
	padding: 10px 30px;
	transition: .4s
}

.button:hover {
	border: 1px solid #fff;
	color: #fff
}

.text {
	color: #e6e6e6;
	font-size: 22px;
	margin: 0 0 20px
}

@media screen and (max-width: 1140px) {
	.text p {
		font-size: 20px;
		line-height: 1.2
	}
}

@media screen and (max-width: 576px) {
	.text p {
		font-size: 18px;
		line-height: 1.2
	}
}

@media screen and (max-width: 414px) {
	.text p {
		font-size: 16px;
		line-height: 1.2
	}
}

.contacts {
	width: 100%;
	background: #fff;
	padding: 50px 100px 100px;
	margin: 70px 0 0
}

.contacts__content {
	display: flex
}

.contacts__data {
	width: 50%;
	padding: 50px
}

.contacts__title {
	color: #3a3637;
	margin: 0 0 30px
}

.contacts__map {
	width: 50%;
	min-height: 400px;
	background: #000
}

.contacts__list {
	color: #000
}

.contacts__list li {
	display: flex;
	justify-content: space-between;
	text-align: right;
	margin: 0 0 20px
}

.contacts__list span {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	text-align: left;
	margin: 0 50px 0 0
}

.contacts__list a {
	color: green
}

@media screen and (max-width: 1440px) {
	.contacts__content {
		flex-direction: column
	}

	.contacts__data, .contacts__map {
		width: 100%
	}
}

@media screen and (max-width: 800px) {
	.contacts {
		padding: 100px 50px
	}

	.contacts__data {
		padding: 10px
	}
}

@media screen and (max-width: 600px) {
	.contacts {
		padding: 100px 20px 60px
	}

	.contacts__data {
		font-size: 13px;
		padding: 10px
	}

	.contacts__data span {
		text-transform: lowercase;
		font-size: 13px;
		margin: 0
	}
}

.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}

.bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.window {
	position: relative;
	width: 100%;
	height: 100vh
}

.window__content {
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: end;
	flex-direction: column;
	background: linear-gradient(87deg, rgba(0, 0, 0, .5858937325) 50%, rgba(255, 255, 255, 0) 100%);
	padding: 50px 50px 10%
}

@media screen and (max-width: 1140px) {
	.window__content {
		width: 70%
	}
}

@media screen and (max-width: 800px) {
	.window__content {
		width: 100%;
		padding: 50px 30px 10%
	}
}

@media screen and (max-width: 576px) {
	.window__content {
		padding: 50px 15px 10%
	}
}

.roof {
	position: relative;
	width: 100%;
	height: 100vh
}

.roof__content {
	display: flex;
	flex-direction: column;
	justify-content: end;
	width: 100%;
	height: 100%;
	align-items: end;
	background: linear-gradient(0deg, #000 0, rgba(255, 255, 255, 0) 67%);
	padding: 0 90px 15%
}

.roof__content_bottom {
	padding: 0 90px 5%
}

.roof__text {
	max-width: 50%;
	margin: 0 0 10px
}

.roof__button {
	align-self: end
}

@media screen and (max-width: 1140px) {
	.roof__content {
		padding: 0 30px 15%
	}
}

@media screen and (max-width: 800px) {
	.roof__content {
		padding: 0 30px 15%
	}
}

@media screen and (max-width: 414px) {
	.roof__content {
		padding: 0 15px 15%
	}
}

.plinth {
	position: relative;
	width: 100%;
	height: 100vh
}

.plinth__content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #000 0, rgba(255, 255, 255, 0) 100%);
	padding: 100px 50px 0
}

.plinth__text {
	width: 50%
}

.plinth_filter {
	filter: brightness(10%) contrast(80%)
}

@media screen and (max-width: 1024px) {
	.plinth__text {
		width: 70%
	}
}

@media screen and (max-width: 800px) {
	.plinth__content {
		padding: 100px 30px 0
	}

	.plinth__text {
		width: 100%
	}
}

@media screen and (max-width: 414px) {
	.plinth__content {
		padding: 100px 15px 0
	}
}

.fence {
	position: relative;
	width: 100%;
	height: 100vh
}

.fence__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5)
}

.fence__title {
	margin: 0 0 20px
}

.fence__text {
	text-align: center;
	max-width: 1000px;
	width: 80%
}

.fence__button {
	align-self: center
}

@media screen and (max-width: 1024px) {
	.fence__title {
		margin: 0 0 10px
	}
}

@media screen and (max-width: 800px) {
	.fence__content {
		padding: 30px
	}

	.fence__text {
		width: 100%
	}
}

@media screen and (max-width: 414px) {
	.fence__content {
		padding: 15px
	}
}

.measuring {
	position: relative;
	width: 100%;
	height: 100vh;
	background: #131514
}

.measuring__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%
}

.measuring__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.measuring__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	height: 100%;
	padding: 0 0 0 50px
}

@media screen and (max-width: 800px) {
	.measuring {
		display: flex;
		flex-direction: column
	}

	.measuring__bg {
		position: relative;
		top: 0;
		left: 0;
		align-self: end;
		width: 70%
	}

	.measuring__content {
		width: 100%;
		padding: 0 15px
	}

	.measuring__button {
		margin: 0 0 20px
	}
}

.mounting {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 1200px
}

.mounting__content {
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 0 0 100px 50px
}

.mounting__block {
	background: rgba(0, 0, 0, .55);
	padding: 30px
}

.mounting__title {
	font-weight: 300
}

.mounting__button {
	border: 1px solid #fff;
	color: #fff;
	background: #000;
	transition: 1s
}

.mounting__button:hover {
	color: #000;
	background: #fff;
	border: 1px solid #000
}

.mounting_filter {
	filter: brightness(30%) contrast(80%)
}

@media screen and (max-width: 1024px) {
	.mounting__content {
		width: 100%
	}

	.mounting__block {
		max-width: 95%
	}
}

@media screen and (max-width: 800px) {
	.mounting__content {
		padding: 0 0 15% 30px
	}
}

@media screen and (max-width: 414px) {
	.mounting__content {
		padding: 0 0 15% 15px
	}
}

.observer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px
}

/*# sourceMappingURL=style.min.css.map */
