@import url('https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:400,700');
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
*,
*::after,
*::before {
	box-sizing: border-box;
}

html {
	background: #1a1b23;
}

body {
	font-family: 'Roboto', sans-serif;
	min-height: 100vh;
	color: #57585c;
	color: var(--color-text);
	background-color: #fff;
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


.demo-1 {
	--color-text: #333;
	--color-bg: #000;
	--color-link: #aaa;
	--color-link-hover: #333;
	--color-info: #7239c0;
}

.demo-2 {
	--color-text: #333;
	--color-bg: #fff;
	--color-link: #d3482e;
	--color-link-hover: #333;
	--color-info: #333;
}

.demo-3 {
	--color-text: #333;
	--color-bg: #fff;
	--color-link: #3860d0;
	--color-link-hover: #333;
	--color-info: #333;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

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

a:focus {
	outline: none;
}

a:hover {
	color: var(--color-link-hover);
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.message {
	position: relative;
	z-index: 100;
	display: none;
	padding: 1em;
	text-align: center;
	color: var(--color-bg);
	background: var(--color-text);
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.icon--keyboard {
	display: none;
}

main {
	position: relative;
	width: 100%;
}

.content2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	min-height: 100vh;
}

.content2--fixed {
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	display: grid;
	align-content: space-between;
	width: 100%;
	max-width: none;
	min-height: 0;
	height: 100vh;
	padding: 1.5rem;
	pointer-events: none;
	grid-template-columns: 50% 50%;
	grid-template-rows: auto auto 4em;
	grid-template-areas: 'header header'
	'... ...'
	'github pagination';
}

.content2--fixed a {
	pointer-events: auto;
}

/* Header */
.codrops-header {
	position: relative;
	z-index: 100;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	align-items: center;
	align-self: start;
	grid-area: header;
	justify-self: start;
	pointer-events: auto;
}

.codrops-header__title {
	font-size: 1em;
	font-weight: bold;
	margin: 0 2em 0 0;
	padding: 0.75em 0;
}

.info {
	margin: 0 0 0 1.25em;
	color: var(--color-info);
}

.github {
	display: block;
	align-self: end;
	grid-area: github;
	justify-self: start;
}

.demos {
	position: relative;
	display: block;
	text-align: center;
}

.demo {
	margin: 0 0.25em;
}

.demo:hover,
.demo:focus {
	opacity: 0.5;
}

.demo span {
	white-space: nowrap;
	pointer-events: none;
}

a.demo--current {
	pointer-events: none;
	color: var(--color-text);
}

/* Top Navigation Style */
.codrops-links {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 1em 0 0;
	text-align: center;
	white-space: nowrap;
}

.codrops-icon {
	display: inline-block;
	margin: 0.15em;
	padding: 0.25em;
}

.slides {
	position: relative;
	width: 100%;
	height: 100vh;
	margin: auto;
	pointer-events: none;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide--current {
	opacity: 1;
}

.slide__img {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
}

.slide__img-size1,
.slide__img-size2,
.slide__img-size3 {
	max-width: 800px;
	max-height: 1200px;
	min-width: 280px;
	min-height: 280px;
}

.slide__img-size1 {
	width: 40vw;
}

.slide__img-size2 {
	width: 60vw;
	height: 60vh;
}

.slide__img-size3 {
	width: 40vw;
	height: 40vw;
	max-width: 800px;
	max-height: 800px;
}

.pagination {
	align-self: end;
	justify-self: end;
	grid-area: pagination;
	display: flex;
	pointer-events: auto;
}

.pagination__item {
	font-weight: bold;
	justify-content: center;
	align-items: center;
	display: flex;
	margin: 0 0 0 1.25rem;
	font-size: 1.25em;
	cursor: pointer;
	color: var(--color-link);
}

.pagination__item--current {
	color: var(--color-text);
}


.grid {
	padding: 0vh 0;
	max-width: 1080px;
	display: block;
	grid-row-gap: 0vh;
	grid-template-columns: repeat(2, 1fr);
}

.grid__item {
	position: relative;
}

.grid__item-titlewrap {
	bottom: 5%;
	position: absolute;
}



.grid__item-description {
	/*margin: 0;
	font-size: 1.5rem;*/
	
	margin: 0;
font-size: 1.5rem;
/*left: 55%;
position: relative;
width: 100%;*/
}

.grid__item:nth-child(odd) {
	align-self: start;
}

.grid__item:nth-child(odd) .grid__item-titlewrap {
	/*right: -5vw;*/
	right: 2.5vw;
}

.grid2__item:nth-child(odd) .grid2__item-titlewrap {
	/*right: -5vw;*/
	right: 2.5vw;
}


.grid__item:nth-child(even) {
	margin: 70vh 0 0 0;
}

.grid__item:nth-child(even) .grid__item-titlewrap {
	left: -5vw;
}








.gridpc {
	padding: 0vh 0;
	max-width: 1080px;
	display: block;
	grid-row-gap: 0vh;
	grid-template-columns: repeat(2, 1fr);
}

.gridpc__item {
	position: relative;
}

.gridpc__item-titlewrap {
	bottom: 5%;
	position: absolute;
}



.gridpc__item-description {
	/*margin: 0;
	font-size: 1.5rem;*/
	
	margin: 0;
font-size: 1.5rem;
/*left: 55%;
position: relative;
width: 100%;*/
}

.gridpc__item:nth-child(odd) {
	align-self: start;
}

.gridpc__item:nth-child(odd) .gridpc__item-titlewrap {
	/*right: -5vw;*/
	right: 2.5vw;
}

.gridpc2__item:nth-child(odd) .gridpc2__item-titlewrap {
	/*right: -5vw;*/
	right: 2.5vw;
}


.gridpc__item:nth-child(even) {
	margin: 70vh 0 0 0;
}

.gridpc__item:nth-child(even) .gridpc__item-titlewrap {
	left: -5vw;
}






.grid2 {
	padding: 0vh 0;
	max-width: 1080px;
	display: grid;
	grid-row-gap: 0vh;
	grid-template-columns: repeat(1, 1fr);
}

.grid2__item {
	position: relative;
}

.grid2__item-titlewrap {
	bottom: 10%;
	position: absolute;
}




.grid2__item-description {
	/*margin: 0;
	font-size: 1.5rem;*/
	
	margin: 0;
font-size: 1.5rem;
/*left: 55%;
position: relative;
width: 100%;*/
}

.grid2__item:nth-child(odd) {
	align-self: start;
}

.grid2__item:nth-child(odd) .grid__item-titlewrap {
	right: -5vw;
}

.grid2__item:nth-child(even) {
	margin: 70vh 0 0 0;
}

.grid2__item:nth-child(even) .grid__item-titlewrap {
	left: -5vw;
}


.scroll-img {
	/*width: 500px;*/
	max-width: 100%;
	height: 50vh;
	min-width: 250px;
	min-height: 250px;
	background-size: cover;
}

.scroll-imgfull {
    width: 500px;
    max-width: 100%;
    height: 20vh;
    min-width: 280px;
    min-height: 280px;
    background-size: cover;
	border: 1px solid #676cb5;
}

.scroll-imgfull2 {
    width: 234px;
    /*max-width: 100%;*/
    height: 284px;
    /*min-width: 280px;
    min-height: 280px;
    background-size: cover;*/
}


.scrollfd-img {
	width: 100vh;
	max-width: 100vh;
	height: 100vh;
	background-size: cover;
}




@media screen and (max-width: 55em) {
	.slides {
		position: absolute;
		top: 0;
		margin-bottom: 20vh;
	}
	.slide {
		align-items: flex-start;
	}
	.pagination {
		justify-content: center;
	}
	.pagination__item {
		margin: 0 0.5em;
	}
	.content {
		flex-direction: column;
		height: auto;
		min-height: 0;
		padding-bottom: 10em;
	}
	.content--fixed {
		position: relative;
		z-index: 1000;
		display: block;
		padding: 0.85em;
	}
	.codrops-header {
		flex-direction: column;
		align-items: center;
	}
	.codrops-header__title {
		font-weight: bold;
		padding-bottom: 0.25em;
		text-align: center;
		margin: 0 0 1rem 0;
	}
	.info {
		margin: 0;
	}
	.github {
		display: block;
		margin: 1em auto 4em;
	}
	.codrops-links {
		margin: 0;
	}
	.grid {
		display: block;
		margin: 0;
		padding: 0;
	}
	.grid__item {
		margin: 0 0 1.5rem !important;
	}
	.scroll-img {
		margin: 0 auto;
	}
	.grid__item-titlewrap {
		padding: 1rem 0 0 0;
		position: relative;
		text-align: center;
		left: 0 !important;
		right: 0 !important;
		width: 100%;
		display: block;
	}
	
	.grid2 {
		display: block;
		margin: 0;
		padding: 0;
	}
	.grid2__item {
		margin: 0 0 0rem !important;
	}
	.scroll-img {
		margin: 0 auto;
	}
	.grid2__item-titlewrap {
		padding: 1rem 0 0 0;
		position: relative;
		text-align: center;
		left: 0 !important;
		right: 0 !important;
		width: 100%;
		display: block;
	}
	
	.petitbloc {
	padding: 0vh 0;
		display: none;
	
}
}




/****************** EFFET TXT ************************/

.demo-3 .content__text {
	transform-origin: 50% 0%;
	mix-blend-mode: multiply;
}



.content__text,
.content__link {
	margin: 0;
	line-height: 1;
	position: relative;
	font-size: var(--font-size-title);
	font-size: clamp(var(--font-size-title-min),var(--font-size-title),var(--font-size-title-max));
	color: var(--color-title);
	font-family: var(--font-title);
	font-weight: var(--font-weight-title);
	letter-spacing: var(--letter-spacing-title);
	text-transform: var(--text-transform-title);
}

.content__text {
	grid-area: 1 / 1 / 2 / 2;
}

.content__link {
	grid-column: 1 / span 10;
	margin: 2rem 0;
}

.content__text span,
.content__link span {
	white-space: pre;
	display: inline-block;
	will-change: transform;
}



.grid3 {
	position: relative;
	justify-content: center;
	display: flex;
	clear: both;
	margin: 0 auto;
	padding: 1em 0 4em;
	align-content: center;
	max-width: 1080px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid3 figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10% 2%;
	min-width: 320px;
	max-width: 480px;
	max-height: 360px;
	width: 50%;
	height: auto;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

.grid3 figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid3 figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid3 figure figcaption::before,
.grid3 figure figcaption::after {
	pointer-events: none;
}

.grid3 figure figcaption,
.grid3 figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid3 figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid3 figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid3 figure h2 span {
	font-weight: 800;
}

.grid3 figure h2,
.grid3 figure p {
	margin: 0;
}

.grid3 figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}



.grid4 figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid4 figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid4 figure figcaption::before,
.grid4 figure figcaption::after {
	pointer-events: none;
}

.grid4 figure figcaption,
.grid4 figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.grid4 figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
	width: 200%;
height: 200%;
}

.grid4 figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
	font-size: 22px;
}

.grid4 figure h2 span {
	font-weight: 800;
}

.grid4 figure h2,
.grid4 figure p {
	margin: 0;
}

.grid4 figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}



.gridclient figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.gridclient figure figcaption {
	padding: 1em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.gridclient figure figcaption::before,
.gridclient figure figcaption::after {
	pointer-events: none;
}

.gridclient figure figcaption,
.gridclient figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.gridclient figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
	width: 200%;
height: 200%;
}

.gridclient figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
	font-size: 22px;
}

.gridclient figure h2 span {
	font-weight: 800;
}

.gridclient figure h2,
.gridclient figure p {
	margin: 0;
}

.gridclient figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}



/*-----------------*/
/***** Apollo *****/
/*-----------------*/

figure.effect-apollo {
	background: #04021e;
}

figure.effect-apollo img {
	opacity: 0.95;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.05,1.05,1);
	transform: scale3d(1.05,1.05,1);
}

figure.effect-apollo figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.5);
	content: '';
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
}

figure.effect-apollo p {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 3em;
	padding: 0 1em;
	max-width: 150px;
	border-right: 2px solid #fff;
	text-align: right;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	color:#fff;
}

figure.effect-apollo h2 {
	text-align: left;
}

figure.effect-apollo:hover img {
	opacity: 0.3;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

figure.effect-apollo:hover figcaption::before {
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
}

figure.effect-apollo:hover p {
	opacity: 1;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}


figure.effect-apollo2 {
	background: #ef615f;
}

figure.effect-apollo2 img {
	opacity: 1;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.05,1.05,1);
	transform: scale3d(1.05,1.05,1);
}

figure.effect-apollo2 figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.5);
	content: '';
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
}

figure.effect-apollo2 p {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 1.2em;
	padding: 0 1em;
	max-width: 250px;
	border-right: 2px solid #fff;
	text-align: right;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	color:#fff;
}

figure.effect-apollo2 h2 {
	text-align: left;
}

figure.effect-apollo2:hover img {
	opacity: 0.3;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

figure.effect-apollo2:hover figcaption::before {
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
}

figure.effect-apollo2:hover p {
	opacity: 1;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

/*---------------*/
/***** Ming *****/
/*---------------*/

figure.effect-ming {
	background: #030c17;
}

figure.effect-ming img {
	opacity: 0.9;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-ming figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 2px solid #fff;
	box-shadow: 0 0 0 30px rgba(255,255,255,0.2);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.4,1.4,1);
	transform: scale3d(1.4,1.4,1);
}

figure.effect-ming h2 {
	margin: 20% 0 10px 0;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-ming p {
	padding: 1em;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

figure.effect-ming:hover h2 {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

figure.effect-ming:hover figcaption::before,
figure.effect-ming:hover p {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

figure.effect-ming:hover figcaption {
	background-color: rgba(58,52,42,0);
}

figure.effect-ming:hover img {
	opacity: 0.4;
}



/* Media queries */
@media screen and (max-width: 50em) {
	.content {
		padding: 0px;
		text-align: center;
	}
	.grid figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
	
	.grid3 {
    position: relative;
    justify-content: center;
    display: block;
    clear: both;
    margin: 0 auto;
    padding: 1em 0 4em;
    align-content: center;
    max-width: 1080px;
    list-style: none;
    text-align: center;
}
	
	.grid3 figure {
	position: relative;
	float: none;
	overflow: hidden;
	margin: 10% 2%;
	min-width: 320px;
	max-width: 480px;
	max-height: 360px;
	width: 100%;
	height: auto;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
		display: block;
		margin-right: auto;
		margin-left: auto;
}

}