.reviews-block {
	width: 100%;
	margin-bottom: 50px;
}
.reviews-list{
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.review-item{
	padding: 20px 30px;
	background: #FFF;
	border: 1px solid #000000;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	width: 100%;
	max-width: 1300px;
	font-weight: 400;
	font-size: 26px;
	line-height: 31px;
	letter-spacing: -0.03em;
	color: #000;
}
.review-item__date{
	margin-bottom: 5px;
}
.review-item__title{
	font-weight: 700;
	font-size: 28px;
	line-height: 34px;
	letter-spacing: -0.03em;
	color: #06519E;
	margin-bottom: 10px;

}
.review-item__text {

}
.review-item-answer {
	margin-top: 10px;
	text-align: right;
}
.review-item-answer__h {
	font-weight: 700;
	font-size: 28px;
	line-height: 34px;

	letter-spacing: -0.03em;
	color: #06519E;
    margin-bottom: 5px;
}
.review-item-answer__text{

	letter-spacing: -0.03em;
	color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 1200px) {
	.reviews-block {
		margin-bottom: 30px;
	}
	.review-item{
		padding: 15px 15px;
		background: #FFF;
		border-radius: 15px;
		font-size: 20px;
		line-height: normal;
	}
	.review-item__title{
		font-size: 24px;
		line-height: normal;

	}
	.review-item-answer__h {
		font-size: 24px;
		line-height: normal;
	}
}

@media (max-width: 768px) {

	.review-item{
		padding: 10px;
		box-shadow: 0px 3.69439px 14.7776px rgba(0, 0, 0, 0.1);
		border-radius: 12px;
		background: #FFF;
		font-size: 16px;
		line-height: normal;
	}
	.review-item__title{
		font-size: 18px;
		line-height: normal;

	}
	.review-item-answer__h {
		font-size: 18px;
		line-height: normal;
		margin-bottom: 0;
	}
	.review-item-answer__text{
		font-size: 14px;
	}

}