		@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

		*,
		*::after,
		*::before {
		  box-sizing: border-box;
		  padding: 0;
		  margin: 0;
		}

		.html {
		  font-size: 62%;
		}

		body {
		  font-family: "Poppins", sans-serif;
		}


		.msg{
		text-align:center;
		padding: 5px;
		background: #ffece2;
		color: #c05f5f;
		}
		.tt{
		width:100% ;
		margin:auto; /* exemple pour centrer */
		display:block;/* pour effectivement centrer ! */
		}
		.xx{
		border: none;
		outline: none;
		}
		
		.form{
		  padding: 1rem;
		  width: 80%;
		  margin: auto;
		}		
img {
	max-width: 100%;
	width: auto;
	/* height: auto; */
}



#footer{
    position: fixed;
    right: 0;
    top: 90%;
	box-shadow: 0px 5px 20px 0px #aaa;
	width: 100%;
	background: #fff;
	color: #000;
    padding: 0.5em 0.5em 0.5em 2.5em;
	font-weight: 500;
	opacity: 0.8;
	text-align: center;
}		  




.ecran{
position:relative; top: 70px;
margin:0px 20px 20px 20px;
}

.area {
		  width:100%;
		  background-size: cover;
		  background-position: center;
		  background-repeat: no-repeat;

		}
		.areac {
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  justify-content: center;
		 
		  font-size: 1.6rem;
		}




#box {
	max-width:1150px;
    display: grid;
    column-gap: 1.75rem;
    row-gap: 1.5rem;
    text-align: center;
    
    grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));

}
.carre:hover {
    box-shadow: 5px 5px 20px rgb(41 46 51 / 40%);
}
.rond:hover {
    box-shadow: 5px 5px 20px rgb(41 46 51 / 40%);

}


.carre {
    padding: 25px 35px;
    background-color: var(--color_white);
    border-top: 5px solid var(--color_pool);
    box-shadow: 5px 5px 20px rgba(41, 46, 51, 0.2);
}


.rond {
    padding: 25px 35px;
    background-color: var(--color_white);
    border-top: 5px solid var(--color_pool);
    box-shadow: 5px 5px 20px rgba(41, 46, 51, 0.2);
    border-radius: 20px;
}


.imgrond{
 border-radius: 50%;
}



a {
  outline: none;
  text-decoration: none;
}

a:link {
  color: #265301;
}

a:visited {
  color: #0000;
}

a:focus {
  border-bottom: 1px solid;
  background: #BAE498;
}

a:hover {
  border-bottom: 1px solid;
  background: #CDFEAA;
}

a:active {
  background: #265301;
  color: #CDFEAA;
}




 
		  



































































		/* ............/navbar/............ *

		/* desktop mode............/// */

		.navbar input[type="checkbox"],
		.navbar .hamburger-lines {
		  display: none;
		}

		.navbar {
		  box-shadow: 0px 5px 10px 0px #aaa;
		  position: fixed;
		  width: 100%;
		  background: #fff;
		  color: #000;
		  opacity: 0.8;
		  height: 50px;
		  z-index: 12;
		}

		.navbar-container {
		  display: flex;
		  justify-content: space-between;
		  height: 64px;
		  align-items: center;
		}

		.menu-items {
		  order: 2;
		  display: flex;
		  margin-left: 1.5rem;		  
		}

		.menu-items li {
		  list-style: none;
		  margin-left: 1.5rem;
		  margin-bottom: 0.5rem;
		  font-size: 1.2rem;
		}

		.menu-items a {
		  text-decoration: none;
		  color: #444;
		  font-weight: 500;
		  transition: color 0.3s ease-in-out;
		}

		.menu-items a:hover {
		  color: #117964;
		  transition: color 0.3s ease-in-out;
		}

		.logo {
		  order: 1;
		  font-size: 2.3rem;
		  margin-bottom: 0.5rem;
		}


		/* ......../ media query /.......... */

		@media (max-width: 768px) {
		  .navbar {
			opacity:0.8;
		  }

		  .navbar-container input[type="checkbox"],
		  .navbar-container .hamburger-lines {
			display: block;
		  }

		  .navbar-container {
			display: block;
			position: relative;
			height: 64px;
		  }

		  .navbar-container input[type="checkbox"] {
			position: absolute;
			display: block;
			height: 32px;
			width: 30px;
			top: 20px;
			left: 20px;
			z-index: 5;
			opacity: 0;
		  }

		  .navbar-container .hamburger-lines {
			display: block;
			height: 23px;
			width: 35px;
			position: absolute;
			top: 17px;
			left: 20px;
			z-index: 2;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
		  }

		  .navbar-container .hamburger-lines .line {
			display: block;
			height: 4px;
			width: 100%;
			border-radius: 10px;
			background: #333;
		  }

		  .navbar-container .hamburger-lines .line1 {
			transform-origin: 0% 0%;
			transition: transform 0.4s ease-in-out;
		  }

		  .navbar-container .hamburger-lines .line2 {
			transition: transform 0.2s ease-in-out;
		  }

		  .navbar-container .hamburger-lines .line3 {
			transform-origin: 0% 100%;
			transition: transform 0.4s ease-in-out;
		  }

		  .navbar .menu-items {
			padding-top: 100px;
			background: #fff;
			height: 100vh;
			max-width: 300px;
			transform: translate(-150%);
			display: flex;
			flex-direction: column;
			margin-left: -40px;
			padding-left: 50px;
			transition: transform 0.5s ease-in-out;
			box-shadow: 5px 0px 10px 0px #aaa;
		  }

		  .navbar .menu-items li {
			margin-bottom: 1.5rem;
			font-size: 1.3rem;
			font-weight: 500;
		  }

		  .logo {
			position: absolute;
			top: 5px;
			right: 15px;
			font-size: 2rem;
		  }

		  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
			transform: translateX(0);
		  }

		  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
			transform: rotate(35deg);
		  }

		  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
			transform: scaleY(0);
		  }

		  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
			transform: rotate(-35deg);
		  }



		/*
		 * @media (max-width: 500px) {
		  html {
			font-size: 65%;* /
		  }

		  .navbar .menu-items li{
			  font-size: 1.6rem;
		  }

		  .logo {
			position: absolute;
			top: 06px;
			right: 15px;
			font-size: 3rem;
		  }

		  .navbar .menu-items li {
			margin-bottom: 2.5rem;
			font-size: 1.8rem;
			font-weight: 500;
		  }
		}
*/
		@media (min-width: 769px) and (max-width: 1200px) {
		
		}

		@media (orientation: landscape) and (max-height: 500px) {

		}
