.cont-membre {
	gap: 1em;
	padding: 2em 10%;
	display: flex;
	flex-direction: column;
	background-color: #F6F6F5;
}

.cont-membre h1 span {
	text-transform: uppercase;
}

.cont-membre span.poste {
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none!important;
	color: var( --e-global-color-primary );
}

.cont-membre h2 {
	color: var( --e-global-color-secondary );
}

.cont-membre .profile {
	width: 300px;
	height: 300px;
	margin: auto;
	display: block;
	border-radius: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cont-membre .infos {
	padding: 1em;
	text-align: center;
	background-color: rgb(164 164 164 / 15%);
}

.cont-links {
	gap: 2em;
	display: flex;
	padding-top: 1em;
	align-items: center;
	flex-direction: row;
	justify-content: center;
}

.cont-links span > a > i {
	font-size: 30px;
}

.cont-presentation {
	text-align: left;
	font-size: 16px;
	font-weight: 400;
	font-family: "Poppins", Sans-serif;
}

/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.cont-membre {
		padding: 2em 5%;
		margin-left: 5%;
		margin-right: 5%;
	}

	.cont-membre .profile {
		width: 150px;
		height: 150px;
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

	.cont-membre {
		padding: 2em 5%;
		margin-left: 10%;
		margin-right: 10%;
	}

	.cont-membre .profile {
		width: 200px;
		height: 200px;
	}

}

/*mobile and tablet*/
@media (max-width: 1024px) {

}

/*desktop*/
@media (min-width: 1025px) {

}

/*pc portable*/
@media (min-width: 1025px) and (max-width: 1700px) {

}


/*RESPONSIVE*/
