@import url("https://fonts.googleapis.com/css?family=Montserrat|Roboto&subset=cyrillic-ext");
.fadeIn {
	animation: a .5s forwards
}

@keyframes a {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

.fadeInUp {
	animation: b .6s forwards
}

@keyframes b {
	0% {
		opacity: 0;
		transform: translate3d(0, 10rem, 0)
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInDown {
	animation: c .6s forwards
}

@keyframes c {
	0% {
		opacity: 0;
		transform: translate3d(0, -10rem, 0)
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInLeft {
	animation: d .4s forwards
}

@keyframes d {
	0% {
		opacity: 0;
		transform: translate3d(-10rem, 0, 0)
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInRight {
	animation: e .5s forwards
}

@keyframes e {
	0% {
		opacity: 0;
		transform: translate3d(.4rem, 0, 0)
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeOut {
	animation: f .5s forwards
}

@keyframes f {
	0% {
		opacity: 1
	}
	to {
		opacity: 0
	}
}

.fadeOutRight {
	animation: g .5s forwards
}

@keyframes g {
	0% {
		opacity: 1;
		transform: translateZ(0)
	}
	to {
		opacity: 0;
		transform: translate3d(.4rem, 0, 0)
	}
}

.growUp {
	animation: h .1s linear .2s forwards
}

@keyframes h {
	0% {
		transform: scale(0)
	}
	to {
		transform: scale(1)
	}
}

.moveLeft {
	animation: i 1s forwards ease
}

@keyframes i {
	0% {
		left: 0
	}
	to {
		left: -100%
	}
}

.kenburnsZoomIn,
.vegas-animation-kenburnsZoomIn {
	animation: j 1s ease forwards
}

@keyframes j {
	0% {
		transform-origin: 50% 50%;
		transform: scale(1)
	}
	to {
		transform: scale(1.2);
		opacity: 0
	}
}

.falldownAnim {
	animation: k 1s linear infinite
}

@keyframes k {
	0% {
		border-color: #fff;
		transform: translate(0)
	}
	20% {
		border-color: #fff;
		transform: translate(.5rem, .5rem)
	}
	20.1%,
	to {
		border-color: #444
	}
}

body {
	font-family: Montserrat, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.4
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase
}

h1 {
	font-size: 3rem;
	line-height: 1.1
}

h2,
h3 {
	font-size: 2rem
}

h2,
h3,
h4 {
	line-height: 1.1
}

h4 {
	font-size: 1.8rem
}

h5 {
	font-size: 1.6rem
}

h5,
h6 {
	line-height: 1.1
}

h6 {
	font-size: 1.2rem
}

p {
	font-size: 1.4rem
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	font-size: 62.5%
}

body,
html {
	width: 100%;
	height: 100%
}

body {
	overflow-x: hidden;
	min-width: 320px;
	min-height: 480px;
	background: #fff;
	color: #333;
	z-index: 0;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0
}

.clearfix:after {
	content: "";
	display: block;
	clear: both
}

.btn,
.transition {
	transition: all .25s ease
}

img {
	display: block;
	max-width: 100%;
	height: auto
}

.adult {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 1rem;
	z-index: 2;
	color: #000;
	text-transform: uppercase;
	font-size: .9rem
}

ul {
	list-style-type: disc;
	margin-left: 2rem
}

ul li {
	font-size: 1.6rem;
	margin-bottom: .2rem
}

.main {
	z-index: 1;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 1rem .5rem 3rem
}

.container,
.main {
	position: relative;
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden
}

.container {
	max-width: 90rem;
	border-radius: 1rem
}

.container-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%
}

.container-bg,
.container-bg:after {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0
}

.container-bg:after {
	content: "";
	display: block;
	background: rgba(0, 0, 0, .4)
}

.container-bg.mobile {
	display: block
}

.container-bg.desktop {
	display: none
}

.container-bg__item {
	display: none;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0
}

.container-bg__item.active {
	display: block
}

.btnbox {
	position: relative;
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0;
	overflow: hidden
}

.btnbox .btn:first-child {
	border-radius: .6rem 0 0 .6rem;
	border-right: 1px solid #eee
}

.btnbox .btn:nth-child(2) {
	border-radius: 0 .6rem .6rem 0;
	border-left: 1px solid #eee
}

.btn {
	font-family: Roboto, Montserrat, Arial, Helvetica, sans-serif;
	width: 40%;
	max-width: 13rem;
	height: 6rem;
	padding: 0;
	margin: 0;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-size: 2.2rem;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .1rem;
	overflow: hidden;
	cursor: pointer;
	background: #fff
}

.btn span {
	color: #333;
	transition: all .2s ease-out
}

.btn span.btn__text.small {
	font-size: .8em;
	line-height: .8em
}

.btn.gray-bg {
	background: #ddd
}

.btn:active {
	background: #f1f1f1
}

.btn .percentage {
	display: none;
	transform: scale(0);
	font-size: 1.2em;
	line-height: 1.2em
}

.btn--primary span.btn__text {
	background: linear-gradient(90deg, #5ae1ff, #3bf7a0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}

.btn--accent span.btn__text {
	background: linear-gradient(90deg, #ff8e4c, #df7bff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}

.btn--block {
	width: 80%;
	max-width: 26rem;
	border-radius: .6rem!important;
	border: none!important
}

.btn--zero {
	width: 0;
	border: none!important
}

.c-ripple {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: transparent
}

.c-ripple.is-active .c-ripple__circle {
	animation: l .4s ease-in
}

.c-ripple__circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, .25)
}

@keyframes l {
	0% {
		opacity: 0
	}
	25% {
		opacity: 1
	}
	to {
		width: 200%;
		padding-bottom: 200%;
		opacity: 0
	}
}

.stepbox {
	z-index: 3;
	box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
	overflow: hidden
}

.step,
.stepbox {
	width: 100%;
	height: 100%;
	position: relative
}

.step {
	max-width: 60rem;
	margin: auto;
	display: none;
	color: #fff;
	text-align: left
}

.step:first-child {
	display: block
}

.step:first-child h1,
.step:first-child h2,
.step:first-child p,
.step:last-child h1,
.step:last-child h2,
.step:last-child p {
	text-align: center
}

.step__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: 1rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.step__header {
	margin-bottom: 1rem
}

.step__body {
	margin-bottom: 2rem
}

.step__footer {
	margin-bottom: 1rem
}

.bg {
	position: fixed!important;
	opacity: .1
}

.bg,
.bg:after {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0
}

.bg:after {
	content: "";
	position: fixed
}

.bg.mobile,
.bg:after {
	display: block
}

.bg.desktop,
.bg__item {
	display: none
}

.bg__item {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0
}

.bg__item.active {
	display: block
}

.bg__item.blur {
	-webkit-filter: blur(10px);
	filter: blur(10px)
}

@media (min-width:360px) {
	html {
		font-size: 75%
	}
}

@media (min-width:768px) {
	html {
		font-size: 87.5%
	}
	.container {
		max-width: 48rem;
		max-height: 65rem
	}
}

@media (min-width:1024px) {
	.container {
		max-width: 65rem;
		max-height: 45rem
	}
	.container-bg.mobile {
		display: none
	}
	.container-bg.desktop {
		display: block
	}
	.bg.mobile {
		display: none
	}
	.bg.desktop {
		display: block
	}
}

@media (min-width:1280px) {
	html {
		font-size: 100%
	}
	.container {
		max-width: 65rem;
		max-height: 40rem
	}
}

@media (min-width:1440px) {
	html {
		font-size: 100%
	}
	.container {
		max-width: 76rem;
		max-height: 48rem
	}
}

@media (min-width:1920px) {
	html {
		font-size: 100%
	}
	.container {
		max-width: 90rem;
		max-height: 50rem
	}
}