/*General */
@font-face {
	font-family: "wild";
	src: url("/assets/fonts/wild_wolf/wolf.ttf");
}

@font-face {
	font-family: "fresh";
	src: url("/assets/fonts/fresh_fruit/Fresh\ Fruit.ttf");
}


/*Section*/
section{
	margin: 5%; 
	text-align: left;
	display: flex;
	justify-content: space-around;
}

#right{
	width: 50%;
	padding: 15px;
}

.title{
	font-weight: bold;
	font-size: 30px;
	font-family: fresh;
	color: #212B33;
	width: 40%;
}

.title span {
	color: #ddba77;
}

.slogan{
	font-size: 15px;
	color: #9b9b9b;
}

.avis{
	margin: 15px 0 15px 0;
}

.avis a, .avis:hover a{
	color: black;
}

.description{
	font-size: 15px;
	color: #9b9b9b;
}

/*Avis*/
.checked {
	color: orange;
}

/*avantages*/

.avantages{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.avantage{
	width: 40%;
	padding: 1%;
}

.avantage i {
	color: #ddba77;
	font-size: 25px;
}

/*formules*/
.formules{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.formule{
	background-color: #212B33;
	color: white !important;
	border-color: white !important;
	height: 100px;
	width: 40%;
	font-size: 20px;
	border-radius: 15px;
	padding-top:  25px !important;
	-webkit-transition: all 1.3s ease;
	-moz-transition: all 1.3s ease;
	-ms-transition: all 1.3s ease;
	-o-transition: all 1.3s ease;	
}

.formule:hover, .formule:hover span .paiement{
	background-color:  #aa8f5d !important;
	padding-top:  20px !important;
	color: white !important;
}

.formule span .paiement{
	color: #aa8f5d !important;
}
.formule span .paiement:hover{
	color: #fff !important;
}

.formule:hover span {
	display:none
}

.formule:hover:before {
	content:"Acheter cette formation";
}




/*Format téléphone */
@media(max-width: 768px){
	section{
		flex-direction: column;
		margin-top: 20% !important;
	}

	#left img{
		max-width: 90vw;
		min-width: 80wh;
		margin: 0 auto;
		box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.3);
		border-radius: 25px;
	}

	#right{
		width: 96%;
		margin: 0 auto;
		margin-top: 20px;
	}
	.title{
		width: 100%;
		text-align: center;
	}

	.slogan{
		font-weight: bold;
		margin: 30px 0 30px 0;
		font-size: 16px;
		color: #aaa;
		text-decoration: underline;
	}

	.description{
		text-align: justify;
	}

	.avantages{
		width: 100%;
	}
	.avantage{
		font-size: 16px;
		width: 90%;
		position: relative;
		padding: 10px;
	}

	.avantage i {
		position: absolute;
		left: -30px;
	}

	.formule{
		width: 80%;
	}
}

