@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=Roboto');
*,
::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: 70%;margin: 0px 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;}
}



/* button prendre rendez vous */

.button-container { margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
 
    font-family: Arial, sans-serif;
    text-align: center;
}

.button-container .btn {margin-top: 70px;margin-bottom: 50px;
    display: inline-block;
      background-color: #1A4D2E;color: #FF6E80; font-weight: bold;
    padding: 15px 25px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button-container .btn:hover {
   background-color: #FF6E80;
    color: #0e273b;font-weight: bold;
}

.button-container .arrow {
    margin-left: 10px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .button-container .btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .button-container .btn {
        font-size: 12px;
        padding: 10px 15px;
    }
}

	


/* swiper images*/

#slidy-container { 
  width: 90%; overflow: hidden; margin: 130px auto 30px;
}
figure img{object-fit: cover;}




/*titres don*/
.container-titre-don {max-width: 100%;
padding-left: 25px;
padding-right: 25px;
margin: auto;
height: auto;}
.titre-don {display: flex; flex-direction: column;align-content:center;align-items: center;}

.titre-don h1 {color: #4fbec6;font-size:clamp(30px,7vw,20px);padding: 20px ;text-align: center; }
.titre-don h2 {color: #555;font-size:clamp(25px,7vw,20px);padding: 20px ;text-align: center;line-height: 1.4;  }
.titre-don h3 {color:#3e8e41 ;font-size:clamp(50px,7vw,20px);padding: 20px ; text-align: center;background-color:#f6a71c; }




/* image que devient votre appareil en panne*/
.container-image-prossesuce{
	max-width: 1000px;
	padding-left: 25px;
	padding-right: 25px;
	margin: auto;
	height: auto;
}
.image-prossesuce  {margin: 20px auto 40px;}
/* don d'apareils en panne*/




 p {color: #333;font-size: 16px;padding: 20px;line-height: 1.7;}

h2 {color: #555;font-size:clamp(30px,7vw,10px);padding: 20px;text-align: center; }




.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%;
display: flex;background:  #D7A859; align-items: center;justify-content: center;}
.image-don {max-width: 600px; max-height: 600px; }
.text-don {background:#0e273b;margin-left: -50px;padding: 20px;}
.text-don p {color:#ffffff; font-size: 16px;padding: 10px;line-height: 1.7;}
.text-don h2 {color: #ffffff; font-size: 18px;padding: 10px; }
.text-don span{padding: 10px 15px;background: #FF6E80;border-radius: 50%;font-size: 20px;margin:20px 5px 15px 0px  ;}
.border-text{border: 1px solid #FFD691;padding: 5px;}


@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: #D7A859;;width: 100%; }
	.image-don {max-width: 600px; max-height:600px;}
	.text-don {background:#0e273b;margin-top: -40px;margin-left: 0;}

}






/* nous desservon toulouse pour la recuperation d'apapereil en panne */

.local-seo-section {
    background-color: #f8f9fa; /* Fond léger pour le contraste */
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.local-seo-section h2 {
    font-size: 1.8em;
    color: #333; /* Couleur du titre */
    margin-bottom: 10px;
    text-align: center;
}

