@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@keyframes a {
	0% {
		opacity: 0;
		transform: translate3d(0, 10rem, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInUp {
	animation: a 0.4s;
}
@keyframes b {
	0% {
		opacity: 0;
		transform: translate3d(0, -10rem, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInDown {
	animation: b 0.4s;
}
body {
	overflow-x: hidden;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	line-height: 1.4;
	color: #333;
}
h1, h2, h3, h4, h5, h6 {
	text-transform: uppercase;
}
h1 {
	font-size: 3.5rem;
	color: black;
	text-shadow: 0 0 7px #fff, 0 0 6px #fff, 0 0 21px #fff, 0 0 4px #e91e63, 0 0 0px #e91e63, 0 0 8px #e91e63, 0 0 6px #ff61f382, 0 0 3px #ff82e482
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 2.2rem;
}
h4 {
	font-size: 1.8rem;
}
h5, h6 {
	font-size: 1.6rem;
	color: black;
	text-shadow: 0 0 7px #fff, 0 0 6px #fff, 0 0 21px #fff, 0 0 4px #e91e63, 0 0 0px #e91e63, 0 0 8px #e91e63, 0 0 6px #ff61f382, 0 0 3px #ff82e482
}
p {
	font-size: 1.8rem;
	/* text-align: justify; */
	text-align: center;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body, html {
	width: 100%;
	height: 100%;
}
body {
	min-width: 320px;
	min-height: 500px;
	background: #fff;
	z-index: 0;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.btn, .transition {
	transition: all 0.25s ease;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
.main {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
}
body {
	background-size: cover;
	background-position: 50%;
}
.coub {
	z-index: 2;
	position: absolute;
	text-align: right;
	color: #fff;
	margin: 0px 85%;
	bottom: 8%;
}
.progress {
	display: block;
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	z-index: 3;
	width: 90%;
	max-width: 20rem;
	height: 0.5rem;
	border-radius: 5rem;
	overflow: hidden;
	background: transparent;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(0, 0, 0, 0.1);
}
.progress .bar {
	width: 0;
	height: 100%;
	border-radius: 5rem;
	background-image: linear-gradient(90deg, #ffffff, #ffffff47);
}
.videobgbox {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.video {
	height: 135%;
	width: 100%;
	position: absolute;
	left: 50%;
	top: 35%;
	transform: translate(-50%, -50%);
	transition-duration: 0ms;
	object-fit: cover;
}
.btnbox {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.btn, .btnbox {
	-ms-flex-align: center;
	align-items: center;
}
.btn {
	width: 90%;
	height: 6rem;
	line-height: 6rem;
	padding: 0 2rem;
	position: relative;
	display: inline-block;
	color: #fff;
	font-size: 1.6rem;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.1rem;
	border-radius: 15px;
	cursor: pointer;
	margin-bottom: 1rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	border: 0;
}
.btn--primary {
	margin-left: 2rem;
	background: #23043a;
	color: #fff;
	box-shadow: 0 0 7px #fff, 0 0 6px #fff, 0 0 21px #fff, 0 0 4px #e91e63, 0 0 0px #e91e63, 0 0 8px #e91e63, 0 0 6px #ff61f382, 0 0 3px #ff82e482;
}
.btn--primary:hover {
	background: #130220;
}
.btn--primary:active {
	background: #130220;
}
.btn--accent {
	color: #fff;
	/* background-color: #c154c1; */
	/* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); */
}
.btn--accent:hover {
	background: transparent !important;
	border: 1px solid #ffa6dd;
	/* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); */
}
.btn--accent:active {
	background-color: #c154c1;
	box-shadow: none;
}
.btn--round {
	min-width: 8.6rem;
	height: 8.6rem;
	background: #fff;
	border-radius: 15px;
	padding: 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 1.4rem;
	width: auto;
	padding: 0 15px;
}
.btn--round.btn--primary {
	background-color: #0332FF;
}
.btn--round.btn--accent {
	background: #c5b2be66;
}
.btn-yes:hover {
	color: #ffffff;
	font-weight: 700;
}
.stepbox {
	left: 0;
	top: 0;
	z-index: 2;
}
.step, .stepbox {
	width: 100%;
	height: 100%;
	position: relative;
}
.step {
	max-width: 40rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	padding: 2rem;
	color: #fff;
}
.step.current {
	display: block;
}
.step:nth-child(2) .btnbox, .step:last-child .btnbox {
	-ms-flex-pack: center;
	justify-content: center;
}
.step:nth-child(2) .btnbox .btn--primary, .step:last-child .btnbox .btn--primary {
	margin: 0;
}
.step__inner {
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
}
.step__header {
	margin-bottom: 1rem;
}
.step__body, .step__footer {
	margin-bottom: 2rem;
}
.field-box {
	position: relative;
	margin-top: 12px;
	min-height: 60px;
}
.input-text {
	display: block;
	width: 100%;
	max-width: 320px;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	box-sizing: border-box;
}
.input-text:focus {
	outline: 0;
}
label.error {
	position: absolute;
	left: 0;
	top: 40px;
	color: #fd4444;
	font-size: 12px;
}
@media (min-width: 375px) {
	html {
		font-size: 75%;
	}
}
@media (max-width: 768px) {
	.coub {
		margin-left: 57%;
	}
}
@media (min-width: 768px) {
	html {
		font-size: 87.5%;
	}
	.coub {
		margin-left: 75%;
	}
}
@media (min-width: 992px) {
	.btnbox .btn {
		max-width: 26rem;
	}
	.btnbox .btn--round {
		width: 7rem;
		height: 7rem;
	}
	.step {
		max-width: 60rem;
		padding-left: 10rem;
	}
}
@media (min-width: 1200px) {
	.coub {
		margin-left: 82%;
	}
	body:after {
		opacity: 0.65;
	}
}
.btn--round.btn--primary.btn-yes {
	background: #23043a;
	color: #fff;
	border-radius: 15px;
	font-weight: 700;
	box-shadow: 0 0 7px #fff, 0 0 6px #fff, 0 0 21px #fff, 0 0 4px #e91e63, 0 0 0px #e91e63, 0 0 8px #e91e63, 0 0 6px #ff61f382, 0 0 3px #ff82e482;
}
.btn--round.btn--primary.btn-yes:hover {
	background: #130220;
}
p, h1, h6 {
	text-align: center
}
@media screen and (max-width:1024px) {
	.videobgbox {
		width: 100%;
		height: 80%;
		position: fixed;
		left: 0;
		top: 20%;
		right: 0;
		bottom: 0;
	}
}