*{
	margin:0px;
	padding:0px;
	box-sizing:border-box;
}
h1,h2,h3,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: 1200px){
	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: 1200px){
	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
********************************************************* */
.presentation{
	display:flex;
}
/* ******************* RESPONSIVE ************************ */
@media screen and (max-width: 1024px){
	.presentation{
		display:inline-flex;
		flex-direction: column;
		width: 100%;
	}
}


/* ******************************** LEFT *********************** 
***************************************************************** */
.presentation .left{
	background:url(../ressources/imac.JPG) no-repeat;
	background-size: 100% 100%;
	width:100%;
	height:1200px;
}

/* ******************* RESPONSIVE ************************ */
@media screen and (max-width: 1024px){
	.left{
		background-position: right;
		width: 100%;
		background-size: cover;
		padding-left: 10vw;
	}
	.presentation .left p{	
	padding: 5vw;
	font-size: 1.2em;
	font-weight: bold;
	}
}


/* ****************************** RIGHT ***********************
*************************************************************** */
.presentation .right{
	background-color:#f8f5f5;
	width:100%;
	padding-top:10vh;
	z-index: 90;
}
.presentation .right h1{
	text-transform:uppercase;
	font-size:2.4em;
	margin-left: 5vw;
}
.presentation .right h2{
	text-transform:uppercase;
	font-size:1.2em;
	margin-left: 5vw;
}
.presentation .right h3{
	font-size:1em;
	margin-left: 5vw;
}
.presentation .right p{
	margin:40px;
	margin-right: 15vw;
	margin-left: 5vw;
	text-align: justify;
}
/* ******************* RESPONSIVE ************************ */
@media screen and (max-width: 1024px){
	.right{
		width: 100%;
		margin:auto;
		padding-left: 6vw;
	}
	.presentation .right p{
	text-align: left;
	}
}
/* **************************** BUTTON *********************** */
.presentation  p.mention{
	text-align: center;
	font-size: 0.8em;
}
.presentation  p.mention a{

	font-size: 0.8em;
}
.presentation .right a{
	background-color: #8abd24;
	text-decoration: none;
	text-transform:uppercase;
	font-family:'Lato', sans-serif;
	font-size: 1.4em;
	color:#fff;
	z-index:99;

}
.presentation .right a.button-link{
	display: inline-block;
	justify-content: space-between;
	padding: 20px 100px;
	border-radius: 15px 15px 15px 15px;
	margin: 10vh 15vw;
}

/* ******************* RESPONSIVE ************************ */
@media screen and (max-width: 1024px){
	.presentation .right a.button-link{
	z-index: 99;
	padding:4% 8%;
	margin-left: 25%;
	}
	.presentation .right a{
	font-size: 1.8em;
	}

}
/* ********************************************************
						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;
	}
}