/* Fait pour le hover au dessus de l'icone de fondation pour indiquer
 * qu'il est possible de donner vu l'ambiguité du logo seul.
 * Rapidement tiré de
 * https://code-boxx.com/text-over-image-hover-html-css/
 * pour faire ca short and sweet. */

.fondation_img {
	width: 100%;
}

.fondation_wrap {
	max-width: 30%;
}

.fondation_img {
	position: relative;
}

.fondation_cap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.7);

	display: flex;
	justify-content: center;
	align-items: center;
}

.fondation_cap {
	visibility: none;
	opacity: 0;
	transition: opacity 0.3s;
	max-width: 30%;
}

.fondation_wrap:hover .fondation_cap {
	visibility: visible;
	opacity: 1;
}

/* css pour les liens de liens_centre_aide */

.container-liens{
	margin: 0em 3em;
}

.in-container-liens {
	color: black;
	/*background-color: #40B239;*/
	background-color: #d4d4d4;
	padding: 0.3em;
	margin:0.4em;
	border-style: solid;
	text-align: center;
	border-radius: 2em;
	border-color: black;
	border-width: 0.2em;
}

.in-container-liens:hover {
	color: black;
	background-color: white;
	background-color: #40B239;
	text-decoration: none;
}
