.reviews-item {
	background: #f3f3f3;
	display: flex;
	padding: 30px 20px;
	max-width: 80%;
	margin-top: 30px;
}

.reviews-item:first-child {
	margin-top: 0;
}

.reviews-item__left {
	flex: 0 0 85px;
	max-width: 85px;
}

.reviews-item__img {
	padding: 15px;
	background: #fff;
	width: 85px;
	height: 85px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.reviews-item__img img {
	max-width: 100%;
	max-height: 100%;
}

.reviews-item__right {
	flex: 0 1 100%;
	max-width: calc(100% - 85px);
	padding-left: 20px;
}

.reviews-item__title {
	font-weight: bold;
	margin-top: 10px;
	font-size: 18px;
	display: inline-block;
	padding-bottom: 5px;
	border-bottom: 2px solid #7ac3d5;
}

.reviews-item__text {
	margin-top: 10px;
}

@media (max-width: 1024px) {
	.reviews-item {
		max-width: 100%;
		padding: 15px;
	}
	.reviews-item:first-child {
		margin-top: 30px;
	}

	.reviews-item__left {
		flex: 0 0 60px;
		max-width: 60px;
	}
	.reviews-item__img {
		padding: 10px;
		width: 60px;
		height: 60px;
	}
	.reviews-item__right {
		max-width: calc(100% - 60px);
	}
}