@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');


*{

	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
	scroll-behavior: smooth;

}

/*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*/

@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);

	}


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 rgba(42,58,62,255);

}

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

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

h3{
	font-size: 20px;
	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;
	text-align: center;
	display: flex;
	gap: 20px;
	justify-content: center;
}


/*<----------------------------------RESPONSIVE-------------------------------->*/

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


	/*MENU BURGER*/
	
	#burger{
		display: block;
	}

	#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*/

	.contenu{
		width: 100%;
	}

	header nav{
		display: none;
	}

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

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


}