@import url(https://fonts.google.com/specimen/PT+Sans);
body {
	overflow-x: hidden;
	font-family: "PT Sans", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	color: #333
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase
}

h1 {
	font-size: 2.5rem;
	color: #76ff89;
}

h2 {
	font-size: 2rem
}

h3 {
	font-size: 2.2rem
}

h4 {
	font-size: 1.8rem
}

h5,
h6 {
	font-size: 1.6rem
}

p {
	font-size: 1.8rem;
	text-align: justify;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	font-size: 62.5%
}

body,
html {
	width: 100%;
	height: 100%
}

body {
	min-width: 320px;
	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 .25s ease
}

img {
	display: block;
	max-width: 100%;
	height: auto
}

.main {
	position: relative;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	height: 100%;
	z-index: 1
}

.crumbs {
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 3;
	left: 50%;
	top: 0;
	transform: translateX(-50%)
}

.crumbs li {
	display: inline-block;
	width: 1rem;
	height: 4rem;
	margin: 1rem;
	transition: all .25s ease;
	border-radius: 10px;
	background: #fff;
}

.crumbs li.active {
	width: 2rem;
	height: 4rem;
	background: #76ff89;
}

@keyframes a {
	0% {
		opacity: 0;
		transform: translate3d(0, 10rem, 0)
	}
	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInUp {
	animation: a .4s
}

.btnbox {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-align: center;
	align-items: center
}

.btn {
	width: 100%;
	height: 6rem;
	line-height: 6rem;
	padding: 0 2rem;
	position: relative;
	display: inline-block;
	color: #000;
	font-size: 1.6rem;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	border-radius: .8rem;
	cursor: pointer;
	margin-bottom: 1rem
}

.btn--primary {
	color: #fff;
	background: linear-gradient(to right, #85e7ff, #76ff8a);
	font-weight: 900;
	border-radius: 3px 30px 30px 30px;
	box-shadow: 5px 5px 5px #76ff8a;
}

.btn--primary:hover {
	background: #85e7ff;
	box-shadow: 5px 5px 5px #85e7ff;
}

.btn--accent {
	color: #fff;
	background: linear-gradient(to right, #979797, #3a3a3a);
	border-radius: 3px 30px 30px 30px;
	box-shadow: 5px 5px 5px #979797;
}

.btn--accent:hover {
	background: #979797;
}

.stepbox {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2
}

.step,
.stepbox {
	width: 100%;
	height: 100%
}

.step {
	position: relative;
	display: none;
	color: #333;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%
}

.step:first-child {
	display: block
}

.step__inner {
	width: 100%;
	max-width: 50rem;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-direction: column;
	flex-direction: column
}

.step__header,
.step__inner {
	position: relative
}

.step__header svg {
	fill: hsla(0, 0%, 100%, .75);
	position: absolute;
	width: 100%;
	left: 0;
	top: -5rem;
	height: 5rem
}

.step__header .avatar {
	width: 8rem;
	height: 8rem;
	border-radius: 8rem;
	border-right: 8px solid #76ff89;
	border-bottom: 8px solid #76ff89;
	overflow: hidden;
	margin: 0 auto;
	margin-bottom: 1rem;
}

.step__header .avatar img {
	width: 100%;
	display: block
}

.step__body {
	position: relative;
	padding: 1rem 1.5rem;
	color: #fff;
	text-align: center;
	border: 0px solid #000000;
}

.step__body p {
	margin-bottom: 2rem;
	margin-top: 25px;
}

.step__footer {
	position: relative;
	margin-bottom: 5rem
}

.step__footer svg {
	fill: hsla(0, 0%, 100%, .75);
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -5rem;
	height: 5rem
}

.bg {
	position: fixed!important
}

.bg,
.bg:after {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0
}

.bg:after {
	content: "";
	display: block;
	position: fixed;
	background: linear-gradient(rgba(0, 0, 0, .4) 5%, transparent)
}

.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
}

.bg__item.active {
	display: block
}

@media (min-width:320px) and (max-width:374px) {
	.step__inner {
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.step__header .avatar,
	.step__header svg {
		display: none
	}
	.step__footer {
		margin-bottom: 0
	}
	.step__footer svg {
		display: none
	}
}

@media (min-width:375px) and (max-width:767px) {
	html {
		font-size: 62.5%
	}
	.step__inner {
		-ms-flex-pack: end;
		justify-content: flex-end
	}
}

@media (min-width:768px) {
	html {
		font-size: 80%
	}
}

@media (min-width:992px) {
	.step__inner {
		left: 60%
	}
}

@media screen and (min-width:320px) and (max-width:992px) and (orientation:landscape) {
	html {
		transform: rotate(-90deg);
		transform-origin: left top;
		width: 100vh;
		height: 100vw;
		overflow-x: hidden;
		position: absolute;
		top: 100%;
		left: 0
	}
}