section.reviews {
	padding: 40px 0;
}
section.reviews .section_name, section.reviews .section_description {
	color: var(--white);
}
section.reviews .container {
	border-radius: 20px;
	background: linear-gradient(0deg, rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.8)), url('../images/reviews-bg.jpg');
	background-size: cover;
	padding: 30px;
	padding-top: 15px;
	padding-bottom: 60px;
	background-position: center center;
}
section.reviews .carousel_reviews {
	position: relative;
	padding: 0 40px;
}
section.reviews .own-carousel__item {
	background: var(--white);
}
section.reviews .own-carousel__item a {
	display: flex;
	height: 280px
}
section.reviews .own-carousel__item img {
	margin: auto;
	max-height: 100%;
	max-width: 100%;
}
section.reviews .control__prev,section.reviews .control__next {
	cursor: pointer;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='13' height='21' viewBox='0 0 13 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.343384 9.685L9.87999 0.3367C10.3411 -0.115326 11.0868 -0.115326 11.543 0.336701L12.6566 1.4283C13.1177 1.88032 13.1177 2.60645 12.6566 3.05848L5.10187 10.4977L12.6566 17.9417C13.1128 18.3937 13.1128 19.1199 12.6566 19.5719L11.543 20.6635C11.0819 21.1155 10.3362 21.1155 9.87999 20.6635L0.343384 11.3152C-0.117748 10.8632 -0.117748 10.1322 0.343384 9.685Z' fill='white'/%3e%3c/svg%3e ");
	width: 13px;
	height: 21px;
	display: inline-block;
	left: 0px;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	opacity: .8;
	transform: translate(0%, 0%);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
section.reviews .control__next {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='13' height='21' viewBox='0 0 13 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.6566 11.315L3.12001 20.6633C2.65888 21.1153 1.91322 21.1153 1.45699 20.6633L0.343408 19.5717C-0.117725 19.1197 -0.117725 18.3935 0.343408 17.9415L7.89812 10.5023L0.343407 3.0583C-0.11282 2.60628 -0.11282 1.88015 0.343407 1.42812L1.45699 0.336527C1.91812 -0.115499 2.66378 -0.115499 3.12001 0.336527L12.6566 9.68482C13.1177 10.1368 13.1177 10.8678 12.6566 11.315Z' fill='white'/%3e%3c/svg%3e ");
	left: unset;
	right: 0px;
}
section.reviews .control__prev:hover {
	opacity: 1;
	animation: left_move 1s infinite linear;
}
section.reviews .control__next:hover{
	opacity: 1;
	animation: right_move 1s infinite linear;
}
@media (max-width: 768px) {
	section.reviews .container {
		border-radius: 0;
		padding-right: 20px;
		padding-left: 20px;
	}
	section.reviews .carousel_reviews {
		padding: 0 25px;
	}
	section.reviews .own-carousel__item a {
		height: 30vh;	
	}
}