.services-products-info {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.services-products-info .header {
	margin-top: 40px;
	margin-bottom: 15px;
}
.services-products-info .div-text {
	display: flex;
	flex-direction: row;
	margin: 20px;
	width: 80%;
	font-size: 18px;
}
.services-products-info .div-text img {
	max-width: 640px;
	object-fit: contain;
	filter: drop-shadow(6px 6px 30px #222222);
}
#foto-view {
	position: fixed;
	max-width: 90%;
	max-height: 90%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	filter: drop-shadow(0px 0px 70px #000000);
}

.services-products-info .div-text li { margin: 8px 8px 5px 5px; }

.services-products-info .div-btn {
	display: flex;
	justify-content: center;
}
.services-products-info .btn {
	height: 36px;
	width: 400px;
	margin-top: 10px;
	margin-bottom: 45px;
	margin-left: 10px;
	margin-right: 10px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.4px;
	padding: 0px 20px;
}

.services-products-reviews {
/*	margin: 10px 20px 10px 10px;*/
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color-blue-3);
}
.services-products-reviews .header { margin-top: 40px; }
.services-products-reviews .block {
	width: 70%;
	margin-top: 10px;
	margin-bottom: 40px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background-color: var(--main-color-white);
/*	border: 1px solid var(--main-color-grey-1);*/
	border-radius: 8px;
}
.services-products-reviews .block .div-img {
	display: flex;
	justify-content: center;
	align-items: center;
}
.services-products-reviews .block .div-img img {
	max-width: 280px;
	max-height: 280px;
	margin: 15px;
	border-radius: 2px;
/*	border: 2px solid var(--main-color-green-2);*/
	filter: drop-shadow(1px 1px 2px #000000);
}
.services-products-reviews .block .div-info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.services-products-reviews .block .div-info .author {
	margin: 20px 25px 10px 10px;
	text-align: center;
	font-size: 	20px;
	font-weight: 700;
}
.services-products-reviews .block .div-info .text {
	margin: 0px 10px;
	flex-grow: 2;
}
.services-products-reviews .block .div-info .text p {
	margin: 10px;
	text-indent: 20px;
}
.services-products-reviews .block .div-info .date {
	margin: 20px;
	color: var(--main-color-grey-1);
}

@media screen and (max-width: 1600px) {
	.services-products-info .div-text {
		width: 80%;
		flex-direction: column-reverse;
		align-items: center;
	}
}
@media screen and (max-width: 800px) {
	.services-products-reviews .block { width: 90%; }
}
@media screen and (max-width: 600px) {
	.services-products-info .div-text {
		width: 92%;
		flex-direction: column-reverse;
		align-items: center;
		font-size: 16px;
	}
	.services-products-info .div-text img { width: 96%; }
	.services-products-info .btn { width: 250px; }
	.services-products-reviews .block {
		flex-direction: column;
		width: 95%;
	}
}