.testimonial {
	border-radius: var(--radius-m);
	--testimonial-img-height: 175px;
}

figure.testimonial__img-wrapper img {
	height: var(--testimonial-img-height);
	border-radius: 50vmax;
	box-shadow: var(--box-shadow-1);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
figure.testimonial__img-wrapper {
	position: absolute;
	top: calc(var(--testimonial-img-height) * -0.6);
	left: 50%;
	transform: translateX(-50%);
}

.testimonial__content {
	font-style: italic;
	font-weight: 600;
}

.testimonial {
	padding: var(--space-m);
	padding-top: 10rem;
	padding-bottom: var(--space-s);
}

@media screen and (max-width: 1025px) {
	.testimonial {
		margin-top: var(--space-m);
	}
	.testimonial + .testimonial {
		margin-top: var(--space-xxl);
	}
}

.testimonials-section h2{
	text-align:center;
	margin-bottom:calc(var(--space-xxl) * 1.15);
}
@media screen and (max-width:767px){
.testimonials-section h2{
	margin-bottom:calc(var(--space-xxl) * 1.25);
}
}