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

html, body {
	padding:0;
	margin:0;
	height:100%;
	overflow:hidden;
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
	font-style: normal;
	color:white;
}

section {
	display: flex;
	justify-content: center;
	height: 100%;
	width:100%;
}

#gauche {
	width:50%;
	height:100%;
	float:left;
	background-color:white;
	color:black;
	text-align:left;
}

#bgImage {
	height:100%;
	opacity: 0.2;
	background: no-repeat url('../content/bg.png');
	background-size: 200%;
}

#droite {
	width:50%;
	height:100%;
	float:right;
	background-color:black;
	overflow:hidden;
	color:white;
	text-align:right;
}

#bgVideo {
	height:100%;
	opacity: 0.4;
}

video {
	margin-left:-40%;
	z-index: 1;
	position:relative;
}

#container {
	display:flex;
	flex-direction: column;
	height:100%;
	z-index:99;
	position:absolute;
	width:50%;
}

h1 {
	font-family: 'Creo-ExtraBold';
	font-size: 5em;
}

h4 {
	font-family: 'Creo-ExtraLight';
	font-size: 2em;
}

.title_left, .title_right {
	padding:40px;
}

.text_left {
	padding-left:100px;
}

.phrase1:hover {
	text-decoration: underline;
}

.text_right {
	padding-right:100px;
}

.links_all {
	display: flex;
	flex-direction: column;
	flex:1;
	justify-content: center;
}

.links_left, .links_right {
	display:flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.links_left img, .links_right img {
	padding:50% 0 50% 0;
	transition-duration: 0.5s;
}

.links_left img:hover {
	transition-duration: 0.5s;
	filter: drop-shadow(4px 4px 2px #333);
}

.links_right img:hover {
	transition-duration: 0.5s;
	opacity:0.8;
	transform: rotate(-20deg);
}

#container_volet {
	display: flex;
	justify-content: center;
	height:60%;
	width:50%;
	z-index:999;
	position:absolute;
}

.volet {
	display: flex;
	justify-content: center;
	align-items: center;
	color:#fff;
	z-index:999;
	position:absolute;
	width:100%;
	height:100%;
	display:none;
	text-align:center;
}

.content_volet {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	max-height:70%;
	backdrop-filter: blur(30px);
	padding: 80px 0 60px 0;
	margin-top:0;
	border-left: 0.5px solid #f5f5f5;
	border-bottom: 0.5px solid #f5f5f5;
	border-right: 0.5px solid #f5f5f5;
	background-color:rgba(0, 0, 0, 0.3);
	background: cover;
}

.volet img {
	filter: drop-shadow(0 0 5px #000);
	padding-top:30px;
	transition-duration: 0.3s;
}

.volet img:hover {
	filter: drop-shadow(0 0 15px #000);
	transform: scale(1.1);
	transition-duration: 0.6s;
}

.titleVolet {
	font-family:'Creo-ExtraBold';
	font-size:2.5em ;
	color:white;
	filter: drop-shadow(0 0 10px #000);
}

.textVolet {
	font-family:'Creo-ExtraLight';
	font-size:2em ;
	color:white;
	filter: drop-shadow(0 0 10px #000);
}

.volet img, .titleVolet, .textVolet {
	animation: cssAnimation 0.3s forwards;
}

.volet hr {
    border: none;
    border-top: 3px double #fff;
    color: #fff;
		margin-top:50px;
    overflow: visible;
    text-align: center;
    height: 5px;
}

.volet hr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
}

.desktop img {
	width:60%;
}

.fleche, .fleche_fermer {
	display:flex;
	flex-direction: column;
	animation: 0.8s linear 0s infinite alternate slidein;
	filter: drop-shadow(0 0 5px #000);
	font-size: 4em;
	font-family: 'Creo-ExtraBold';
	color: white;
	transition-duration: 0.5s;
	position:relative;
	z-index:9999;
	cursor:pointer;
}

.fleche {
	transform: rotate(180deg);
}

.fleche_fermer {
	transform: rotate(0deg);
	display:none;
}

@keyframes slidein {
  from { margin-top: 50%; }
  to   { margin-top: 0%; }
}

@keyframes cssAnimation {
    0%   {opacity: 0;}
    90%  {opacity: 0;}
    100% {opacity: 1;}
}

footer {
	bottom:0;
	right:0;
	font-family: 'Creo-ExtraBold';
	font-size: 0.7em;
	color:white;
	padding:10px;
	position: fixed;
	z-index: 9999;
}

footer a:hover {
	color:#999999;
}

.links_mobile {
	display:none;
}

@media (min-width: 320px) and (max-width: 768px) {

	.links_mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
		padding-top:40%;
	}

	.links_all {
		display: none;
	}

	.links_mobile img, .links_mobile img {
		padding:60px;
	}

	.desktop {
		display: none;
	}

	footer {
		bottom:0;
		left:0;
		font-size: 0.6em;
	}

	section {
		display: flex;
		justify-content: center;
		flex-direction: column;
		height: 100%;
		width:100%;
	}

	#container_volet {
		height:100%;
		width:100%;
	}

	.volet {
		height:100%;
		background-color:rgba(0, 0, 0, 0.5);
		background: cover;
	}

	.content_volet {
		display: flex;
		flex-direction: column;
		height:100%;
		overflow: scroll;
		border: none;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		padding: 0 0 100% 0;
	}

	.flecheHolder {
		padding-left: 80%;
		position: relative;
	}

	#gauche {
		width:100%;
		height:50%;
		background-color:white;
		color:black;
		text-align:left;
	}

	#droite {
		width:100%;
		height:50%;
		background-color:black;
		overflow:hidden;
		color:white;
		text-align:right;
	}

	#container {
		display:flex;
		flex-direction: column;
		overflow:hidden;
		height:50%;
		position:absolute;
		width:100%;
	}

	.title_left, .title_right {
		padding:30px;
	}

	h1 {
		font-family: 'Creo-ExtraBold';
		font-size: 3em;
	}

	h4 {
		font-family: 'Creo-ExtraLight';
		font-size: 1.3em;
	}

	.links_all {
		position: absolute;
		z-index: 9999;
	}

	.text_left {
		padding-left:70px;
	}

	.text_right {
		padding-right:70px;
	}

	#bgVideo {
		width:auto;
		height:100%;
		opacity: 0.4;
		background: cover;
	}

	video {
		z-index: 1;
		position:relative;
		width: auto;
		height:100%;
		background: cover;
		margin-left: -50%;
	}

}

@font-face {
	font-family: "Lovelo";
	src: url('Lovelo.ttf');
}

@font-face {
		font-family: "Creo-ExtraBold";
		src: url('Creo-ExtraBold.ttf');
}

@font-face {
		font-family: "Creo-ExtraLight";
		src: url('Creo-ExtraLight.ttf');
}
