.picture-reviews {
	padding: 120px 0;
	background-color: var(--accent-color-light);
}

.picture-reviews__title {
	max-width: 600px;
	font-weight: 400;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 60px;
}

.picture-reviews__reviews {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
}

.picture-review {
	width: calc(50% - 13px)
}

.picture-review__img img {
	width: 100%;
}

@media screen and (max-width: 768px) {
	.picture-reviews {
		padding: 60px 0;
	}
	.picture-reviews__reviews {
		gap: 15px;
	}
	.picture-reviews__title {
		margin-bottom: 30px;
	}
	.picture-review {
		width: 100%;
		max-width: 550px;
	}
}