body{
	font-family: 'Lato', sans-serif;
	margin: 0px;
	padding: 0px;
	display: grid;
	grid-template-areas: 	"top"
							"ban"
							"inf"
							"reg"
							"foo";
}
h1,h2,h3,h4,h5,h6{
	padding: 0;
	margin: 0;
}
.error {
	color: red;
	height: 25px;
	line-height: 25px;
	font-size: 16px;
}

.email{
	color:#00a9a4;
}

.alert{
	font-size:18px;
	background: #e0f5f4;
	width:100%;
	padding:30px 0;
	margin:0;
	border-radius:10px;
	font-weight: 700;	
	color:#012d4e;
	display: none;
}

/* Container */

.container{
	max-width: 1000px;
	margin:0 auto;
	text-align: center;
}
#top{
	grid-area: top;
	height: 206px;
}
/* Nav */
#nav{
	background:white;
	height: 206px;
	text-align: center;
	position: fixed;
	width: 100%;
	z-index: 9999;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

	/* Logo */

	.logo{
		width:300px;
		margin:26px;
	}

	/* Menu */

	.menu{
		padding:26px 0;
	}

	.menu ul {
		display: flex;
		flex-direction:row;
		justify-content: space-around;
		list-style-type: none;
		margin: 0;
		padding: 0;
	}

	a{
		display: block;
		text-decoration: none;
		font-size:18px;
		color:#012d4e;
		font-family: 'Lato',sans-serif;
		font-weight: 700;
	}

/* Banner */

#banner{
	display: flex;
	align-items:center;
	justify-content: center;
	grid-area: ban;
	background:url('../img/banner.jpg');
	background-size: 100%;
	background-position: center;
	-webkit-box-shadow: inset 0px 0px 10px -2px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0px 0px 10px -2px rgba(0,0,0,0.75);
box-shadow: inset 0px 0px 10px -2px rgba(0,0,0,0.75);
	height: 370px;
	color:white;
}

#banner .title1{
	font-weight: 900;
	font-size:44px;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}
#banner .title2{
	font-weight: 500;
	font-size:44px;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}
#banner .box-title{
	background: white;
	font-family: 'Lato',sans-serif;
	font-weight: 900;
	font-size:28px;
	padding: 10px 24px;
	margin: 0 auto;
	margin-top:36px;
	color: black;
	width:450px;
	color: #00aaa4;
	border-radius:30px;
}

/* INFO */

#info{
	grid-area: inf;
	min-height: 100px;
}

#info .container{
	font-size: 24px;
	color: #012d4e;
	padding-top:50px;
}

#info .container a{
	display: block;
    background: #e0f5f4;
    border: 1px solid #00a9a3;
    border-radius: 40px;
    padding: 10px;
    color: #012d4e;
    width: 150px;
    margin: 20px auto;
}

	/* COST TABLE */

	#info .container .cost{
		padding-top: 20px;
	}
	
	#info .container .cost .cost-h{
		font-size:30px;
		color: #012d4e;
		text-transform: uppercase;
		border-bottom:2px solid #00a9a3;
		margin-top:50px;
		padding-bottom:10px;
	}

	#info .container .cost > table{
		margin-top:40px;
		width: 100%;
		border-spacing:5px;
		margin-bottom: 20px;
	}

	#info .container .cost > table tr td{
		font-size:16px;
		background: #e0f5f4;
		width:20%;
		padding:10px;
		height: 70px;
		margin:0;
		border-radius:10px;
		font-weight: 700;
	}
	#info .container .cost > table tr .h{
		font-size:14px;
		background: #a6e1df;
	}
	#info .container .cost p{
		font-size:14px;
		font-weight: 700;
		margin: 0;
	}
	#info .container .cost .list ol{
		width:51%;
		margin: 30px auto;
		font-weight: 700;
	}
	#info .container .cost .list ol li{
		text-align: left;
		font-size: 18px;
		color: #00a9a4;
	}
	#info .container .cost .list ol li span{
		text-align: left;
		font-size: 18px;
		color: #012d4e;
	}

	#info .container .cost .list ul{
		padding: 0;
		font-weight: 700;
		font-size:20px;
		text-align: center;
		list-style-position: inside;
	}
	#info .container .cost .list ul li{
		font-size: 25px;
		margin: 10px;
		color: #00a9a4;
	}
	#info .container .cost .list ul li span{
		font-size: 18px;
		margin-left: -10px;
		color: #012d4e;
	}
	#info .container .cost .list table{
		margin:30px auto;
		font-size:18px;
		text-align:left;
		font-weight: 700;
	}
	#info .container .cost .list table tr td:first-child{
		color: #00a9a4;
	}
	#info .container .cost .list table tr td:last-child{
		padding-left:20px;
	}
	#info .container .invoice{
		border-top:1px solid #00a9a3;
		margin-top:50px;
		margin-bottom:70px;
		padding-top:50px;
	}

	#info .container .invoice p{
		font-size:18px;
		font-weight: 500;
		margin: 20px 0;
	}

	#info .container .invoice p b{
		font-size:24px;
	}
	
/* REGISTER */

#register{
	grid-area: reg;
	min-height: 100px;
	/* background: #e2f3f2; */
}

#register hr{
	border-top: 2px solid #00a9a3;
}

#register .container h2{
	font-size:30px;
	font-weight: 500;
	color: #012d4e;
	margin:70px 0;
}

#register .container h3{
	font-size:16px;
	font-weight: 700;
	color: #012d4e;
	margin:30px 0;
}

#register .container button{
	display: inherit;
	border:0;
	background: #00a9a3;
	color:white;
	font-size:18px;
	padding: 16px 40px;
	font-weight: 700;
	border-radius: 40px;
	margin:30px auto 70px;
	-webkit-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
}
#register .container button:focus{
	outline:none;
}
#register .container button:hover{
	-webkit-box-shadow: inset 0px 0px 1px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px 0px 1px 0px rgba(0,0,0,0.75);
	box-shadow: inset 0px 0px 1px 0px rgba(0,0,0,0.75);
}

	/* RADIO */

	.radio-box{
		display: flex;
		align-items: flex-start;
		justify-content: center;
	}

	.radio-box .radio-col-4{
		width:33.33%;
	}
	.radio-box label{
		display: block;
		position: relative;
		margin-bottom: 12px;
		padding-left:35px;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		font-size:16px;
		color:#012d4e;
		font-weight: 700;
		text-align: left;
	}
	.radio-box label input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}
	.radio-box label .checkbox {
		position: absolute;
		top: -2px;
		left: 0;
		height: 25px;
		width: 25px;
		border: 1px solid #59c3bf;
		border-radius: 5px;
	}
	.radio-box label:hover input ~ .checkbox {
		/* background-color: #f0fffe; */
	}
	.checkbox:after {
		content: "";
		position: absolute;
		display: none;
	}
	.radio-box label input:checked ~ .checkbox:after {
		display: block;
	}
	.radio-box label .checkbox:after {
		left: 8px;
		top: 2px;
		width: 7px;
		height: 15px;
		border: solid #59c3bf;
		border-width: 0 3px 3px 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	/* Checkbox */

	.checkbox-container div{
		margin-bottom: 30px;
	}

	.checkbox-container .radio-col-12{
		width:100%;
	}
	.checkbox-container label{
		display: block;
		position: relative;
		margin-bottom: 12px;
		padding-left:35px;
		padding-right:35px;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		font-size:16px;
		color:#012d4e;
		font-weight: 700;
		text-align: left;
	}
	.checkbox-container label input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}
	.checkbox-container label .checkbox {
		position: absolute;
		top: -2px;
		left: 0;
		height: 25px;
		width: 25px;
		border: 1px solid #59c3bf;
		border-radius: 5px;
	}
	.checkbox-container label:hover input ~ .checkbox {
		/* background-color: #f0fffe; */
	}
	.checkbox:after {
		content: "";
		position: absolute;
		display: none;
	}
	.checkbox-container label input:checked ~ .checkbox:after {
		display: block;
	}
	.checkbox-container label .checkbox:after {
		left: 8px;
		top: 2px;
		width: 7px;
		height: 15px;
		border: solid #59c3bf;
		border-width: 0 3px 3px 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	/* Checkbox Payment*/

	.checkbox-payment{
		display: flex;
		align-items: flex-start;
		justify-content: space-evenly;
	}

	.checkbox-payment div{
		margin-top:20px;
	}
	.checkbox-payment label{
		display: block;
		position: relative;
		margin-bottom: 12px;
		padding-left:35px;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		font-size:16px;
		color:#012d4e;
		font-weight: 700;
		text-align: left;
	}
	.checkbox-payment label input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}
	.checkbox-payment label .checkbox {
		position: absolute;
		top: -2px;
		left: 0;
		height: 25px;
		width: 25px;
		border: 1px solid #59c3bf;
		border-radius: 5px;
	}
	.checkbox-payment label:hover input ~ .checkbox {
		/* background-color: #f0fffe; */
	}
	.checkbox:after {
		content: "";
		position: absolute;
		display: none;
	}
	.checkbox-payment label input:checked ~ .checkbox:after {
		display: block;
	}
	.checkbox-payment label .checkbox:after {
		left: 8px;
		top: 2px;
		width: 7px;
		height: 15px;
		border: solid #59c3bf;
		border-width: 0 3px 3px 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	/* Addons */

	.checkbox-addons{
		display: flex;
		align-items: flex-start;
		justify-content: space-evenly;
	}

	.checkbox-addons div{
		margin-top:20px;
	}
	.checkbox-addons label{
		display: block;
		position: relative;
		margin-bottom: 12px;
		padding-left:35px;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		font-size:16px;
		color:#012d4e;
		font-weight: 700;
		text-align: left;
	}
	.checkbox-addons label input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		height: 0;
		width: 0;
	}
	.checkbox-addons label .checkbox {
		position: absolute;
		top: -2px;
		left: 0;
		height: 25px;
		width: 25px;
		border: 1px solid #59c3bf;
		border-radius: 5px;
	}
	.checkbox-addons label:hover input ~ .checkbox {
		/* background-color: #f0fffe; */
	}
	.checkbox:after {
		content: "";
		position: absolute;
		display: none;
	}
	.checkbox-addons label input:checked ~ .checkbox:after {
		display: block;
	}
	.checkbox-addons label .checkbox:after {
		left: 8px;
		top: 2px;
		width: 7px;
		height: 15px;
		border: solid #59c3bf;
		border-width: 0 3px 3px 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	/* Form */
	.form-input{
		padding: 10px 10px;
		box-sizing: border-box;
	}

	input{
		width: 100%;
		padding: 15px;
		border: 1px solid #59c3bf;
		border-radius: 5px;
		background: none;
		font-size: 16px;
		color: #59c3bf;
		text-transform: uppercase;
	}
	textarea{
		width: 100%;
		padding: 15px;
		border: 1px solid #59c3bf;
		border-radius: 5px;
		background: none;
		font-size: 16px;
		color: #59c3bf;
		text-transform: uppercase;
		resize: none;
	}
	input:focus, textarea:focus {outline:none;}

	::-webkit-input-placeholder { /* Chrome/Opera/Safari */
		color: #59c3bf;
	}
	::-moz-placeholder { /* Firefox 19+ */
		color: #59c3bf;
	}
	:-ms-input-placeholder { /* IE 10+ */
		color: #59c3bf;
	}
	:-moz-placeholder { /* Firefox 18- */
		color: #59c3bf;
	}

	.col-6{
		width: 50%
	}
	.col-12{
		width: 100%
	}

	#register-personal div{
		display: flex;
		flex-wrap: wrap;
	}
	#register-company div{
		display: flex;
		flex-wrap: wrap;
	}

	#register-cost table{
		width: 100%;
		margin-top:30px;
		/* border-spacing: 0; */
		border-collapse:separate; 
		border-spacing: 0 5px;
	}
	#register-cost table thead tr td{
		color:#012d4e;
		font-size:14px;
		font-weight: 700;
		padding:15px;
	}
	#register-cost table tr td:first-child{
		text-align: left;
	}
	#register-cost table tr td:last-child{
		text-align: right;
	}
	#register-cost table tbody tr{
		color:#5ac3c0;
		text-transform: uppercase;
		font-size:20px;
	}
	#register-cost table tbody tr td:first-child{
		border-left: 1px solid #59c3bf;
		border-top: 1px solid #59c3bf;
		border-bottom: 1px solid #59c3bf;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	#register-cost table tbody tr td:last-child{
		border-right: 1px solid #59c3bf;
		border-top: 1px solid #59c3bf;
		border-bottom: 1px solid #59c3bf;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
	}
	#register-cost table tbody td{
		padding:15px;
	}
	#register-cost table tbody #total td{
		background: none;
		border:none;
	}
	#register-cost table tbody #total td:first-child{
		color: #012d4e;
		font-size: 14px;
		font-weight: 600;
	}
	#register-cost table tbody #total td:last-child{
		background: #e0f5f4;
		border-radius: 10px;
		color:#012d4e;
		font-size:20px;
		display:flex;
		justify-content:space-between;
	}

/* FOOTER */

#footer .container{
	display: flex;
	justify-content: center;
	padding:20px 0;
	font-size: 16px;
	color:#000000;
}
.one{
	width:33.33%;
	min-height: 300px;
}

.two{
	width:33.33%;
	min-height: 300px;
	border-left:3px solid #002f51;
}

.three{
	width:33.33%;
	min-height: 300px;
	border-left:3px solid #002f51;
}
.top{
	display:flex;
	align-items:center;
	justify-content: center;
	border-bottom:3px solid #002f51;
}
.bottom{
	display:flex;
	align-items:center;
	justify-content: center;
}

.one div,.two div,.three div{
	min-height: 150px;
	margin:10px;
}