* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:focus {
    outline: 0
}

img {
    border: none;
    display: block
}

ol,
ul {
    list-style: none;
	padding: 0;
	margin: 0;
}

iframe {
    border: none !important;
    width: 0 !important;
    height: 0 !important
}

a {
    cursor: pointer !important;
	color: #000;
}
body,
html {
    height: 100%;
	min-height: 100%;
}
video {
	width: 100%;
	object-fit: cover;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    color: #006DDB;
	background: #f4f6fa;
	letter-spacing: -.5px;
}
.container {
	width: 100%;
	height: 100%;
	position: relative;
	text-align: center;
	transition: transform 0.4s ease;
}
.step-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 96%;
	max-width: 700px;
}
.logo {
	width: 96%;
	height: auto;
	display: inline-block;
	padding: 20px 0;
}
header {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	display: none
}
header .logo {
	max-width: 350px;
	padding: 5px 0;
}
h2,
h1 {
	display: inline-block;
	width: 100%;
	padding: 20px 0;
	font-weight: 700;
}
h1 span {
	color: #232323;
	padding: 15px;
}
h2 {
	font-size: 3rem;
	font-weight: 700;
}
h3 {
	font-size: 2rem;
	padding: 15px;
}
a.btn {
  text-decoration: none;
}
.btn {
	transition: all .3s ease;
	font-size: 2rem;
	font-weight: 700;
	padding: 25px 0;
	width: 90%;
	max-width: 400px;
	text-align: center;
	border-radius: 40px;
	color: #fff;
	display: inline-block;
	background: #006DDB;
	text-transform: uppercase;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	cursor: pointer;
	margin: 10px 0 0;
}
.btn.small {
	width: 45%;
	max-width: 200px;
	margin: 20px 10px 0;
}
.btn.no {
	background: #232323;
}
.btn:hover {
	transform: scale3d(1.05, 1.05, 1.05);
	background: #000;
}
div[data-effect="right"] {
	transform: translateY(-100%);
}

.counter {
	color: #333;
	font-weight: 600;
	padding: 20px 0 0;
}
.counter span {
	color: #006DDB
}

.pulse {
    animation-name: pulse;
	animation-duration: 1s;
    animation-fill-mode: both;
	animation-iteration-count: infinite;
}

.container UL {
	width: 98%;
	max-width: 600px;
	display: inline-block
}
.container LI {
	display: inline-block;
	margin: 8px;
}
.container LI IMG {
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.55);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.55);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.55);
	width: 140px;
}

ul.big {
	max-width: 800px;
}
ul.big li {
	vertical-align: middle;
	font-size: 10rem;
	color: #000;
	font-weight: 700;
	margin: 0;
}
ul.big LI IMG {
	width: 235px;
}
ul.big li span {
	font-size: 2rem;
}

ul.small {
	max-width: 450px;
}
ul.big li,
ul.small li {
	position: relative;
}
ul.small li img {
	max-width: 115px;
}
ul.big span,
ul.small span {
	position: absolute;
	left: 0;
	bottom: 5px;
	text-align: center;
	width: 100%;
	color: #fff;
	font-weight: 600;
}

input[type=email],
input[type=tel] {
	width: 98%;
	max-width: 360px;
	padding: 15px 0;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	border: 2px solid #ccc;
}

.step9 P {
	width: 100%;
	margin: 20px 0;
	display: block
}
.step9 span {
	width: 100%;
	display: block;
	color: #000;
	font-weight: 600;
}
.err {
    color: red !important;
    background: #ffcdd2;
    border: 2px solid #f00 !important;
}
.step9 .disclosure {
	font-size: .625rem;
	max-width: 340px;
	text-align: justify;
	display: inline-block
}
footer {
    background-color: inherit;
    color: #000;
    text-align: center;
    position: relative;
		bottom: 0px;
    width: 100%;
	padding: 20px 0 40px;
	font-size:11px;
	margin: 15px 0 0;
	font-family: 'Arial', sans-serif;
}
footer a {
	color: #000;
	text-decoration: none;
}
footer a:hover {
	color: #0000EE;
	text-decoration: none;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@media only screen and (max-width:720px) {
	ul.big li img {
		max-width: 135px;
		height: auto;
	}
	ul.big li span {
		font-size: 1rem;
	}
}

@media only screen and (max-width:480px) {
	header .logo {
		max-width: 250px;
	}
	h2,
	h1 {
		padding: 10px 0;
	}
	h2 {
		font-size: 2rem;
	}
	.btn.small {
		width: 40%;
	}
	.container:not(.step1) .step-container {
		position: relative;
		top: inherit;
		left: inherit;
		transform: none;
		margin-bottom: 50px;
	}
	header {
		position: relative;
		top: inherit;
		left: inherit;
	}
	ul.big li {
		font-size: 5rem;
	}
}

@media only screen and (max-width:420px) {
	.counter,
	h1 {
		font-size: 1rem;
	}
	h3,
	h1 span {
		font-size: 1.25rem;
	}
	ul.normal li,
	ul.small li {
		width: 28% !important;
		margin: 2px;
	}
	ul.normal li img,
	ul.small li img {
		width: 100%;
	}
	h3,
	h2,
	h1 {
		line-height: 1.5625rem;
	}
	header .logo {
		padding: 0;
	}
	.btn.small {
		margin: 5px 10px 0;
		padding: 15px 0;
	}
	.counter {
		padding: 5px 0 0;
	}
	header .logo {
		max-width: 200px;
	}
}

@media only screen and (max-width:320px) {
	h1 span {
		font-size: 1.25rem;
	}
	ul.big li {
		font-size: 2rem;
	}
	.container:not(.step1) .step-container {
		width: 100%
	}
	.step7 h2 {
		font-size: 1.5rem;
	}
}

@media only screen and (max-height:920px) {
	.container:not(.step1) .step-container {
		position: relative;
		top: inherit;
		left: inherit;
		transform: none;
		margin-bottom: 50px;
		display: inline-block
	}
	header {
		position: relative;
		top: inherit;
		left: inherit;
	}
}

.sk-circle {
  margin: 100px auto;
  width: 120px;
  height: 120px;
  position: relative;
}
.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #006DDB;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
          animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg); }
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg); }
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg); }
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg); }
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg); }
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg); }
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg); }
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); }
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
