* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wrap{background: url('../images/grid.jpg') no-repeat scroll center top / cover;}

:focus {
    outline: 0
}

img {
    border: none;
    display: block
}

ol,
ul {
    list-style: none;
	padding: 0;
	margin: 0;
}

iframe {
	border: none !important;
	width: 100%;
	height: 340px;
	margin-top: 30px;
}

a {
    text-decoration: none;
    cursor: pointer !important
}
body,
html {
    height: 100%;
	min-height: 100%;
}
video {
	width: 100%;
	height: 100%;
	border-radius: 5px;
}
body {
    font-family: 'Montserrat', sans-serif;
	line-height: 1.2;
}

.container {
	width: 100%;
	height: 100vh;
	display: -webkit-grid;
    display: grid;
	grid-template-columns: 100%;
	grid-template-rows: max-content auto;
    align-items: center;
    justify-content: center;
}

.wrap {
	width: 100%;
	height: 100%;
    position: relative;
	display: -webkit-grid;
    display: grid;
	grid-template-columns: 100%;
    align-items: center;
    justify-content: center;
	background: url('../images/grid.jpg') no-repeat scroll center top / cover;
}

header {
	position: relative;
	width: 100%;
	padding: 10px 10px 5px;
	text-align: center;
}

header img {
	max-width: 220px;
	display: inline-block
}

.step-item {
	box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 10px;
	background-color: rgb(255, 255, 255);
	position: absolute;
	border-radius: 25px;
	padding: 15px 15px 30px;
	margin: 0px auto;
	top: 50%;
	left: 50%;
	font-size: 1rem;
	width: 96%;
	max-width: 700px;
	transform: translate(-50%, -50%);
	text-align: center;
}
.step-content li {
	width: 35%;
	display: inline-block;
	margin-bottom: 15px;
}
.cta,
.step-content li span {
	width: 100%;
	max-width: 250px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 30px;
	border: 0;
	font-size: 1.25rem;
	padding: 15px 0;
	cursor: pointer;
	color: #ffffff;
	background-color: #ff2860;
	transition: all 0.1s ease-in;
}
.cta {
	max-width: 340px;
	margin-top: 30px;
}
.hidden {
	display: none
}

h1 {
	font-size: 1.75rem;
	font-weight: 600;
	padding: 20px 30px;
}
h2 {
	font-size: 1.25rem;
	font-weight: 400;
}

.meter { 
	width: 100%;
	height: 15px;
	position: relative;
	background: rgba(91,91,91,.6);
	border-radius: 20px;
	display: block;
	margin: 5px auto 20px;
	overflow: hidden;
	animation: border-flicker 2s linear infinite;
}
.meter > span {
  	display: block;
  	height: 100%;
	background: #ff2860;
  	position: relative;
  	overflow: hidden;
}
.loadtext {
	max-width: 400px;
	margin: 10px auto;
	position: relative;
	text-align: left;
	padding-left: 26px;
	display: none;
}
.loadtext::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../images/check.svg) no-repeat center center;
    fill: rgb(27, 20, 100);
    position: absolute;
    left: 0px;
}

@media (max-width:768px) {
	h1 {
		padding: 20px 10px;
	}
	.step-content li {
		width: 45%;
	}
}

@media (max-width:580px) {
}

@media (max-width:480px) {
	.step-content li {
		width: 49%;
	}
	.step1 li {
		width: 99% !important;
	}
	h1 {
		font-size: 1.25rem;
	}
}
@media (max-width:420px) {
}
@media (max-width:320px) {
	html {
		font-size: 12px;
	}
	.cta {
		margin-top: 10px;
	}
}

@media only screen and (orientation: landscape) {
}
@media only screen and (orientation: portrait) {
}

@media only screen and (max-width: 926px) and (orientation: landscape) { 
}

@media only screen and (max-height: 768px) and (orientation: landscape) {

	.step-item {
		position: relative;
		top: 10px;
		left: unset;
		transform: unset;
		margin-bottom: 100px;
	}

}

.click {
	text-decoration: none;
}