*{
	box-sizing: border-box;
	margin: 0;
	font-family: "Poppins", serif;
  	font-weight: 400;
  	font-style: normal;
  	scroll-behavior: smooth;
}

@keyframes fade{
	from {opacity:0}
	to {opacity:1}
}

.scroll_haut{
	color: black;
	background-color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	text-decoration: none;
	border: thin solid black;
	padding: 5px;
	font-size: 30px;
	border-radius: 10px;
	animation: fade;
	animation-timeline: scroll(y root);
}

header nav a:hover{
	text-decoration-color: black;	
}

/*---------MENU BURGER----------*/
#burger{
	position: absolute;
	width: 100%;
	right: 0;
	top:0;
	font-size: 20px;
	display: none;
}

#burger nav{
	background-color:lightgrey ;
	width: 100%;
	text-align: center;
	padding: 20px 0;
	transition: transform 1s;
}

#open, #close{
	position: absolute;
	height: 40px;
	font-size: 50px;
	right: 20px;
	z-index: 1;
}

#burger a{
	color: black;
	text-decoration: none;
	display: block;
	padding: 10px 0;
}

/*Fait apparaître ou disparaître le bouton*/

#burger:target #open, #burger:not(:target) #close{
	display:none;
}

#burger:not(:target) .nav{
	transform: translate3d(0, -300px, 0);
}

#burger:target .nav{
	transform: translate3d(0, 0, 0);
}


/*---------FIN MENU BURGER----------*/

.contenu{
	width: 1000px;
	margin: auto;
	text-align: center;
}

.menu{
/*	width: 1000px;*/
/*	margin: auto;*/
	display: flex;
	justify-content: space-around;
	text-align: center;
	background-color: rgb(24,144,135);
	padding: 0px;
}
.nav{
	text-align: center;
}
#logo{
	padding: 10px 0 10px 0;
	margin: auto;
	width: 200px;
}


.menu{

}


.nav a{
	color: white;
	text-decoration-color: rgb(24, 144, 135); 
	tex
	font-size: 20px;
	padding: 20px;
}
.green{
	display: block;
	width: 100%;
	background-color: rgb(33, 45, 48);
}
#h1{
	color: white;
	font-size: 40px;
	text-align: center;
	padding-top: 40px;
}

#bandeau{
	height: 800px;
	background-image: url(images/bandeau.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bandeau-blanc{
	display: flex;
	justify-content: center;
}
.line{
	width: 350px;
	border-top: 5px solid ;
	color: rgb(0, 205, 196);
}
.texte{
	padding: 20px 60px 20px 60px;
	color: white;
	text-align: center;
	line-height: 20pxpx;
}
.texte-noir{
	width: 200px;
	display: flex;
	margin: auto;
	padding-top: 20px;

}

.bouton{
	color: white;
	text-decoration:none;
	background-color: rgb(0, 205, 196);
	border: none;
	padding: 10px 50px 10px 50px;
	border-radius: 10px;
}
.bton-container{
	padding: 30px 0 60px 0;
	text-align: center;
}
#nosservices{
	font-size: 56px;
	font-size: 40px;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 10px;
}
.service-encadre{
	width: 300px;
	color: white;
	text-decoration:none;
	background-color: rgb(0, 205, 196);
	border: none;
	padding: 20px;
	text-align: center;
	margin: auto;
}
.content-services{
	display: flex;
	justify-content: space-between;
	text-align: center;
	gap: 30px;
}
.services{
	display: block;
	flex-basis: fit-content;
	padding-top: 40px ;
	padding-bottom: 40px;

}
.encadre{
	width: 80%;
	text-align: center;
	color: white;
	background-color: rgb(0, 205, 196);
	border: none;
	padding: 20px;
	margin: auto;

}
.contact{
	display: flex;
	align-items: center;
	padding-top: 40px;
	padding: 0 30px 0 30px;
	gap: 20px;
}
.image{
	width: 50px; /* Largeur de l'image */
  	height: auto; /* Ajuste automatiquement la hauteur */
}
.block{
	display: flex;
	justify-content: space-between;

}
.vertical-center{
	margin: auto;
	flex: 1; /* Le texte prend tout l'espace disponible */
  	text-align: left; /* Assure l'alignement du texte à gauche */

}
.footer{
	display: flex;
	justify-content: center;
	gap: 10px;
	background-color: rgb(0, 205, 196);
	padding: 20px;
}
.icone{
	width: 40px;
	height: 40px;
}
.icone1{
	background: url(images/facebook.png)center/cover;
}
.icone2{
	background: url(images/twitter.png)center/cover;
}
.icone3{
	background: url(images/instagram.png)center/cover;
}
.highlight{
	color: rgb(0, 205, 196) ;
  	font-weight: bold;
}
.table{
	display: flex;
	justify-content: center;
}
.align-right{
	text-align: right;
	width: 48%;
}
.align-left{
	text-align: left;
	width: 48%;
}


/*-----------RESPONSIVE--------------*/

@media screen and (max-width:1000px){

	#burger{
		display: block;
	}

	.contenu{
		width: 100%;
		flex-direction: column;
		align-items: center;
	}

	h1{
		font-size: 40px;
	}

	h2{
		text-align: center !important;
		font-size: 40px;
	}

	.bton-container{
		text-align: center !important;
	}

	.menu{
		display: none;
	}
	.content-services{
		flex-direction: column;
	}
	.block{
		flex-direction: column;
	}
	.align-right{
	text-align: center;
	width: 100%;

}
.align-left{
	text-align: center;
	width: 100%;
	padding-bottom: 20px;
}
#logo{
	padding: 10px 0 10px 0;
	margin: auto;
	text-align: center;
}

	