.testimonials {
	padding: 50px 0;
	background-color: var(--accent-color-light);
}

.testimonials-wrap {
	display: flex;
	justify-content: center;
}

.testimonial-card {
	margin: 15px;
	box-sizing: border-box;
	position: relative;
	max-width: calc(33% - 30px);
	background-color: #fff;
	color: var(--text-color-dark);
	font-size: 1.2rem;
	-webkit-box-shadow: 0px 5px 20px -10px rgba(0,0,0,0.74); 
	box-shadow: 0px 5px 20px -10px rgba(0,0,0,0.74);
}

.testimonial-card p {
	margin: 0;
}

.testimonial-card__info {
	margin: 15px;
	margin-left: 20px;
    padding: 20px 15px;
    padding-left: 25px;
    border-left: 2px solid #000;
    position: relative;
}

.testimonial-card__icon {
	width: 20px;
	height: 20px;
	padding: 5px 0;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	color: #000;
	font-size: 20px;
	line-height: 1;
}

.testimonial-card__icon svg {
	width: 20px;
	height: 20px;
}

.testimonial-card__text {
	font-style: italic;
}

.testimonial-card__author {
	font-size: 1rem;
	font-weight: 700;
	margin-top: 20px;
}

.testimonials__title {
	max-width: 700px;
	margin: 0 auto 30px auto;
	text-align: center;
	text-align: center;
}

.testimonials__buttons {
	text-align: center;
	margin-top: 30px;
}

@media screen and (max-width: 992px) {
	.testimonials-wrap {
		flex-wrap: wrap;
	}
	.testimonial-card {
		max-width: 650px;
		width: 95%;
	}
}

@media screen and (max-width: 768px) {

}