@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

img {
	border: none;
	display: block
}

iframe {
	border: none !important;
	width: 0 !important;
	height: 0 !important;
	display: none;
	position: absolute
}

a {
	text-decoration: none;
	cursor: pointer !important
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	position: relative
}

body {
	font-family: "Bebas Neue", sans-serif;
	color: #fff;
	background: #4f4f4f;
	min-width: 300px;
	min-height: 480px
}

.wrapper {
	height: 100vh;
	min-height: 600px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	padding: 2rem 0;
	overflow: hidden
}

.step-block {
	width: 96%;
	max-width: 568px;
	display: flex;
	justify-content: center
}

.step-wrapper {
	display: flex
}

.step-wrapper img {
	flex: 0 0 auto;
	width: 40%
}

.step-item {
	width: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	display: none;
	animation: slideInUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	margin: 0 auto
}

.step-text {
	flex: 1 1 auto;
	width: 50%;
	display: flex;
	flex-direction: column
}

.step-item.visible {
	display: block
}

.step-header {
	text-align: center;
	padding: 0.75rem;
	font-size: 50px;
	margin-top: 5px;
	font-weight: 700;
	background: #fff;
	color: #ff00b4
}

.step-header span {
	color: #000
}

.step-content {
	text-align: center;
	padding: 1.5rem;
	flex: 1;
	background: #4f4f4f;
	font-size: 38px;
}

.step-info {
	font-size: 2rem
}

.checkbox-block {
	max-width: 500px;
	margin: 2rem auto 0
}

.checkbox-item {
	display: block;
	position: relative;
	padding: 0 0 0 4rem;
	margin: 2rem;
	text-align: left;
	line-height: 1.5rem;
	cursor: pointer;
	transition: all 0.3s linear;
	font-size: 2rem
}

.checkbox-item:before {
	content: "";
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	line-height: 1.5rem;
	border: 1px solid #ccc;
	top: 0;
	left: 0;
	z-index: 1;
	color: #fff;
	font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 1.5rem;
	text-align: center;
	background: #fff
}

.checkbox-item.checked:before {
	content: "\2713";
	color: #ff00b4
}

.buttons-block {
	display: flex
}

span {
	color: #ff00b4;
}

.step-btn {
	position: relative;
	flex: 1 1 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0.75rem;
	font-weight: 700;
	font-size: 35px;
	color: #fff;
	text-transform: uppercase;
	background: #ff00b4;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1)
}

.step-btn::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transform-origin: center;
	transform: translate(-50%, 0) scaleX(1);
	transition: transform 0.5s ease-in-out
}

.no-btn {
	background: #cc0090
}

.step-btn:hover {
	opacity: 0.9
}

.step-btn:hover::before {
	transform: translate(-50%, 0) scaleX(0)
}

.step-btn:hover:active {
	background: #cc0090
}

.next-btn {
	flex: 1 1 100%;
	width: 100%;
	text-decoration: none;
	overflow: hidden
}

.next-btn::after {
	content: '»';
	margin-left: 2rem;
	display: inline-block;
	vertical-align: middle;
	color: #000;
	font-size: 4rem;
	text-align: center;
	line-height: 2.5rem;
	width: 3rem;
	height: 3rem;
	background: #fff;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
	border-radius: 4px
}

.next-btn::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background-color: #cc0090;
	transform-origin: center;
	transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 0);
	transition: transform 0.45s ease-in-out
}

.next-btn:hover::before {
	transform: translate3d(-50%, -50%, 0) scale3d(30, 30, 30)
}

#back-blur {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;       
	filter: blur(10px) brightness(0.8); 
	z-index: -2;
}

#back {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 100vh;
	object-fit: contain;      
	z-index: -1;
}

.overlay {
	position: fixed;
	inset: 0;
	background:  #41295aab;
	z-index: -2;
	pointer-events: none;
}

@keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@media (max-width: 1200px) {
	html {
		font-size: 55%
	}

	#back {
		object-fit: cover;    
	}
}

@media (max-width: 960px) {
	html {
		font-size: 50%
	}
}

@media (max-width: 600px) {
	html {
		font-size: 45%
	}
}