html, body {
	background-color: #FFFFFF;
	font-family: Helvetica, "Helvetica Neue", Arial, "sans-serif";
	width:100%;
	height:100%;
}

 *{
	margin:0;
	padding:0;
}

a{
	text-decoration: none;
}

/* Typographie */

h1{
	font-family: helvetica, arial, sans-serif;
	text-align:left;
	font-weight: lighter;
	font-size: 1.2em;
}

h2{
	font-family: helvetica, arial, sans-serif;
	justify-content: center;
	text-align: center;
	font-size: 1.2em;
}

/* Header */

 header{
	 position:fixed;
	 height:6%;
	 width:100%;
	 background:#fff;
	 z-index:100;
	 padding: 2% 4% 0;
	 left:0;
	 top:0;
}

#logo {
	position:fixed;
	float: left;
	width: 50%;
}

header #logo a{
	text-decoration:none;
	font-size: 1.2em;
	color: black;
	font-family: helvetica, arial, sans-serif;
}

header #logo a:hover{
	text-decoration: none;
	color: black;
}

header #logo a:active{
	text-decoration: none;
	color: black;
}

header #logo a img {
	float: left;
	margin-right: 2%;
	max-height: 25px;
	max-width: 25px;
}

/* Menu BURGER */

#menu{
	display: none;
}

ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

#menu ul li {
	float: right;
	margin-left:5%;
}

#menu ul li a{
	float: right; 
	color:black;
	text-decoration:none;
	text-align:center;
	font-size: 0.8em;
	font-family: helvetica, arial, sans-serif;
 }

#menu ul li a:active{
	text-decoration: none;
	color: black;
}

#menu ul li a:hover{
	text-decoration: none;
	color: black;
}

#phone{
	display: block;
}

.burger {
	position: absolute;
	z-index: 110;
	right: 3%;
	top: 30%;
	cursor: pointer;
	-webkit-transform: rotateY(0);
			transform: rotateY(0);
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
			transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger__patty {
	width: 28px;
	height: 2px;
	margin: 0 0 4px 0;
	background: black;
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
			transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger__patty:last-child {
	margin-bottom: 0;
}

.burger--close {
	-webkit-transform: rotate(180deg);
			transform: rotate(180deg);
}

.burger--close .burger__patty:nth-child(1) {
	-webkit-transform: rotate(45deg) translate(4px, 4px);
			transform: rotate(45deg) translate(4px, 4px);
}

.burger--close .burger__patty:nth-child(2) {
	opacity: 0;
}

.burger--close .burger__patty:nth-child(3) {
	-webkit-transform: rotate(-45deg) translate(5px, -4px);
			transform: rotate(-45deg) translate(5px, -4px);
}

.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	visibility: hidden;
}

.menu--active {
	visibility: visible;
}

.menu__brand, .menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: column wrap;
		flex-flow: column wrap;
	-webkit-box-align: center;
		-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
	justify-content: center;
	float: left;
	width: 50%;
	height: 100vh;
	overflow: hidden;
}

.menu__list {
	margin: 0;
	padding: 0;
	background: #fff;
	list-style-type: none;
	height: 75vh;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
			transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu__list--active {
	-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
}

.menu__brand {
	background: #efefef;
	height: 25vh;
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
			transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transform: translate3d(100%, 0, 0);
			transform: translate3d(100%, 0, 0);
}

.menu__brand--active {
	-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
}

.menu__item {
	-webkit-transform: translate3d(500px, 0, 0);
			transform: translate3d(500px, 0, 0);
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
			transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu__item--active {
	-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
}

.menu__link {
	text-decoration: none;
	display: inline-block;
	position: relative;
	font-size: 24px;
	padding: 15px 0;
	font-weight: 300;
	color: #000000;
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
			transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu1, .menu2, .menu3, .menu4{
	text-decoration: none;
}

.menu__link:before {
	text-decoration: none;
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 10px;
	height: 2px;
	background: #000;
	-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
			transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu__link:hover:before {
	width: 100%;
	text-decoration: none;
}

.menu__link:hover{
	text-decoration: none;
	color: #000000;
}

.menu__link:active{
	text-decoration: none;
	color: #000000;
}

.menu .menu__item:nth-child(1) {
	-webkit-transition-delay: 0.1s;
			transition-delay: 0.1s;
}

.menu .menu__item:nth-child(2) {
	-webkit-transition-delay: 0.2s;
			transition-delay: 0.2s;
}

.menu .menu__item:nth-child(3) {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}

.menu .menu__item:nth-child(4) {
	-webkit-transition-delay: 0.4s;
			transition-delay: 0.4s;
}

.menu .menu__item:nth-child(5) {
	-webkit-transition-delay: 0.5s;
			transition-delay: 0.5s;
}

.menu .menu__item:nth-child(6) {
	-webkit-transition-delay: 0.6s;
			transition-delay: 0.6s;
}

ul.menu__list, div.menu__brand {
	float: none;
	width: 100%;
	min-height: 0;
  }

ul.menu__list--active, div.menu__brand--active {
	-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
  }

.menu__brand .logo {
    width: 90px;
    height: 90px;
  }

.logo {
	width: 200px;
	height: 200px;
	border-radius: 50%;
}

/* Body */

#section-1, #section-4{
	position:relative;
	height: 100%;
}

#section-2, #section-3{
	display: flex;
}

.mydiv {
	position:inherit;
	height: auto;
	width: 100%;
	color: #000000;
	display: flex;
	background-color: #fff;
	padding:0 3%;
}

.corp{
	height: 100%;
	width: 100%;
	color: #000000;
	align-items: center;
	justify-content: center;
	background-color: #EFEFEF;
}
.milieu {
    position:absolute;
	text-align: center;
    left: 50%;
    top: 50%;
}

/* Accueil */

.center {
    position:absolute;
    left: 50%;
    top: 50%;
    max-width: 200px;
    max-height: 200px;
    margin-left: -100px;
    margin-top: -100px;
}

/* Présentation */

.vertical{
	margin:5% auto 0;
	text-align: center;
}

.flex-title{
	margin-bottom: 2%;
}

.flex-contenue{
	margin:5% auto;
	width: 80%;
}

#presentation{
	margin:15% auto 0;
	width: 100%;
	display: inherit;
}

#presentation1{
	width: 90%;
	margin:0 auto;
	float:none;
}

#presentation1 img{
	max-height: 100%;
	max-width: 100%;
}

#presentation2{
	width: 90%;
	margin:10% auto 10%;
	font-family: Helvetica, Arial, sans-serif;
	text-align:left;
  	font-size: 1em;
	float:none;
}


/* PORTEFOLIO */

.gallery img:hover {
	opacity: 0.4;
}

/* CONTACT */

#contact{
	margin:10% auto 0;
	display: inherit;
}

#contact1{
	float: none;
	width: 100%;
	border-right: none;
	padding-right: 0;
}

#contact1 img{
	height: 100%;
	width: 100%;
	margin-bottom: 10%;
}

#contact2{
	float: none;
	width: 90%;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
  	font-size: 1.1em;
	text-align:left;
}

#contact2 p a{
	text-decoration: none;
	color: black;
}

#reseaux a{
	float: left;
	margin-right: 3%;
}

#reseaux a img{
	max-height: 25px;
	max-width: 25px;
}

/* Footer */ 

footer{
	position: fixed;
	left: 0;
	bottom: 0;
	height: 6%;
	width: 100%;
	padding:2% 3% 0;
	background: #fff;
	z-index: 100;
}

#social{
	position: fixed;
	width: 100%;
	right: 0;
	margin-bottom: 1%;
	margin-right: 3%;
}

#social a img{
	float: right;
	margin-left: 3%;
	max-height: 22px;
	max-width: 22px;
}

#social a:hover img{
	max-height: 22px;
	max-width: 22px;
}

/* PROJET */

#section-p {
	position: relative;
	width: 100%;
	color: #000000;
	display: flex;
	background-color: #fff;
	padding:0 3%;
}

#corp{
	width: 100%;
	color: #000000;
	align-items: center;
	justify-content: center;
	background-color: #EFEFEF;
	padding: 5%;
}
#video{
	margin:6% auto 0;
	max-width: 800px;
}

#max-projet{
	max-width: 800px;
	height: auto;
	margin: 3% auto 0;
}

#projet-presentation{
	width: 100%;
	overflow: none;
}

#information{
	width: 100%;
	float: none;
}

#information h1{
	font-family: helvetica, arial, sans-serif;
	text-align:left;
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 0;
    padding-bottom: 0.3em;
    margin-top: 0;
    margin-bottom: 0;
}

#information h2{
	font-family: helvetica, arial, sans-serif;
	text-align:left;
	font-size: 1em;
	padding-top: 0;
    padding-bottom: 0.8em;
    margin-top: 0;
    margin-bottom: 0;
}

#information h3{
	font-family: helvetica, arial, sans-serif;
	text-align:left;
	font-weight: bold;
	font-size: 1em;
	padding-top: 0;
    padding-bottom: 0.2em;
    margin-top: 0;
    margin-bottom: 0;
}

#information p{
	font-family: helvetica, arial, sans-serif;
	text-align:left;
	font-size: 0.8em;
	padding-top: 0;
    padding-bottom: 0.6em;
    margin-top: 0;
    margin-bottom: 0;
}

#texte{
	width: 100%;
	float: none;
}

#texte h3{
	font-family: helvetica, arial, sans-serif;
	text-align:left;
	font-weight: bold;
	font-size: 1em;
	padding-top: 0;
    padding-bottom: 0.3em;
    margin-top: 0;
    margin-bottom: 0;
}

#texte p{
	font-family: helvetica, arial, sans-serif;
	text-align:left;
	font-size: 0.8em;
	padding-top: 0;
    padding-bottom: 0.6em;
    margin-top: 0;
    margin-bottom: 0;
}

#double{
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin-top: 3%;
}

#gauche{
	width: 48%;
	float: left;
}

#droite{
	width: 48%;
	float: left;
	margin-left: 4%;
}

#text2{
	width: 100%;
	margin: 3% 0 0;
}

#text2 h3{
	font-family: helvetica, arial, sans-serif;
	text-align:left;
	font-weight: bold;
	font-size: 1em;
	padding-top: 0;
    padding-bottom: 0.3em;
    margin-top: 0;
    margin-bottom: 0;
}

#text2 p{
	font-family: helvetica, arial, sans-serif;
	text-align:left;
	font-size: 0.8em;
	padding-top: 0;
    padding-bottom: 0.8em;
    margin-top: 0;
    margin-bottom: 0;
}