.list_amis {
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
	justify-content: center;

}

.amis_container {
	display: flex;
	flex-direction: column;
	width: 20%;
	align-items: center;
	text-align: center;
}

.amis_logo {
	background-size: cover;
	background-repeat: no-repeat;
	width: 150px;
	height: 150px;
	border-radius: 100%;
	background-position: 50% 50%;
}

.amis_name {
	color: var(--oxy_color_4);
	/*font-weight: 600;
	font-size: 1.5rem;
	text-transform: uppercase;
	font-family: 'intro';*/
	margin-top: 25px;
	text-align: center;
}

.amis_description {
	text-align: center;
	margin-top: 15px;
}

.dir_poste {
	color: white;
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 5px;
	line-height: 1.1;
}

.dir_email a {
	color: white;
	font-size: 0.95rem;
	text-decoration: none;
}

.swiper-button-next,
.swiper-button-prev {
	color: white;
	border: 2px solid white;
	width: 40px;
	height: 40px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px;
}

.list_groupe {
	padding: 0 40px;
}

@media screen and (max-width: 991px) {
	.amis_container {
		width: 30%;
		min-height: unset;
	}
}

@media screen and (max-width: 767px) {
	.amis_container {
		width: 40%;
	}

	.amis_logo {
		width: 170px;
		height: 170px;
	}

	.swiper-button-next {
		right: 0px;
	}

	.swiper-button-prev {
		left: 0px;
	}

}

@media screen and (max-width: 479px) {
	.amis_container {
		width: 100%;
	}

}