.section_avis_verifies {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: stretch;
}

.avis_wrapper {
	display: flex;
	flex-direction: column;
	text-align: center;
	background-color: white;
	padding: 15px 60px;
	align-items: stretch;
	border-radius: 10px;
	width: calc(33.3333% - 27px);
}

.avis_name, .avis_date {
	font-family: Ubuntu;
}

.avis_review:before, .avis_review:after {
	content: '';
	width: 25px;
	height: 25px;
	background: url(/wp-content/uploads/2022/11/quote.svg) no-repeat;
	position: absolute;
}

.avis_review:before {
	margin-top: -8px;
	margin-left: -40px;
}

.avis_review:after {
	transform: rotate(180deg);
	margin-top: 15px;
	margin-left: 20px;
}

.avis_review{
	font-size: 20px;
	color: #004992;
	font-weight: bold;
	margin-bottom: 20px;
	margin-top: 25px;
	line-height: 1.5;
	flex: 1;
	position: relative;
}

.avis_date{
	font-size: 14px;
}

.avis_rate{
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-bottom: 8px;
}

.avis_rate img{
	width: 20px;
	height: 20px;
}

@media screen and (max-width: 992px){
	.section_avis_verifies {
		gap: 20px;
	}
	.avis_wrapper{
		padding: 20px 50px;
		width: calc(33.3333% - 14px);
	}
}

@media screen and (max-width: 768px) {
	.section_avis_verifies{
		flex-direction: column;
	}

	.avis_wrapper{
		width: 100%;
	}
}