@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,700);

body {
	font-weight: 300;
	color: black;
	font-size: 16px;
	height: 100%;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

header {
	padding: 35px 15px 0 15px;
	height: 150px;
	line-height: 150px;
}
header .header_logo {
	float: left;
	margin-right: 30px;
	max-height: 120px;
	max-width: 100%;
}
header .header_title {
	display: inline-block;
	line-height: 120px;	
}
@media screen and (max-width:768px) {
	header { height: 130px; line-height: 130px }
	header .header_logo { height: 100px; }
	header .header_title { line-height: 100px; }
}
@media screen and (max-width:620px) {
	header { height: 110px; line-height: 110px }
	header .header_logo { height: 90px; margin-right: 20px;	}
	header .header_title { line-height: 90px; }
}
@media screen and (max-width:520px) {
	header { height: 100px; line-height: 100px }
	header .header_logo { height: 80px; margin-right: 15px;	}
	header .header_title { line-height: 80px; }
}
@media screen and (max-width:480px) {
	header {
		height: 160px;
	}
	header .header_logo {
		float: none;
		margin-bottom: 20px;
	}
	header .header_title {
		line-height: 80px;
		text-align: left;
	}
}


nav {
	font-size: 18px;
	padding: 0 15px;
	margin-bottom: 30px;
}
nav .separator {
	font-weight: 700;
	margin: 0 20px;	
}
nav a {
	color: black;
	text-decoration: none;	
}
nav a:hover {
	text-decoration: none;
}

header h1 {
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 26px;
	margin: 0;
}
header h2 {
	font-size: 24px;
	font-weight: 300;
	line-height: 24px;
	margin: 0;
}
header .header_title.min h1 {
	font-size: 22px;
	line-height: 22px;
}
header .header_title.min h2 {
	font-size: 20px;
	line-height: 20px;
}
@media screen and (max-width:820px) {
	header h2 span {
		display: none;
	}
}
@media screen and (max-width:580px) {
	header h1 { font-size: 24px; line-height: 24px; }
	header h2 { font-size: 20px; line-height: 20px; }
	header .header_title.min h1 { font-size: 20px; line-height: 20px; }
	header .header_title.min h2 { font-size: 18px; line-height: 18px; }
}

#page {
	position: relative;
	background: white;
	padding-bottom: 80px;
	min-height: 100%;
}

.slidesjs-navigation {
	position: absolute;
	top: 50%;	
}

@media screen and (min-width:521px) {
	.slidesjs-navigation {
		background-repeat: no-repeat;
		background-position: center center;
		border-radius: 50%;
		width: 60px;
		height: 60px;
		margin-top: -30px;
		z-index: 40;
		cursor: pointer;
		
		transition: opacity .2s;
	}
	
	.slidesjs-previous {
		background-image: url(../img/arrow_left.png);
		left: -30px;
	}
	.slidesjs-next {
		background-image: url(../img/arrow_right.png);
		right: -30px;
	}
}
@media screen and (max-width:520px) {
	.slidesjs-navigation {
		display: inline-block;
		width: 0;
		height: 0;
		padding-top: 5px;
		border-style: solid;
		border-width: 10px 5px 0 5px;
		margin-top: -5px;
		cursor: pointer;
		
		-webkit-transform-origin: 50% 20%;
		-moz-transform-origin: 50 20%;
		-ms-transform-origin: 50 20%;
		-o-transform-origin: 50 20%;
		transform-origin: 50% 20%;
	}
	
	.slidesjs-previous {
		left: -20px;
		
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.slidesjs-next {
		right: -20px;
		
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
}

.slider {
	width: 100%;
	height: auto;
	margin-bottom: 35px;
	overflow: visible !important;	
}
.slider img {
	width: 100% !important;
}

.slider_project {
	max-height: 600px;
	margin-bottom: 30px;
	overflow: visible !important;
}
.slider_project span {
	display: inline-block;
	height: 100%;
	width: 100%;
	text-align: center;
	overflow: hidden;
}
.slider_project span img {
	height: 100%;
	width: auto;
	text-align: center;
}
.slider_project .slidesjs-container {
	height: 100% !important;
}

#thumbnails img {
	position: relative;
	cursor: pointer;
	margin-bottom: 4%;
}

.project {
	margin-top: 30px;	
}
.project h1 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 0;
}
.project h2 {
	font-size: 16px;
	font-weight: 300;
	color: black;
}
.project a > img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;	
}
.project a > img:hover {
	opacity: 0.6;	
}

@media screen and (min-width:521px) {
	.project_title{
		margin-top: 40px;
		margin-bottom: 25px;
	}
}
@media screen and (max-width:520px) {
	.project_title{
		margin-top: 15px;
		margin-bottom: 20px;
	}
}
.project_title h1 {
	font-size: 26px;
	margin-bottom: 5px;
	font-weight: 400;
}
.project_title h2 {
	font-size: 20px;
	font-weight: 300;
	color: black;
	margin-top: 5px;
}
.project_year{
	font-size: 24px;
	margin-top: 0;
}
@media screen and (max-width:680px) {
	.project_year{ font-size: 20px; }
}

.filet {
	width: 75px !important;
}

.desc_project{
	font-size: 20px;
	text-justify: auto;
}
@media screen and (max-width:520px) {
	.desc_project{ font-size: 16px; }	
}
.desc_project iframe {
	max-width: 720px;	
}
.desc_project p {
	margin-bottom: 20px;	
}

footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 50px;
	line-height: 50px;
	color: white;
	box-sizing: border-box;
	z-index: 400;
}
@media screen and (max-width:959px) {
	footer { position: relative; height: auto; text-align: center; }
}
#footer_wrapper {
	background-color: transparent;
}
#social_networks {
	padding-top: 6px;
	text-align: right;
}
@media screen and (max-width:959px) {
	#social_networks { text-align: center; }	
}
#social_networks a i {
	margin-left: 15px;
	color: white;
}

/* A Propos  */

#photo img {
	width: 100%;	
}
#info_contact {
	margin-bottom: 40px;
}
#info_contact ul { margin-top: 40px; }
#info_contact ul li {
	font-size: 18px;
	margin-top: 15px;
}
#info_contact ul li i {
	font-size: 32px;
	margin-left: 30px;
	border-bottom: 1px solid;
}
#info_contact ul li p {
	color: #1a1a1a;
	margin-top: -10px;
}

@media screen and (max-width:520px) {
	#info_contact ul { margin-top: 0; }
	#info_contact ul li:first-child { margin-top: 0; }
}
@media screen and (min-width:481px) and (max-width:959px) {
	#info_text {
		margin-top: 0;
		vertical-align: bottom;
	}
}

h1 {
	font-weight: 300;
	font-size: 26px;
	line-height: 28px;
	margin-bottom: 30px;
}
#accordeon h1 {
	text-transform: uppercase;
	margin-top: 50px;
	cursor: pointer;
	
	-webkit-transition: color .2s;
	-moz-transition: color .2s;
	-ms-transition: color .2s;
	-o-transition: color .2s;
	transition: color .2s;
}

.fleche {
	display: inline-block;
	width: 0;
	height: 0;
	padding-top: 5px;
	margin-left: 20px;
	border-style: solid;
	border-width: 8px 4px 0 4px;
	cursor: pointer;
	
	-webkit-transform-origin: 50% 20%;
	-moz-transform-origin: 50 20%;
	-ms-transform-origin: 50 20%;
	-o-transform-origin: 50 20%;
	transform-origin: 50% 20%;
	
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
} 

.rotate {
	margin-top: -10px !important;
	
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

#about_title {
	margin-bottom: 15px;	
}
#about p {
	color: #1a1a1a;
	font-size: 16px;
	line-height: 30px;
	margin-top: 30px;
}
#accordeon {
	margin-top: 50px;
}

.exp h4 {
	font-weight: 300;
	color: #000000;
	font-size: 24px;
	line-height: 24px;
} 
.exp h2 {
	font-weight: 300;
	font-size: 24px;
	line-height: 28px;
}
.exp h3 {
	font-weight: 300;
	color: #000000;
	font-size: 16px;
	line-height: 28px;
}
.exp ul {
	list-style-type: none;
	line-height: 30px;
}

.proj h2 {
	font-weight: 300;
	font-size: 24px;
	line-height: 24px;
}
.proj h3 {
	font-weight: 300;
	color: #000000;
	font-size: 16px;
	line-height: 28px;
}

.item {
	margin-bottom: 40px;	
}
.comp {
	width: 100%;	
}
.comp .item {
	margin-bottom: 30px;
}
.item h2 {
	margin-bottom: 15px;	
}
.item h4 {
	margin-bottom: 10px;	
}
.item p {
	margin: 0 !important;	
}

.comp h2 {
	font-size: 24px !important;
	color: #121212;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 5px;
}


.filter_filet {
	background-image: url(../img/filet.png);
	background-repeat: repeat-x;
	height: 50px;	
}
#filter_title {
	color: black;
	height: 50px;
	line-height: 50px;
	font-size: 26px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
}
#filter_title p:first-child {
	display: inline-block;
	line-height: 28px;
	vertical-align: middle;
}
@media screen and (min-width:521px) and (max-width:800px) {
	#filter_title { font-size: 20px; }
	#filter_title p:first-child { line-height: 22px; }
}
@media screen and (max-width:520px) {
	#filter_title { font-size: 18px; }
	#filter_title p:first-child { line-height: 20px; }
}
@media screen and (max-width:460px) {
	#filter_title { font-size: 16px; }
	#filter_title p:first-child { line-height: 18px; }
}

#filters {
	margin-left: auto;
	margin-right: auto;
	display: none;
}

#filters li {
	cursor: pointer;
}

.arrow{
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 8px;
	border-color: transparent transparent transparent black;
	margin-right: 30px;
	margin-left: 40px;
} 

#filter_top_arrow {
	display: block;
	width: 0;
	height: 0;
	padding-top:15px;
	margin-left:auto;
	margin-right:auto;
	border-style: solid;
	border-width: 8px 4px 0 4px;
	border-color: black transparent transparent transparent;
	cursor: pointer;
}

#filter_bottom_arrow {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 10px 5px;
	border-color: transparent transparent black transparent;
	padding-top: 25px;
	margin-left: auto;
	margin-right: auto;
	
	pointer-events: none;
}

#filter_bottom_line {
	border-bottom: 3px solid black;
	height: 10px;
	width: 50px;
	margin-left: auto;
	margin-right: auto;
	
	pointer-events: none;
}

#reduce {
	display: block;
	cursor: pointer;
}

#projects .mix {
	display: none;
}

#to_top {
	position: fixed;
	display: none;
	width: 38px;
	height: 38px;
	bottom: 70px;
	right: 0;
	z-index: 900;
	cursor: pointer;
}