/*-- STYLE CONNAITRE.CSS" -----------------------------------*/
/*-- CONNAITRE "GAUCHE" ------------------------------------ */
.connaitre {
	display: flex;
	flex-direction: row; /* présentation horizontale - en ligne - Inverse de Column */
	justify-content: center; /* alignement : center - flex-stard ; flex-end ; space-between */
	flex-wrap: wrap; /* retour automatique à la ligne */ 	
}
/*-- PARTIE GAUCHE ------------------------------------------*/
.connaitre_g {
	width: 250px;
	height: 700px;								/* 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;
}
.photo img {
	border-style: none;
	border-radius: 100px;
	box-shadow: 8px 8px 8px #55493F; 
}
/*-- CONNAITRE "CENTRE" ------------------------------------ */
.connaitre_c{
	width: 700px;									/* ICI CHANGER LARGEUR COLONNE */
	height: 700px;  								/* ICI CHANGER HAUTEUR LIGNE */ 
	text-align: left;
	margin-left: 50px;
}
/*-- CONNAITRE "DROITE" ------------------------------------ */
.connaitre_d {
	width: 200px;									/* ICI CHANGER LARGEUR COLONNE */
	height: 700px;									/* ICI CHANGER LARGEUR COLONNE */
}
/*-- STYLE CONNAITRE.CSS" -----------------------------------*/
