*{
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}
body {
	color: #333333;
	font-family: Century Gothic, Helvetica, sans-serif;
	font-size: 16px;
}
nav{
	background: linear-gradient(35deg,#28B463,#5DADE2);
	height: 100px;
	width: 100%;
}
.logo{
	color: white;
	font-size: 35px;
	font-weight: bold;
	padding: 10px 100px;
}
label.fpp{
	color: white;
	font-size: 20px;
	font-weight: bold;
	padding: 0 100px;
}
nav ul{
	float: right;
	margin-right: 20px;
}
nav ul li{
	display: inline-block;
	line-height: 20px;
	margin: 0px 5px;
}
nav ul li a{
	color: white;
	font-size: 17px;
	padding: 7px 13px;
	border-radius: 10px;
	text-transform: uppercase;
}
a.active,a:hover{
	background: #28B463;
	transition: .5s;
}
.checkbtn{
	font-size: 30px;
	color: white;
	float: right;
	line-height; 80px;
	margin-right: 40px;
	cursor: pointer;
	display: none;
}
#check{
	display: none;
}
@media (max-width: 952px){
	.logo{
	font-size: 30px;
	padding-left: 10px;
}
label.fpp{
	font-size: 15px;
	padding-left: 10px;
}
nav ul li a{
	font-size: 16px;
	}
}
@media (max-width: 858px){
	.checkbtn{
	display: block;
}
ul{
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #10777a;
	top: 100px;
	left: -100%;
	text-align: center;
	transition: all .5s;
}
nav ul li{
	display: block;
	margin: 50px 0;
	line-height: 30px;
}
nav ul li a{
	font-size: 20px;
}
a:hover,a.active{
	background: none;
	color: #5DADE2;
}
#check:checked ~ ul{
	left: 0;
	}
img {
    padding: 0;
    display: block;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
}
}
section{
	background: #222a45 no-repeat;
	background-size: cover;
	height: 100%;
	color: white;
}
section form p, button{
	margin-left: 100px;
}
section form button{
	color: white;
	font-size: 17px;
	padding: 7px 13px;
	border-radius: 10px;
	text-transform: uppercase;
	background: #28B463;
}
section p a{
	color: white;
	font-size: 17px;
	padding: 4px 10px;
	border-radius: 10px;
}