.reviews {
	margin-bottom: 35px;
}
.reviews-list {
	position: relative;
}
.reviews-list.section-wrap {
	padding: 50px 35px 75px;
}
.reviews-list-wrap {
	background-image: url("/local/templates/imetria/img/reviews-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: white;
	font-family: "Consolas";
	font-size: 14px;
	line-height: 1.25;
	box-shadow: 0px 0px 11px rgba(0, 0, 0, .75);
}
.reviews-list.container {
	max-width: 1200px;
	width: 100%;
}
.reviews-list-wrap .reviews {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.review-wrap {
	padding: 15px;	
}
.review {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
.review-image {
	width: 130px;
	height: 130px;
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50%;
	margin-right: 25px;
}
.review-author,
.review-title {
  font-size: 24px;
  font-family: "PlumbCondensed";
  color: rgb( 178, 205, 218 );
  font-weight: bold;
}
.review-title {
	margin: 10px 0 5px;
}
.review-date {
  font-size: 18px;
  font-family: "PlumbCondensed";
}
.review-info {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.reviews-list-wrap .slider-nav-left,
.reviews-list-wrap .slider-nav-right {
	cursor: pointer;
	opacity: .75;
	position: absolute;
	top: calc(50% - 24px);
	transition: opacity 300ms ease-in-out,
				transform 300ms ease-in-out;
}
.reviews-list-wrap .slider-nav-right {
    right: -33px;
}
.reviews-list-wrap .slider-nav-left {
    left: -33px;
}
.reviews-list-wrap .slider-nav-left:hover,
.reviews-list-wrap .slider-nav-right:hover {
	opacity: 1;
	transform: scale(1.1);
} 