@charset "utf-8";

footer {
	box-sizing: content-box;
	width: 100%;
	margin-top: auto;
	padding: 40px 0 60px 0;
	background-color: #3A4980;
	border-top: solid 50px white;
}

footer menu {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	font-size: 1.3rem;
}

footer * {
	color: white;
}

footer menu ul {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
}

footer menu .colParticulier h1 {
	font-size: 1.4rem;
	font-weight: 600;
}

footer menu .colParticulier p {
	font-size: 1.2rem;
}

footer menu .colParticulier .copyright {
	font-size: 1rem;
	margin-top: 50px;
}

@media only screen and (max-width: 900px) {
	footer menu {
		font-size: 1rem;
	}
}

@media only screen and (max-width: 750px) {
	footer menu {
		flex-direction: column;
		row-gap: 15px;
		padding: 0 20px;
		font-size: 1.3rem;
	}
}