/*GENERAL*/

*{
	margin: 0;
	padding: 0;
}

body{
	font-family: arial, sans-serif;
	font-size: 15px;
}

h1{
	font-family: "crete round", serif;
	font-size: 45px;
}

h2{
	font-size: 55px;
}

h3{
	font-size: 24px;
}

h1, h2, h3{
	color: #444;
}

h2, h3{
	text-transform: uppercase;
	margin-bottom: 20px;
}

p{
	line-height: 20px;
	color: #777;
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
	color: #444;
}

.wrapper{
	width:80%;
	margin: 0 auto;
	padding: 0 10px;
}

.box{
	display: flex;
}

.orange{
	color: #ff7a00;
}


/*HEADER*/

header{
	height: 120px;
}

header h1{
	float: left;
	margin-top: 32px;
}

header nav{
	float: right;
	margin-top: 50px;
}

header nav ul li{
	display: inline-block;
	margin-right: 20px;
	float: left;
}

header nav ul li a{
	text-transform: uppercase;
	font-weight: bold;	
}


/*SECTION main-image*/

#main-image{
	height: 580px;
	background: url("imgs/main.jpg") center;
}

#main-image h2{
	text-align: center;
	padding: 150px 0 40px 0;
}

.non-gras{
	font-weight: normal;
}

.button1{
	display: block;
	width: 120px;
	height: 50px;
	background-color: #ff7a00;
	color: #fff;
	font-size: 20px;
	margin: 0 auto;
	line-height: 50px;
	text-align: center;
	border-radius: 3px;
}

.button1:hover{
	background-color: #02b8dd;
	text-decoration: none;
}


/*SECTION steps*/

#steps p{
	margin-bottom: 20px;
}

#steps ul{
	margin: 80px 0;
}

#steps ul li{
	width: 30%;
	float: left;
	padding-top: 140px;
	text-align: center;
	margin-right: 10px;
}

@media (max-width: 650px){
	#steps ul li{
		width: 100%;
	}
}

.clear{
	clear: both;
}

#step1{
	background: url(imgs/steps-icon-1.png) no-repeat top center;
}

#step2{
	background: url(imgs/steps-icon-2.png) no-repeat top center;
}

#step3{
	background: url(imgs/steps-icon-3.png) no-repeat top center;
}


/*SECTION options*/

#article1{
	background: url("imgs/article-image-1.jpg");
	background-size: cover;
	margin-right: 20px;
}

#article2{
	background: url("imgs/article-image-2.jpg");
	background-size: cover;
}

#options{
	background-color: #efefef;
	padding: 60px 0;
}

#options article{
	margin: 0 auto 2rem auto;
	max-width: 460px;
	min-width: 380px;
	height: 270px;
	border-radius: 10px;
}

.overlay{
	background: rgba(255,255,255,0.95);
	width: 50%;
	height: 100%;
	padding: 20px;
	border-radius: 10px 0 0 10px;
	box-sizing: border-box;
}

#options article h3{
	text-align: center;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}

#options article p{
	text-align: center;
	margin-bottom: 20px;
}

.button2{
	display: block;
	width: 150px;
	height: 30px;
	background-color: #ff7a00;
	color: #fff;
	font-size: 20px;
	margin: 0 auto;
	line-height: 30px;
	text-align: center;
	font-size: 1em;
	border-radius: 3px;
}

.button2:hover{
	background-color: #02b8dd;
	text-decoration: none;
}


/*SECTION contact*/

#contact{
	padding: 60px 0;
	text-align: center;
}

#contact h3{
	width: 400px;
	font-size: 30px;
	border-bottom : 1px solid #02b8dd;
	padding-bottom: 20px;
	margin: 0 auto 20px auto;
}

form{
	margin: 60px 0 20px 0;
}

label{
	font-weight: bold;
	font-size: 20px;
	margin-right: 10px;
	color: #777;
}

input{
	padding: 10px;
	font-size: 20px;
	margin-right: 20px;
	border: 2px solid #ddd;
	border-radius: 3px;
}

@media (max-width: 768px) {
	#name, #email {
		margin-bottom: 1rem;
	}
}

.button3{
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 10px;
	background-color: #02b8dd;
	border-style: none;
	border-radius: 3px;
}

@media (min-width:768px) and (max-width: 890px){
	.button3{
		margin-top: 35px;
	}
}

.button3:hover{
	color: #fff;
	background-color: #444;
	text-decoration: none;

}


/*FOOTER*/

footer{
	height: 200px;
	background-color: #444;
	text-align: center;
}

footer h1{
	color: #fff;
	padding-top: 30px;
}

footer p{
	font-weight: bold;
	padding-top: 30px;
	color: #777;
}