#reviews-wrap {
	position: relative;
	margin-top: 45px;
}

#reviews-wrap::before {
	content: '';
	width: 66.6666%;
	height: 1px;
	border-bottom: 2px solid var(--gray);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -40px;
}

.review {
	margin-right: 70px;
}

.review:not(:last-child) {
	margin-bottom: 46px;
}

.review:nth-of-type(even) {
	margin-left: 70px;
	margin-right: 0;
}

.review .inner {
	background-color: var(--white);
	border-radius: 10px;
	box-shadow: 0 2px 10px -4px rgba(0, 0, 0, .25);
	padding: 20px 28px;
	text-align: center;
	font-family: raleway-italic;
	position: relative;
}

.review .inner > div {
	position: relative;
}

.review .inner b {
	display: block;
}

.review .inner::before {
	content: '';
	position: absolute;
	top: 18px;
	left: 34px;
	width: 72px;
	height: 72px;
	background-image: url("data:image/svg+xml,%3Csvg id='review-quote-svg' xmlns='http://www.w3.org/2000/svg' width='13.54' height='13.68' viewBox='0 0 13.54 13.68'%3E%3Cpath d='M6.34,0l-2.52,7.13h1.3l-1.37,6.55H0l1.44-6.55L4.39,0h1.94ZM13.54,0l-2.52,7.13h1.3l-1.37,6.55h-3.74l1.44-6.55L11.59,0h1.94Z' fill='%23ede8e4' stroke-width='0'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}

.review:nth-of-type(even) .inner::before {
	right: 34px;
	left: auto;
}