.reviews {
	margin-bottom: 80px;
	padding-bottom: 40px;
}
.reviews .slick-track {
	/*display: flex;*/
}
.review {
	/*height: inherit !important;*/
	/*display: flex !important;*/
	flex-direction: column;
	background-color: #F1F9FE;
	box-shadow: 0 8px 16px rgba(61, 107, 148, .16);
	padding: 20px 10px;
	margin: 15px;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	position: relative;
}
.review__author,
.review__time,
.review__link {
	color: var(--blue);
}
.review__link {
	position: absolute;
	bottom: 15px;
}
.review__time,
.review__text {
	margin-top: 0;
}
.review__text {
	display: flex;
	flex-direction: column;
	min-height: 180px;
	max-height: 180px;
	overflow: hidden;
	transition: max-height .7s;
}
.review__text.opened {
	max-height: 1000px;
}
.review__author,
.review__link {
	text-decoration: underline;
}
.review__link {
	margin-top: auto;
}
.review__author {
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	text-align: left;
}

@media screen and (max-width: 800px) {
	.reviews {
		margin-bottom: 40px;
	}
	.reviews .container {
		padding-left: 0;
		padding-right: 0;
	}
}