@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat');
*,
::before,
::after

{box-sizing: border-box;
	padding: 0;
margin: 0;}

html {
    font-size:50% ;
  font-family: 'Roboto', sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

hr {width: 15%;margin: 0  auto;}

body{background: #f5f5f5;}

nav {position: fixed;
width: 100%;
display: flex;
align-items: center;
padding: 0px 25px;
background:#f1f1f1;
;z-index: 1000;}

.nav-icon{display: flex;
align-items: center;text-decoration: none;
margin-right: 20px;}

.nav-icon span {font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
font-size: 25px;
margin-left: 10px;
font-weight: 400;
color: #333;}

.nav-icon img{ width: 100px;height: 80px;min-width: 100px;}



.hamburger {display: none;}
.navlinks-container i {margin-left: 5px;}



.navlinks-container a {padding: 12px 0;
	margin:10px 15px 0px ;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	color: #000;
	display: inline-block;
	position:relative;
}
.navlinks-container  {
	margin-left: 70px;
}

.navbar-form {width: 30px;margin:0px 10px;
	font-size: 16px;}






.navlinks-container a:hover{ color: #3e8e41;transition: 0.3s;}
.nav-authentication{margin-left: auto;}

.sign-user{font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";color: #333;
font-size: 16px;
min-width: 90px;
padding: 10px 5px;
margin: 0 0px;
border-radius: 5px;
border: none;}




/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}



/* Dropdown Content (Hidden by Default) */
.dropdown-content {top: 100%;transition:0.3s ease-out ;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 237px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {margin: 0;
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #3e8e41;color: black;transition: 0.3s;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {color:  #3e8e41;}


        /* Style de la barre de recherche */
        
.search-container {margin-left: 100px;
  float: right;
}

 input[type=text] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
}

.search-container button {
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.topnav .search-container button:hover {
  background: #ccc;
}
     

        /* Style pour le logo */
        .logo {
            float: left;
            margin: 8px 16px;
        }

        /* Style pour l'icône de connexion */
        .login-icon {
            float: right;
            margin: 8px 16px;
            color: white;
            font-size: 20px;
        }







@media (max-width:900px) {
.navlinks-container  {
	margin-left: 0;
}


/* liste deroulant*/
 .dropdown-content {position: sticky;
top:0;
}


        
	
	/* Style the search box inside the navigation bar */

.search-container {margin:0px;
    float: none;
  }
  nput[type=text], .topnav .search-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type=text] {
    border: 1px solid #ccc;  
  }
        /* Style pour le logo */
	
	nav {
		padding:15px 10px;
		pasition: relative;
	}
	

	.nav-icon{order: 2;
	margin:0;
	margin-left: auto;}
	
	.nav-icon span{font-size: 22px;}
	.nav-icon img {;height: auto}
	.main-navlinks{
		order: 1;
	}
	
	
	/* hamburgerToggler */
	.hamburger{
		width: 20px;
		height: 20px;
		cursor: pointer;
		border:none;
		display: flex;
		background:  #f1f1f1;
		align-items: center;
		position: relative;
		
	
	}
	.hamburger span {
		display: block;
		width: 100%;
		height: 2px;
		background: #333;
		position: absolute;
		pointer-events: none;
		transition: opacity 0.3s 0.15s ease-out;
	}
	.hamburger span:nth-child(1), 
	.hamburger span:nth-child(3) {
		transition: transform 0.3s ease-out;
	}
	
	.hamburger span:nth-child(1) {
		transform: translateY(7px);
	}
	
		.hamburger span:nth-child(3) {
			transform: translateY(-7px);
	}
	
	.hamburger.open span:nth-child(1){
		transform: translate(0) rotate(135deg);
	}
	.hamburger.open span:nth-child(2){
		opacity: 0;transition: opacity 0s ease-out;
	}
	.hamburger.open span:nth-child(3){
		transform: translate(0) rotate(-135deg);
	}
	
	
	
	.navlinks-container  {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		position: absolute;
		background:#f1f1f1;
		top: 100%;
		left: 0;
		height: 100vh;
		padding: 15px 50px 15px 20px;
		
		transform: translate(-100%); 
		transition: transform 0.3s ease-out;
		width: 100%;
	}
	.open{
		transform: translate(0%);}
	
	.navlinks-container a {
		font-size: 18px;
		margin: 10px 14px;
		padding: 5px;
	}
	

	
	  
	
	.nav-authentication {order: 3;
	margin-right:0px;}
	
	

}

@media (max-width:500px){
	.nav-icon img{width: 80px;}
	.nav-icon span {font-size: 20px;}
}




/* valeur planet moove*/
.titre-valeurs {margin-top: 150px; }
.titre-valeurs h1{font-size: clamp(20px,2vw,22px);color: #75ac42;padding: 10px;text-align: center;background-color: #0e273b;}
.container-valeurs {max-width: 1300px;
padding-left: 25px;
padding-right: 25px;
margin: auto;
height: auto;}

.valeurs {width: 100%;margin-top: 30px;}
.valeurs h2 {font-size: clamp(18px,2vw,22px);color:  #0C406A;padding: 10px;text-decoration: underline;}
.valeurs p {font-size: clamp(15px,2vw,18px);color: #555;padding: 10px;line-height: 1.4;}
.valeurs span {color: #75ac42;margin-right: 10px; }

@media (max-width:600px){
	.titre-valeurs h1{font-size: clamp(20px,2vw,22px);color: #0e273b;padding: 10px;text-align: center;background-color:#75ac42; }
	
	.valeurs {width: 100%;margin-top: 30px;background-color:  #0e273b;}
.valeurs h2 {font-size: clamp(18px,2vw,22px);color:#75ac42 ;padding: 10px;text-decoration: underline;}
.valeurs p {font-size: clamp(15px,2vw,18px);color: #fff;padding: 10px;line-height: 1.4;}
.valeurs span {color: #75ac42;margin-right: 10px; }
}










/* image et texte en flex box */
/* parents flexbox*/
.container-don {
	max-width: 1400px;
	padding-left: 25px;
	padding-right: 25px;
	margin: auto;
	height: auto;
}

.container-text-don {max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
	height: auto;}
	

.petit-don{max-width: 100%;margin: 50px 0 ;
display: flex;background:  #75ac42;align-items: center;justify-content: center;}
.image-don {max-width: 600px; max-height: 600px; object-fit: cover;}
.text-don {background:#0e273b;margin-left: -50px;}
.text-don p {color: #fff;font-size: 16px;padding: 20px;line-height: 1.7;}

.petit-don span{text-decoration:underline;color: #75ac42; }



@media (max-width:600px){
	.container-text-don {max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin: auto;
	height: auto;}
	
		
	
	.petit-don{
display: flex;flex-direction: column;background: #75ac42;width: 100%; }
	.image-don {max-width: 600px; max-height:600px;}
	.text-don {background:#0e273b;margin-top: -40px;margin-left: 0;}

}



/* 3 colonnes */
.contaier-colonne {
	max-width: 1300px;
	height: auto;
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
}
.col-container {margin-top: 40px;margin-bottom: 40px;
  display: table; /* Make the container element behave like a table */
  width: 100%; /* Set full-width to expand the whole page */
}

.col {;text-align: center;
  display: table-cell; /* Make elements inside the container behave like table cells */
}
.col p { font-size: 16px; color: #555;line-height: 1.4;
}
.col h2 { font-size: 18px; color: #333;padding: 10px;
}
.col img { margin-left: 10px;
   width: 40px;
}
/* If the browser window is smaller than 600px, make the columns stack on top of each other */
@media only screen and (max-width: 600px) {
  .col {
    display: block;
    width: 100%;
  }
.col-container {
  flex-direction: column;

}	
}

.col-container {
  display: flex;align-content: space-around;align-items: center;;
  width: 100%;
}
.col {margin: 10px 20px;
  flex: 1;
  padding: 16px;
}




/* pourqoi eclic flex*/
.titre-pourquoi-eclic {color: #333;text-align: center; margin: 30px 0 20px;font-size: 1.6rem;}

.container-pourqoi-eclic {max-width: 100%;
padding-left: 20px;
	padding-right: 20px;
	margin: auto;
	height: auto;
}

.pourqoi-eclic {max-width: 100%;
height: auto;
margin: 20px auto;


display: flex;justify-content: space-around;align-content: center;align-items: center;}

.container-pourqoi-eclic img {width: 100%;max-width: 400px;min-width: 250px;
height: auto;border-radius: 15px;
}

.pourqoi {padding: 20px;border:none;}
.pourqoi h2  {font-size: 2.3rem;text-align: center;padding: 15px;color:  #75ac42;}
.pourqoi p {font-size: 15px;text-align: center;padding: 15px;color:#555;}



@media (max-width:1120px){
	.pourqoi-eclic {max-width: 100%;
height: auto;

display: flex;flex-direction: column;justify-content: space-around;}
}







.titreengagement{color: #333;text-align: center; margin: 30px 0 20px;font-size: 1.6rem;}
.container-engagement{
	max-width:1000px;
padding-left: 10px;
padding-right: 10px;
margin:auto;
height: auto; }

.engagement {
	max-width: 100%;
height: auto;
margin: 20px auto;

 background-color:#75ac42; box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px;
display: flex; flex-direction: column; justify-content: space-around;align-content: center;align-items: center;}
.imageengagement img{width: 100%;max-width: 500px;min-width: 250px;padding: 10px;
height: auto;border-radius: 15px;
}

.texte p {padding:30px; ;font-size: 15px;line-height: 1.5;color: #0e273b;}
.texte2 p {padding: 30px;font-size: 15px;line-height: 1.5;color:#0e273b;}




/* footer*/
