*{
	margin:0px;
	padding:0px;
	box-sizing:border-box;
}
h1,h2,p,a{
	font-family:'Lato', sans-serif;
}
a{
	opacity:1;
	-moz-transition:
	-webkit-transition:all 1s ease;
	-moz-transition:all 1s ease;
	-ms-transition:all 1s ease;
	-o-transition:all 1s ease;
	transition: all 1s ease;
}
a:hover{
	opacity: .25;
}
/* ********************** RESPONSIVE ******************** */
@media screen and (max-width: 1024px){
	body{
		width:100%;
	}
}


/* *******************************************************
						HEADER
******************************************************** */
nav.menu{
	background-color:#000;
	width:100%;
	height:50px;
}
.menu ul{
	display:flex;
}
.menu ul li a{
	list-style: none;
	text-decoration: none;
	color:#fff;
	line-height: 50px;
	margin:30px;
	padding-left:90px;
}
/* ******************* RESPONSIVE ************************ */
@media screen and (max-width: 1024px){
	nav.menu{
		height: 100%;
		text-align: center;
	}
	.menu ul{
		flex-direction: column;
	}
	.menu ul li a {
		padding-left: 4px;
		font-size: 1.1em;
		text-transform: uppercase;
	}
}


/* ********************************************************
						SECTION
********************************************************* */
section{
	background-color: #f8f5f5;
	width:100%;
	height: 1200px;

}
.contact{
	margin-left:20vw;
	padding-top: 10vh;
}
.contact h1{
	text-transform: uppercase;
	font-size: 2.4em;
	letter-spacing: 1px;
}
.contact p{
	white-space: pre;
	margin-top: 2vh;
}
.contact p.tarif{
	font-size: 0.8em;
}
/* ******************* RESPONSIVE ************************ */
@media screen and (max-width: 1024px){
	section{
		height:1250px;
	}

}

/* ********************************************************
						FOOTER
********************************************************* */
.footer{
	background-color: #000;
	height: 10%;
}
.footer ul{
	display:flex;
	justify-content: space-around;
	height: 35px;
}
.footer li a{
	color:#fff;
	line-height: 35px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size:0.6em;

}
/* ******************* RESPONSIVE ************************ */
@media screen and (max-width: 1024px){
	.footer{
		text-align: center;
	}
	.footer ul{
		margin: 1vh;
		height:auto;
		display: inline-flex;
		flex-direction: column;
	}
	.footer ul li a {
		font-size: 1.1em;
	}
}
