.quote-block{
	min-height: 440px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.quote-content{
	padding-left: 190px;
	position: relative;
	z-index: 1;
}
.quote-background{
	position: absolute;
	top: 0;
	left: 0;
	width: 400px;
	height: 400px;
	object-fit: contain;
	opacity: .8;
}
.quote-text{
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--text-color);
	font-size:34px;
	font-weight: 400;
	margin-top: 30px;
	margin-bottom: 20px;
}
.quote-author{
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--text-color);
}
@media only screen and (max-width: 1024px) {
	.quote-content{
		padding-left: 24px;
		padding-right: 24px;
	}
}
@media only screen and (max-width: 768px) {
	.quote-block{
		min-height: 220px;
	}
	.quote-text{
		font-size: 24px;
	}
	.quote-author{
		font-size: 16px;
	}
	.quote-background{
		width: 200px;
		height: 200px;
	}
}