@charset "utf-8";
/* CSS Document */


/*======================*/
/* TABLE OF CONTENT */
/*======================*/
/* 1. GLOBAL */
/* 2. TYPOGRAPHY */
/* 3. SIDEBAR - MENU */
/* 4. INTRO */
/* 5. PROJECTS */
/* 6. MEDIA QUERIES */
/*======================*/

/*======================*/
/* GLOBAL */
/*======================*/

*::-moz-selection{
	color:white;
	background-color:#644fa0;
}

*::selection{
	color:white;
	background-color:#644fa0;
}

*{
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}

body{
	color:#564f69;
	font-family:'PT Sans', Helvetica, Arial, sans-serif;
	font-size:15px;
	letter-spacing: normal;
	line-height:1.5em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#wrapper{
	overflow-x:hidden;
	position:absolute;
	right:0;
	width:calc(100% - 100px);
	z-index:2;
}

section {
  width: 100%;
  padding: 0 7%;
  display: table;
  margin: 0;
  max-width: none;
  background-color: #fff; 
}

.hide{
	display:none;
}

.center{
	text-align:center;
}

/* Particles Bakcground */

#particles-js{
	height: 100%;
	position:fixed;
	width: 100%;
}

#gradient-bg{
	height: 100%;
	position:fixed;
	width: 100%;
	/*z-index:1;*/ /* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #3b237f), color-stop(100%, #a84ef6)); /* safari4+,chrome */
	background: -webkit-linear-gradient(60deg, #3b237f 0%, #a84ef6 100%); /* safari5.1+,chrome10+ */
	background: -o-linear-gradient(60deg, #3b237f 0%, #a84ef6 100%); /* opera 11.10+ */ /* ie10+ */
	background: linear-gradient(30deg, #3b237f 0%, #a84ef6 100%); /* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a84ef6', endColorstr='#3b237f',GradientType=0 ); /* ie6-9 */ 
}

/*======================*/
/* TYPOGRAPHY */
/*======================*/

strong{
	font-weight: 700;
}

p, ul, ol{
	margin-bottom:10px;
}

ul {
    list-style: none;
    margin-left: 0;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

li:before {
    content: "•";
    display: block;
    float: left;
    width: 1em;
    color: #644fa0;
}

li{
	margin-left:10px;
}

a{
	color:#644fa0;
	font-family:'Ubuntu', 'Asap', Helvetica, Arial, sans-serif;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	
}

.link {
	font-size: 0.8em; /*12px*/
	letter-spacing: 0.5px;
	position: relative;
}

.link::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(100,79,160,0.5);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	-o-transition: opacity 0.3s, transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	    transform: translateY(10px);
}

.link:hover::after,
.link:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	    transform: translateY(0px);
}

h2{
    color: #644fa0;
	font-family:'Ubuntu', 'Asap', Helvetica, Arial, sans-serif;
	font-size:2.4em;/*36px*/
	font-weight:700;
	line-height:1.1em;
	margin-bottom:10px;
}

h3{
    color: #644fa0;
	font-family:'Ubuntu', 'Asap', Helvetica, Arial, sans-serif;
	font-size:0.933em;/*14px*/
	font-weight:700;
	letter-spacing:0.25em;
	text-transform:uppercase;
}

h4{
    color: #644fa0;
	font-family: 'Ubuntu', 'Asap', Helvetica, Arial, sans-serif;
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 20px;
}

/* Dark Background */

.white, .white a{
	color:white;
}

/* Buttons */

.button-link{
	border-bottom:3px solid #644fa0;
	cursor: pointer;
	display:inline-block;
	font-family:'Ubuntu', 'Asap', Helvetica, Arial, sans-serif;
	font-size: 1em;
	font-weight:700;
	padding:6px 0 4px 0;
	position:relative;
	text-decoration: none;
	text-transform:uppercase;
}

.button-link-spacing{
	letter-spacing:0.25em;
}

/* Buttons - Dark Background */

.white .button-link{
	border-bottom-color:white;
}

/* Button Hover Effect */
.button-link::before,
.button-link::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	border: 2px solid rgba(100,79,160,0.2);
	border-radius: 50%;
	content: '';
	opacity: 0;
	
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-o-transition: -moz-transform 0.3s, opacity 0.3s;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	-o-transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.2);
	    transform: translateX(-50%) translateY(-50%) scale(0.2);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.button-link::after {
	width: 60px;
	height: 60px;
	border-width: 7px;
	
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.8);
	    transform: translateX(-50%) translateY(-50%) scale(0.8);
}

.button-link:hover::before,
.button-link:hover::after{
	opacity: 1;
	
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	-ms-transform: translateX(-50%) translateY(-50%) scale(1);
	    transform: translateX(-50%) translateY(-50%) scale(1);
}

.button-link:hover, .white .button-link:hover{
	border-bottom-color:transparent;
	-webkit-transition: border-bottom-color 0.3s, opacity 0.3s;
	-o-transition: border-bottom-color 0.3s, opacity 0.3s;
	transition: border-bottom-color 0.3s, opacity 0.3s;
}

/* Dark Background */

.white .button-link::before,
.white .button-link::after {
	border-color: rgba(255,255,255,0.2);
}

.white a::before,
.white a::after{
	border-color: rgba(255,255,255,0.2);
}

/*======================*/
/* SIDEBAR - MENU */
/*======================*/

nav{
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
	background-color:white;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
	-webkit-box-pack:justify;
	    -ms-flex-pack:justify;
	        justify-content:space-between;
	height:100%;
	left:0;
	padding:30px 0;
	position:fixed;
	text-align:center;
	width:100px;
	z-index:5;
	
	-webkit-box-shadow:-5px 0px 15px rgba(59,35,127,0.4);
	-o-box-shadow:-5px 0px 15px rgba(59,35,127,0.4);
	box-shadow:-5px 0px 15px rgba(59,35,127,0.4);
}

nav .flex-child{
	-webkit-box-flex:1;
	    -ms-flex-positive:1;
	        flex-grow:1;
}

#sigle img{
	cursor: pointer;
}

#about-link{
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
	border-bottom: none;
	cursor:pointer;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	text-align:center;	
}

#about-link-icon{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

#about-link-icon::before,
#about-link-icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	border: 2px solid rgba(100,79,160,0.2);
	border-radius: 50%;
	content: '';
	opacity: 0;
	
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-o-transition: -moz-transform 0.3s, opacity 0.3s;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	-o-transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.2);
	    transform: translateX(-50%) translateY(-50%) scale(0.2);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#about-link-icon::after {
	width: 60px;
	height: 60px;
	border-width: 7px;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.8);
	    transform: translateX(-50%) translateY(-50%) scale(0.8);
}

#about-link-icon:hover::before,
#about-link-icon:hover::after,
#about-link-icon:focus::before,
#about-link-icon:focus::after{
	opacity: 1;
	
	-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1) translate3d(0, 0, 0);
	transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1) translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#about-link:hover .menu-short{
	width:33px;
	-webkit-transition: width 0.3s ease-out;
	-o-transition: width 0.3s ease-out;
	transition: width 0.3s ease-out;
}

.menu-long{
	background-color:#644fa0;
	margin-bottom:6px;
	height:4px;
	width:33px;
}

.menu-short{
	background-color:#644fa0;
	height:4px;
	width:22px;
}

/* Remove hover effect on mobile to prevent it to stay when panel is closed */

.about-link-mobile-fix #about-link-icon:hover::before,
.about-link-mobile-fix #about-link-icon:hover::after,
.about-link-mobile-fix #about-link-icon:focus::before,
.about-link-mobile-fix #about-link-icon:focus::after{
	opacity: 0;
	
	-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1) translate3d(0, 0, 0);
	transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1) translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.about-link-mobile-fix#about-link:hover .menu-short{
	width:22px;
}

/* Social Media */

#social-media-links{
	-webkit-box-align:end;
	    -ms-flex-align:end;
	        align-items:flex-end;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}

#social-media-links ul{
    padding-left: 0;
    text-indent: 0;
}

#social-media-links li::before{
	display:none;
}

#social-media-links li{
	margin-left:0;
}

#social-media-links a{
	border-bottom:none;
	display:inline-block;
	font-size:1.067em;
	margin-top:10px;
	padding-bottom:none;
}

/* About Panel */

#about{
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color:white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	height:100%;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	left:-600px;
	margin-left:100px;
	margin-top:0; 
	overflow: auto;
	padding:30px;
	position:fixed;
	width:500px;
	z-index:4;

	-webkit-transform: translateX(0);
  	-ms-transform: translateX(0);
	    transform: translateX(0);
  	-webkit-transition: .3s ease all;
	-o-transition: .3s ease all;
  	transition: .3s ease all;
}

#about-top{
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 30px;
	        flex: 0 0 30px;
	visibility: hidden;
	margin-bottom: auto;
}

#about-bottom{
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 30px;
	        flex: 0 1 30px;
	visibility: hidden;
	margin-top: auto;
}

#about.show-panel{
	-webkit-transform: translateZ(0) translateX(600px);
  	transform: translateZ(0) translateX(600px);
}

#overlay{
	background-color:rgba(60,36,128,0.9);
	height:100%;
	position:fixed;
	width:100%;
  	-webkit-transition: .3s ease all;
	-o-transition: .3s ease all;
  	transition: .3s ease all;
}

.overlay-hide{
	opacity:0;
	z-index:1;
	-webkit-animation: overlayapparition 1s backwards;
	animation: overlayapparition 1s backwards;
}

.overlay-appear{
	z-index:3;
	-webkit-animation: overlayapparition 1s;
	animation: overlayapparition 1s;
}

@-webkit-keyframes overlayapparition {
	0% {display: none;}
	100% {display: block;}
}

@keyframes overlayapparition {
	0% {display: none;}
	100% {display: block;}
}

/*======================*/
/* INTRO */
/*======================*/


#intro{
	background-color: transparent;
	height:100vh;
	padding:0;
	width:100%;
}

#intro img{
	left:100px;
	margin:0 auto;
	max-height:30%;
	max-width:75%;
	position:fixed;
	right:0;
	top:30%;
}

#scroll-projects{
	bottom:30%;
	left:0;
	margin:0 auto 0 -90px;
	position:absolute;
	right:0;
}

/* Scroll to Projects Animation */

@-webkit-keyframes scrollapparition {
	0% {-webkit-transform: translateY(100vh);transform: translateY(100vh);}
	100% {-webkit-transform: translateY(0);transform: translateY(0);}
}

@keyframes scrollapparition {
	0% {-webkit-transform: translateY(100vh);transform: translateY(100vh);}
	100% {-webkit-transform: translateY(0);transform: translateY(0);}
}

/*======================*/
/* PROJECTS */
/*======================*/

#projects{
	padding:0;
	position:absolute;
	top:0;
}

.home-alternate#projects{
	position: initial;
}

.content {
  display: table-cell;
  vertical-align: middle;
}

.project-row{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	height:500px;
	
	position: relative;
}

.project-row:hover .project-image{
	opacity:0.5;
}

.project-link{
	cursor: pointer;
	height: 100%;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	width: 100%;
	z-index: 999;
}

.project-row:hover .project-link{
	visibility: visible;
}

/* Projects Infos */

.project-infos{
	background-color:white;
	cursor:pointer;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	padding:50px;
	width:34%;
	-webkit-transition: background-color 0.3s ease-out;
	-o-transition: background-color 0.3s ease-out;
	transition: background-color 0.3s ease-out;
}

.project-row:hover .project-infos{
	background-color:#3c2480;
}

.project-row:hover .project-infos h2, .project-row:hover .project-infos h3, .project-row:hover .project-infos-button i{
	color:white;
}

.project-infos-txt{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
	width:calc(100% - 80px);
}

.project-infos-button{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
	margin-left: 50px;
	position:relative;
	text-align:center;
	width:80px;
}

.project-infos-button i{
    color: #644fa0;
	font-size:2.5em;
	padding:0 0 3px 3px;
}

.project-infos-button-inner::before,
.project-infos-button-inner::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	content: '';
	opacity: 0;
	
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-o-transition: -moz-transform 0.3s, opacity 0.3s;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	-o-transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.2);
	    transform: translateX(-50%) translateY(-50%) scale(0.2);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.project-infos-button-inner::after {
	width: 60px;
	height: 60px;
	border-width: 7px;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.8);
	    transform: translateX(-50%) translateY(-50%) scale(0.8);
}

.project-row:hover .project-infos-button-inner::before,
.project-row:hover .project-infos-button-inner::after,
.project-row:focus .project-infos-button-inner::before,
.project-row:focus .project-infos-button-inner::after{
	opacity: 1;
	
	-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1) translate3d(0, 0, 0);
	transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1) translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Projects Images */

.project-image{
	background-color:white;
	background-size:cover;
	background-position:center;
	cursor:pointer;
	opacity:1;
	width:66%;
	-webkit-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}

#project-ca-va-couper .project-image{
	background-image:url('../img/thumbnails/ca_va_couper_thumbnail.jpg');
}

#project-eastside .project-image{
	background-image:url('../img/thumbnails/eastside_thumbnail.jpg');
}

#project-angela .project-image{
	background-image:url('../img/thumbnails/angela_thumbnail.jpg');
}

#project-sk8prk .project-image{
	background-image:url('../img/thumbnails/sk8prk_thumbnail.jpg');
}

#project-free-ports .project-image{
	background-image:url('../img/thumbnails/free_ports_thumbnail.jpg');
}

#project-logo-collection .project-image{
	background-image:url('../img/thumbnails/logo_collection_thumbnail.jpg');
}

#project-siila .project-image{
	background-image:url('../img/thumbnails/siila_thumbnail.jpg');
}

#project-slt .project-image{
	background-image:url('../img/thumbnails/slt_thumbnail.jpg');
}

#project-talentpoint .project-image{
	background-image:url('../img/thumbnails/talentpoint_thumbnail.jpg');
}

#project-pdc .project-image{
	background-image:url('../img/thumbnails/pdc_thumbnail.jpg');
}

#rs-greetings-2023 .project-image{
	background-image:url('../img/thumbnails/rs_greetings_2023_thumbnail.jpg');
}

#rs-greetings-2024 .project-image{
	background-image:url('../img/thumbnails/rs_greetings_2024_thumbnail.jpg');
}

#hypnotic-tunnel .project-image{
	background-image:url('../img/thumbnails/hypnotic_tunnel_thumbnail.jpg');
}

#atmosphere .project-image{
	background-image:url('../img/thumbnails/atmosphere_thumbnail.jpg');
}

/* Projects Alternate */

.project-row:nth-child(even) .project-infos, .project-row:nth-child(even) .project-infos-txt{
	-webkit-box-ordinal-group:3;
	    -ms-flex-order:2;
	        order:2;
}

.project-row:nth-child(even) .project-infos-txt{
	text-align:right;
}

.project-row:nth-child(even) .project-infos-button{
	margin-left:0;
	margin-right: 50px;
}

/*======================*/
/* MEDIA QUERIES */
/*======================*/

@media screen and (max-width: 1920px){
	.project-row{
		height:420px;
	}
}

@media screen and (max-width: 1440px){
	.project-row{
		height:350px;
	}
}

@media screen and (max-width: 1200px){
	.project-row{
		position:relative;
	}
	
	.project-infos{
		height: 100%;
		left: calc(-50% + 164px);
		position: absolute;
		width: 50%;
		z-index: 1;
		
		-webkit-transition: left 0.3s ease-out;
		-o-transition: left 0.3s ease-out;
		transition: left 0.3s ease-out;
	}
	
	.project-image{
		margin-left: 164px;
		width: calc(100% - 164px);
	}
	
	.project-row:nth-child(even) .project-infos{
		left:auto;
		right:calc(-50% + 164px);
		
		-webkit-transition: right 0.3s ease-out;
		-o-transition: right 0.3s ease-out;
		transition: right 0.3s ease-out;
	}
	
	.project-row:nth-child(even) .project-image{
		margin-left: 0;
		margin-right: 164px;
	}
	
	.project-row:hover .project-infos,
	.project-row:focus .project-infos{
		left: 0;
	}
	
	.project-row:nth-child(even):hover .project-infos,
	.project-row:nth-child(even):focus .project-infos{
		left: auto;
		right:0;
	}
}

@media screen and (max-width: 1024px){
	.project-row{
		height:320px;
	}
	
	.project-infos{
		left: calc(-100% + 164px);
		width: 100%;
	}
	
	.project-row:nth-child(even) .project-infos{
		left:auto;
		right:calc(-100% + 164px);
	}
	
	.project-image{
		margin-left: 164px;
		width: calc(100% - 164px);
	}
	
	.project-row:nth-child(even) .project-image{
		margin-left: 0;
		margin-right: 164px;
	}
}

@media screen and (max-width: 880px){
	.project-row{
		height:270px;
	}
	
	.project-infos{
		left: calc(-100% + 164px);
		width: 100%;
	}
	
	.project-row:nth-child(even) .project-infos{
		left:auto;
		right:calc(-100% + 164px);
	}
	
	.project-image{
		margin-left: 164px;
		width: calc(100% - 164px);
	}
	
	.project-row:nth-child(even) .project-image{
		margin-left: 0;
		margin-right: 164px;
	}
}

@media screen and (max-width: 760px){
	nav{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		height:100px;
		padding: 0 30px;
		width:100%;
		
		-webkit-box-shadow:0px -5px 15px rgba(59,35,127,0.4);
		-o-box-shadow:0px -5px 15px rgba(59,35,127,0.4);
		box-shadow:0px -5px 15px rgba(59,35,127,0.4);
	}
	
	#sigle{
		height: 67px;
		-webkit-box-ordinal-group:3;
		    -ms-flex-order:2;
		        order:2;	
	}
	
	#sigle img{
		margin-right: /*40px*/ 4px;	
	}
	
	#about-link{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
		-webkit-box-ordinal-group:4;
		    -ms-flex-order:3;
		        order:3;	
	}
	
	#social-media-links{
		-webkit-box-ordinal-group:2;
		    -ms-flex-order:1;
		        order:1;
	}
	
	#social-media-links ul{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 0;
	}
	
	#social-media-links li{
		padding-right: 20px;
	}
	
	#social-media-links a{
		margin-top: 0;
	}
	
	#social-media-links .fa-behance{
		margin-top: 4px;
	}
	
	
	
	#about{
		left: 0;
		margin-left: 0;
		top: -100%;
		width: 100%;
	}
	
	#about-top{
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100px;
		        flex: 0 0 100px;
		visibility: hidden;
		border: 1px solid red;
		margin-bottom: auto;
	}

	#about.show-panel{
		-webkit-transform: translateZ(0) translateY(100%);
		transform: translateZ(0) translateY(100%);
	}
		
	#wrapper{
		width: 100%;
	}
	
	#intro img{
		left: 0;
		top:37%;
	}
	
	#scroll-projects{
		bottom: 30%;
		margin: 0 auto;
	}
	
	#projects{
		margin-top: 100px;
	}
	
	.project-row{
		height:250px;
	}
	
	.project-infos{
		left: calc(-100% + 164px);
		width: 100%;
	}
	
	.project-row:nth-child(even) .project-infos{
		left:auto;
		right:calc(-100% + 164px);
	}
	
	.project-image{
		margin-left: 164px;
		width: calc(100% - 164px);
	}
	
	.project-row:nth-child(even) .project-image{
		margin-left: 0;
		margin-right: 164px;
	}
}

@media screen and (max-width: 650px){
	.project-row{
		height:180px;
	}
	
	.project-infos{
		left: calc(-100% + 136px);
		padding: 30px;
	}
	
	.project-infos h2{
		font-size: 2em;
		margin-bottom: 10px;
	}
	
	.project-image{
		margin-left: 136px;
		width: calc(100% - 136px);
	}
	
	.project-infos-button{
		margin-left: 30px;
	}
	
	.project-row:nth-child(even) .project-infos{
		left:auto;
		right:calc(-100% + 136px);
	}
	
	.project-row:nth-child(even) .project-image{
		margin-left: 0;
		margin-right: 136px;
	}
	
	.project-row:nth-child(even) .project-infos-button{
		margin-right: 30px;
	}
}

@media screen and (max-width: 480px){
	.project-row{
		height:150px;
	}
	
	.project-infos{
		left: calc(-100% + 103px);
		padding: 15px;
	}
	
	.project-infos h2{
		font-size: 1.8em;
	}
	
	.project-infos h3{
		font-size: 0.75em;
	}
	
	.project-image{
		margin-left: 103px;
		width: calc(100% - 103px);
	}
	
	.project-infos-button{
		margin-left: 15px;
	}
	
	.project-row:nth-child(even) .project-infos{
		left:auto;
		right:calc(-100% + 103px);
	}
	
	.project-row:nth-child(even) .project-image{
		margin-left: 0;
		margin-right: 103px;
	}
	
	.project-row:nth-child(even) .project-infos-button{
		margin-right: 15px;
	}
}


/* Height Queries */
/* Vertical Menu */

@media (min-width: 761px) and (max-height: 680px){
	#intro img{
		top:25%;
	}
	
	#scroll-projects{
		bottom: 23%;
	}
}

@media (min-width: 761px) and (max-height: 350px){
	#intro img{
		top:20%;
	}
	
	#scroll-projects{
		bottom: 20%;
	}
}

/* Height Queries */
/* Horizontal Menu */

@media (max-width: 760px) and (max-height: 1000px){
	#scroll-projects{
		bottom: 32%;
	}
}

@media (max-width: 760px) and (max-height: 860px){
	#intro img{
		top:33%;
	}
	
	#scroll-projects{
		bottom: 25%;
	}
}

@media (max-width: 760px) and (max-height: 600px){
	#scroll-projects{
		bottom: 20%;
	}
}

@media (max-width: 760px) and (max-height: 450px){
	#intro img{
		top:35%;
	}
	
	#scroll-projects{
		bottom: 15%;
	}
}

@media (max-width: 760px) and (max-height: 380px){
	#intro img{
		top:40%;
	}
	
	#scroll-projects{
		bottom: 10%;
	}
}
