* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	color: #333;
	font-family: arial, sans-serif;
	font-size: 16px;
	line-height: 22px;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}

a {
	text-decoration: none;
	color: #333;
}

.wapper {
	margin: 0 auto;
	width: 1000px;
}

header {
	background-color: white;
	padding: 20px;
	height: 100px;
}

.nav {
	float: right;
	top: 0;
	right: 0;
}

.nav li {
	display: inline-block;
	font-size: 18px;
	transition: 0.5s;
}

.nav li a {
  display: block;
	padding: 20px;
	color: black;
	text-decoration: none;
}

.nav li:hover a {
	padding: 20px;
	background-color: #ffb114;
	display: block;
	text-decoration: none;
	font-size: 18px;
}

.nav li:hover .sub-menu {
	display: block;
}

.sub-menu {
	display: none;
	position: absolute;
	background-color: #ffb114;
	width: 180px;
}

.sub-menu li {
	display: block;
	color: black;
}

.sub-menu li a {
	color: black;
	font-size: 18px;
}

.sub-menu li:hover a {
	padding: 20px;
	background-color: #d78c13;
	font-size: 18px;
	color: black;
}

.titre {
	position: absolute;
	float: left;
	top: 0;
	left: 0;
}

.cadre {
	border: solid black;
	padding: 10px;
	width: max(55%, 300px);	
	background-color: white;
	border-radius: 20px;
}

.cadre2 {
	border: solid black;
	width: max(30%, 250px);	
	background-color: royalblue;
	text-align: center;
}

.fd {
	background-color: white;
	padding: 10px;
}

.trait {
	border-bottom: 1px solid black;
}

.Partenaires {
	width: max(15%, 150px);
}

footer {
	width: 100%;
	background-color: white;
	flex-shrink: 0;
	align-items: flex-start;
}

footer div {
	width: 30%;
}

footer img {
	transition: 0.5s;
}

footer img:hover {
	scale: 1.2;
}

h1 {
	margin: 25px;
}

h2 {
	margin: 20px;
}

h3 {
	margin: 15px;
}

h4 {
	margin: 10px;
}

.menu {
	display: none;
}

.imgmenu {
	display: none;
}

.moins1000 {
	display: none;
}

.plus1000 {
	display: block;
}

@media screen and (max-width: 1000px) {
	.moins1000 {
		display: block;
	}

	.plus1000 {
		display: none;
	}
}

@media screen and (max-width: 1300px) {
	.nav {
		display: none;
	}
	.menu {
		display: none;
		float: right;
		top: 0;
		right: 0;
		height: 100%;
		width: 50%;
		background-color: white;
		position: fixed;
	}
	.anim_menu {
		animation-duration: 1s;
		animation-name: afficher_menu_animation;
	}
	@keyframes afficher_menu_animation {
		0% {
			right: -60%;
		}
		100% {
			right: 50%;
		}
	}
	.imgmenu {
		display: flex;
		float: right;
		cursor: pointer;
	}
}