: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;
	background-color: #FFFFFF;
}

html {
	font-size: 62.5%;
}

img {
	max-width: 100%;
}

ul {
  padding: 0;
}

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: 0.2rem;
	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);
}


/* 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{
	padding: 1rem 2rem;
	columns: 1;
  grid-gap: 10px;
}

.grille_img{
	width: auto;
  object-fit: cover;
	margin-bottom: 10px;
	border-radius: 10px;
}





/* ----------- 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;
	}
	
	.titre__texte{
		font-size: 4rem;
	}
	
	.grille{
	   columns: 2;
		 grid-gap: 10px;
		 margin: 0 5vw;
	}
	.grille_img{
	   margin-bottom: 10px;
  }

	
}



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

	.header__title{
		font-size: 5rem;
	}
	
	.grille{
	   columns: 3;
		 grid-gap: 15px;
		 margin: 0 10vw;
	}
	.grille_img{
		 margin-bottom: 15px;
	}

	
}


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

	.titre__texte{
		font-size: 5rem;
	}
	
	.grille{
	   columns: 4;
		 grid-gap: 15px;
		 margin: 0 15vw;
	}
	.grille_img{
		 margin-bottom: 15px;
	}


	
}







