/*-------------------- Tete de page et menu de navigatio ----------------------------*/
@media screen and (min-width: 480px) and (max-width: 768px) {
	/* styles CSS à appliquer pour les écrans ayant une largeur comprise entre 480px et 768px */
	body {
	  font-size: 12px;
	}
	header ul li {
	  font-size: 0.8rem;
	  size: 10px;
	}
	section {
	  margin: 10px;
	}
	.menu .contenu .box {
	  width: 130px;
	}
	/* Ajoutez d'autres styles CSS en fonction de vos besoins */
  }
body {
	padding: 0;
	margin: 0; 
	font-family: 'Alumni Sans Inline One', cursive;
font-family: 'Varela Round', sans-serif; /*------- c'est pour la police de text -------------- */
	font-size: 14px; /*------- c'est pour la taille de police -------------- */
	width: 100%;
	background-color: #7F8C8D;
}
body{
	scroll-behavior: smooth;
	transition: 3s;
	}
header{
	background-color: #333333; /*------- c'est pour donner une couleur a l'arriere plan -------------- */
	color: white; /*------- c'est pour donner une couleur au text -------------- */
	padding: 20px; /*------- c'est pour une distance interne des 4 coters -------------- */
}
header {
	display: flex; /*------- c'est pour que le comptenu header soit à ligner horzontalement -------------- */
	justify-content: space-between; /*------- c'est pour espacer notre comptenu header -------------- */
	align-items: center; /*------- c'est pour que notre comptenue soit centrer -------------- */
	padding: 0px;
	top: 0px;
	left: 0px;
	width: 100%;
	transition: 0.5s;
	color: black;
	position: relative;
}

header h1{
	padding-bottom: 0px;
	margin-left: 6px;
	color: white;
}
header a{
	text-decoration: none;
}

header ul{
	margin: 0px; /*------- c'est pour donner une distance externe de 0px à notre liste -------------- */
	padding: 0px;
	list-style: none; /*------- c'est pour retirer le point par defaut que nous avon sur la liste -------------- */
}
header ul li{
	display: inline-block; /*------- c'est pour mettre tous notre liste sur une meme ligne -------------- */
	 padding: 10px 15px; /*------- c'est pour donner unr distance interne à notre menu de gauche à droit-------------- */
	 cursor: pointer; 
	 font-size: 1rem;
	 color: white;
}
header ul li:hover{
	background: #09E02D;
	transition: 1s;
	border-radius: 20px;
}

.menu2 li{
	background-color: #333333; /*------- c'est pour donner une couleur a l'arriere plan -------------- */
	color: white; /*------- c'est pour donner une couleur au text -------------- */
	padding: 20px; /*------- c'est pour une distance interne des 4 coters -------------- */
	border-radius: 20px;
	margin-left: 38%;
}
.menu2{
	margin: 0%; /*------- c'est pour donner une distance externe de 0px à notre liste -------------- */
	padding: 0px;
	list-style: none; /*------- c'est pour retirer le point par defaut que nous avon sur la liste -------------- */

}
.menu2 li{
	display: inline-block; /*------- c'est pour mettre tous notre liste sur une meme ligne -------------- */
	 padding: 10px 15px; /*------- c'est pour donner unr distance interne à notre menu de gauche à droit-------------- */
	 cursor: pointer; 
	 font-size: 1rem;
	 color: white;
}

.menu2 li a{
	padding-bottom: 0px;
	color: white;
	text-decoration: none;
	justify-content: center;
	left: 50px;
}
.menu2{
	margin: 0px; /*------- c'est pour donner une distance externe de 0px à notre liste -------------- */
	padding: 0px;
	list-style: none; /*------- c'est pour retirer le point par defaut que nous avon sur la liste -------------- */
}
.menu2 li{
	display: inline-block; /*------- c'est pour mettre tous notre liste sur une meme ligne -------------- */
	 /*------- c'est pour donner unr distance interne à notre menu de gauche à droit-------------- */
	 cursor: pointer; 
	 color: white;
}
.menu2 li:hover{
	background: #09E02D;
	transition: 1s;
	border-radius: 20px;
}

.input-container{
	width: auto;
	height: auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

input{
	width: 25px;
	height: 30px;
	background-color: transparent;
	color: white;
	padding: 2px;
	padding-left: 15px;
	border: solid 2px;
	border-radius: 90px;
	outline: none;
	transition: .6s;
}

input::-webkit-search-cancel-button{
	display: none;
}

input:focus{
    width: 250px;
}

.input-container:hover input{
	width: 250px;
	}
	
button{
	width: 40px;
	background-color: white;
	color: black;
	border-radius: 50px;
	border: none;
	position: absolute;
	right: 3px;
	display: flex;
	justify-content: center;
	cursor: pointer;
	transition: .6s;
	font-size: 30px;
	outline: none;
}


#suggestionList {
	position: absolute;
	left: 81.5%;
	top: 85%;
	z-index: 9;
	width: 18%;
	max-height: 500px;
	overflow-y: auto;
	border-radius: 5Opx;
	background-color: #333333;
  }
  
  #suggestionList::-webkit-scrollbar {
	border-radius: 20px;
	background-color: black;
	width: 7px;
  }

  #suggestionList::-webkit-scrollbar-thumb {
	border-radius: 20px;
	background-color: #045F5F;
  }
  .suggestionItem {
	display: block;
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px rgb(209, 55, 55);
  }
  
  .suggestionItem:last-child {
	border-bottom: none;
  }

.form-control {
	padding: 12px 15px;
	border: 7px solid #333333;
	border-radius: var(--ronded);
}
.btn-primary {
	padding: 12px 15px;
	border: 7px solid var(--primary);
	color: white;
	background-color: #333333;
	border-radius: var(--ronded);
}
.btn-primary:hover{
	background-color: #09E02D;
	transition: 1s;
}
.nav-search {
	flex-grow: 1;
}
.list{
	text-align: center;
}
section {
	background-color: #045F5F;
}
/*---------------------------- Section 1 -------------------------------------------------*/

.titre{
	display: flex;
	width: 100%;
	height: auto;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-top: 20px;
	font-size: 2em;
}
.menu .contenu{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 10px;
	font-size: 1em;
}
section .center{
	color: var(--white);
	font-size: 2rem;
}
section .center h1{
	color: var(--primary);
}
section .center h3{
	color: var(--primary);
}
section .center span{
	color: rgb(128, 155, 241);
}


.titre2{
	display: flex;
	width: 100%;
	height: auto;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-top: -10px;
	font-size: 1em;
}


.titre2 h2{
    box-shadow: 20px 15px 35px ;
    background-color: ;
    color: black;
    font-size: 40px;
}
.menu .contenu .box{
	width: 150px;    /*--------------- c'est pour la largeur ------------------------- */
	margin: 10px;
	border: 10px solid #fff;
	box-shadow: 20px 15px 35px rgba(0, 0, 0, 0.8);
	font-size: 1em;
}
.menu .contenu .box:hover{
    border: solid black;
    transition: 2s;
    font-size: 1em;
}
.menu .contenu .box .imbox{
	width: 100%;
	position: relative;
	font-size: 1em;
}
.menu .contenu .box .imbox .img{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	font-size: 1em;	
}
.menu .contenu .box .imbox .img:hover{
	background: yellow;
	transition: ease-out;
	font-size: 1em;
}
.menu .contenu .box .imbox .img:hover text{
     font-size: 1em;
}
.menu .contenu .box .text{
	text-align: center;
	font-size: 1em;
}
.btn1{
	font-size: 1em;
	color: white;
	background-color: black;
	padding: 10px 20px;
	display: inline-block;
	margin-top: 20px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 2px;
	transition: 0.5s;
	margin-left: 10px;
	border-radius: 30px;
}
.btn1:hover{
	letter-spacing: 4px;
	font-size: 1em;
}
/*---------------------------- Menu Deroulable -------------------------------------------------*/
.menu1 ul li{
	text-decoration: none;
	color: white;
	text-align: center;
	font-size: 1em;
}
.menu1 ul li a{
	color: white;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	list-style: none;
}

footer{
	position: ;
	background: #333333;
	min-height: ;
	padding: 10px 50px;
	display: ;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 62.5%;
	font-family: "Montserrat", sans-serif;
	scroll-behavior: smooth;
}
footer .social_icon, footer .outil{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
	flex-wrap: wrap;
}
footer .social_icon li, footer .outil li{
	list-style: none;
}
footer .social_icon li a, footer .outil li a{
	font-size: 2em;
	color: white;
	margin: 0 10px;
	display: inline-block;
	transition: 0.5s;
}
footer .social_icon li a:hover{
	transform: translateY(-10px);
}
footer .outil li a{
	font-size: 1.2em;
	color: white;
	margin: 0 10px;
	display: inline-block;
	transition: 0.5s;
	text-decoration: none;
	opacity: 0.75;
}
footer .outil li a:hover{
	opacity: 1;
}
footer p{
	color: white;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 1.1em;
}



   #pagination-buttons {
	margin-top: 10px;
	text-align: center;
   }
   
   .pagination-button {
	display: inline-block;
	padding: 5px 10px;
	margin-right: 5px;
	background-color: #f0f0f0;
	border: 1px solid #ccc;
	cursor: pointer;
   }
   
   .pagination-button.active {
	background-color: #ccc;
   }


   
.simple-pagination ul {
	padding: 0;
	list-style: none;
	text-align: center;
	margin-left: 10px;
  }
  
  .simple-pagination li {
	display: inline-block;
	margin: 2px;
  }
  
  .simple-pagination li a, .simple-pagination li span {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #fff;
	text-align: center;
  
	text-decoration: none;
	color: #252525;
	border-radius: 4px;
	margin: 5px;
	box-shadow: inset 0 5px 10px rgb(0, 0, 0.1), 0 2px 5px rgb(0, 0, 0,.5);
  }
  
  .simple-pagination li a:hover {
	background: #09E02D;
	color: #fff;
  }
  
  .simple-pagination .current {
	background-color: #09E02D;
	color: #fff;
	border-color: ;
	cursor: pointer;
  }
  
  .simple-pagination .prev.current, .simple-pagination .next.current {
	background-color: #222;
	color: #fff;
	border: none;
  }








 :root {
	--primary: #ec994b;
	--white: #ffffff;
	--bg: #f5f5f5;
  }
  
  html {
	font-size: 62.5%;
	font-family: "Montserrat", sans-serif;
	scroll-behavior: smooth;
  }
  
  @media (min-width: 1440px) {
	html {
	  zoom: 1.5;
	}
  }
  
  @media (min-width: 2560px) {
	html {
	  zoom: 1.7;
	}
  }
  
  @media (min-width: 3860px) {
	html {
	  zoom: 2.5;
	}
  }
  
  ::-webkit-scrollbar {
	width: 1.3rem;
  }
  
  ::-webkit-scrollbar-thumb {
	border-radius: 1rem;
	background: #797979;
	transition: all 0.5s ease-in-out;
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: #222224;
  }
  
  ::-webkit-scrollbar-track {
	background: #f9f9f9;
  }
  
  





