#Emploi > article:nth-of-type(1) {
	height: 500px;
	background-color: #445A3C;
	display:flex;
	justify-content:center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

#Emploi > article:nth-of-type(1) img,
#Emploi > article:nth-of-type(1) h1 {
	position: absolute;
}

#Emploi > article:nth-of-type(1) img:nth-of-type(1) {
	bottom: -20px;
	left: -50px;
	width: 400px;
}

#Emploi > article:nth-of-type(1) img:nth-of-type(2) {
	top: 0px;
	right: 0px;
}

#Emploi > article:nth-of-type(1) img:nth-of-type(3) {
	bottom: -50px;
	right: 150px;
	width: 200px;
}

#Emploi > article:nth-of-type(1) h1 {
	font-size: 80px;
	color: white;
}

@media screen and (max-width: 767px) {
	
	#Emploi > article:nth-of-type(1) {
		height: 300px;
	}
	
	#Emploi > article:nth-of-type(1) h1 {
		font-size: 60px;
		color: white;
	}
	
	#Emploi > article:nth-of-type(1) img:nth-of-type(1) {
		width: 300px;
	}
	
	#Emploi > article:nth-of-type(1) img:nth-of-type(3) {
		display: none;
	}
}

/*======================================================== Jobs ========================================================================*/

#Jobs{
	width:100%;
	background-color: #F7F7F7;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-evenly;
	padding:20px 0;
}

#Jobs > article{
	width:80%;
	border: 1px solid #A5A5A5;
	border-radius:15px;
	background-color: #F2F2F2;
	padding:15px;
	margin-top:15px;
}

#Jobs > article > h1{
	font-size: 50px;
	margin-top:0px;
	margin-bottom: 5px; /* Marge inférieure pour l'espace entre h1 et p */
	color: #445A3C;
}

#Jobs > article > article{
	width:100%;
	display:flex;
	align-items:center;
}

#Jobs > article > article > h2{
	font-size: 30px;
	margin:0;
	margin-right:15px;
}

#Jobs > article > article > p{
	font-size: 20px;
	margin:0;
}

#Jobs > article > div{
	font-size: 20px;
}