/*
*	DESIGNED BY PILI MALFRAY
*/

* {
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
}

/* PLUGIN */

.container {
	width: 100%;max-width: 1000px;
	padding: 0px 20px;
	margin: 0px auto;
}

.cimagex {
	display: none;
}

.vcenterbox {
	text-align: center;
	white-space: nowrap;
}

.vcenterbox:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

.vcenter {
	display: inline-block;
	width: 100%;
	color: #FFF;
	vertical-align: middle;
}

.row { overflow: auto;clear: both; }
.row > div { float: left; }
.col-1 { width: 8.333333%; }
.col-2 { width: 16.666666%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333333%; }
.col-5 { width: 41.666666%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333333%; }
.col-8 { width: 66.666666%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666666%; }
.col-12 { width: 100%; }

/* DOCUMENT */

body {
	font-family: "Roboto-Light";
	font-size: 14px;
}

/* HEADER */

header {
	position: fixed;
	top: 0px;left: 0px;
	width: 100%;height: 64px;
	background-color: #FFF;
	-webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	-o-box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	z-index: 5;
}

header .logo > img {
	height: 60px;
	margin: 2px 0px;
}

header .mobi-menu {
	display: none;
	font-size: 50px;
	line-height: 64px;
	padding: 0px 20px;
	cursor: pointer;
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;
}

header nav { float: right; }
header nav > ul { list-style-type: none; }
header nav > ul > li { float: left; }

header nav > ul > li > a {
	display: block;
	height: 64px;
	color: #666;
	font-size: 18px;
	line-height: 64px;
	text-decoration: none;
	padding: 0px 20px;
	cursor: pointer;
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;
}

header nav > ul > li > a:hover {
	background-color: #EEE;
}

/* ASIDE */

aside .presentation {
	position: relative;
	width: 100%;height: 512px;
	margin-top: 64px;
}

aside .presentation > .backscreen {
	position: fixed;
	width: 100%;height: 512px;
	background-image: url("../img/presentation.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	z-index: 1;
}

aside .presentation > .mainscreen {
	position: absolute;
	top: 0px;left: 0px;
	width: 100%;height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 2;
}

aside .presentation > .mainscreen > div {
	width: 100%;
	word-wrap: break-word;
}

aside .presentation > .mainscreen > div > h1 {
	font-size: 55px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

aside .presentation > .mainscreen > div > span {
	font-size: 25px;
}

aside .presentation > .mainscreen > div > button {
	display: block;
	background-color: #3E78A9;
	border: 1px solid #F1F1F1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	color: #FFF;
	font-size: 20px;
	padding: 10px;
	margin: 20px auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.2s ease;
	cursor: pointer;
}

aside .presentation > .mainscreen > div > button:hover {
	background-color: #234660;
}

/* WIDGET */

aside .widget-alert {
	position: fixed;
	top: 0px;left: 0px;
	width: 100%;height: 0px;
	background-color: #22CC22;
	font-size: 16px;
	text-align: center;
	overflow: hidden;
	z-index: 6;
}

/* CONTENT */

section {
	position: relative;
	background-color: #FFF;
	z-index: 3;
}

section > article {
	border-bottom: 2px solid #DDD;
	padding: 20px;
}

section > article:nth-of-type(2n+1) { background-color: #FFF; }
section > article:nth-of-type(2n) { background-color: #F1F1F1; }

section > article > div > h2 {
	text-align: center;
	font-size: 30px;
	color: #444;
	margin-bottom: 10px;
}

section > article > div > h3 {
	text-align: center;
	font-size: 22px;
	color: #234660;
}

section > article > div > h2 {
	text-align: center;
	font-size: 18px;
	color: #234660;
	font-weight: normal;
	margin-top: 15px;
}

section > article > div > hr {
	width: 100px;
	border-bottom: 1px solid #3E78A9;
	margin: 0px auto;
}

/* BLOB INFO */

.blob-info > .row {
	margin: 30px 0px;
}

.blob-info > .row > div {
	text-align: center;
	padding: 10px;
}

.blob-info > .row > div > img {
	width: 100%;max-width: 200px;
}

.blob-info > .row > div > span {
	display: block;
	color: #234660;
	font-size: 22px;
	margin: 10px 0px;
}

/* SOFT INFO */

.soft-info {
	margin: 30px 0px;
}

.soft-info > .row > div {
	text-align: center;
	padding: 20px;
}

.soft-info > .row > div > img {
	width: 100%;max-width: 200px;
}

.soft-info > .row > div > h4 {
	font-size: 20px;
	margin: 10px 0px;
}

.soft-info > .row > div > span {
	display: block;
	color: #234660;
	font-size: 18px;
	margin: 10px 0px;
}

/* CONTACT */

.contact {
	margin: 20px 0px;
}

.contact > .fields {
	overflow: auto;
}

.contact > .fields > input, .contact > .fields > textarea {
	float: left;
	background-color: #FFF;
	border: none;
	border-bottom: 1px solid #DDD;
	color: #000;
	font-size: 18px;
	font-weight: bold;
	font-style: normal;
	font-family: "Roboto-Light";
	padding: 10px;
}

.contact > .fields > input:focus, .contact > .fields > textarea:focus {
	background-color: #F5F5F5;
}

.contact > .fields > input[name=nom] { width: 50%; }
.contact > .fields > input[name=mail] { width: 50%; }
.contact > .fields > input[name=objet] { width: 100%; }
.contact > .fields > textarea[name=message] { width: 100%;height: 200px; }

.contact > button {
	display: block;
	background-color: #3E78A9;
	border: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	color: #FFF;
	font-size: 18px;
	padding: 10px;
	margin: 20px auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.2s ease;
	cursor: pointer;
}

.contact > button:hover {
	background-color: #234660;
}

/* FOOTER */

footer {
	background-color: #3E78A9;
	font-size: 18px;
	color: #FFF;
	padding: 20px 0px;
}

footer > div > a {
	color: #F1F1F1;
	font-weight: bold;
	text-decoration: none;
}

/* Responsive Design */

/***** RESPONSIVE DESIGN *****/
/* Tablets */
@media screen and (max-width: 960px) {

	aside .presentation > .mainscreen > div > h1 { font-size: 30px; }
	aside .presentation > .mainscreen > div > span { font-size: 15px; }

	header {
		min-height: 64px;height: auto;
	}

	header nav {
		float: none;
	}

	header nav > ul > li {
		display: none;
		float: none;
	}

	header nav > ul > li.show {
		display: block;
	}

	header .mobi-menu {
		display: block;
		float: right;
	}

	.row > div { width: 100%; }

	.contact > .fields > input[name=nom],
	.contact > .fields > input[name=mail] { width: 100%; }
}

/* Smartphones */
@media screen and (max-width: 550px) {}