/*-- STYLE ATELIERS.CSS" ------------------------------------*/
.ateliers {
	display: flex;
	flex-direction: row; /* présentation horizontale - en ligne - Inverse de Column */
	justify-content: center; /* alignement : center - flex-start ; flex-end ; space-between */
	flex-wrap: wrap; /* retour automatique à la ligne */
}
/*-- ATELIERS "GAUCHE" ------------------------------------- */
.ateliers_g {   
	width: 250px;
	height: 800px;								/* HAUTEUR A CHANGER */
	border-style: solid;
	border-width: 2px;
    border-color: #55493F; 
	border-radius: 20px;
	background-color: white;
	padding: 0px 10px 20px 10px;  
	box-shadow: 6px 6px 6px #55493F; 
	text-align: center;
	margin-bottom: 40px;
}
.ateliers_g ul {
	color: #FE5B25;	 /* orange */	
	text-align: left;
	font-size: 1.3em;
	font-weight: bold;
}
.ateliers_g a {
	text-decoration: none;
	color: #FE5B25;	 /* orange */	
}
.ateliers_g a:hover {
	text-decoration: underline;
	color: #FE5B25;	 /* orange */
	font-weight: bold;	
}
/*-- ATELIERS "CENTRE" ------------------------------------- */
.ateliers_c {
	width: 700px;									/* ----- ICI CHANGER LARGEUR COLONNE ----- */
	margin-left: 50px;
	margin-right: 50px;
}
.ateliers_c h1 {
	border-top: 2px solid #FE5B25; 	/* vert foncé */
    border-bottom: 2px solid #FE5B25; 	/* vert foncé */  
}.ateliers_c h2 {
	text-align: left;
}
.ateliers_c h4 {
	text-align: left;
}
.ateliers_c h6 {
	text-align: center;
	border-style: solid;
	border-width: 2px;
    border-color: #FE5B25; 
	border-radius: 20px;
	padding: 20px 20px 20px 20px;  
	box-shadow: 6px 6px 6px #FFDFD5; 
}
.titre_remonte {
	display: flex;
	flex-direction: row; 
	align-items: center;
	justify-content: flex-start;
}
.ateliers_c img {
	margin-right: 20px;
}
.ateliers_c a {
	text-decoration: none;
	color: #FE5B25;	 /* orange */	
}
.ateliers_c a:hover {
	text-decoration: underline;
	color: #FE5B25;	 /* orange */
	font-weight: bold;	
}
/*-- ATELIERS "DROITE" -------------------------------------- */
.ateliers_d {
	width: 150px;	/* ----- ICI CHANGER LARGEUR COLONNE ----- */
	text-align: center;
}
.image_ateliers img {
	margin-top: 100px;
	border-style: solid;
	border-width: 2px;
    border-color: white; 
	border-radius: 200px;
	box-shadow: 6px 6px 6px #55493F; 
}
/*-- STYLE ATELIERS.CSS" ------------------------------------*/


