@charset "UTF-8";



								/* http://meyerweb.com/eric/tools/css/reset/ 
  								 v2.0 | 20110126
  								 License: none (public domain)
								*/



								/* Reset du css*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
									/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* permet de ne pas rajouter les margin ou padding à la taille des éléments 
afin qu'il ne déborde des dimenssions de la page*/
*{
	box-sizing:border-box;
}
/* clearfix hack de nicolas gallagher pour enlever le flottement des blocks */

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf::before,
.cf::after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf::after {
    clear: both;
}

/* global */
body{
	overflow-x: hidden;
}

p {
	font-size: 20px;
	font-family: 'Nunito', Arial, sans-serif;
	font-weight: 300;

}
a {
  text-decoration: none;
  color: #fff;
  font-family: 'Epic fusion', 'Arial', sans-serif;
  font-size: 20px;
  transition: color 0.3s ease;
}

h1{
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 50px;
	text-transform:uppercase;
	color: #190011;
	text-align: center;
	margin-bottom: 80px;
}

h2{
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 35px;
	text-transform:uppercase;	
}

h3{
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 35px;
	text-transform:uppercase;
	color: #fff;
}

h4{
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 25px;
	text-transform:uppercase;
	color: #190011;
}

h5{
	font-size: 35px;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	margin: 15px 0 15px 0;
	text-align: center;
}

span {
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 16px;
	text-transform:uppercase;
	color: #720011;
	margin-left: 10px;
}

.wraper {
	width: 1280px;
	margin: auto calc(50% - 640px);
}

.box {
	margin-bottom: 80px;
	display: block;
	text-align: center;
	width: 100%;
}

/*header*/

header{
	position: fixed;
	top: 0;
	height: 50px;
	width: 100%;
	z-index: 1000;
}

.logo{
	float: left;
	margin-top: 10px;
	width: 50%;
}
.logo img{
	float: left;
	margin-left: 35%;
	margin-right: 30px;
}
.logo p{
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 15px;
	color: #fff;
	border-left: 2px solid #fff;
	padding-left: 30px;
	line-height: 30px;
	float: left;
	text-transform: uppercase;
}

#navbar{
	background-color: #190011;
	height: 50px;
}
#navbar input{
	background-image: url(../img/burgermenu.png);
	background-color: #190011;
	width: 40px;
	height: 25px;
	border: none;
	display: none;
	float: right;
	margin-top: 15px;
	margin-right: 40px;
}
.menu{
	width: 50%;
	position: absolute;
	padding-left: 300px;
	left: 50%;
	top: 0;
}

.menu>li:last-chid{
	width: 100px;
	float: right;
}

.menu>li:first-child{
	border-right: 2px solid #fff;
	padding-right: 20px;
	float: left;
	position: relative;
}
.menu>li>a{
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 15px;
	margin-left: 20px;
	color: #fff;
	line-height: 50px;
	padding: 15px 20px;
}

.menu li:hover .sous-onglet{
	display: block;	
}
.sous-onglet{
	background-color: #720011;
	position: absolute;
	top: 50px;
	right: 0px;
	display: none;	
}
.sous-onglet li{
	text-align: center;
}
.sous-onglet li a{
	font-size: 15px;
	line-height: 40px;
	padding: 10px 25px;
	margin: 0;	
	text-transform: uppercase;
	color: #fff;
}
.sous-onglet>li:first-child{
	position: relative;
}
.sous-onglet li:hover{
	background-color: #fff;
}
.sous-onglet a:hover{
	color: #720011;
}
.sous-sous-onglet{
	background-color: #a05f11;
	position: absolute;
	top: 0px;
    right: 135px;
    width: 160px;
    display: none;
}

.sous-onglet>li:first-child:hover .sous-sous-onglet{
	display: block;
}
.sous-sous-onglet li:hover{
	background-color: #fff;
}
.sous-sous-onglet li:hover a{
	color: #a05f11;
}
#menuToggle
{
display: none;
    position: relative;
    top: -37px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle input
{
display: block;
    width: 40px;
    height: 32px;
    margin-left: 260px;
    position: absolute;
    top: -10px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

#menuToggle span
{
  display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    margin-left: 260px;
    position: relative;
    background: #fff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(1,1,1,1.0),
 background 0.5s cubic-bezier(1,1,1,1.0),
 opacity 0.55s ease;
}
#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}
#menu-burger
{
  position: absolute;
  width: 300px;
  height: 183px;
  right: 0;
  margin: -50px 0 0 0;
  text-align: center;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(0, -100%);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu-burger li
{
  font-size: 22px;
  padding: 20px 0;
  background-color: #190011;
}
#menu-burger li:first-child
{
	margin-top: 60px;
}
#menuToggle input:checked ~ ul
{
  transform: none;
}

#menu-burger li:hover{
	background-color: #fff;
}
#menu-burger li:hover a{
	color:#190011;
}




/* main */

main{
	margin-top: 50px;
	z-index: 1;
}
main img{
	white-space: nowrap;
}
.pres{
	background-image: url(../img/fond-header.jpg);
	height: 642px;
	border-bottom: 4px solid #720011;
	position: relative;
	z-index: 1;
}
.pres p{
	width: 430px;
	position: absolute;
	left: 145px;
	top: 210px;
	line-height: 45px;
	color: #fff;
	z-index: 1;
	text-align: center;
}

.dessinateur{
	position: relative;
}
.dessinateur img{
	white-space: nowrap;
	margin-left: calc(50% - 600px);
	height: 640px;
}
/* nav */
nav{
	z-index: 2;	
}
.nav{
	overflow: hidden;
	margin-left: calc(50% - 600px)

}

.nav h2{
	color: #fff;
}
.triangle{
	height: 180px;
}

.twebdesign, .ttransport, .tgraphisme{
	width: 400px;
	max-height: 300px;
	float: left;
	position: relative;
    top: -120px;
	transition-property: transform;
    transition-duration: 0.6s;
    transition-timing-function: ease;
    overflow: hidden;
   }

.twebdesign p, .ttransport p, .tgraphisme p{
	text-align: center;
    font-size: 90px;
    color: #fff;
}
.twebdesign p{
	background-image: url(../img/trianglev.png);
	width: 400px;
	height: 180px;
}
.tgraphisme p{
	background-image: url(../img/trianglej.png);
	width: 400px;
	height: 180px;
}
.ttransport p{
	background-image: url(../img/triangler.png);
	width: 400px;
	height: 180px;
}
.twebdesign a, .ttransport a, .tgraphisme a{
	text-align: center;
	width: 400px;
	line-height: 120px;
	display: inline-block;
}
.twebdesign a{
	background-color: #190011;
}
.ttransport a{
	background-color: #720011;
}
.tgraphisme a{
	background-color: #a05f11;
}

.twebdesign:hover, .ttransport:hover, .tgraphisme:hover{
	transform: translateY(120px);
}


/*main*/


/*savoir faire */



#skills{
	margin-bottom: 100px;
	width: 100%;
}
.savoirfaire{
	margin-left: calc(50% - 600px);
	width: 1200px;
	height: 400px;
}

.savoirweb li:first-child{
	margin-top: 0;
}

.savoirweb li{
	margin: 30px 0 30px 0;
}

.savoirweb li:nth-child(2){
	margin-top: 90px;
}
.savoirweb p, .savoirpao p, .savoiralamain p{
	display: none;
	color: #fff;
	font-size: 18px;
	width: 400px;
}
.savoirweb p{
	margin-bottom: 15px;
}

.savoirpao li:nth-child(2){
	margin-top: 100px;
}
.savoirpao p{
	margin-top: 30px;
}
.savoiralamain p{
	margin-top: 30px;
}
.savoiralamain li:nth-child(0n+2){
	margin-top: 90px;
}

.savoirfaire ul{
	float: left;
	width: 400px;
	height: 400px;
}

main .savoirfaire ul li h3{
	text-align: center;
	line-height: 400px;
}


.savoirweb{
	background-image: url(../img/imgweb.png);
}
.savoirpao{
	background-image: url(../img/imgpao.png);
}
.savoiralamain{
	background-image: url(../img/imgalamain.png);
}
.savoirweb:hover{
	background-image: url(../img/hoverimgweb.png);
}
.savoirpao:hover{
	background-image: url(../img/hoverimgpao.png);
}
.savoiralamain:hover{
	background-image: url(../img/hoverimgalamain.png);
}

.savoirweb:hover p, .savoirpao:hover p, .savoiralamain:hover p{
	display: block;
	text-align: center;
}
.savoirweb:hover h3, .savoirpao:hover h3, .savoiralamain:hover h3{
	display: none;
}
.bar-main-container {
  margin: 15px 0 15px 150px;
  width: 100px;
  height: 15px;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 10px;
  color: #FFF;
}


.bar-percentage {
  text-align: center;
  margin-left: 10px;
  margin-bottom: 10px;
}

.bar-container {
  float: right;
  height: 2px;
  background: rgba(137,137,137,0.5);
  width: 100px;
  overflow: hidden;
}

.bar {
  float: left;
  background: #FFF;
  height: 100%;
 }

.html-css, .js-php, .wordpress, .seo,.ps-il, .dsmax-alias, .after-e, .sketch, .rough,
.wireframe{
	display: none;
	color: #fff;
	font-size: 15px;
}

.savoirweb:hover .html-css, .savoirweb:hover .js-php, .savoirweb:hover .wordpress,
.savoirweb:hover .seo, .savoirpao:hover .ps-il, .savoirpao:hover .dsmax-alias, 
.savoirpao:hover .after-e, .savoiralamain:hover .sketch, .savoiralamain:hover .rough, 
.savoiralamain:hover .wireframe{
	display: block;
}


aside{
	width: 100%;
	background-color : #190011;
	margin-bottom: 100px;
}
aside img{
	border-radius: 75px;
	margin-left: calc(50% - 75px);
	margin-top: 30px;
}
aside p{
font-family: 'Nunito', Arial, sans-serif;
  color: #FFF;
  line-height: 35px;
  text-align: center;
  width: 1200px;
  margin-left: calc(50% - 600px);
  padding: 40px 80px;

}


/* parcours */


.curriculum{
	background-image: url(../img/fond-parcours.png);
	height : 400px;
	margin-bottom: 120px;
	position: relative;

}


.diplomes{
	height: 400px;
	width: 50%;
	float: left;
	border-right : 2px solid #fff ;
	position: relative;
}
.diplomes img{
	margin: 80px 0 0 calc(50% - 40px);
}
.diplomes h2{
	color: #fff;
	margin : 50px;
	text-align: center;
}
.button-diplomes{
	width: 190px;
	position: absolute;
	top: 310px;
	right: calc(50% - 95px);
	display: none;
	color: #fff;
	background-color: #190011;
	border : 2px solid #fff;
	padding: 10px 20px;
	font-size: 20px;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	text-transform: uppercase;
}


.button-diplomes:hover{
	color: #190011;
	background-color: #fff;
	border: none;
	border : 2px solid #fff;
}
.button-fermeture-scolarite{
	position: absolute;
	background-image: url(../img/button-fermerscolarite.png);
	background-color: #fff;
	top: 20px;
	right: 20px;
	border : none;
	height: 25px;
	width: 25px;
}

.button-fermeture-scolarite:hover{
	background-image: url(../img/button-fermerscolarite-hover.png);
}
.diplomes:hover{
	background-color: #190011;
	width: 50%;
	height: 400px;
}

.diplomes:hover input{
	display: block;
}
#scolarite{
	float: right;
	width: 100%;
	height: 400px;
	position: absolute;
	display: none;
	background-color: #fff;
	top: 0;
	padding: 20px 0;
	overflow-y: scroll;
	overflow-x: hidden;
}
#scolarite>ul>li:first-child h4{
	margin: 0 0 10px 15px;
}
#scolarite>ul>li{	
	width: 640px;
	color: #190011;
	font-size: 18px;
	font-family: 'Nunito', Arial, sans-serif;	
	margin-bottom: 40px;
}

#scolarite p{
margin-top: 10px;
margin-left: 20%;
font-size: 16px;
font-family: 'Nunito', Arial, sans-serif;
width: 100%;
}
#scolarite h4{
	margin: 45px 0 10px 15px;
	font-size: 20px;
	font-family: 'Nunito', Arial, sans-serif;
	text-transform: uppercase;
}
#scolarite h4::before{
	content: url(../img/pseudo-elementviolet.png);
	width: 30px;
	height: 20px;
	margin-right: 10px;
}

.experiences{
	width: 50%;
	height: 400px;
	float: right;
	border-left : 2px solid #fff ;
	position: relative;
}
.experiences img{
	margin: 80px 0 0 calc(50% - 50px);
}
.experiences h2{
	color: #fff;
	margin : 40px;
	text-align: center;
}

.button-emplois{
	width: 190px;
	position: absolute;
	top: 310px;
	left: calc(50% - 95px);
	display: none;
	color: #fff;
	background-color: #720011;
	border : 2px solid #fff;
	padding: 10px 20px;
	font-size: 20px;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	text-transform: uppercase;
}


.button-emplois:hover{
	color: #720011;
	background-color: #fff;
	border: none;
	border : 2px solid #fff;
}
.button-fermeture-emplois{
	position: absolute;
	background-image: url(../img/button-fermeremplois.png);
	background-color: #fff;
	top: 20px;
	right: 20px;
	border : none;
	height: 25px;
	width: 25px;
}

.button-fermeture-emplois:hover{
	background-image: url(../img/button-fermeremplois-hover.png);
}
.experiences:hover input{
	display: block;
}
#emplois{
	float: left;
	width: 100%;
	height: 400px;
	position: absolute;
	display: none;
	background-color: #fff;
	top: 0;
	padding: 20px 0;
	overflow-y: scroll;
	overflow-x: hidden;
}


#emplois h4{
	font-size: 20px;
	font-family: 'Nunito', Arial, sans-serif;
	text-transform: uppercase;
	color: #720011;
	margin-left: 15px;
}

#emplois h4::before{
	content: url(../img/pseudo-elementrouge.png);
	width: 20px;
	height: 30px;
	margin-right: 10px;
}

#emplois>ul>li{
	float: left;
	font-size: 18px;
	color: #720011;
	width: 100%;
	margin-bottom: 40px;
}
#emplois > li > ul > li > p{
	font-size: 16px;
}
#emplois p{
margin-top: 10px;
margin-left: 20%;
font-size: 16px;
font-family: 'Nunito', Arial, sans-serif;
width: 100%;
}
#emplois span{
	color: #190011;
}
.experiences:hover{
	background-color: #720011;
	width: 50%;
	height: 400px;
}



#scolarite::-webkit-scrollbar, #emplois::-webkit-scrollbar{
    width: 0.4em;
    background: #190011;
    background-size: 0.2em;
}
 
#scolarite::-webkit-scrollbar-track, #emplois::-webkit-scrollbar-track{
    background: transparent none;
	border: solid 4px transparent;
	border-right-width: 8px;
	margin: 4px;
	-webkit-box-shadow: inset 1px 1px 0 0 rgb(137,131,117), inset -1px -1px 0 0 rgb(224,220,210);
}
 
#scolarite::-webkit-scrollbar-thumb, #emplois::-webkit-scrollbar-thumb{
  background-color: #720011;
  -webkit-border-radius: 5px;
  -webkit-border-top-right-radius: 9px 5px;
  -webkit-border-bottom-right-radius: 9px 5px;

}








/*  work   */



.webdesign{
	position: relative;
	z-index: 3;
}

#web{
	background-image: url(../img/fondwebdesign.png);
	overflow: hidden;
	height: 960px;
	width: 960px;
	position: absolute;
	top : 0;
}


#web h2{
	color: #fff;
	z-index: 2;
    position: absolute;
    font-size: 35px;
    top: 295px;
    left : 220px;
}





.barbe{
	margin-top : 640px;
	position: relative;
	z-index: 3;
}
.icon-barbe{
	background-image: url(../img/photobarbeco.png);
	height: 640px;
	width: 640px;
    z-index: 4;
    position: relative;
    overflow: hidden;
    float: left;
}

.overlay-barbe{
	background-image: url(../img/photobarbecohover.png);
}
.barbeprojet{
	position: relative;
	margin-top: 320px;
}

.brief-barbe{
	background-image: url(../img/fond-brief-barbe.png);
	width: 640px;
	height: 640px;
	position: absolute;
	left: calc(50% - 320px);
	margin-top: 320px;
}

.brief-barbe p{
	font-family: 'Nunito', 'Arial', sans-serif;
	color : #43281c;
	text-align: center;
	line-height: 50px;
	margin-top: 245px;

}

.brief-barbe h5{
	position: relative;
	}

.brief-barbe a{
	background-color: #fbf2c0;
	color: #43281c;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 20px;
	padding: 10px 25px 10px 25px;
	text-decoration: none;
	position: absolute;
	top : 120px;
	left : calc(50% - 105px);
	border : 2px solid #43281c;
	z-index: 4;
	}

.brief-barbe a:hover{
	color : #fbf2c0;
	background-color: #43281c;

}
.projetbarbe>img{
	margin-top: 320px;
}
.projetbarbe ul{
	margin-top: 50px
}
.projetbarbe li{
	width: 33.33%;
	text-align: center;
	float: left;
}

.projetbarbe li img{
	margin: 20px 0;
}
.projetbarbe h4{
	color: #43281c;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 35px;
	margin-bottom: 25px;
}
.projetbarbe p{	
	color: #43281c;
	font-family: 'Nunito', Arial, sans-serif;
	margin-bottom: 50px;
	padding: 30px;
	line-height: 25px;
}
.button-fermeturebarbe{
	position: absolute;
	background-image: url(../img/button-fermerbarbe.png);
	background-repeat: no-repeat;
	background-color: #fff;
	top: 640px;
	right: 20px;
	border : none;
	height: 25px;
	width: 200px;
}

.button-fermeturebarbe:hover{
	background-image: url(../img/button-fermerbarbe-hover.png);
}

.element-barbe{
	width: 100%;
	margin-bottom: 100px; 	
}

.logo-barbe{
	width: 100%;	
	display : inline-block;
	text-align: center;
	margin-bottom: 50px;	
}
.color-barbe{
	width:1200px;
	height: 400px;
	margin-left: calc(50% - 600px);
}
.color-barbe li{
	float: left;
	width: 33.33%;
	text-align :center;
	line-height: 400px;
	font-size: 25px;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	color : #fff;

}
.color-barbe .color1{
	background-image: url(../img/colorbarbe1.png);
}
.color-barbe .color2{
	background-image: url(../img/colorbarbe2.png);
}
.color-barbe .color3{
	background-image: url(../img/colorbarbe3.png);
}
.desktop-barbe{
	position: relative;
	width: 1280px;
	margin-bottom: 120px;
}

.desktop-barbe h5{
	background-image: url(../img/fond-desktop-barbe.png);
	line-height: 230px;
	width: 300px;
	text-align: center;
	margin-left: calc(50% - 150px);
	margin-bottom: 120px;
}

.barbe-desktop1, .barbe-desktop2 {
	height: 600px;
	display: block;
	overflow-y: scroll;
	position: relative;
	overflow-x : hidden;
}

.barbe-desktop1::-webkit-scrollbar, .barbe-desktop2::-webkit-scrollbar,
.barbe-mobile1::-webkit-scrollbar, .barbe-mobile2::-webkit-scrollbar{
    width: 0.3em;
}
 
.barbe-desktop1::-webkit-scrollbar-track, .barbe-desktop2::-webkit-scrollbar-track,
.barbe-mobile1::-webkit-scrollbar-track, .barbe-mobile2::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 9px #fbf2c0;
}
 
.barbe-desktop1::-webkit-scrollbar-thumb,.barbe-desktop2::-webkit-scrollbar-thumb,
.barbe-mobile1::-webkit-scrollbar-thumb, .barbe-mobile2::-webkit-scrollbar-thumb {
  background-color: #43281c;
  outline: 3px solid slategrey;
  border-right: 10px;
}

.barbe-explication{
	background-color: #43281c;
	height : 275px;
	width: 100%;
}

.barbe-explication p{
	color: #fbf2c0;
	text-align: center;
	line-height: 35px;
	padding: 50px 40px;
	width: 1200px;
	margin-left: 40px;
}

.mobile{
	position: relative;
	margin-left: calc(50% - 640px);
}
.mobile h5{
	background-image: url(../img/fond-mobile-barbe.png);
	background-size: 120px 220px;
	width: 120px;
	line-height: 220px;
	margin-left: calc(50% - 50px);
	margin-bottom: 120px;
	text-align: center;
}
.barbe-mobile1, .barbe-mobile2{
	width: 320px;
	margin: 0 160px;

	height: 600px;
	display: block;
	overflow-y: scroll;
	overflow-x : hidden;

}
.barbe-mobile1{
	float: left;
}
.barbe-mobile2{
	float: right;
}
.barbe-explication-mobile{
	background-color: #43281c;
	height : 250px;
	width: 100%;
}

.barbe-explication-mobile p{
	color: #fbf2c0;
	text-align: center;
	line-height: 35px;
	padding: 90px 40px;
	width: 1200px;
	margin-left: 40px;

}
.barbeprojet{
	display: none;
}










.waxy{
	position: relative;
}

.icon-waxy{
	background-image: url(../img/photolewaxy.png);
	height: 640px;
	width : 640px;
	z-index: 3;
    overflow: hidden;
    float: right;
    position: relative;
 
}

.overlay-waxy{
	background-image: url(../img/photolewaxyhover.png);
}

#waxyprojet{
margin-top: 320px;
margin-bottom: 320px;
}

.brief-waxy{
	 width: 640px;
    height: 640px;
    margin-top: 320px;
    margin-left: 320px;
}	


.brief-waxy p{
	background-image: url(../img/fond-brief-waxy.png);
	width: 640px;
	height: 640px;
	color : #fff;
	text-align: center;
	line-height: 50px;
	padding: 220px 0;
	position: absolute;
}
.button-fermeturewaxy{
	position: absolute;
	background-image: url(../img/button-fermerwaxy.png);
	background-color: #fff;
	background-repeat: no-repeat;
	left: 100px;
	top: 640px;
	border : none;
	height: 25px;
	width: 200px;
	float: left;
	z-index: 2;
}

.button-fermeturewaxy:hover{
	background-image: url(../img/button-fermerwaxy-hover.png);
}

.logo-waxy{
	width: 100%;
	display : inline-block;
	text-align: center;	
	margin: 100px auto;
}
.color-waxy{
	width:1200px;
	height: 400px;
	margin-left: calc(50% - 400px);	
	margin-bottom: 100px;
}

.color-waxy li{
	float: left;
	width: 400px;
	text-align :center;
	line-height: 400px;
	font-size: 25px;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	color : #fff;

}
.color-waxy .color1{
	background-image: url(../img/colorwaxy1.png);
}
.color-waxy .color2{
	background-image: url(../img/colorwaxy2.png);
}

.desktop-waxy{
	position: relative;
	width: 1280px;
	margin-left: calc(50% - 640px);
	margin-bottom: 120px;
}

.desktop-waxy h5{
	background-image: url(../img/fond-desktop-waxy.png);
	line-height: 230px;
	width: 300px;
	text-align: center;
	margin-left: calc(50% - 150px);
	margin-bottom: 120px;
	color: #afafaf;
}

.waxy-desktop1, .waxy-desktop2{
	height: 600px;
	display: block;
	overflow-y: scroll;
	position: relative;
	overflow-x : hidden;
	width: 100%;
}

.waxy-desktop1::-webkit-scrollbar, .waxy-desktop2::-webkit-scrollbar{
    width: 0.3em;
}
 
.waxy-desktop1::-webkit-scrollbar-track, .waxy-desktop2::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 9px #ac7030;
}
 
.waxy-desktop1::-webkit-scrollbar-thumb,.waxy-desktop2::-webkit-scrollbar-thumb{
  background-color: #ac7030;
  outline: 3px solid slategrey;
  border-right: 10px;
}

.waxy-explication{
	background-color: #fff;
	height : 275px;
	width: 100%;
}

.waxy-explication p{
	color: #ac7030;
	text-align: center;
	line-height: 35px;
	padding: 60px 40px;
	width: 1200px;
	margin-left: 40px;
}

.waxyprojet{
	display: none;
}












.nicettes{
	position: relative;
	z-index: 2;
}

.icon-nicettes{	
	height: 640px;
	width : 640px;
    position: absolute; 
    top: -320px;
    left: calc(50% - 320px);
    z-index: 2;
}
.icon-nicettes img{	
	width: 640px;
	height: auto;	
	display: block;
	overflow: hidden;	
}

.carroussel{
	width : 640px;
	position: absolute;
	overflow: hidden;
}
.carroussel figure {
  position: relative; 
  width: 500%;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-align: left;
   animation: 10s slidy infinite;
}
.carroussel figure img { 
	width: 640px; 
	height: auto; 
	float: left;
}

@keyframes slidy {
  0% { left: 0%; }
  20% { left: 0%; }
  21% { left: -100%; }
  45% { left: -100%; }
  46% { left: -200%; }
  70% { left: -200%; }
  71% { left: -300%; }
  99.99% { left: -300%; }
  100% { left: -400%; }
}
.overlay-nicettes{
	position:	absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 0px;
    transition: 1s ease
}

.overlay-nicettes a{
	position: relative;
}


.nicettesprojet{
	position: relative;
	float: left;
}
.brief-nicettes{
	background-image: url(../img/fond-brief-nicettes.png);
	width: 640px;
	height: 640px;
	position: relative;
}
.brief-nicettes a{
	color: #fff;
	padding: 10px 25px 10px 25px;
	position: absolute;
	top : 120px;
	left : calc(50% - 105px);
	border : 2px solid #fff;
	z-index: 4;
	}

.brief-nicettes a:hover{
	color : #a58f59;
	background-color: #fff;

}
.brief-nicettes p{
	font-family: 'Nunito', 'Arial', sans-serif;
	color : #fff;
	text-align: center;
	line-height: 50px;
	padding: 220px 0;
}

.button-fermeturenicettes{
	position: absolute;
	background-image: url(../img/button-fermernicettes.png);
	background-color: #fff;
	background-repeat: no-repeat;
	top: 320px;
	right: 20px;
	border : none;
	height: 25px;
	width: 200px;
}

.button-fermeturenicettes:hover{
	background-image: url(../img/button-fermernicettes-hover.png);
}
.element-nicettes{
	width: 100%;
	position: relative;
	margin-bottom: 50px;
	text-align: center;
}
.logo-nicettes{
	width: 100%;	
	display : inline-block;
	text-align: center;	
	margin: 100px 0;
}
.color-nicettes{
	width:1200px;
	height: 400px;
	margin-left: calc(50% - 400px);
	margin-bottom: 50px;
	
}
.color-nicettes li{
	float: left;
	width: 400px;
	text-align :center;
	line-height: 400px;
	font-size: 25px;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	color : #fff;

}
.color-nicettes .color1{
	background-image: url(../img/colornicettes1.png);
}
.color-nicettes .color2{
	background-image: url(../img/colornicettes2.png);
}
.element-nicettes p{
	background-color: #000;
	color: #a58f59;
	line-height: 35px;
	padding:85px 80px;
	width: 1280px;
}
.desktop-nicettes{
	position: relative;
	width: 1280px;
	margin-left: calc(50% - 640px);
}
.desktop-nicettes h5{
	background-image: url(../img/fond-desktop-nicettes.png);
	line-height: 230px;
	width: 300px;
	text-align: center;
	margin-left: calc(50% - 150px);
	margin-bottom: 120px;
	color: #afafaf;
}
.nicettes-desktop1, .nicettes-desktop2{
	height: 600px;
	display: block;
	overflow-y: scroll;
	position: relative;
	overflow-x : hidden;
}

.nicettes-desktop1::-webkit-scrollbar, .nicettes-desktop2::-webkit-scrollbar{
    width: 0.3em;
}
 
.nicettes-desktop1::-webkit-scrollbar-track, .nicettes-desktop2::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 9px #ac7030;
}
 
.nicettes-desktop1::-webkit-scrollbar-thumb,.nicettes-desktop2::-webkit-scrollbar-thumb{
  background-color: #ac7030;
  outline: 3px solid slategrey;
  border-right: 10px;
}

.nicettes-explication{
	background-color: #a58f59;
	height : 275px;
	width: 100%;
}
.nicettes-explication p{
	color: #fff;
	font-family: 'Nunito', 'Arial', sans-serif;
	text-align: center;
	line-height: 35px;
	padding: 85px 40px;
	width: 1200px;
	margin-left: 40px;

}
.nicettesprojet{
	display: none;
}













.bppb{
	position: relative;
	z-index: 1;
}
.icon-bppb{
	background-image: url(../img/photobppb.png);
	height: 640px;
	width: 640px;
	margin-left: 640px;
	position: relative;
	z-index: 2;
}
.overlay-bppb{
	background-image: url(../img/photobppbhover.png);
}
.bppbprojet{
	position: relative;
	margin-bottom: 320px;
}

.brief-bppb{
	background-image: url(../img/fond-brief-bppb.png);
	width: 640px;
	height: 640px;
	left: calc(50% - 320px);
	z-index: 1;
	position: absolute;
	top: -320px;	
}
.brief-bppb img{
	float: right;	
	width: 640px;
	height: 640px;
}

.brief-bppb p{
	font-family: 'Nunito', 'Arial', sans-serif;
	color : #fff;
	text-align: center;
	position: relative;
	line-height:50px;
	padding: 220px 0;
	width: 500px;
	margin-left: 70px;
}

.button-fermeturebppb{
	position: absolute;
	background-image: url(../img/button-fermerbppb.png);
	background-color: #fff;
	left: 100px;
	background-repeat: no-repeat;
	border : none;
	height: 25px;
	width: 200px;
	z-index: 2;
}

.button-fermeturebppb:hover{
	background-image: url(../img/button-fermerbppb-hover.png);
}
.element-bppb{
	width: 100%;
	position: relative;
	margin-bottom: 100px;
}
.logo-bppb{
	width: 100%;	
	display : inline-block;
	text-align: center;	
	margin-top: 420px;
	margin-bottom: 100px;
}
.color-bppb{
	width:1200px;
	height: 400px;
	margin-left: calc(50% - 400px);
	
}
.color-bppb li{
	float: left;
	width: 400px;
	text-align :center;
	line-height: 400px;
	font-size: 25px;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	color : #fff;

}
.color-bppb .color1{
	background-image: url(../img/colorbppb1.png);
}
.color-bppb .color2{
	background-image: url(../img/colorbppb2.png);
}

.desktop-bppb{
	position: relative;
	width: 1280px;
	margin-left: calc(50% - 640px);
}

.bppb-theme{
	height: 700px;
}
.bppb-map{
	width: 50%;
	height: 700px;
	float: left;
}
.bppb-map img{
	margin-left: calc(50% - 200px);
}
.desktop-bppb .bppb-picto{
	width: 50%;
	float: right;
}
.bppb-picto ul{
	margin: 30px 0;
}

.bppb-picto li{
	padding: 40px 0;
}

.bppb-picto li img{
	float: left;
	margin-right: 100px;
}
.bppb-picto li p{
	font-family: 'abel', 'Arial', sans-serif;
	color : #3d3d3d;
	line-height: 80px;
}
.text-map{
	background-color: #36e696;
	width: 100%
}
.text-map p{
	color: #fff;
	font-family: 'Nunito', 'Arial', sans-serif;
	text-align: center;
	line-height: 35px;
	padding: 80px 85px;
	width: 1280px;
}
.slogan-bppb{
	height: 500px;
	width: 100%;
	background-image: url(../img/fond-slogan-bppb.png);

}

.slogan-bppb p{
	font-size: 50px;
	font-family: 'abel', 'Arial', sans-serif;
	color : #fff;
	text-align: center;
	line-height: 90px;
	padding: 160px;
	z-index: 1;
}


.bppb33{
	margin: 100px 40px;

}
.bppb33 li{
	width: 400px;
	float: left;
}

.bppb33 li img{
width: 300px;
margin: 50px;
}

.bppb33 h4{
	color: #36e696;
	font-size:35px;
	font-family: 'abel', 'Arial', sans-serif;
	text-align: center;
	margin-bottom: 50px;
}

.bppb33 li p{
	font-family: 'Nunito', Arial, sans-serif;
	color : #3d3d3d;
	text-align: center;
	line-height: 25px;
	margin-left: 50px;
	width: 300px;
}

.mockup-bppb img{
	width: 640px;
	height: 640px;
	float: left;
}
.mockup-bppb{
	background-color: #36e696;
	height: 640px
}
.mockup-bppb p{
	width: 550px;
	margin-right: 20px;
	color: #fff;
	line-height: 35px;
	padding: 215px 0px;
	float: right;
	
}
.bppbprojet{
	display: none;
}







.overlay-barbe, .overlay-waxy, .overlay-bppb, .overlay-cp, .overlay-renaultsamsung{
	position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 0px;
    transition: 1s ease
}

.overlay-barbe a, .overlay-waxy a, .overlay-bppb a, .overlay-cp a, .overlay a{
	position: relative;
}

.overlay-barbe input, .overlay-waxy input, .overlay-nicettes input, .overlay-bppb input, 
.overlay-cp input, .overlay-renaultsamsung input{
	font-family: 'Epic fusion', 'Arial', sans-serif;
	font-size: 26px;
	text-transform:uppercase;
	overflow: hidden;
  	-ms-transform: translate(-50%, -50%);

}
.overlay-barbe .button-barbe, .overlay-waxy .button-waxy, .overlay-nicettes .button-nicettes,
 .overlay-bppb .button-bppb{
	background-color: #190011;
    color: #fff;
    padding: 10px 20px;
    border: 3px solid #fff;    
    position: absolute;
    left: calc(50% - 115px);
 	bottom : 150px;
    
}

.overlay-barbe .button-barbe:hover, .overlay-waxy .button-waxy:hover, .overlay-nicettes .button-nicettes:hover,
.overlay-bppb .button-bppb:hover{
	background-color: #fff;
	color : #190011;
	padding: 10px 20px;
}
.overlay-renaultsamsung .button-renaultsamsung{
	background-color: #720011;
    color: #fff;
    padding: 10px 20px;
    border: 3px solid #fff;    
    position: absolute;
    left: calc(50% - 115px);
 	bottom : 150px;
}
.overlay-renaultsamsung .button-renaultsamsung:hover{
	background-color: #fff;
	color : #720011;
	padding: 10px 20px;
}

.icon-barbe:hover .overlay-barbe, .icon-waxy:hover .overlay-waxy, 
.icon-bppb:hover .overlay-bppb, .nicettes:hover .overlay-nicettes,
 .icon-renaultsamsung:hover .overlay-renaultsamsung, .icon-chauffeurprive:hover .overlay-cp{
  bottom: 0;
  height: 100%;
}




.overlay-cp .button-cp{
	background-color: #a05f11;
    color: #fff;
    padding: 10px 20px;
    border: 3px solid #fff;    
    position: absolute;
    left: calc(50% - 115px);
 	bottom : 150px;
}
.overlay-cp .button-cp:hover{
	background-color: #fff;
	color : #a05f11;
	padding: 10px 20px;
}





.graphique{
	display: inline-block;
	position: relative;
	z-index: 2;

}
#saut{
	background-image: url(../img/fondgraphisme.png);
	position: absolute;
	top: -320px;
	width: 960px;
	height: 960px;
}

#saut h2{
	color: #fff;
	position: absolute;	
	font-size: 35px;
    top: 295px;
    left : 550px;
}

.chauffeurprive{
	position: relative;
	text-align: center;
	z-index: 3;
}

.icon-chauffeurprive{
	background-image: url(../img/photochauffeurprive.png);
	height: 640px;
	width : 640px;
    position: relative;
    overflow: hidden;
    margin-left: 320px;
    top: 320px;
 }
 .overlay-cp{
 	background-image: url(../img/photochauffeurprivehover.png);
 }

.chauffeurpriveprojet h2{
	margin-bottom: 50px;
}
.brief-cp{
	background-image: url(../img/fond-brief-cp.png);
	width: 640px;
	height: 640px;
	position: absolute;
	left: 640px;
}

.brief-cp p{
	font-family: 'Nunito', 'Arial', sans-serif;
	color : #fff;
	text-align: center;
	line-height: 35px;
	padding: 200px 0;
}
.button-fermeturecp{
	position: relative;
	background-image: url(../img/button-fermercp.png);
	background-color: #fff;
	background-repeat: no-repeat;
	left: 100px;
	top: 320px;
	border : none;
	height: 25px;
	width: 200px;
	float: left;
}

.button-fermeturecp:hover{
	background-image: url(../img/button-fermercp-hover.png);
}
.logocp{
	padding-top: 740px;
	margin-bottom: 100px;
}
.b2c{
	margin-bottom: 100px;
}
.fb-ads{
	background-color: #2f1a45;
	height: 300px;
}
.fb-ads p{	
	font-family: 'Nunito', 'Arial', sans-serif;
	font-size: 35px;
	padding: 50px 0;
	color: #fff;
	text-transform: uppercase;
}
.soiree{
	background-color: #2f1a45;
	height: 300px;
}
.soiree p{	
	font-family: 'Nunito', 'Arial', sans-serif;
	font-size: 35px;
	padding: 50px 0;
	color: #fff;
	text-transform: uppercase;
}
.soiree50 li{
	width: 50%;	
	height: 640px;
}
.soireepartenariat{
	white-space: nowrap;
}
.soiree50 li:first-child{
	float: left;
}
.soiree50 li:nth-child(2){
	float: right;
}
.instagram{
	background-color: #2f1a45;
	height: 300px;
}
.instagram p{	
	font-family: 'Nunito', 'Arial', sans-serif;
	font-size: 35px;
	padding: 25px 0;
	color: #fff;
	text-transform: uppercase;
}
.instagram img{
	margin: 0px calc(50% - 50px) 25px;
}
.instagram a{
	font-size: 26px;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	text-transform: uppercase;
	background-color: #2f1a45;
    color: #fff;
    padding: 10px 20px;
    border: 3px solid #fff;   
  	display: inline-block;
}

.instagram a:hover{
	background-color: #fff;
    color: #2f1a45;
}
.insta33{
	margin-left: 40px;
}
.insta33 li{
	width: 400px;
	height: 400px;
	display: inline-block;
	float: left;
}

.insta33 li img{
	white-space: nowrap;
}

.mailing{
	background-color: #2f1a45;
	height: 300px;
}
.mailing p{	
	font-family: 'Nunito', 'Arial', sans-serif;
	font-size: 35px;
	padding: 50px 0;
	color: #fff;
	text-transform: uppercase;
}
.chauffeurpriveprojet{
	position: relative;
	display: none;
}









.transport{
position: relative;
z-index: 1;
}
#designtransport{
	background-image: url(../img/fondtransport2.png);
	position: absolute;
	top: -3px;
	left: 320px;
	width: 960px;
	height: 960px;	
}


#designtransport h2{
	color: #fff;
    z-index: 2;
    position: absolute;
     top: 295px;
    left : 530px;
}






.renaultsamsung{
	position: relative;
	z-index: 2;
	margin-top: 637px;
}
.icon-renaultsamsung{	
   float: left;
    overflow: hidden;
    width: 640px;
    height:640px;
    position: relative;
    z-index: 2;
}

.renaultsamsungprojet{
	position: relative;
	display: none;
}
.button-fermeturerenaultsamsung{
	position: absolute;
	background-image: url(../img/button-fermerrenaultsamsung.png);
	background-color: #fff;
	background-repeat: no-repeat;
	top: 640px;
	right: 20px;
	border : none;
	height: 25px;
	width: 200px;
}

.button-fermeturerenaultsamsung:hover{
	background-image: url(../img/button-fermerrenaultsamsung-hover.png);
}

.brief-renaultsamsung{
	background-image: url(../img/fond-brief-renaultsamsung.png);
	width: 640px;
	height: 640px;
	left: calc(50% - 320px);
	z-index: 1;
	position: absolute;
	top: 320px;
}

.brief-renaultsamsung p{
	font-family: 'Nunito', Arial, sans-serif;
	color : #fff;
	text-align: center;	
	line-height:50px;
	padding: 110px 0;

}
.text-33 li{
	width: 33.33%;
	margin: 50px 0;
	text-align: center;
	float: left;

}

.text-33 img{
	margin-bottom: 25px;
}
.text-33 p{
	padding: 30px;
	line-height: 25px;
}
.element-renaultsamsung{
	margin-left: calc(50% - 465px);
	margin-bottom: 100px;
}
.element-renaultsamsung img{
	margin-top : 320px;
}

.brief-rouesamsung , .brief-intesamsung , .brief-extesamsung{
	background-color: #2966ff;
}
.brief-rouesamsung h4, .brief-intesamsung h4, .brief-extesamsung h4{
	font-size: 35px;
	font-family: 'Epic fusion', 'Arial', sans-serif;
	color: #fff;
	padding: 30px 0 25px 0;
	text-align: center;
}

.brief-rouesamsung p, .brief-intesamsung p, .brief-extesamsung p{
	font-family: 'Nunito', Arial, sans-serif;
	color : #fff;
	text-align: center;
	line-height: 35px;
	width: 1200px;
	margin-left: 40px;
	padding: 45px 40px;
	}



/* footer */



footer{
	background-color: #190011;
	height: 300px;
}
footer ul{
	width: 1280px;
	margin-left: calc(50% - 640px);
}
.col33{
	width: 400px;
	margin-top: 50px;
	float: left;
	display: inline-block;
	text-align: center;
}

.col33:first-child{
	margin-left: 40px;
}

