#Admission > article:nth-of-type(1) {
	height: 500px;
	background-color: #445A3C;
	display:flex;
	justify-content:center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

#Admission > article:nth-of-type(1) img,
#Admission > article:nth-of-type(1) h1 {
	position: absolute;
}

#Admission > article:nth-of-type(1) img:nth-of-type(1) {
	bottom: -20px;
	left: -50px;
	width: 400px;
}

#Admission > article:nth-of-type(1) img:nth-of-type(2) {
	top: 0px;
	right: 0px;
}

#Admission > article:nth-of-type(1) img:nth-of-type(3) {
	bottom: -50px;
	right: 150px;
	width: 200px;
}

#Admission > article:nth-of-type(1) h1 {
	font-size: 80px;
	color: white;
}

@media screen and (max-width: 767px) {
	
	#Admission > article:nth-of-type(1) {
		height: 300px;
	}
	
	#Admission > article:nth-of-type(1) h1 {
		font-size: 60px;
		color: white;
	}
	
	#Admission > article:nth-of-type(1) img:nth-of-type(1) {
		width: 300px;
	}
	
	#Admission > article:nth-of-type(1) img:nth-of-type(3) {
		display: none;
	}
}

/*============================================================ Accueil ============================================================*/

#Accueil {
	height:540px;
	background-color: #F7F7F7;
	position: relative;
}

#Accueil .text-container {
	position: absolute;
	top: 100px; /* Place le texte à 25% de la hauteur de l'article parent */
	width:500px;
	right: calc(10% + 680px);
	text-align: right;
}

#Accueil h1 {
	font-size: 60px;
	margin-top:0px;
	margin-bottom: 5px; /* Marge inférieure pour l'espace entre h1 et p */
	color: #445A3C;
}

#Accueil p {
	font-size: 30px;  /* Marge inférieure pour l'espace entre h1 et p */
	margin-top: 0;
	word-wrap: break-word; /* Permet au texte de revenir à la ligne */
}

#Accueil img:nth-of-type(1) {
	position: absolute;
	top: 80px; /* Place l'image au centre de l'article parent */
	right: 10%; /* Décalage de 15% vers la droite */
	width: 650px;
	border-radius: 15px;
}

#Accueil img:nth-of-type(2) {
	position: absolute;
	top: 120px; /* Place l'image au centre de l'article parent */
	left: 6%; /* Décalage de 15% vers la droite */
	width: 280px;
}

@media screen and (min-width: 1550px) and (max-width: 1750px) {
	
	#Accueil .text-container {
		width:500px;
		right: calc(2% + 680px);
	}
	
	#Accueil img:nth-of-type(1) {
		right: 2%; /* Décalage de 15% vers la droite */
		width: 650px;
	}
	
	#Accueil img:nth-of-type(2) {
		left: 2%; /* Décalage de 15% vers la droite */
		width: 300px;
	}
}

@media screen and (min-width: 1420px) and (max-width: 1549px) {
	
	#Accueil .text-container {
		width:500px;
		right: calc(2% + 680px);
	}
	
	#Accueil img:nth-of-type(1) {
		right: 2%; /* Décalage de 15% vers la droite */
		width: 650px;
	}
	
	#Accueil img:nth-of-type(2) {
		left: 2%; /* Décalage de 15% vers la droite */
		top:200px;
		width: 200px;
	}
}

@media screen and (min-width: 1350px) and (max-width: 1420px) {	
	#Accueil img:nth-of-type(2) {
		right: 0;
		left:200px;
		top: 200px;
		width: 200px;
		opacity:0.3;
	}
}

@media screen and (min-width: 950px) and (max-width: 1349px) {
	#Accueil {
		height:850px;
	}
	
	#Accueil .text-container {
		top: 20px; /* Place le texte à 25% de la hauteur de l'article parent */
		text-align:center;
		width:80%;
		left: 10%;
	}
	
	#Accueil img:nth-of-type(1) {
		top: 330px; /* Place l'image au centre de l'article parent */
		right: 10%; /* Décalage de 15% vers la droite */
		width: 50%;
	}

	#Accueil img:nth-of-type(2) {
		top: 380px; /* Place l'image au centre de l'article parent */
		left: 10%; /* Décalage de 15% vers la droite */
		width: 18%;
	}
}


@media screen and (min-width: 768px) and (max-width: 949px) {
	#Accueil {
		height:750px;
	}
	
	#Accueil .text-container {
		top: 20px; /* Place le texte à 25% de la hauteur de l'article parent */
		text-align:center;
		width:80%;
		left: 10%;
	}
	
	#Accueil img:nth-of-type(1) {
		top: 390px; /* Place l'image au centre de l'article parent */
		right: 10%; /* Décalage de 15% vers la droite */
		width: 50%;
	}

	#Accueil img:nth-of-type(2) {
		top: 380px; /* Place l'image au centre de l'article parent */
		left: 10%; /* Décalage de 15% vers la droite */
		width: 18%;
	}
}

@media screen and (max-width: 767px) {
	
	#Accueil {
		position:static;
		display:flex;
		flex-direction:column-reverse;
		width:100%;
		justify-content:start;
		height:auto;
		padding-bottom:50px;
	}
	
	#Accueil .text-container {
		width:80%;
		text-align:center;
		padding-left:10%;
		top:0;
		left:0;
		position:static;
	}
	
	#Accueil img:nth-of-type(1) {
		position:static;
		top:0;
		left:0;
		margin-top:-40%;
		margin-left:5%;
		width: 90%;
	}
	
	#Accueil img:nth-of-type(2) {
		position:relative;
		top:-300px;
		left:38%;
		width:24%;
		opacity:0.3;
	}
}

#button {
    text-align: center;
	background-color: #F7F7F7;
	padding-bottom:20px;
}

#button a {
    display: inline-block;
    background-color: #E8DEC7; /* Couleur de fond du bouton */
    color: black; /* Couleur du texte du bouton */
    padding: 14px 20px;
    font-size: 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s; /* Transition pour un effet au survol */
	width:60%;
}

#button a:hover {
    background-color: #C5B796; /* Nouvelle couleur de fond au survol */
}

/*============================================================ Tarif ============================================================*/
/* CSS pour le conteneur principal */
#Tarif {
  background-color: #F7F7F7;
  padding: 50px 0;
}

#Tarif > article{
	width:100%;
	display:flex;
}

#Tarif > article > article:nth-of-type(1),
#Tarif > article > article:nth-of-type(3){
	width:33%;
	display:flex;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
}

#Tarif > article > article:nth-of-type(2){
	width:34%;
	display:flex;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
}

#Tarif > article > article > h2{
	width:100%;
	margin:0;
	font-size: 30px;
}

#Tarif > article > article > p{
	width:100%;
	margin:0;
	font-size: 30px;
}

/*============================================================ TarifC ============================================================*/

.TarifC {
    width: 100%;
    background-color: #F7F7F7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.TarifC h1 {
    font-size: 60px;
	margin-top:0px;
	margin-bottom: 5px; /* Marge inférieure pour l'espace entre h1 et p */
	color: #445A3C;
}

.TarifC .prestations {
    padding: 10px;
	width:50%;
	list-style: none;
    padding-left: 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
	flex-direction: column;
	font-size:30px;
}


.TarifC .prestations li:nth-child(odd) {
    background-color: #F2F2F2;
	width:100%;
	padding:15px;
}

.TarifC .prestations li:nth-child(even) {
    background-color: white;
	width:100%;
	padding:15px;
}

.TarifC .prestations li {
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ajoutez cette propriété pour aligner le texte à gauche et le "v" à droite */
    font-size: 30px;
}

.TarifC .validation {
    font-weight: bold;
    color: green;
    margin-left: 10px; /* Ajoutez une marge à gauche pour séparer le "v" du texte */
}

.TarifC .prestations li span {
    margin-right: 0; /* Supprimez la marge droite du "v" pour le coller à droite */
}
