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


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

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


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

}





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

#burger nav{
	position: absolute;
	background-color: white;
	width: 100%;
	text-align: center;
	transition: transform 1s;

}

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

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

/*Faire disparaitre le bouton*/

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

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

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

/*FIN MENU BURGER*/

a{
	text-decoration: none;
	color: black;
}

.contenu{
	width: 1000px;
	margin: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

header img{
	padding: 20px;
}

header nav{
	background-color: #149f98;
	display: flex;
	justify-content: space-around;
	padding: 20px;
	width: 100%;
}

header nav a{
	text-decoration: none;
	color: white;
	font-size: 20px;
	height: 30px;
	display: flex;
	align-items: center;
	border-bottom: 3px solid #149f98;
	transition: 0.8s;
}

header nav a:hover{
	border-bottom: 3px solid black;
}

.banniere{
	background:url(images/bandeau.jpg) center/cover;
	height: 500px;
}

h1, h2{
	font-size: 35px;
	text-transform: uppercase;
}

h3{
	font-size: 25px;
	text-transform: uppercase;
	background-color: #149f98;
	padding: 20px;
	color: white;
	margin-bottom: 20px;
}

#honoraires h3{
	font-size: 30px;
	text-transform: uppercase;
	background-color: #149f98;
	padding: 20px;
	color: white;
	margin-bottom: 20px;
	margin-top: 40px;
	width: 100%;
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.3);
}

.trait-bleu{
	height: 3px;
	width: 30%;
	background-color: #149f98;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 40px;
}

.fond-gris{
	background-color: #2b3a3f;
	color: white;
}

section{
	padding: 30px;
}

.txt-bleu{
	color: #149f98;
}

.bton{
	background-color: #149f98;
	color: white;
	text-decoration: none;
	padding: 10px 40px 10px 40px;
	margin-top: 40px;
	border-radius: 10px;
}

.cont-col-services{
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.col-services{
	flex-basis: 0;
	flex-grow: 1;
}


.hono, .contact{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	align-items: center;
	margin-bottom: 20px;
}

.hono-col1{
	flex-basis: 0;
	flex-grow: 12;
	text-align: right;
}

.hono-col2{
	flex-basis: 0;
	flex-grow: 1;
	background-color: #149f98;
	height: 3px;
}

.hono-col3{
	flex-basis: 0;
	flex-grow: 12;
	text-align: left;

}

.contact-col1{
	flex-basis: 0;
	flex-grow: 1;
	text-align: right;
}

.contact-col2{
	flex-basis: 0;
	flex-grow: 1.3;
	text-align: left;
}


footer img{
	width: 50px;
}

footer{
	background-color: #149f98;
	padding: 20px;
	display: flex;
	gap: 20px;
	justify-content: center;
}


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

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

	#burger{
		display: block;
	}

	.contenu{
		width: 100%;
	}

	header nav{
		display: none;
	}

	.cont-col-services{
		flex-direction: column;
	}


	.contact-col2{
		flex-grow: 2;
	}

}