/**
* Color Set
* Noir : #070A13, rgb(7, 10, 19);
* Rouge : #E71E24, rgb(231, 30, 36);
*/
*{ box-sizing: border-box; }
body{
	font-family: 'Roboto Regular';
	overflow: hidden;
}
body.blog-page{ overflow: auto; }
.container{
	max-width: 1024px;
	height: auto;
}
.no-margin{
	margin: 0px;
}
.no-padding{
	padding: 0px;
}
.img-full img{
	width: 100%;
	height: auto;
}
.bordered{
	border: 1px solid #000;
}
.animated,
.magictime{
	visibility: hidden;
}
.uncolored{
	color: #fff;
}
.titre{
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	opacity: 0;
	margin-top: 100px;

	-webkit-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	-moz-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	-ms-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
}
.titre.showed{
	opacity: 1;
}

/**
* Menu
*/
#menu{
	width: 54px;
	position: fixed;
	top: 15px;
	right: 15px;
	z-index: 15;
	padding: 5px 0;

	background-color: transparent;
	overflow: hidden;
	
	-webkit-transition: background-color ease-in 0.2s, width cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
	-moz-transition: background-color ease-in 0.2s, width cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
	-ms-transition: background-color ease-in 0.2s, width cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
	transition: background-color ease-in 0.2s, width cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}
#menu.opened{
	width: 530px;
	background-color: rgba(255, 255, 255, 0.8); /* rgba(7, 10, 19, 0.8) */
	/* border-top-left-radius: 10px; 
	border-bottom-left-radius: 10px;  */
}
#menu.accueil.opened{
	width: 500px;
}
#menu .menu li:not(.icon){
	opacity: 0;
	-webkit-transition: opacity ease-in 0.3s;
	-moz-transition: opacity ease-in 0.3s;
	-ms-transition: opacity ease-in 0.3s;
	transition: opacity ease-in 0.3s;
}
#menu.opened .menu li:not(.icon){
	opacity: 1;
}
#menu.opened .menu li:not(.icon) a{
	text-shadow: 0px 1px 1px rgba(0,0,0,0.2);
}
.menu{
	display: inline-block;
	width: 530px;
	float: right;
	margin: 0 0 0 0;
}
.menu li{
	float: right;
	display: inline-block;
	vertical-align: top;
}
.menu li.icon{
	height: 44px;
	width: 54px;
}
.menu li .ic{
	font-size: 1.5em;
}
.menu li a{
	color: #070A13; 
	display: inline-block;
	padding: 10px 15px;
	font-family: "Lato Regular";
	height: 43px;
}
.menu li .logo{
	width: 35px;
	height: 35px;
	margin: -5px 0 0 0;
}
.menu li .logo .codesymbol{
	font-size: 1.2em;
	margin-top: -9px;
    margin-left: -11px;
} 
#menu.opened .menu li a:hover{
	color: rgba(231, 30, 36, 1);
}
#menu.opened .menu li a{
	color: #070A13;
}

/**
* Logo
*/
.logo{
	width: 70px;
	height: 70px;

	display: block;
	margin: 0 auto 30px auto;

	border-top-right-radius: 50%;
	border-bottom-right-radius: 50%;

	position: relative;
	overflow: hidden;

	-webkit-transition: all ease-in 0.2s;
	-moz-transition: all ease-in 0.2s;
	-o-transition: all ease-in 0.2s;
	transition: all ease-in 0.2s;
}
.logo.intro{
	box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}
.logo,
.logo:hover{
	box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.logo .bg{
	width: 100%;
}
.logo .codesymbol{
	color: #fff;
	font-size: 2.0em;

	position: absolute;
	top: 50%;
	left: 50%;

	margin-top: -15px;
	margin-left: -17px;

	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/**
* Pager
*/
.pager{
	position: fixed;
	top: 54%;
	right: 1%;
	z-index: 100;
	display: inline-block;
	vertical-align: top;

	margin: 0 0 0 0;
	padding: 10px 5px 5px;
	background-color: rgba(0,0,0,0.7);
}
.pager .item{
	width: 15px;
	height: 15px;

	border-radius: 100%;
	background-color: transparent;
	border-width: 2px;
	border-style: solid;
	border-color: #fff;
	margin-bottom: 5px;
	cursor: pointer;

	-webkit-transition: all ease-in 0.3s;
	-moz-transition: all ease-in 0.3s;
	-ms-transition: all ease-in 0.3s;
	-o-transition: all ease-in 0.3s;
	transition: all ease-in 0.3s;
}
.pager .item.active{
	background-color: #fff !important;
}

/**
* When Code
* Meets Art
*/
.wcma{
	text-align: center;
}
.wcma.header{
	margin-top: 10px;
	position: fixed;
	top: 0px;
	left: 50%;

	margin-left: -168px;
	z-index: 10;
}
.wcma *{
	display: inline-block;
	vertical-align: middle;
}
.wcma p{
	margin: 5px 0 0 0;
	font-family: 'Alex Brush';
	font-size: 2.0em;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.8);
}
.wcma p.wc{
	margin-right: 10px;
	color: #070913;
}
.wcma p.wc *,
.wcma p.ma *{
	-webkit-transition: all ease-in 0.2s;
	-moz-transition: all ease-in 0.2s;
	-o-transition: all ease-in 0.2s;
	transition: all ease-in 0.2s;
}
.wcma p.wc span.when,
.wcma p.ma span.meets{
	margin-right: 15px;
}
.wcma p.ma{
	margin-left: 10px;
	color: #E71E24;
}
.wcma .logo{
	margin-bottom: 0px;
}

/**
* Bg Colors
*/
.bgwhite{
	background-color: #fff;
}

/**
* Header
*/

.livide{
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: auto;

	z-index: 12;
}
.livide img{
	height: 100%;
	width: auto;
}
#vue{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.page{
	width: 100%;
	position: relative;
	background-color: transparent;
	overflow: hidden;
	display: none;
}
.first .content{
	width: 100%;
	height: inherit;
}
.first .text{
	position: absolute;
	top: 50%;
	
	width: 100%;
}
.first .text .logo{
	width: 140px;
	height: 140px;
	margin-bottom: 30px;
}
.first .text .logo .bg{
	display: none;
}
.first .text .logo .codesymbol{
	font-size: 6.0em;

	margin-top: -45px;
	margin-left: -50px;
}
.first .text .wcma p{
	margin-top: -20px;
	font-size: 3.5em;
}
.first .text .wcma .wc{
	margin-right: 30px;
}
.first .text .wcma .ma{
	margin-left: 30px;
}
.first .text .name{
	font-family: 'Roboto Bold';
	margin: 0 0 0 0;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.first .text .function{
	font-size: 1.5em;
	margin: 0 0 0 0;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.first .text .quotes{
	margin: 0 0 0 0;
	font-family: 'Lato Regular';
	font-style: italic;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.mouse{
	position: fixed;
	bottom: 10px;
	right: 10px;

	width: 25px;
}
.arrow-down,
.arrow-up{
	color: #070A13;
	position: fixed;

	font-size: 2.0em;
	padding: 3px;
	border: 2px solid #070A13;
	border-radius: 0%;
	left: 50%;
	margin-left: -24px;

	cursor: pointer;

	-webkit-transition: all ease-in 0.1s;
	-moz-transition: all ease-in 0.1s;
	-o-transition: all ease-in 0.1s;
	transition: all ease-in 0.1s;

	z-index: 5;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.arrow-up{
	top: 20px;
	display: none;
}
.arrow-down{
	bottom: 20px;
}
.arrow-up:hover,
.arrow-down:hover{
	background-color: #070A13;
	color: #fff;
	border-radius: 50%;
}

/**
* Deuxième
* page
*/
.second,
.third{
	background-color: #fff;
}
.second .content,
.third .content{
	position: absolute;

	border: 1px solid #eee;
	width: 60%;
	height: 265px;

	top: 50%;
	left: 50%;

	margin-left: -30%;
	margin-top: -172px;
	padding: 10px;
}
.second .content h3,
.third .content h3{
	font-family: 'Roboto Light';
	text-transform: uppercase;
	margin-top: 0px;
	color: #272727;

	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.second .content p{
	font-family: 'Lato Regular';
	text-align: justify;
}
.second .content p strong{
	font-weight: bold;
	font-family: 'Lato Bold';
	font-style: italic;
}

/**
* Troisième
* Page
*/
.portfolio > h3{
	width: 70%;
	margin: 0 auto;
	margin-top: 100px;

	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	opacity: 0;

	-webkit-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	-moz-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	-ms-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
}
.portfolio > h3.showed{
	opacity: 1;
}
.portfolio .projects{
	width: 70%;
	margin: 0 auto;
	margin-top: 30px;

	height: auto;
	border: none;
}
.third .content .projects{
	margin-top: 15px;
}
.portfolio .projects .project{
	width: 210px;
	height: 118.8px;
	border: 1px solid #bbb;

	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
	margin-bottom: 14px;

	overflow: hidden;
	position: relative;

	opacity: 0;

	-webkit-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	-moz-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	-ms-transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
	transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
}
.portfolio .projects .project.showed{
	opacity: 1;
}
.portfolio .projects .project:nth-child(4n+0){
	margin-right: 0px;
}
.portfolio .projects .project .inner{
	position: absolute;
	top: 100%;
	left: 0px;

	width: 100%;
	height: 100%;

	background-color: rgba(0,0,0,0.8);
	padding: 10px;

	-webkit-transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
	-o-transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
	transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}
.portfolio .projects .project:hover .inner{
	top: 0;
}
.portfolio .projects .project .inner p{
	color: #fff;
	font-family: 'Roboto Bold';
	margin: 0 0 0 0;
}
.portfolio .projects .project .inner p.nature{
	margin: 0px 0 0 0;
}
.portfolio .projects .project .inner p span{
	font-family: 'Lato Light';
}

.shadow{
	width: 100%;
	height: 100%;

	position: fixed;
	top: 0px;
	left: 0px;

	background-color: #fff;
	z-index: 5;
	display: none;
}
.shadow.ctc{
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 13;
}

/**
* A Propos
*/
.about{
	position: absolute;
	height: 418px;
	width: 100%;
	background-color: #161616;

	top: 50%;
	right: 0px;
	margin-top: -2px;
	z-index: 10;

	box-shadow: 5px 5px 10px rgba(0,0,0,0.8) inset;
	color: #fff;

	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	-o-transform-origin: 100% 50%;
	transform-origin: 100% 50%;

	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);

	height: 4px;

	-webkit-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;
	-moz-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;
	-ms-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;
	-o-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;
	transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;

	overflow: hidden;

	/* border-top-left-radius: 20px;
	border-bottom-left-radius: 20px; */
}
.about.showedX{
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);

	height: 2px;
}
.about.showed{
	-webkit-transition: all cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s;
	-moz-transition: all cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s;
	-ms-transition: all cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s;
	-o-transition: all cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s;
	transition: all cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s;

	height: 480px;
	margin-top: -240px;
}
.about.boxed{
	box-shadow: 5px 5px 10px rgba(0,0,0,0.8) inset, 0px 1px 5px rgba(0,0,0,0.8);
}
.about .content{
	width: 60%;
	display: block;
	margin: 0 0 0 25%;
	padding: 10px 30px 20px;

	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	font-family: 'Roboto Light';
}
.about .content h3{
	font-family: 'Roboto Light';
}
.about .content p{
	text-align: justify;
}
.about .ca-c{
	text-align: center;
}
.about .close-about{
	display: inline-block;
	margin: 0 auto 15px;
	font-size: 3.5em;
	color: #fff;
	text-decoration: none;

	-webkit-transition: all ease-in 0.1s;
	-moz-transition: all ease-in 0.1s;
	-ms-transition: all ease-in 0.1s;
	transition: all ease-in 0.1s;
}
.about .close-about:hover{
	color: rgba(231, 30, 36, 1);
}


/**
* Contact
*/
.contact{
	position: absolute;
	height: 380px;
	width: 400px;
	
	top: 50%;
	left: 50%;

	margin-top: -190px;
	margin-left: -200px;

	z-index: 14;
	color: #fff;

	opacity: 0;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.8);

	-webkit-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0);

	-webkit-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;
	-moz-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;
	-ms-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;
	-o-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;
	transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.7s;

	overflow: hidden;
}
.contact.showed{
	opacity: 1;
	-webkit-transform: none;
    transform: none;
}
.contact:hover{
	box-shadow: 0px 0px 1px rgba(231, 30, 36, 1);
}
.contact .content{
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 0;

	padding: 15px;

	font-family: "Roboto Light";
	text-shadow: 0px 0px 2px rgba(7, 10, 19, 0.8);
	color: #070A13;
}

.contact .content h3{
	display: inline-block;
	vertical-align: top;
	margin: 0 0 0 0;
}
.contact .content h3 + p{
	margin-bottom: 45px;
}
.contact .content p{
	margin-top: 0px;
	padding-left: 5px;
	font-size: 0.9em;
}
.contact .content .infos{ text-align: center; }
.contact .content .infos a{ 
	text-decoration: none;
	color: #070A13;
}
.contact .content .line *{
	display: inline-block;
	vertical-align: middle;
}
.contact .content .line{
	font-size: 1.3em;
	margin-bottom: 10px;
	text-align: center;
}
.contact .content .line{
	width: auto;
}
.contact .content .line .ic{
	font-size: 2.5em;

	-webkit-transition: all ease-in 0.1s;
	-moz-transition: all ease-in 0.1s;
	-ms-transition: all ease-in 0.1s;
	transition: all ease-in 0.1s;

	margin-right: 15px;
	color: #fff;
}
.contact .content .ca-c{
	text-align: center;
}
.contact .content .close-contact{
	position: absolute;
	top: 0px;
	right: 5px;

	display: inline-block;
	margin: 0 auto 15px;
	font-size: 2.0em;
	color: #fff;
	text-decoration: none;

	-webkit-transition: all ease-in 0.1s;
	-moz-transition: all ease-in 0.1s;
	-ms-transition: all ease-in 0.1s;
	transition: all ease-in 0.1s;
}
.contact:hover .close-contact{
	color: #E71E24;
}
.contact .content .close-contact:hover{
	color: #0A0D16;
}
.contact .content .line.email:hover .ic{ color: #0077B5; }
.contact .content .line.fb:hover .ic{ color: #3B5998; }
.contact .content .line.tw:hover .ic{ color: #55ACEE; }

/**
* Blog
*/
.blogitems .blogitem{ margin-bottom: 25px; }
.blogitems .blogitem .img{
	height: 100px;
	background-color: #eee;
}
.blogitems .blogitem .title{
	font-size: 1.2em;
	margin: 10px 0 0 0;
	color: #0A0D16;

	-webkit-transition: all ease-in 0.2s;
	-o-transition: all ease-in 0.2s;
	transition: all ease-in 0.2s;
}
.blogitems .blogitem a:hover .title{
	color: #E71E24;
}
.blog .more{
	display: block;
	width: 64px;
	margin: 0 auto;
	border: 2px solid #070A13;
	text-align: center;
	font-size: 1.1em;
	padding: 0px 7px;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #070A13;
	font-weight: bold;
}

/**
* Tutoriels
*/
.pg{ display: none; }
.tutoriels .hero{
	position: absolute;
	width: 100%;
	height: 100%;
	
	background-image: url(../img/pattern.png);
	-webkit-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}
.tutoriels .hero.mini{
	height: 100px;
}
.tutoriels .hero .inner{
	position: relative;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
}
.tutoriels .hero .hero-content{
	position: absolute;
	width: 100%;
	height: 100%;

	top: 0px;
	left: 0px;
}
.tutoriels .hero.mini .hero-content{
	left: 50%;
	width: 960px;
	height: 100%;
	margin-left: -480px;
	top: 0%;
	padding: 15px 0px 7px;
}
.tutoriels .hero.mini .hinner{
	width: 100%;
	height: 100%;
	position: relative;
	top: 0px;
	left: 0px;
}
.tutoriels .hero h1{
	position: absolute;
	width: 20%;
	left: 50%;
	top: 35%;
	text-align: center;
	margin: 0 0 0 -10%;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	color: #0A0D16;
}
.tutoriels .hero.mini h1{
	left: 0px;
	top: 25%;
	font-size: 2.5em;
}
.tutoriels .hero p{
	position: absolute;
	width: 20%;
	left: 50%;
	top: 45%;
	text-align: center;
	margin: 0 0 0 -10%;
}
.tutoriels .hero.mini p{
	width: 100%;
	left: 0px;
	top: 65%;
	text-align: left;
}
.tutoriels .hero .godown{
	position: absolute;
	bottom: 25px;
	cursor: pointer;
	padding: 7px 5px 1px 5px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	border-radius: 50%;

	left: 50%;
	margin-left: -22px;
	overflow: hidden;
	width: 44px;
	height: 44px;
	overflow: hidden;
}
.tutoriels .hero .godown .ginner{
	position: relative;
	width: 100%;
	height: 100%;
}
.tutoriels .hero .godown .back{
	position: absolute;
	top: -52px;
	left: -5px;

	width: 44px;
	height: 44px;
	background-color: #0A0D16;
	-webkit-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}
.tutoriels .hero .godown span{
	font-size: 2.2em;
	display: block;
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	color: #0A0D16;
	-webkit-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}
.tutoriels .hero .godown:hover .back{ top: -7px; }
.tutoriels .hero .godown:hover span{ color: #fff; }
.tutoriels .hero.mini .godown{ display: none; }