:root{
	--color1: #95C6EA; /* bleu */
	--color2: #8A90CA; /* violet */
}

@font-face {
	font-family: "iris font";
	font-weight: regular;
	src: url("../fonts/iris_font_regular.ttf") format("truetype");
}
@font-face {
	font-family: "iris font";
	font-weight: 200;
	src: url("../fonts/iris_font_light.ttf") format("truetype");
}
@font-face {
	font-family: "iris font";
	font-weight: 700;
	src: url("../fonts/iris_font_bold.ttf") format("truetype");
}

/* ----------------------------------- */

html, body {
	height: 100%;
	scroll-behavior: smooth;
	margin: 0;
	background-color: #FFFFFF;
}

html {
	font-size: 62.5%;
}

img {
	max-width: 100%;
}

ul {
  padding: 0;
	list-style: none;
}

li {
  list-style: none;
}

a{
	font-family: "iris font";
	font-weight: 200;
}
.imgsvg{
	display: none;
}

/* ----------------------------------- */

.header{
	position: absolute;
	top: 0;
	z-index: 2;
	height: 51px;
	background-color : white;
	width: 100%;
	position: fixed;
}
.header__logo{
	height: 4rem;
	margin-left: 1rem;
	margin-top : 0.5rem;
}

/* ----------------------------------- */
/* Sidenav menu */
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 5;
  top: 0;
  right: -250px;
  background-color: white;
  padding-top: 60px;
  transition: right 0.5s ease;
	box-shadow: -5px 0px 25px rgba(0,0,0,0.2);
}

/* Sidenav menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: black;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: var(--color1);
}

.smenu{
  margin-left: 20px;
	display: none;
}

.smenu_texte{
  font-size: 1rem;
	font-weight: 100;
	margin: -5px;
}

/* Active class */
.sidenav.active {
  right: 0;
}

/* Close btn */
.sidenav .close {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 36px;
}

/* Icône burger */
.burger-icon {
	z-index: 3;
	width: 3.3rem;
  fill: black;
	position: fixed;
	right: 1.5rem;
	top: 1rem;
	transition: 0.3s;
}
.burger-icon:hover {
  fill: var(--color1);
}

/* les logos */

.social__list{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 2rem;
}
.social__item{
	cursor: pointer;
	margin: -0.8rem;
}
.logosvg{
	width: 2.8rem;
	transition: 0.3s;
	fill: black;
}
.logosvg:hover{
	fill: var(--color1);
}

/* ----------------------------------- */

.titre_page{
	
}

.titre__texte{
	font-family: "iris font";
	font-weight: 700;
	color: black;
	margin-top: 9rem;
	text-align: center;
	font-size: 4rem;
}

.grille__texte{
	font-family: "iris font";
	font-weight: 700;
	color: black;
	text-align: center;
	font-size: 3rem;
}

.grille{
	justify-content: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	columns: 1;
	padding: 0rem 2rem;
	
}

.grille_item{
	position:relative;
	margin: 15px;
}

.grille_texte{
	color: white;
	text-transform: uppercase;
	text-shadow: 1px 1px 30px black;
	text-decoration: none;
	z-index: 1;
	font-size: 2.5rem;
	position: absolute;
	top:0%;
	right: 0%;
	left: 0%;
	bottom: 0%;
	text-align: left;
	justify-content: center;
	padding-top: 55%;
	padding-left: 5%;
	box-sizing: border-box;
	opacity: 1;
	transition: 0.3s;
}
.grille_texte:hover{
	opacity: 1;
}

.grille_video{
	width: 80vw;
	height: 45vw; 
	object-fit: cover;
	border-radius: 12px;
}

.grille_img{
	width: 80vw;
  object-fit: cover;
	border-radius: 12px;
}




/* ----------- Ecran grand ----------- */
/* ----------------------------------- */
@media (min-width: 800px){
	
	html, body {
		/*background-color: #111111;*/
	}
	
	.burger-icon {
		width: 4rem;
		right: 1.5rem;
		top: 1.4rem;
	}
	.header{
		height: 60px;
	}
	.header__logo{
		height: 5rem;
	}
	
	.grille_texte{
		color: black;
		text-transform: uppercase;
		backdrop-filter: blur(2px);
		background-color: rgba(255, 255, 255, 0.3);
		text-decoration: none;
		text-shadow: none;
		z-index: 1;
		font-size: 5rem;
		position: absolute;
		top:0%;
		right: 0%;
		left: 0%;
		bottom: 0%;
		text-align: center;
		justify-content: center;
		padding-top: 30%;
		box-sizing: border-box;
		opacity: 0;
		transition: 0.3s;
	}
	.grille_texte:hover{
		opacity: 1;
	}
	
	.grille_img{
		width: 40vw;
		object-fit: cover;
	}
	
	.grille_video{
		width: 40vw;
		height: 22vw;
		object-fit: cover;
	}
	.grille_texte{
		font-size: 4rem;
	}

	
	
}



/* ----------- Ecran grand + ----------- */
/* ------------------------------------- */
@media (min-width: 1500px){
	
	html, body {
		/*background-color: #555555;*/
	}

	.titre__texte{
		font-size: 5rem;
	}
	
	.grille_video{
		width: 30vw;
		height: 16vw;
		object-fit: cover;
	}
	
	.grille_img{
		width: 30vw;
		object-fit: cover;
	}
	

	
}


/* ----------- Ecran grand ++ ----------- */
/* ------------------------------------- */
@media (min-width: 2000px){
	
	html, body {
		/*background-color: #555555;*/
	}

	.titre_texte{
		font-size: 6rem;
	}
	
	.grille_video{
		width: 20vw;
		height: 11vw;
		object-fit: cover;
	}
	
	.grille_img{
		width: 20vw;
		object-fit: cover;
	}




	
}







