/* FONTS */
@font-face {
    font-family: 'montserratbold';
    src: url('fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'montserratregular';
    src: url('fonts/montserrat-regular-webfont.woff2') format('woff2'),
         url('fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'montserratextralight';
    src: url('fonts/montserrat-extralight-webfont.woff2') format('woff2'),
         url('fonts/montserrat-extralight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/* RESET 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;
}
a{
	text-decoration:none;
}



/* INDEX */

body{
	margin:0;
	padding:0;
	font-family:'montserratregular';
	font-size:12pt;
	color:#202022;
	line-height: 140%;
}
.fullBackground {
	background: ;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 97vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

}
.fullBackground video{
width: 100%;
height:auto;
z-index: -1;
}
.captionLogo{
	/*width:37%;*/
	width:600px;
	height:auto;
	background: url('img/logo2.svg') top no-repeat;
	z-index: 1;
}
.caption{
	font-size: 20pt;
	color:#FFF;
	padding-bottom:7%;
	z-index: 1;
}
.caption strong{
	font-family:'montserratbold';
}



#video-viewport { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	overflow: hidden; 
	z-index: -1; 
}
#video-viewport video { 
	display: block; 
width: 100%; 
height: auto; 
}

.fullsize-video-bg { 
	height: 100%; 
overflow: hidden; 
}



.fullsize-video-bg .inner { 
	display: table; 
width: 80%; 
height: 80vh; 
margin: 0 auto; 
padding: 0; 
position: relative; 
z-index: 2; 
}
.fullsize-video-bg .inner > div { 
	text-align: center; 
	display: table-cell; 
	vertical-align: middle; 
	padding: 0 2em; 
}


#content_videoBG h1 { 
	font-family:'montserratbold';
font-size: 3em; 
line-height: .9; 
font-weight: 900; 
letter-spacing: -.025em; 
text-transform: uppercase; 
margin-bottom: .5em; 
}
.logoVideo{
	width:35%;
	height:auto;
	z-index: 1;
}
#content_videoBG p { 
	font-family:'montserratregular';
font-size: 20pt;  
color:white;
margin-top:5%;
line-height:140%;
}
#content_videoBG p strong { 
	font-family:'montserratbold'; 
}











nav{
	width:100%;
	height:16vh;
	background:rgba(0,0,0,0.7);
	position:fixed;
	top:0;
	right:0;
	display:flex;
	justify-content:space-between;
	align-items:center;
	border-bottom: 1px solid white;
	-webkit-transform:translateY(-200%);
	-moz-transform:translateY(-200%);
	-ms-transform:translateY(-200%);
	transform:translateY(-200%);
	-webkit-transition:all 0.4s ease-in-out;
	-moz-transition:all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	transition:all 0.4s ease-in-out;
}
nav.isOpen{
	width:100%;
	height:16vh;
	background:rgba(0,0,0,0.7);
	position:fixed;
	top:0;
	right:0;
	display:flex;
	justify-content:space-between;
	align-items:center;
	border-bottom: 1px solid white;
	-webkit-transform:translateY(0%);
	-moz-transform:translateY(0%);
	-ms-transform:translateY(0%);
	transform:translateY(0%);
	-webkit-transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
nav #tbLogoNav{
	width:13%;
	height:65%;
	background: url('img/logo1.svg') center no-repeat;
	padding-right: 0px;
}
nav ul{
	list-style-type: none;
    margin: 0;
    padding: 0;
}
nav li{
	float: left;
	border-right: 2px solid white;
	padding:7px 5px 7px 5px;
}
li:last-child {
    border-right: none;
}
nav li a{
	color:white;
	font-size:15pt;
	padding:25px 25px 25px 25px;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
nav li a:hover{
	background:rgba(255,255,255,0.1);
	border-radius:10%;
}
nav .btninvisible{
	width:100px;
	height:55%;
	background:orange;
	visibility:hidden;
}
.btnNav{
	width:100px;
	height:100px;
	background: url('img/open.svg') center no-repeat ;
	background-size: 100% 100%;
	margin-right: 25px;
	z-index:21;
	cursor:pointer;
	position:fixed;
	right:0;
	top:1vh;
	-webkit-transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
.btnNav.open{
	width:60px;
	height:60px;
	background: url('img/down.svg') center no-repeat ;
	background-size: 100% 100%;
	margin-right: 30px;
	z-index:21;
	cursor:pointer;
	position:fixed;
	right:0;
	top:1vh;
	-webkit-transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
#about{
	width:95%;
	max-width:1400px;
	margin:0 auto;
	margin-top:30vh;
}
#about h1{
	font-size:24pt;
	text-align:center;
}
#about #barre1_about{
	background:#202022;
	width:32%;
	height:4px;
	margin:0 auto;
	margin-top:3vh;
	margin-bottom:5vh;
}
#about #p1_about{
	text-align:center;
	font-size:15pt;
}
#about #bio_about{
	display:flex;
	align-items:center;
	justify-content:space-around;
	margin-top:25vh;
}
#about #bio_about img{
	width:22%;
}
#about #bio_about #column2_about{
	width:52%;
	display:flex;
	flex-direction:column;
	align-items:center;
  	justify-content:center;
}
#about #bio_about #column2_about #column2_about_1{
	margin-bottom:100px;
	padding:20px 15px 100px 25%;
	display:flex;
	justify-content:flex-end;
	border-right: solid 4px #202022;
}
#about #bio_about #column2_about #column2_about_1 p{
	width:100%;
	text-align:right;
}
#about #bio_about #column2_about #column2_about_2{
	padding:20px 25% 20px 15px;
	display:flex;
	justify-content:flex-start;
	border-left: solid 4px #202022;
}
#about #bio_about #column2_about #column2_about_2 p{
	width:100%;
	text-align:left;
}
#citation1{
	width:100%;
	background:url('img/separation1.jpg') no-repeat center fixed;
	background-size: cover;
	height:50vh;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-top:30vh;
}
#citation1 h3{
	color:white;
	width:80%;
	max-width:770px;
	font-size:26pt;
	text-align:center;
	line-height:140%;
}
#citation1 h3 strong{ 
	font-family:'montserratbold'; 
}
#travail{
	width:100%;
	max-width:1400px;
	margin:0 auto;
	margin-top:30vh;
}
#travail h1{
	font-size:24pt;
	text-align:center;
}
#travail #p1_travail{
	border-left:4px solid #202022;
	width:45%;
	margin:0 auto;
	margin-top:7vh;
	padding:20px;
}
#travail #video_show{
	width:100%;
	max-width:892px;
	margin:0 auto;
	margin-top:20vh;
	display:flex;
	justify-content:center;
}
#travail #video_show #video_video_show{
	width:80%;
	height:80%;
}
#travail #container_txt_travail{
	width:70%;
	margin:0 auto;
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	margin-top: 10vh;
}
#travail #container_txt_travail .travail_bocs{
	width:27%;
}
#travail #container_txt_travail .picto_travail{
	width:60%;
	display:block;
	margin:0 auto;
	margin-bottom:2vh;
}
#citation2{
	width:100%;
	background:url('img/citation2.jpg') no-repeat center fixed;
	background-size: cover;
	height:50vh;
	margin-top:30vh;
}
#citation2 img{
	width:60%;
	max-width:520px;
	margin-top:10%;
	margin-left:10%;
}
#container_portfolio{
	width:98%;
	max-width:1400px;
	margin:0 auto;
	margin-top:30vh;
}
#container_portfolio #titre_portfolio{
	width:84%;
	margin:0 auto;
	display:flex;
	align-items:center;
	justify-content:center;
}
#container_portfolio #titre_portfolio h1{
	font-size:24pt;
	padding:19px;
	border-right:4px solid #202022;
}
#container_portfolio #titre_portfolio p{
	padding:15px;
}
#container_portfolio #container_blocs{
	width:70%;
	margin:0 auto;
	margin-top:15vh;
	display:flex;
	align-items:flex-start;
	justify-content:center;
	flex-wrap:wrap;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
#container_portfolio #container_blocs .blocs{
	width:33%;
	margin-right:1px;
	border-right:1px solid rgba(255,255,255,0.6);
	margin-bottom:4vh;
}
#container_portfolio #container_blocs .blocs:last-child{
	border-right:none;
}
#container_portfolio #container_blocs .blocs:hover img{
	outline: 1px solid rgba(255,255,255,0.6);
    outline-offset: -5px;
    opacity:1;
}
#container_portfolio #container_blocs .blocs a{
	
}
#container_portfolio #container_blocs .blocs a img{
	width:100%;
	opacity:0.8;
	-webkit-transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
#container_portfolio #container_blocs .blocs h4{
	font-size:12pt;
	margin-bottom:1%;
}
#container_portfolio #container_blocs .blocs h5{
	font-size:10pt;
}
#citation3{
	width:100%;
	background:url('img/citation3.jpg') no-repeat center fixed;
	background-size: cover;
	height:50vh;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-top:30vh;
	display:inline-block;
	color:white;
}
#citation3 h4{
	width:50%;
	margin-left: 50%;
	margin-top:6%;
	max-width:770px;
	font-size:16pt;
	line-height:170%;
}
#citation3 h5{
	width:50%;
	margin-left: 50%;
	max-width:770px;
	font-size:20pt;
	line-height:140%;
}
#citation3 h6{
	width:50%;
	margin-left: 50%;
	max-width:770px;
	font-size:24pt;
	line-height:140%;
}
#citation3 strong{ 
	font-family:'montserratbold'; 
}
#container_tarif{
	width:98%;
	max-width:1000px;
	margin:0 auto;
	margin-top:30vh;
}
#container_tarif #titre_tarif{
	width:84%;
	margin:0 auto;
	display:flex;
	align-items:center;
	justify-content:flex-start;
}
#container_tarif #titre_tarif h1{
	font-size:24pt;
	padding:19px;
	border-right:4px solid #202022;
}
#container_tarif #titre_tarif p{
	padding:15px;
}
#container_tarif #container_blocs_tarif{
	margin:0 auto;
	margin-top:20vh;
	width:100%;
	max-width:1000px;
	display:flex;
	align-items:flex-start;
	justify-content:center;
}
#container_tarif #container_blocs_tarif .blocs_tarifs{
	width:28%;
	padding:20px;
	padding-right:10%;
	border-right:4px solid #202022;
}
#container_tarif #container_blocs_tarif .blocs_tarifs:last-child{
	border:none;
	padding-right:0;
	padding-left:10%;
}
#container_tarif #container_blocs_tarif .blocs_tarifs img{
	width:100%;
}
#container_tarif #container_blocs_tarif .blocs_tarifs ul{
	margin-top:5vh;
	list-style-image: url('img/tiret.svg');
	list-style-position: outside;
	padding: 0;
  	margin-left: 1em;
}
#container_tarif #container_blocs_tarif .blocs_tarifs li{
}
#container_portfolio #container_blocs .blocs:last-child{
	border-right:none;
}
#partenaire-container{
	width:100%;
	margin:0 auto;
	margin-top:25vh;
	max-width:1300px;
}
#partenaire-container #titre_partenaire{
	width:84%;
	margin:0 auto;
	display:flex;
	align-items:center;
	justify-content:center;
}
#partenaire-container #titre_partenaire h1{
	font-size:24pt;
	padding:25px;
	padding-right:50px;
	padding-left:50px;
	border-bottom:solid 3px black;
}
#partenaire-container #bloc-partenaire-container{
	width:98%;
	margin:0 auto;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
}
#partenaire-container #bloc-partenaire-container .partenaire-blocs{
	width:230px;
	-webkit-transition:all 0.4s ease-in-out;
	-moz-transition:all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	transition:all 0.4s ease-in-out;
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-ms-filter: grayscale(1);
	filter: grayscale(1);
}
#partenaire-container #bloc-partenaire-container .partenaire-blocs a{
	width:100%;
	height:auto;
}
#partenaire-container #bloc-partenaire-container .partenaire-blocs a img{
	width:100%;
}
#partenaire-container #bloc-partenaire-container .partenaire-blocs:hover{
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	filter: grayscale(0);
}
#contact_container{
	width:100%;
	margin:0 auto;
	margin-top:25vh;
	background:black url('img/BG_contact.jpg');
	color:white;
	padding-top:6vh;
}
#contact_container h1{
	font-size:30pt;
	text-align:center;
}
#contact_container #barre1_contact{
	background:white;
	width:32%;
	height:4px;
	margin:0 auto;
	margin-top:3vh;
	margin-bottom:2vh;
}
#contact_container #p1_contact{
	text-align:center;
}
#contact_container #container_form{
	width:95%;
	max-width:1140px;
	margin:0 auto;
	display:flex;
	justify-content:center;
	align-items:center;
	margin-top:6vh;
}
#contact_container #container_form #contact_column1{
	width:35%;
}
#contact_container #container_form #contact_column1 img{
	width:250px;
}
#contact_container #container_form #contact_column1 .coordonnees{
	display:flex;
	align-items:center;
	justify-content:flex-start;
	margin-bottom:2vh;
}
#contact_container #container_form #contact_column1 .coordonnees:first-of-type{
	margin-top:5vh;
}
#contact_container #container_form #contact_column1 .coordonnees:last-child{
	margin-bottom:0;
	padding-bottom:10vh;
}
#contact_container #container_form #contact_column1 .coordonnees div{
	width:50px;
	height:50px;
}
#contact_container #container_form #contact_column1 .coordonnees #gsm{
	background:url('img/contact_picto1.svg') no-repeat;
	background-size:cover;
}
#contact_container #container_form #contact_column1 .coordonnees #face{
	background:url('img/contact_picto2.svg') no-repeat;
	background-size:cover;
}
#contact_container #container_form #contact_column1 .coordonnees #mail{
	background:url('img/contact_picto3.svg') no-repeat;
	background-size:cover;
}
#contact_container #container_form #contact_column1 .coordonnees p{
	margin-left:20px;
	color:white;
}
#contact_container #container_form #contact_column1 .coordonnees a{
	color:white;
}
#contact_container #container_form #contact_column1 .coordonnees p a{
	color:white;
}
#contact_container #container_form #contact_column2{
	width:65%;
	padding-left:10%;
}
#contact_container #container_form #contact_column2 form{
	width:100%;
}
#contact_container #container_form #contact_column2 form div{
	width:100%;
}
#contact_container #container_form #contact_column2 label{
    width: 100%;
}
#contact_container #container_form #contact_column2 form div .input_contact{
	padding:6px 0px 6px 10px;
	font-size:20px;
	box-sizing: border-box;
	width: 100%;
	margin-bottom:0.5vh;
	font-family: 'montserratextralight';
	color:white;
	background:rgba(23,23,23,0.8);
	border:solid 1px rgba(255,255,255,0.5);
}
#contact_container #container_form #contact_column2 input[type=text] {
}
#contact_container #container_form #contact_column2 form div textarea{
	width:100%;
	height:120px;
	resize: none;
	font-size:20px;
	box-sizing: border-box;
	padding:6px 0px 6px 10px;
	font-family: 'montserratextralight';
	color:white;
	background:rgba(23,23,23,0.8);
	margin-bottom:3vh;
	border:solid 1px rgba(255,255,255,0.5);
}
#contact_container #container_form #contact_column2 form div #message{
	margin-bottom:1.5vh;
}
#contact_container #container_form #contact_column2 form div #submit_contact{
	width:100%;
	background:white;
	border: none;
	color:black;
	padding:5px 30px 5px 30px;
	font-size:24px;
	text-align:center;
	-webkit-transition:all 0.4s;
	-moz-transition:all 0.4s;
	-ms-transition:all 0.4s;
	transition:all 0.4s;
	cursor: pointer;
    text-decoration: none;
    display:block;
    margin:0 auto;
    font-family: 'montserratextralight';
}
#contact_container #container_form #contact_column2 form div #submit_contact:hover{
	background:black;
	color:white;
	border:1px solid white;
}
#contact_container #copyright{
	margin-top:10vh;
	padding-bottom:2vh;
	font-size:7pt;
	text-align:center;
}
#contact_container #copyright a{
	color:white;
	-webkit-transition:all 0.1s;
	-moz-transition:all 0.1s;
	-ms-transition:all 0.1s;
	transition:all 0.1s;
}
#contact_container #copyright a:hover{
	font-size:9pt;
}


#txt_portfolio_attente{
	text-align: center;
	margin-top:100px;
}





@media screen and (max-width: 1024px){
	body{
		margin:0;
		padding:0;
		font-family:'montserratregular';
		font-size:12pt;
		color:#202022;
		line-height: 140%;
	}
	.container{
		background:black url(img/1024/slide2.jpg);
		background-size: cover;
		width: 100%;
		height: 85vh;
	}
	.fullBackground {
		background-position: center center;
		background-size: 0%;
		width: 100%;
		height: 85vh;
		display:flex;
		flex-direction:column;
		align-items:center;
		justify-content:center;

	}




		
		#video-viewport { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	overflow: hidden; 
	z-index: -1; 
}
#video-viewport video { 

width: auto; 
height: 90vh; 
position: absolute; 
	top: 0; 
	left: -60%; 
}

.fullsize-video-bg { 
	height: 100%; 
overflow: hidden; 
}



.fullsize-video-bg .inner { 
	display: table; 
width: 80%; 
height: 80vh; 
margin: 0 auto; 
padding: 0; 
position: relative; 
z-index: 2; 
}
.fullsize-video-bg .inner > div { 
	text-align: center; 
	display: table-cell; 
	vertical-align: middle; 
	padding: 0 2em; 
}


#content_videoBG h1 { 
	font-family:'montserratbold';
font-size: 3em; 
line-height: .9; 
font-weight: 900; 
letter-spacing: -.025em; 
text-transform: uppercase; 
margin-bottom: .5em; 
}







		.logoVideo{
	width:60%;
	height:auto;
	z-index: 1;
}

	#about #bio_about img{
		width:30%;
	}
	#citation1{
		width:100%;
		background:url('img/1024/separation1.jpg') no-repeat center;
		background-size: cover;
		height:50vh;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-top:30vh;
	}
	#citation1 h3{
		color:white;
		width:80%;
		max-width:770px;
		font-size:20pt;
		text-align:center;
		line-height:140%;
	}
	#citation2{
		width:100%;
		background:url('img/1024/citation2.jpg') no-repeat center;
		background-size: cover;
		height:50vh;
		margin-top:30vh;
	}
	#citation3{
		width:100%;
		background:url('img/1024/citation3.jpg') no-repeat center;
		background-size: cover;
		height:50vh;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-top:30vh;
		display:inline-block;
	}
	#contact_container{
		width:100%;
		margin:0 auto;
		margin-top:25vh;
		background:black url('img/1024/BG_contact.jpg');
		color:white;
		padding-top:6vh;
	}
}
@media screen and (max-width: 768px){
	body{
		margin:0;
		padding:0;
		font-family:'montserratregular';
		font-size:12pt;
		color:#202022;
		line-height: 140%;
	}
	.container{
		background:black url(img/1024/slide2.jpg);
		background-size: cover;
		width: 100%;
		height: 85vh;
	}
	.fullBackground {
		  background-position: center center;
		  background-size: 0%;
		  width: 100%;
		  height: 85vh;
		  display:flex;
		  flex-direction:column;
		  align-items:center;
		  justify-content:center;

	}
	nav #tbLogoNav{
		width:16%;
		height:40%;
		background: url('img/logo1.svg') center no-repeat;
		padding-right: 0px;
	}
	nav li a{
		color:white;
		font-size:12pt;
		padding:18px 18px 18px 18px;
		-webkit-transition:all 0.3s ease-in-out;
		-moz-transition:all 0.3s ease-in-out;
		-ms-transition:all 0.3s ease-in-out;
		transition:all 0.3s ease-in-out;
	}
	#about{
		width:95%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#about #bio_about{
		display:flex;
		align-items:center;
		justify-content:space-around;
		flex-direction:column;
		margin-top:15vh;
	}
	#about #bio_about #column2_about{
		width:70%;
		display:flex;
		flex-direction:column;
		align-items:center;
	  	justify-content:center;
	  	margin-top:15vh;
	}
	#about #bio_about img{
		width:40%;
	}
	#citation1{
		width:100%;
		background:url('img/separation1.jpg') no-repeat center;
		background-size: cover;
		height:50vh;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-top:15vh;
	}
	#citation1 h3{
		color:white;
		width:80%;
		max-width:770px;
		font-size:20pt;
		text-align:center;
		line-height:140%;
	}
	#travail{
		width:100%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#travail #container_txt_travail{
		width:70%;
		margin:0 auto;
		display:flex;
		justify-content:space-between;
		align-items:flex-start;
		flex-direction:column;
		margin-top: 10vh;
	}
	#travail #container_txt_travail .travail_bocs{
		width:80%;
		margin:0 auto;
		margin-bottom:10vh;
	}
	#travail #container_txt_travail .travail_bocs:last-child{
		margin-bottom:none;
	}
	#travail #container_txt_travail .picto_travail{
		width:30%;
		display:block;
		margin:0 auto;
		margin-bottom:2vh;
	}
	#citation2{
		width:100%;
		background:url('img/citation2.jpg') no-repeat center;
		background-size: cover;
		height:50vh;
		margin-top:15vh;
	}
	#container_portfolio{
		width:98%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#container_portfolio #container_blocs{
		width:90%;
		margin:0 auto;
		margin-top:15vh;
		display:flex;
		align-items:flex-start;
		justify-content:center;
		flex-wrap:wrap;
	}
	#container_portfolio #container_blocs .blocs{
		width:49%;
		margin-right:1px;
		border-right:1px solid rgba(255,255,255,0.6);
		margin-bottom:4vh;
	}
	#citation3 h4{
		width:50%;
		margin-left: 10%;
		margin-top:10%;
		max-width:770px;
		font-size:14pt;
		line-height:170%;
	}
	#citation3 h5{
		width:50%;
		margin-left: 10%;
		max-width:770px;
		font-size:18pt;
		line-height:140%;
	}
	#citation3 h6{
		width:50%;
		margin-left: 10%;
		max-width:770px;
		font-size:22pt;
		line-height:140%;
	}
	#container_tarif{
		width:98%;
		max-width:1000px;
		margin:0 auto;
		margin-top:15vh;
	}
}
@media screen and (max-width: 668px){
	body{
		margin:0;
		padding:0;
		font-family:'montserratregular';
		font-size:8pt;
		color:#202022;
		line-height: 140%;
	}
	.container{
		background:black url(img/1024/slide2.jpg);
		background-size: cover;
		width: 100%;
		height: 85vh;
	}
	.fullBackground {
	  background-position: center center;
	  background-size: 0%;
	  width: 100%;
	  height: 85vh;
	  display:flex;
	  flex-direction:column;
	  align-items:center;
	  justify-content:center;

	}




		#video-viewport { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	overflow: hidden; 
	z-index: -1; 
}
#video-viewport video { 

width: auto; 
height: 90vh; 
position: absolute; 
	top: 0; 
	left: -90%; 
}

.fullsize-video-bg { 
	height: 100%; 
overflow: hidden; 
}



.fullsize-video-bg .inner { 
	display: table; 
width: 80%; 
height: 80vh; 
margin: 0 auto; 
padding: 0; 
position: relative; 
z-index: 2; 
}
.fullsize-video-bg .inner > div { 
	text-align: center; 
	display: table-cell; 
	vertical-align: middle; 
	padding: 0 2em; 
}


#content_videoBG h1 { 
	font-family:'montserratbold';
font-size: 3em; 
line-height: .9; 
font-weight: 900; 
letter-spacing: -.025em; 
text-transform: uppercase; 
margin-bottom: .5em; 
}








		.logoVideo{
	width:70%;
	height:auto;
	z-index: 1;
}
	.captionLogo{
		width:250px;
		height:30%;
		background: url('img/logo2.svg') top no-repeat;
	}
	.caption{
		font-size: 13pt;
		color:#FFF;
		padding-bottom:2%;
	}
	.caption strong{
		font-family:'montserratbold';
	}
	nav{
		width:100%;
		height:16vh;
		background:rgba(0,0,0,0.7);
		position:fixed;
		top:0;
		right:0;
		display:flex;
		justify-content:space-between;
		align-items:center;
		border-bottom: 1px solid white;
		-webkit-transform:translateY(-200%);
		-moz-transform:translateY(-200%);
		-ms-transform:translateY(-200%);
		transform:translateY(-200%);
		-webkit-transition:all 0.4s ease-in-out;
		-moz-transition:all 0.4s ease-in-out;
		-ms-transition:all 0.4s ease-in-out;
		transition:all 0.4s ease-in-out;
	}
	nav #tbLogoNav{
		width:10%;
		height:70%;
		background: url('img/logo1.svg') center no-repeat;
		padding-right: 0px;
	}
	nav li{
		float: left;
		border-right: 2px solid white;
		padding:2px 2px 2px 2px;
	}
	nav li a{
		color:white;
		font-size:8pt;
		padding:8px 8px 8px 8px;
		-webkit-transition:all 0.3s ease-in-out;
		-moz-transition:all 0.3s ease-in-out;
		-ms-transition:all 0.3s ease-in-out;
		transition:all 0.3s ease-in-out;
	}
	.btnNav{
		width:60px;
		height:60px;
		background: url('img/open.svg') center no-repeat ;
		background-size: 100% 100%;
		margin-right: 25px;
		z-index:21;
		cursor:pointer;
		position:fixed;
		right:0;
		top:1vh;
		-webkit-transition:all 0.2s ease-in-out;
		-moz-transition:all 0.2s ease-in-out;
		-ms-transition:all 0.2s ease-in-out;
		transition:all 0.2s ease-in-out;
	}
	.btnNav.open{
		width:30px;
		height:30px;
		background: url('img/down.svg') center no-repeat ;
		background-size: 100% 100%;
		margin-right: 30px;
		z-index:21;
		cursor:pointer;
		position:fixed;
		right:0;
		top:1vh;
		-webkit-transition:all 0.2s ease-in-out;
		-moz-transition:all 0.2s ease-in-out;
		-ms-transition:all 0.2s ease-in-out;
		transition:all 0.2s ease-in-out;
	}
	nav .btninvisible{
		width:50px;
		height:55%;
		background:orange;
		visibility:hidden;
	}
	#about{
		width:95%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
		#about h1{
		font-size:16pt;
		text-align:center;
	}
	#about #barre1_about{
		background:#202022;
		width:32%;
		height:2px;
		margin:0 auto;
		margin-top:8vh;
		margin-bottom:10vh;
	}
	#about #p1_about{
		text-align:center;
		font-size:10pt;
	}
	#about #bio_about{
		display:flex;
		align-items:center;
		justify-content:space-around;
		flex-direction:column;
		margin-top:15vh;
	}
	#about #bio_about #column2_about{
		width:70%;
		display:flex;
		flex-direction:column;
		align-items:center;
	  	justify-content:center;
	  	margin-top:15vh;
	}
	#about #bio_about img{
		width:30%;
	}
	#citation1{
		width:100%;
		background:url('img/separation1.jpg') no-repeat center;
		background-size: cover;
		height:50vh;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-top:15vh;
	}
	#citation1 h3{
		color:white;
		width:80%;
		max-width:770px;
		font-size:13pt;
		text-align:center;
		line-height:140%;
	}
	#travail{
		width:100%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#travail h1{
		font-size:17pt;
		text-align:center;
	}
	#travail #container_txt_travail{
		width:70%;
		margin:0 auto;
		display:flex;
		justify-content:space-between;
		align-items:flex-start;
		flex-direction:column;
		margin-top: 30vh;
	}
	#travail #container_txt_travail .travail_bocs{
		width:80%;
		margin:0 auto;
		margin-bottom:15vh;
	}
	#travail #container_txt_travail .travail_bocs:last-child{
		margin-bottom:none;
	}
	#travail #container_txt_travail .picto_travail{
		width:30%;
		display:block;
		margin:0 auto;
		margin-bottom:7vh;
	}
	#citation2{
		width:100%;
		background:url('img/citation2.jpg') no-repeat center;
		background-size: cover;
		height:70vh;
		margin-top:15vh;
	}
	#container_portfolio{
		width:98%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#container_portfolio #titre_portfolio h1{
		font-size:17pt;
		padding:19px;
		border-right:2px solid #202022;
	}
	#container_portfolio #container_blocs{
		width:95%;
		margin:0 auto;
		margin-top:15vh;
		display:flex;
		align-items:flex-start;
		justify-content:center;
		flex-wrap:wrap;
	}
	#container_portfolio #container_blocs .blocs{
		width:49%;
		margin-right:1px;
		border-right:1px solid rgba(255,255,255,0.6);
		margin-bottom:4vh;
	}
	#citation3{
		width:100%;
		background:url('img/citation3.jpg') no-repeat center;
		background-size: cover;
		height:70vh;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-top:30vh;
		display:inline-block;
	}
	#citation3 h4{
		width:50%;
		margin-left: 10%;
		margin-top:4%;
		max-width:770px;
		font-size:8pt;
		line-height:170%;
	}
	#citation3 h5{
		width:50%;
		margin-left: 10%;
		max-width:770px;
		font-size:12pt;
		line-height:140%;
	}
	#citation3 h6{
		width:50%;
		margin-left: 10%;
		max-width:770px;
		font-size:16pt;
		line-height:140%;
	}
	#container_tarif{
		width:98%;
		max-width:1000px;
		margin:0 auto;
		margin-top:15vh;
	}
	#contact_container h1{
		font-size:20pt;
		text-align:center;
		margin-top:15vh;
	}
	#contact_container #barre1_contact{
		background:white;
		width:32%;
		height:2px;
		margin:0 auto;
		margin-top:6vh;
		margin-bottom:4vh;
	}
	#contact_container #container_form{
		width:98%;
		max-width:1140px;
		margin:0 auto;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
		margin-top:15vh;
	}
	#contact_container #container_form #contact_column1{
		width:80%;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
	}
	#contact_container #container_form #contact_column1 img{
		width:250px;
		margin-bottom:5vh;
	}
	#contact_container #container_form #contact_column1 .coordonnees{
		display:flex;
		align-items:center;
		justify-content:flex-start;
		margin-bottom:2vh;
		width:40%;
	}
	#contact_container #container_form #contact_column1 .coordonnees:first-of-type{
		margin-top:5vh;
	}
	#contact_container #container_form #contact_column1 .coordonnees:last-child{
		margin-bottom:0;
		padding-bottom:10vh;
	}
	#contact_container #container_form #contact_column1 .coordonnees div{
		width:30px;
		height:30px;
	}
	#contact_container #container_form #contact_column1 .coordonnees #gsm{
		background:url('img/contact_picto1.svg') no-repeat;
		background-size:cover;
	}
	#contact_container #container_form #contact_column1 .coordonnees #face{
		background:url('img/contact_picto2.svg') no-repeat;
		background-size:cover;
	}
	#contact_container #container_form #contact_column1 .coordonnees #mail{
		background:url('img/contact_picto3.svg') no-repeat;
		background-size:cover;
	}
	#contact_container #container_form #contact_column1 .coordonnees p{
		margin-left:10px;
	}
	#contact_container #container_form #contact_column2{
		width:65%;
		padding-left:0%;
	}
	#contact_container #container_form #contact_column2 form{
		width:100%;
	}
	#contact_container #container_form #contact_column2 form div{
		width:100%;
	}
	#contact_container #container_form #contact_column2 label{
	    width: 100%;
	}
	#contact_container #container_form #contact_column2 form div .input_contact{
		padding:6px 0px 6px 10px;
		font-size:14px;
		box-sizing: border-box;
		width: 100%;
		margin-bottom:2vh;
		font-family: 'montserratextralight';
		color:white;
		background:rgba(23,23,23,0.8);
		border:solid 1px rgba(255,255,255,0.5);
	}
	#contact_container #container_form #contact_column2 input[type=text] {
	}
	#contact_container #container_form #contact_column2 form div textarea{
		width:100%;
		height:120px;
		resize: none;
		font-size:14px;
		box-sizing: border-box;
		padding:6px 0px 6px 10px;
		font-family: 'montserratextralight';
		color:white;
		background:rgba(23,23,23,0.8);
		margin-bottom:7vh;
		border:solid 1px rgba(255,255,255,0.5);
	}
	#contact_container #container_form #contact_column2 form div #message{
		margin-bottom:3.5vh;
	}
	#contact_container #container_form #contact_column2 form div #submit_contact{
		width:100%;
		background:white;
		border: none;
		color:black;
		padding:5px 30px 5px 30px;
		font-size:16px;
		text-align:center;
		-webkit-transition:all 0.4s;
		-moz-transition:all 0.4s;
		-ms-transition:all 0.4s;
		transition:all 0.4s;
		cursor: pointer;
	    text-decoration: none;
	    display:block;
	    margin:0 auto;
	    font-family: 'montserratextralight';
	}
	#contact_container #container_form #contact_column2 form div #submit_contact:hover{
		background:black;
		color:white;
		border:1px solid white;
	}
	#contact_container #copyright{
		margin-top:15vh;
		padding-bottom:7vh;
		font-size:5pt;
		text-align:center;
	}
	#contact_container #copyright a{
		color:white;
		-webkit-transition:all 0.1s;
		-moz-transition:all 0.1s;
		-ms-transition:all 0.1s;
		transition:all 0.1s;
	}
	#contact_container #copyright a:hover{
		font-size:7pt;
	}

}
@media screen and (max-width: 570px){
	body{
		margin:0;
		padding:0;
		font-family:'montserratregular';
		font-size:8pt;
		color:#202022;
		line-height: 140%;
	}
	.container{
		background:black url(img/570/slide2.jpg);
		background-size: cover;
		width: 100%;
		height: 85vh;
	}
	.fullBackground {
	  background-position: center center;
	  background-attachment: fixed;
	  width: 100%;
	  height: 85vh;
	  display:flex;
	  flex-direction:column;
	  align-items:center;
	  justify-content:center;

	}
	.logoVideo{
	width:70%;
	height:auto;
	z-index: 1;
}
	.captionLogo{
		/*width:37%;*/
		width:250px;
		height:30%;
		background: url('img/logo2.svg') top no-repeat;
	}
	.caption{
		font-size: 13pt;
		color:#FFF;
		padding-bottom:2%;
	}
	.caption strong{
		font-family:'montserratbold';
	}
	nav{
		width:100%;
		height:16vh;
		background:rgba(0,0,0,0.7);
		position:fixed;
		top:0;
		right:0;
		display:flex;
		justify-content:space-between;
		align-items:center;
		border-bottom: 1px solid white;
		-webkit-transform:translateY(-200%);
		-moz-transform:translateY(-200%);
		-ms-transform:translateY(-200%);
		transform:translateY(-200%);
		-webkit-transition:all 0.4s ease-in-out;
		-moz-transition:all 0.4s ease-in-out;
		-ms-transition:all 0.4s ease-in-out;
		transition:all 0.4s ease-in-out;
	}
	nav #tbLogoNav{
		width:10%;
		height:70%;
		background: url('img/logo1.svg') center no-repeat;
		padding-right: 0px;
	}
	nav li{
		float: left;
		border-right: 2px solid white;
		padding:2px 2px 2px 2px;
	}
	nav li a{
		color:white;
		font-size:8pt;
		padding:8px 8px 8px 8px;
		-webkit-transition:all 0.3s ease-in-out;
		-moz-transition:all 0.3s ease-in-out;
		-ms-transition:all 0.3s ease-in-out;
		transition:all 0.3s ease-in-out;
	}
	.btnNav{
		width:60px;
		height:60px;
		background: url('img/open.svg') center no-repeat ;
		background-size: 100% 100%;
		margin-right: 25px;
		z-index:21;
		cursor:pointer;
		position:fixed;
		right:0;
		top:1vh;
		-webkit-transition:all 0.2s ease-in-out;
		-moz-transition:all 0.2s ease-in-out;
		-ms-transition:all 0.2s ease-in-out;
		transition:all 0.2s ease-in-out;
	}
	.btnNav.open{
		width:30px;
		height:30px;
		background: url('img/down.svg') center no-repeat ;
		background-size: 100% 100%;
		margin-right: 30px;
		z-index:21;
		cursor:pointer;
		position:fixed;
		right:0;
		top:1vh;
		-webkit-transition:all 0.2s ease-in-out;
		-moz-transition:all 0.2s ease-in-out;
		-ms-transition:all 0.2s ease-in-out;
		transition:all 0.2s ease-in-out;
	}
	nav .btninvisible{
		width:50px;
		height:55%;
		background:orange;
		visibility:hidden;
	}
	#about{
		width:95%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
		#about h1{
		font-size:16pt;
		text-align:center;
	}
	#about #barre1_about{
		background:#202022;
		width:32%;
		height:2px;
		margin:0 auto;
		margin-top:8vh;
		margin-bottom:10vh;
	}
	#about #p1_about{
		text-align:center;
		font-size:10pt;
	}
	#about #bio_about{
		display:flex;
		align-items:center;
		justify-content:space-around;
		flex-direction:column;
		margin-top:15vh;
	}
	#about #bio_about #column2_about{
		width:70%;
		display:flex;
		flex-direction:column;
		align-items:center;
	  	justify-content:center;
	  	margin-top:15vh;
	}
	#about #bio_about img{
		width:30%;
	}
	#citation1{
		width:100%;
		background:url('img/570/separation1.jpg') no-repeat center;
		background-size: cover;
		height:50vh;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-top:15vh;
	}
	#citation1 h3{
		color:white;
		width:80%;
		max-width:770px;
		font-size:13pt;
		text-align:center;
		line-height:140%;
	}
	#travail{
		width:100%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#travail h1{
		font-size:17pt;
		text-align:center;
	}
	#travail #container_txt_travail{
		width:70%;
		margin:0 auto;
		display:flex;
		justify-content:space-between;
		align-items:flex-start;
		flex-direction:column;
		margin-top: 30vh;
	}
	#travail #container_txt_travail .travail_bocs{
		width:80%;
		margin:0 auto;
		margin-bottom:15vh;
	}
	#travail #container_txt_travail .travail_bocs:last-child{
		margin-bottom:none;
	}
	#travail #container_txt_travail .picto_travail{
		width:30%;
		display:block;
		margin:0 auto;
		margin-bottom:7vh;
	}
	#citation2{
		width:100%;
		background:url('img/570/citation2.jpg') no-repeat center;
		background-size: cover;
		height:70vh;
		margin-top:15vh;
	}
		#citation2 img{
			width: 80%;
	margin-top:50%;
	margin-left:10%;
}
	#container_portfolio{
		width:98%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#container_portfolio #titre_portfolio h1{
		font-size:17pt;
		padding:19px;
		border-right:2px solid #202022;
	}
	#container_portfolio #container_blocs{
		width:95%;
		margin:0 auto;
		margin-top:15vh;
		display:flex;
		align-items:flex-start;
		justify-content:center;
		flex-wrap:wrap;
	}
	#container_portfolio #container_blocs .blocs{
		width:49%;
		margin-right:1px;
		border-right:1px solid rgba(255,255,255,0.6);
		margin-bottom:4vh;
	}
	#citation3{
		width:100%;
		background:url('img/375/citation3.jpg') no-repeat center;
		background-size: cover;
		height:70vh;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-top:30vh;
		display:inline-block;
	}
	#citation3 h4{
		width:50%;
		margin-left: 40%;
		margin-top:4%;
		max-width:770px;
		font-size:8pt;
		line-height:170%;
		text-align:right;
		font-family: 'montserratbold';
	}
	#citation3 h5{
		width:50%;
		margin-left: 40%;
		max-width:770px;
		font-size:12pt;
		line-height:140%;
		text-align:right;
		font-family: 'montserratbold';
	}
	#citation3 h6{
		width:50%;
		margin-left: 40%;
		max-width:770px;
		font-size:16pt;
		line-height:140%;
		text-align:right;
		font-family: 'montserratbold';
	}
	#container_tarif{
		width:98%;
		max-width:1000px;
		margin:0 auto;
		margin-top:15vh;
	}
	#contact_container{
		width:100%;
		margin:0 auto;
		margin-top:25vh;
		background:black url('img/570/BG_contact.jpg');
		color:white;
		padding-top:6vh;
	}
	#contact_container h1{
		font-size:20pt;
		text-align:center;
		margin-top:15vh;
	}
	#contact_container #barre1_contact{
		background:white;
		width:32%;
		height:2px;
		margin:0 auto;
		margin-top:6vh;
		margin-bottom:4vh;
	}
	#contact_container #container_form{
		width:98%;
		max-width:1140px;
		margin:0 auto;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
		margin-top:15vh;
	}
	#contact_container #container_form #contact_column1{
		width:80%;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
	}
	#contact_container #container_form #contact_column1 img{
		width:250px;
		margin-bottom:5vh;
	}
	#contact_container #container_form #contact_column1 .coordonnees{
		display:flex;
		align-items:center;
		justify-content:flex-start;
		margin-bottom:2vh;
		width:40%;
	}
	#contact_container #container_form #contact_column1 .coordonnees:first-of-type{
		margin-top:5vh;
	}
	#contact_container #container_form #contact_column1 .coordonnees:last-child{
		margin-bottom:0;
		padding-bottom:10vh;
	}
	#contact_container #container_form #contact_column1 .coordonnees div{
		width:30px;
		height:30px;
	}
	#contact_container #container_form #contact_column1 .coordonnees #gsm{
		background:url('img/contact_picto1.svg') no-repeat;
		background-size:cover;
	}
	#contact_container #container_form #contact_column1 .coordonnees #face{
		background:url('img/contact_picto2.svg') no-repeat;
		background-size:cover;
	}
	#contact_container #container_form #contact_column1 .coordonnees #mail{
		background:url('img/contact_picto3.svg') no-repeat;
		background-size:cover;
	}
	#contact_container #container_form #contact_column1 .coordonnees p{
		margin-left:10px;
	}
	#contact_container #container_form #contact_column2{
		width:65%;
		padding-left:0%;
	}
	#contact_container #container_form #contact_column2 form{
		width:100%;
	}
	#contact_container #container_form #contact_column2 form div{
		width:100%;
	}
	#contact_container #container_form #contact_column2 label{
	    width: 100%;
	}
	#contact_container #container_form #contact_column2 form div .input_contact{
		padding:6px 0px 6px 10px;
		font-size:14px;
		box-sizing: border-box;
		width: 100%;
		margin-bottom:2vh;
		font-family: 'montserratextralight';
		color:white;
		background:rgba(23,23,23,0.8);
		border:solid 1px rgba(255,255,255,0.5);
	}
	#contact_container #container_form #contact_column2 input[type=text] {
	}
	#contact_container #container_form #contact_column2 form div textarea{
		width:100%;
		height:120px;
		resize: none;
		font-size:14px;
		box-sizing: border-box;
		padding:6px 0px 6px 10px;
		font-family: 'montserratextralight';
		color:white;
		background:rgba(23,23,23,0.8);
		margin-bottom:7vh;
		border:solid 1px rgba(255,255,255,0.5);
	}
	#contact_container #container_form #contact_column2 form div #message{
		margin-bottom:3.5vh;
	}
	#contact_container #container_form #contact_column2 form div #submit_contact{
		width:100%;
		background:white;
		border: none;
		color:black;
		padding:5px 30px 5px 30px;
		font-size:16px;
		text-align:center;
		-webkit-transition:all 0.4s;
		-moz-transition:all 0.4s;
		-ms-transition:all 0.4s;
		transition:all 0.4s;
		cursor: pointer;
	    text-decoration: none;
	    display:block;
	    margin:0 auto;
	    font-family: 'montserratextralight';
	}
	#contact_container #container_form #contact_column2 form div #submit_contact:hover{
		background:black;
		color:white;
		border:1px solid white;
	}
	#contact_container #copyright{
		margin-top:15vh;
		padding-bottom:7vh;
		font-size:5pt;
		text-align:center;
	}
}
@media screen and (max-width: 375px){
	body{
		margin:0;
		padding:0;
		font-family:'montserratregular';
		font-size:10pt;
		color:#202022;
		line-height: 140%;
	}
	.container{
		background:black url(img/375/slide2.jpg);
		background-size: cover;
		width: 100%;
		height: 85vh;
	}
	.fullBackground {
	  background-position: center center;
	  background-attachment: fixed;
	  background-size: 0%;
	  width: 100%;
	  height: 85vh;
	  display:flex;
	  flex-direction:column;
	  align-items:center;
	  justify-content:center;

	}
	.captionLogo{
		/*width:37%;*/
		width:310px;
		height:30%;
		background: url('img/logo2.svg') top no-repeat;
	}
	.caption{
		font-size: 17pt;
		color:#FFF;
		padding-bottom:2%;
		width:80%;
		height:20vh;
		line-height:180%;
		margin:0 auto;
	}
	.caption strong{
		font-family:'montserratbold';
	}
	nav{
		width:100%;
		height:36vh;
		background:rgba(0,0,0,0.9);
		position:fixed;
		top:0;
		right:0;
		display:flex;
		justify-content:space-between;
		align-items:flex-start;
		border-bottom: 1px solid white;
		-webkit-transform:translateY(-200%);
		-moz-transform:translateY(-200%);
		-ms-transform:translateY(-200%);
		transform:translateY(-200%);
		-webkit-transition:all 0.4s ease-in-out;
		-moz-transition:all 0.4s ease-in-out;
		-ms-transition:all 0.4s ease-in-out;
		transition:all 0.4s ease-in-out;
	}
	nav.isOpen{
		width:100%;
		height:auto;
		background:rgba(0,0,0,0.9);
		position:fixed;
		top:0;
		right:0;
		display:flex;
		justify-content:space-between;
		align-items:flex-start;
		border-bottom: 1px solid white;
		-webkit-transform:translateY(0%);
		-moz-transform:translateY(0%);
		-ms-transform:translateY(0%);
		transform:translateY(0%);
		-webkit-transition:all 0.2s ease-in-out;
		-moz-transition:all 0.2s ease-in-out;
		-ms-transition:all 0.2s ease-in-out;
		transition:all 0.2s ease-in-out;
	}
	nav #tbLogoNav{
		width:20%;
		height:20%;
		margin-top:10%;
		margin-left:2%;
		background: url('img/logo1.svg') center no-repeat;
		padding-right: 0px;
		display:none;
	}
	nav li{
		float: none;
		border-right: none;
		border-bottom: none;
		padding:18px 2px 18px 2px;	
		margin-left:30px;
	}
	li:last-child {
		border-right: none;
	    border-bottom: none;
	}
	nav li a{
		color:white;
		font-size:15pt;
		padding:13px 13px 13px 13px;
		-webkit-transition:all 0.3s ease-in-out;
		-moz-transition:all 0.3s ease-in-out;
		-ms-transition:all 0.3s ease-in-out;
		transition:all 0.3s ease-in-out;
	}
	.btnNav{
		width:80px;
		height:80px;
		background: url('img/open.svg') center no-repeat ;
		background-size: 100% 100%;
		margin-right: 0px;
		z-index:21;
		cursor:pointer;
		position:fixed;
		right:0;
		top:1vh;
		-webkit-transition:all 0.2s ease-in-out;
		-moz-transition:all 0.2s ease-in-out;
		-ms-transition:all 0.2s ease-in-out;
		transition:all 0.2s ease-in-out;
	}
	.btnNav.open{
		width:80px;
		height:80px;
		background: url('img/down.svg') center no-repeat ;
		background-size: 100% 100%;
		margin-right: 0px;
		z-index:21;
		cursor:pointer;
		position:fixed;
		right:0;
		top:1vh;
		-webkit-transition:all 0.2s ease-in-out;
		-moz-transition:all 0.2s ease-in-out;
		-ms-transition:all 0.2s ease-in-out;
		transition:all 0.2s ease-in-out;
	}
	nav .btninvisible{
		width:50px;
		height:55%;
		background:orange;
		visibility:hidden;
	}
	#about{
		width:95%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#about h1{
		font-size:14pt;
		text-align:center;
	}
	#about #barre1_about{
		background:#202022;
		width:32%;
		height:2px;
		margin:0 auto;
		margin-top:4vh;
		margin-bottom:6vh;
	}
	#about #p1_about{
		text-align:center;
		font-size:10pt;
	}
	#about #bio_about{
		display:flex;
		align-items:center;
		justify-content:space-around;
		flex-direction:column;
		margin-top:7vh;
	}
	#about #bio_about #column2_about{
		width:70%;
		display:flex;
		flex-direction:column;
		align-items:center;
	  	justify-content:center;
	  	margin-top:8vh;
	}
	#about #bio_about img{
		width:70%;
	}
	#citation1{
		width:100%;
		background:url('img/375/separation1.jpg') no-repeat center;
		background-size: cover;
		height:500px;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-top:8vh;
	}
	#citation1 h3{
		color:white;
		width:80%;
		max-width:770px;
		font-size:13pt;
		text-align:center;
		line-height:140%;
	}
	#travail{
		width:100%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#travail h1{
		font-size:17pt;
		text-align:center;
	}
	#travail #container_txt_travail{
		width:70%;
		margin:0 auto;
		display:flex;
		justify-content:space-between;
		align-items:flex-start;
		flex-direction:column;
		margin-top: 7vh;
	}
	#travail #container_txt_travail .travail_bocs{
		width:100%;
		margin:0 auto;
		margin-bottom:8vh;
	}
	#travail #container_txt_travail .travail_bocs:last-child{
		margin-bottom:none;
	}
	#travail #container_txt_travail .picto_travail{
		width:50%;
		display:block;
		margin:0 auto;
		margin-bottom:3vh;
	}
	#citation2{
		width:100%;
		background:url('img/375/citation2.jpg') no-repeat center;
		background-size: cover;
		height:70vh;
		margin-top:15vh;
	}
	#citation2 img{
	width:60%;
	max-width:520px;
	margin-top:50%;
	margin-left:20%;
}
	#container_portfolio{
		width:98%;
		max-width:1400px;
		margin:0 auto;
		margin-top:15vh;
	}
	#container_portfolio #titre_portfolio{
		width:84%;
		margin:0 auto;
		display:flex;
		align-items:center;
		justify-content:center;
		flex-direction:column;
	}	
	#container_portfolio #titre_portfolio h1{
		font-size:17pt;
		padding:19px;
		border-right:none;
		border-bottom:2px solid #202022;
	}
	#container_portfolio #titre_portfolio p{
		padding:13px;
		text-align:center;
	}
	#container_portfolio #container_blocs{
		width:95%;
		margin:0 auto;
		margin-top:7vh;
		display:flex;
		align-items:flex-start;
		justify-content:center;
		flex-wrap:wrap;
		flex-direction:column;
	}
	#container_portfolio #container_blocs .blocs{
		width:100%;
		margin:0 auto;
		margin-right:1px;
		border-right:none;
		margin-bottom:3vh;
	}
	#citation3{
		width:100%;
		background:url('img/375/citation3.jpg') no-repeat center;
		background-size: cover;
		height:70vh;
		display:flex;
		align-items:center;
		justify-content:center;
		margin-top:15vh;
		display:inline-block;
	}
	#citation3 h4{
		width:80%;
		margin-left: 15%;
		margin-top:25%;
		max-width:770px;
		font-size:13pt;
		line-height:170%;
		text-align:right;
		font-family: 'montserratbold';
	}
	#citation3 h5{
		width:80%;
		margin-left: 15%;
		max-width:770px;
		font-size:17pt;
		line-height:140%;
		text-align:right;
		font-family: 'montserratbold';
	}
	#citation3 h6{
		width:80%;
		margin-left: 15%;
		max-width:770px;
		font-size:21pt;
		line-height:140%;
		text-align:right;
		font-family: 'montserratbold';
	}
	#container_tarif{
		width:98%;
		max-width:1000px;
		margin:0 auto;
		margin-top:15vh;
	}
	#container_tarif #titre_tarif{
		width:95%;
		margin:0 auto;
		display:flex;
		align-items:center;
		justify-content:center;
	}
	#container_tarif #titre_tarif h1{
		font-size:24pt;
		padding:19px;
		border-right:2px solid #202022;
	}
	#container_tarif #titre_tarif p{
		padding:15px;
	}
	#container_tarif #container_blocs_tarif{
		margin:0 auto;
		margin-top:13vh;
		width:100%;
		max-width:1000px;
		display:flex;
		align-items:f;
		justify-content:center;
		flex-direction:column;
	}
	#container_tarif #container_blocs_tarif .blocs_tarifs{
		width:80%;
		margin:0 auto;
		padding:0px;
		padding-right:0%;
		border-right:none;
	}
	#container_tarif #container_blocs_tarif .blocs_tarifs:last-child{
		width:80%;
		margin:0 auto;
		padding:0px;
		padding-right:0%;
		border-right:none;
		margin-top:5vh;
	}
	#container_tarif #container_blocs_tarif .blocs_tarifs img{
		width:100%;
	}
	#container_tarif #container_blocs_tarif .blocs_tarifs ul{
		margin-top:5vh;
		list-style-image: url('img/tiret.svg');
		list-style-position: outside;
		padding: 0;
	  	margin-left: 1em;
	}
	#container_tarif #container_blocs_tarif .blocs_tarifs li{
		font-size:12pt;
	}
	#contact_container{
		width:100%;
		margin:0 auto;
		margin-top:12vh;
		background:black url('img/375/BG_contact.jpg');
		color:white;
		padding-top:2vh;
	}
	#contact_container h1{
		font-size:20pt;
		text-align:center;
		margin-top:5vh;
	}
	#contact_container #barre1_contact{
		background:white;
		width:32%;
		height:2px;
		margin:0 auto;
		margin-top:6vh;
		margin-bottom:4vh;
	}
	#contact_container #container_form{
		width:98%;
		max-width:1140px;
		margin:0 auto;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
		margin-top:10vh;
	}
	#contact_container #container_form #contact_column1{
		width:80%;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
	}
	#contact_container #container_form #contact_column1 img{
		width:250px;
		margin-bottom:5vh;
	}
	#contact_container #container_form #contact_column1 .coordonnees{
		display:flex;
		align-items:center;
		justify-content:flex-start;
		margin-bottom:2vh;
		width:90%;
	}
	#contact_container #container_form #contact_column1 .coordonnees:first-of-type{
		margin-top:5vh;
	}
	#contact_container #container_form #contact_column1 .coordonnees:last-child{
		margin-bottom:0;
		padding-bottom:10vh;
	}
	#contact_container #container_form #contact_column1 .coordonnees div{
		width:40px;
		height:40px;
	}
	#contact_container #container_form #contact_column1 .coordonnees #gsm{
		background:url('img/contact_picto1.svg') no-repeat;
		background-size:cover;
	}
	#contact_container #container_form #contact_column1 .coordonnees #face{
		background:url('img/contact_picto2.svg') no-repeat;
		background-size:cover;
	}
	#contact_container #container_form #contact_column1 .coordonnees #mail{
		background:url('img/contact_picto3.svg') no-repeat;
		background-size:cover;
	}
	#contact_container #container_form #contact_column1 .coordonnees p{
		margin-left:13px;
	}
	#contact_container #container_form #contact_column2{
		width:85%;
		padding-left:0%;
	}
	#contact_container #container_form #contact_column2 form{
		width:100%;
	}
	#contact_container #container_form #contact_column2 form div{
		width:100%;
	}
	#contact_container #container_form #contact_column2 label{
	    width: 100%;
	}
	#contact_container #container_form #contact_column2 form div .input_contact{
		padding:10px 0px 10px 13px;
		font-size:14px;
		box-sizing: border-box;
		width: 100%;
		margin-bottom:2vh;
		font-family: 'montserratextralight';
		color:white;
		background:rgba(23,23,23,0.8);
		border:solid 1px rgba(255,255,255,0.5);
	}
	#contact_container #container_form #contact_column2 input[type=text] {
	}
	#contact_container #container_form #contact_column2 form div textarea{
		width:100%;
		height:120px;
		resize: none;
		font-size:14px;
		box-sizing: border-box;
		padding:6px 0px 6px 10px;
		font-family: 'montserratextralight';
		color:white;
		background:rgba(23,23,23,0.8);
		margin-bottom:7vh;
		border:solid 1px rgba(255,255,255,0.5);
	}
	#contact_container #container_form #contact_column2 form div #message{
		margin-bottom:3.5vh;
	}
	#contact_container #container_form #contact_column2 form div #submit_contact{
		width:100%;
		background:white;
		border: none;
		color:black;
		padding:12px 30px 12px 30px;
		font-size:16px;
		text-align:center;
		-webkit-transition:all 0.4s;
		-moz-transition:all 0.4s;
		-ms-transition:all 0.4s;
		transition:all 0.4s;
		cursor: pointer;
	    text-decoration: none;
	    display:block;
	    margin:0 auto;
	    font-family: 'montserratextralight';
	}
	#contact_container #container_form #contact_column2 form div #submit_contact:hover{
		background:black;
		color:white;
		border:1px solid white;
	}
	#contact_container #copyright{
		margin-top:12vh;
		padding-bottom:5vh;
		font-size:8pt;
		text-align:center;
	}
}

