*,
*::after,
*::before {
	box-sizing: border-box;
	list-style: none;
}

:root {
	font-size: 18px;
	
}

@font-face {
	font-family: "Mr";
	src: url("../fonts/Mr.woff2")  format("woff2");
	src: url("../fonts/Mr.ttf") format("ttf");
	src: url("../fonts/Mr.woff") format("woff");
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Semibold.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Semibold.woff') format('woff'),
        url('../fonts/SourceSansPro-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Black.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Black.woff') format('woff'),
        url('../fonts/SourceSansPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Light.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Light.woff') format('woff'),
        url('../fonts/SourceSansPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Bold.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Bold.woff') format('woff'),
        url('../fonts/SourceSansPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/SourceSansPro-Regular.woff2') format('woff2'),
        url('../fonts/SourceSansPro-Regular.woff') format('woff'),
        url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html,body {
	margin: 0;
	--color-text: rgb(225, 225, 225);
	--color-main:#8d6f57;
	--color-link: #aaa;
	--color-link-hover: rgb(225, 225, 225);
	--color-alt: #8d6f57;
	--color-bg :#1a1a1a;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "Mr", sans-serif;
	overflow-x: hidden;
	cursor: default;
}

p{
font-family:  'Source Sans Pro', sans-serif;
    font-size:18px;
}

.p-10{
    padding:10px;
}

.pw-10{
	padding:10vw;
}

.hide{
	z-index: 10000;
}

img{
	width: 100%;
	height: 100%;
}

.border-r{
	border-radius: 16px;
  }

#loader{
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 2000;
	top: 0;
	left: 0;
	background: var(--color-bg);
	display: flex;
	justify-content: center;
	align-items: center;
}

#loader img{
	height:25vh;
	animation: Scale 1s;

}

	@keyframes Scale{
		0%{
			transform: scale(0.7);
			opacity: 0;
		}

		100%{
			transform: scale(1);
			opacity: 1;
		}
	}
  
  .hidden{
	animation: fadeOut 0.5s;
	animation-fill-mode: forwards;
  }


  @keyframes fadeOut{
	  100% {
		  opacity: 0;
		  visibility: hidden;
		  
	  }
  }

  .header{
	-webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    left: 0;
    margin: auto;
    mix-blend-mode: difference;
    position: fixed;
    right: 0;
    top: 2rem;
    width: 90vw;
    z-index: 99999;
  }

  .header.home{
	justify-content: flex-end;
	position: relative;
	z-index: 1;
  }	

.logo-nav{
	height: 8vh;

}
.logo-back{
	height: 6vh;
	width: auto;
}


.contacts{
	width: 90vw;
	margin: 20vh auto 0;
}

.contact-list_item{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 32px;
    padding-bottom: 72px;
    border-style: solid;
    border-width: 1px 0px 0px;
    border-color: rgba(19, 19, 19, 0.2) #000 #000;
}

.div-100 {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-decoration: none;
}

.contact-list_item.white {
    border-top-color:var(--color-main);
}

.type{
	width: 30%;
	font-family: 'Source Sans Pro', sans-serif;
}

.h1-contact{
font-size: 4rem;
color:var(--color-main);

}

.h1-contact:hover{
	color: white;
}

.hero-p{
	margin: 5rem auto;
    max-width: 800px;
    padding: 0 20px;
}
  
  .panel {
	/* width: 80%; */
	width: auto;
    height: 70vh;
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
	flex-direction: column;
	padding-left: 5vw;
  }
 



.container {
	width: 400%;
	height: 100%;
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
	flex-wrap: nowrap;
  }
  
  @media only screen and (max-width: 833px) {
	body {
	  font-size: 0.875rem;
	  overflow-x: hidden;
	  overflow-y: scroll;
	}
	
	.panel {
		height: auto;
		padding: 20px;
		width: 100%;
		flex-direction: column;
		margin: 0;


	}
  
	.container {
	  width: 100%;
	  height: auto;
	  display: block;
	}
  }
  
  @media only screen and (max-device-width: 833px) {
    .infos-container {
        width: 100%;
        
    }
}


a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
	text-decoration: none;
}

main {
	overflow: hidden;
	position: relative;
}



h2{
	font-family:  'Source Sans Pro', sans-serif;
	font-weight: 700;
	font-style: normal;

}




.hero{
    width: 100%;
   
}

.titre{
	text-align: center;
}

#logo{
	width: 15vh;
	margin: 10vh 47%;

}



.hero_titles{
    text-align: center;
    z-index: 1;
    /* height: 40vw; */
    /* padding: 12vw 0 0 ; */
}

.name_title{
	font-size: 5rem;
	margin: 5vh auto;
}

.name_job::before{
    content: "";
    display: block;
    width: 10vw;
    margin: 0 auto;
    margin-bottom: 50px;
    border-top: 1vh solid var(--color-main);
}
	


.name_job{
    font-size: 2rem;
}

.title{
	font-size: 2rem;
	margin: 50px 0;
	letter-spacing: 0px;
	font-family: 'Lato', sans-serif;
	font-weight: 300;

}

.title::before{
	content:"";
    display: inline-block;
	width: 100%;
	margin-bottom: 50px;
	border-top: 10px solid var(--color-main);
	
}


.hero-images{
	position: relative;
	width: 250%;
	margin: 20vh 0 0 0;
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
	flex-direction: row;
	align-items: center;
	align-content: center;
	transform: translateX(-5vw);
}

.wrapper{
	display: flex;
	align-items: center;
	
}


.hero-img {
    height: 60vh;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-right: 1vw;
	border-radius: 16px;
	

}

video{
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
}

.hero-video{
	
	max-height: none!important;
	max-width: 100%;
	
}

.hero-video video{
	max-width: fit-content;
}

.hero-img:nth-child(2n+1){
	height: 50vh;
	width: 50vw;
	
}

.hero-img:nth-child(2n){
	height: 60vh;
	width: 50vw;
	
}

.e-section{
    margin: 20vh auto ;
    text-align: center;
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
    justify-content: center;
    flex-direction: column;

	
}

.title-expertise {
	font-size: 2rem;
	line-height: 10vh;
	color: var(--color-main);
	font-family:  'Source Sans Pro', sans-serif;
	margin: 0 ;


}



.expertise{
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
	flex-direction: column;
}


#section-ux.active,#section-da.active,#section-digital.active, #section-3d.active,#section-photo.active {
	color: white;
}



.e-section-text {
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
    align-items: center;
    flex-direction: column;
}

.e-section-list {
    width: 100%;	
	margin: 0 auto;
	padding: 0;
}


.e-section-items {
	font-size: 5rem ;
	margin: 0;
	color: transparent;
	-webkit-text-stroke: 0.1vh white;
	transition:  0.5s ease-in-out;
	margin: 2vw 0;
	z-index: 1;

}

.intro{
	margin-top: 20vh;
	width:70vw;
	margin-left: auto;
	margin-right: auto;
}

.static{
	position: relative;
}

.intro > h1{
	font-size: 4rem;
	width: 60%;
}

.img-pro{
	width: 50%;
	margin: -20vh 0 0 10vw;
}

.aboutme{
	margin: 30vh auto;
	width: 70vw;
	text-align: left;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 3rem;
	line-height: 80px;
	font-weight: 100;
}

.aboutme > span{
	font-weight: 800;
}

.ecole{
	width: 70vw;
	margin:40vh auto;
}	

.ecole-container{
	display: flex;
	align-items: center;
}

.ecole-img{
	width: 50%;
	height: auto;
}

.ecole-text{
	font-family: 'Source Sans Pro', sans-serif;
	width: 50%;
	line-height: 40px;
	font-size: 1.5rem;
	padding:0 1.5rem;

}



.marquee {
    position: relative;
    overflow: visible;
    --offset: 30vw;
    --move-initial: calc(-25% + var(--offset));
	--move-final: calc(-50% + var(--offset));
	margin: 5vh 0;

}

.marquee__inner {
    width:max-content;
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    
}

.marquee span {
    font-size: 5rem;
	padding: 0 2vw;
	color: transparent;
	-webkit-text-stroke: 0.1vh white;

}

span.white{
	color: white;
	-webkit-text-stroke:0px;

}

#web{
	transform: translate3d(-30%, 0, 0);

}

#apps{
	transform: translate3d(-40%, 0, 0);
}

#print{
	transform: translate3d(-5%, 0, 0);
}


.marquee-project {
    position: relative;
    overflow: hidden;
    --offset: 20vw;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
} 

.marquee-project__inner {
    width: fit-content;
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation-play-state: paused;
}

.marquee-project span {
    font-size: 10rem;
	padding: 0 2vw;
	-webkit-text-stroke: 1.2px var(--color-main);
	/* text-transform: uppercase; */
	color: transparent;
}



h2.e-section-items{
	-webkit-text-stroke: 1.2px var(--color-main);
	text-transform: uppercase;
	font-size: 10rem ;

}

#container {
	display:flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
	flex-wrap:wrap;
	flex-direction:column;
	height:40vh;
  }
  
  #projects {
	position: relative;
	  width: 100%;
	  height: auto;
	  padding: 100px 0px 100px 0px;
	  display: block;
  }


  

.img-projets{
	width: 60vw;
	height: auto;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.img-projets img{
	width: 100%;
	cursor: url("../img/sad.png"), auto;
	transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    transform-origin: 90% center;
	border-radius: 16px;
}

.img-projets:hover {
	transform: translateY(-1rem);
}

.img-projets:hover img{
	opacity: 1;
    transform: scale(1.03);
}


.flag {
    background: var(--color-main);
    border-radius: 100px;
    padding: 10px 20px;
	font-family: 'Source Sans Pro', sans-serif;
}


.infos{
	background: #292929;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 30%);
    z-index: 5;
	padding: 5vh 7vw;
    position: relative;
    height: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    width: fit-content;
    flex-direction: column;
    margin-top: -20%;
    margin-left: 25vw;
	border-radius: 8px;
}

.infos-container{
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.infos .titre{
font-size: 1.75rem;
color: var(--color-main);
letter-spacing: 0;
text-align: left;
margin-bottom: 25px;
}

.infos .description{
font-family:  'Source Sans Pro', sans-serif;
font-weight: 300;
font-size: 1.25rem;
color: #FFFFFF;
letter-spacing: 0;
font-weight: 400;
padding-bottom: 25px;
max-width: 20vw;

}

a.button{

	color: var(--color-main);
	font-size: 1.2rem;
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
	line-height: 1.6;
	text-decoration: none;
	transition: transform 0.5s ease-in-out;
}


.tags{
	position: relative;
	display: flex;
	flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
	padding: 0 20px;
}

.c-scrollbar {
	position: absolute;
	right: 0;
	top: 0;
	width: 11px;
	height: 100vh;
	transform-origin: center right;
	transition: transform 0.3s, opacity 0.3s;
	opacity: 0; 
}


footer{
	margin-top: 20vh;
	width: 100%;
}

.-left{
	width: 50%;
}

.-right{
	width: 50%;
	text-align: right;



}

section.contact{
	margin: 0 10vw;
}
h2.contact{
	font-size: 6rem;
	font-family: "Mr", sans-serif;
	text-transform: uppercase;
	color: var(--color-main);
	margin: 0 0 2vh 0;
}
a.contact{
	color: white;
	font-size: 3rem;
}

.effect-underline a{
	text-decoration: none;
	display: inline-block;
	position: relative;
}

a.effect-underline:after {
	content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1.5em;
  width: 100%;
  border-bottom: 2px solid;
  margin-top: 10px;
  opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

a.effect-underline:hover:after {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.footer-container{
	margin: 20vh 10vw 5vh 10vw;
}

.footer-grid{
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
	align-items: flex-end;
	align-content: flex-end;
}

.footer-logo{
	width: 5vw;
    margin: 5vh 0 3vh 0;
}

.footer-mail{
	font-size: 1.5rem;
	margin-bottom: 5vh;
	
}

.footer-mail > a{
	color: var(--color-alt) !important;
	font-size: 1.25rem;
}

a.link{
	font-family:  'Source Sans Pro', sans-serif;
	font-size: 1.2rem;
	
	
}
a.contact{
	font-size: 1.5rem;
	

}


.copyrights{
	font-family:  'Source Sans Pro', sans-serif;
	color: var(--color-link);

}

.start{
	font-size: 4.5rem;
	text-align: left;
	width: 90vw;
	margin: 30vh auto 0;
	/* color: var(--color-main); */
	/* text-transform: uppercase; */
}
  
/* MOBILE */

@media only screen and (max-device-width: 833px)  
{

	body {
		font-size: 0.875rem;
		overflow-x: hidden;
		overflow-y: scroll;
	  }
	  
	  #container {
		height: 100vh;
	  }
	
	  .module {
		width: 100%;
		height: auto;
		display: block;
	  }

	#logo{
		height: 10vh;
		margin: 10vh auto;
	}


	.name_title{
		font-size: 2rem;
		margin: 5vh auto;
	}
	
	.name_job::before{
		content: "";
		display: block;
		width: 10vw;
		margin: 0 auto;
		margin-bottom: 50px;
		border-top: 1vh solid var(--color-main);
	}
		
	.hero-img:nth-child(2n) {
		height: 45vh;
		width: 135vw;
	}
	
	.hero-img:nth-child(2n+1) {
		width: 80vw;
		height: 40vh;
	}

	.name_job{
		font-size: 1.25rem;
	}

	.title-expertise{
		font-size: 1.25rem;

}

	.e-section{
		margin-bottom: 0;
	}

	.marquee-project span {
	font-size: 3rem;
	padding: 0 5vw;
}

.marquee span {
    font-size: 2rem;
   
}

#web {
    transform: translate3d(-18%, 0, 0);
}

#apps {
    transform: translate3d(-80%, 0, 0);
}

#print {
    transform: translate3d(-9%, 0, 0);
}

	.e-section-items {
	font-size: 2rem;
    color: white;
	margin: 10vw 0;
	-webkit-text-stroke: 0;
	
	}


	.e-section-list{
		width: auto;
	}

	.module{
		width:80vw;
		margin-left: 5vw;
		/* background: red; */
		
	  }	  
	  
	.img-projets{
		width: 100%;
		/* height: auto; */
		
	}

	

	.img-projets img{
		width: 100%;
		
	}

	.infos{
		width: 100%;
		position: unset;
		padding: 30px 0;
		box-shadow: none;
		margin: 0;
    	margin-bottom:5%;
		background: none;
	}

	.panel:nth-child(5) .infos{
		margin: 0;
	} 

	
	h2.contact{
		font-size: 2.6rem ;

	}

	a.contact {
		font-size: 1.5rem;
	}


	

	.infos .description{
			font-size: 1.25rem;
			padding-bottom: 25px;
			max-width: max-content;
			}

	a.button.effect-underline {
				font-size: 1.25rem;
			}
	
	footer{
		margin: 0;
	}

.footer{
	margin-top: 5rem;
}

	.footer-grid{
		display: flex;
		display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
    align-items: center;
    flex-direction: column;
	}
	
	.footer-grid-col{
		display: flex;
		display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
    align-items: center;
    flex-direction: column;
	}
	

	.footer-container {
		margin: 5vh 10vw 5vh 10vw;
	}
	.footer-logo {
		width: 20vw;
	}
	.footer-link .effect-underline{
		margin-top: 20px;
	}

	#projects {
	
		padding: 3rem 0px ;
		
	}
	#done{
		margin-bottom: 20vh;
	}

	a.link{
		font-size: initial;
	
	}

	.-right{
		width: 100%;
		margin-top: 1rem;
	}
	.-left {
		width: 100%;
	}

	.header{
		top: 2vh;
	}

	.start {
		font-size: 2rem;
		text-align: left;
		width: 100%;
		margin: 20vh 5vw 0;
	
	}

	.contacts {
		width: 100%;
		margin: 20vh 0 0;
	}
	.type {
		width: 100%;
	}

	.h1-contact {
		font-size: 1.75rem;
		
	}

	ul{
		padding-left: 5vw;
    	padding-right: 5vw;
	}
	
	.div-100{
		flex-direction: column;
	}

	.contacts > ul > li:last-child{
		padding-bottom: 0;

	}

	.intro {
		margin-top: 10vh;
		width: 90vw;
		margin-left: auto;
		margin-right: auto;
	}

	.intro > h1 {
		font-size: 2rem;
		width: 100%;
	}
	
	.img-pro {
		width: 90%;
		height: auto;
		margin: -10vh 0 0 0;
		background: grey;
	}

	.aboutme {
		margin: 30vh auto;
		width: 90vw;
		text-align: left;
		font-size: 1.5rem;
		line-height: 40px;
		font-weight: 100;
	}
	

	.ecole {
		width: 90vw;
		margin: 10vh auto;
	}

	.ecole-container {
		flex-direction: column;
	}

	.ecole-text {
		width: 100%;
		line-height: 2rem;
		font-size: 1rem;
		padding: 0;
	}

	.ecole-img {
		width: 100%;
		height: 500px;
		margin-top: 5vh;
	}
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait)
{


	#logo{
		height: 10vh;
		margin: 10vh auto;
	}


	.name_title{
		font-size: 3rem;
		margin: 5vh auto;
	}
	
	.name_job::before{
		content: "";
		display: block;
		width: 10vw;
		margin: 0 auto;
		margin-bottom: 50px;
		border-top: 1vh solid var(--color-main);
	}
		
	.hero-img:nth-child(2n) {
		height: 60vh;
		width: 80vw;
	}
	
	.hero-img:nth-child(2n+1) {
		width: 80vw;
	}

	.name_job{
		font-size: 2rem;
	}

	.title-expertise{
		font-size: 2rem;

}

	.container {
        flex-direction: column;
}

	.e-section{
		margin-bottom: 0;
	}

	.marquee-project span {
	font-size: 4rem;
	padding: 0 5vw;
}

.marquee span {
    font-size: 4rem;
   
}

#apps {
    transform: translate3d(-80%, 0, 0);
}

#print {
    transform: translate3d(-9%, 0, 0);
}

	.e-section-items {
	font-size: 6vw;
    color: white;
	margin: 5vw 0;
	-webkit-text-stroke: 0;
	
	}


	.e-section-list{
		width: auto;
	}

	.module{
		width:80vw;
		margin-left: 5vw;
		/* background: red; */
		
	  }	  
	  
	.img-projets{
		width: 100%;
		
	}

	

	.img-projets img{
		width: 100%;
		
	}

	.infos{
		top:15%;
		height: auto;
	}

	

	.panel:nth-child(5) .infos{
		margin: 0;
	} 

	h2.e-section-items{
		-webkit-text-stroke: 1.2px var(--color-main);
		transform: translateX(-3%);
		width: 200vw;
		height: 10vh;
		font-size: 15vw !important;
		color: transparent;

	
	}
	h2.contact{
		font-size: 2.6rem ;

	}

	a.contact {
		font-size: 1.5rem;
	}

	.infos .titre{
		font-size: 2rem;
		margin-bottom: 15px;
		}

	.infos .description{
			font-size: 1.6rem;
			padding-bottom: 25px;
			max-width: max-content;
			}

	.arrow{
		margin-top: 10px;
	}	

	a.button{
		font-size: 1.4rem;

	}
	
	footer{
		margin: 0;
	}

.footer{
	margin-top: 5rem;
}

	.footer-grid{
		display: flex;
		display: -webkit-box;
  	display: -moz-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
    align-items: flex-end;
    flex-direction: row;
	}
	
	.footer-grid-col{
		display: flex;display: -webkit-box;
		display: -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
	flex-direction: column;
	align-items: stretch;
	}
	

	.footer-container {
		margin: 5vh 10vw 5vh 10vw;
	}
	.footer-logo {
		width: 15vw;
	}
	.footer-link .effect-underline{
		margin-top: 20px;
	}

	#projects {
	
		padding: 3rem 0px ;
		
	}
	#done{
		margin-bottom: 20vh;
	}

	.-right{
		width: 100%;
		margin-top: 1rem;
	}

	.h1-contact {
		font-size: 3rem;
		
	}

	.start {
		font-size: 4rem;
		
	}
}


@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape)
{

	.container {
		flex-direction: row;
	
	}

	.e-section-items {
		font-size: 4rem;
		color: white;
		margin: 3vw 0;
		-webkit-text-stroke: 0;
		
		}

		.panel{
			margin-left: 5vw;
		
		}
		/* .panel:nth-child(5) .infos{
			margin-top: -15vh;
		}  */

		.panel .infos {
			background: #1A1A1A;
			box-shadow: 0 0 10px 0 rgba(0,0,0,0.30);
			z-index: 5;
			padding: 40px 80px;
			position: relative;
			display: flex;
			display: -webkit-box;
			display: -moz-box;
			display: -webkit-flex;
			display: -ms-flexbox;
			align-items: center;
			justify-content: center;
			width: 50vw;
			flex-direction: column;
			margin-left: 25vw;
		}

		.panel:nth-child(1n+0) .infos{
			margin-top: -15vh;
			height: 500px;
		}

		.marquee-project span {
			font-size: 6rem;
			padding: 0 5vw;
		}

		#projects {
	
			padding: 3rem 0px ;
			
		}
		#done{
			margin: 20vh 0;
		}

		footer{
			margin: 0;
		}
	
	.footer{
		margin-top: 5rem;
	}
	
		.footer-grid{
			display: flex;
			display: -webkit-box;
		  display: -moz-box;
		  display: -webkit-flex;
		  display: -ms-flexbox;
		align-items: flex-end;
		flex-direction: row;
		}
		
		.footer-grid-col{
			display: flex;display: -webkit-box;
			display: -moz-box;
			display: -webkit-flex;
			display: -ms-flexbox;
		flex-direction: column;
		align-items: stretch;
		}
		
	
		.footer-container {
			margin: 5vh 10vw 5vh 10vw;
		}
		.footer-logo {
			width: 15vw;
		}
		.footer-link .effect-underline{
			margin-top: 20px;
		}

		
	
}