.information-reviews {
	padding: 30px 0 80px;
}
.reviews-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
}
.review-item-big {
	grid-column: span 2;
}
.review-item {
	padding: 34px 40px 40px;
	background: var(--color-F0F1F3);
}
.review-icon-name-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 33px;
	margin: 0 0 31px;
}
.review-icon {
	flex-shrink: 0;
	width: 57px;
	height: 57px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.review-icon > img {
	width: 100%;
	height: auto;
}
.review-name {
	color: var(--color-1F1D1C);
	font-family: var(--intro-book-ff);
	font-style: normal;
	font-weight: 400;
	line-height: 135%; /* 27px */
	padding-top: 20px;
	position: relative;
}
.review-name:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 60px;
	height: 2px;
	background: var(--color-C9AD6F);
}
.review-text {
	color: var(--color-1F1D1C);
	font-family: var(--mont-ff);
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 22.5px */
	height: calc(1.5 * 15px * 7);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	margin: 0 0 41px;
}
.review-item-big.review-text {
	height: calc(1.5 * 20px * 5);
	-webkit-line-clamp: 5;
}
.review-date-more-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.review-date {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	color: var(--color-797777);
	font-family: var(--mont-ff);
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 18.2px */
}
.action-add-review-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	padding: 20px 0;
	width: 100%;
	border-bottom: 1px solid var(--color-1F1D1C);
	border-top: 1px solid var(--color-E7E7E7);
	margin: 0 0 50px;
}
.action-add-review-text {
	color: var(--color-1F1D1C);
	font-family: var(--mont-ff);
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
}
.action-add-review-text > span {
	color: var(--color-C9AD6F);
}
.add-review-content .form-field-wrapper {
	margin-bottom: 20px;
}
.add-review-content {
	position: relative;
}
.add-review-content > div,
.add-review-content > form {
	position: relative;
	z-index: 3;
}
.add-review-title {
	color: var(--color-1F1D1C);
	font-family: var(--intro-book-ff);
	font-style: normal;
	font-weight: 400;
	line-height: 115%; /* 32.2px */
	margin: 0 0 28px;
}
@media(min-width: 1100px) {
	.information-reviews {
		padding: 1.563vw 0 4.167vw;
	}
	.review-item {
		padding: 1.771vw 2.083vw 2.083vw;
	}
	.review-icon-name-wrapper {
		gap: 1.719vw;
		margin: 0 0 1.615vw;
	}
	.review-icon {
		width: 2.969vw;
		height: 2.969vw;
	}
	.review-name {
		padding-top: 1.042vw;
	}
	.review-name:before {
		width: 3.125vw;
	}
	.review-text {
		height: calc(1.5 * 0.781vw * 7);
		margin: 0 0 2.135vw;
	}
	.review-item-big.review-text {
		height: calc(1.5 * 1.042vw * 5);
	}
	.action-add-review-wrapper {
		gap: 1.302vw;
		padding: 1.042vw 0;
		margin: 0 0 2.604vw;
	}
	.add-review-content .form-field-wrapper {
		margin-bottom: 1.042vw;
	}
	.add-review-title {
		margin: 0 0 1.458vw;
	}
}
@media(max-width: 1099.99px) {
	.information-reviews {
		padding-bottom: 60px;
	}
	.review-item {
		padding: 20px 30px 30px;
	}
	.review-icon-name-wrapper {
		gap: 20px;
		margin-bottom: 15px;
	}
	.review-text {
		height: calc(1.5 * (15px * 0.8) * 7);
		margin-bottom: 20px;
	}
}
@media(max-width: 990px) {
	.reviews-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	.review-item-big {
		grid-column: unset;
	}
	.review-text {
		font-size: 12px!important;
		height: calc(1.5 * 12px * 7)!important;
	}
}