.reviews {
	padding-top: var(--py-section);
	padding-bottom: var(--py-section);
	background: var(--color-gray-100);
}

.reviews-holder {
	background: var(--color-white);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.reviews-left {
	padding: 20px;
}

.reviews-left-full,
.reviews-right-full {
	width: 100%;
}

.reviews-left h2 {
	font-size: 34px;
	margin-bottom: 30px;
	line-height: 48px;
}

.reviews-heading h2 {
	font-size: 34px;
	line-height: 48px;
	margin-bottom: 30px;
}

.review-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.review-item {
	display: flex;
	gap: 20px;
	width: 100%;
}

.review-img {
	width: 110px;
	min-width: 110px;
	height: 110px;
}

.review-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.review-ctn {
	flex: 1;
}

.review-ctn .review-stars {
	width: 135px;
	margin-bottom: 15px;
}

.review-ctn p {
	margin-bottom: 0;
}

.review-ctn h4 {
	font-size: 24px;
	line-height: 32px;
	color: var(--color-primary-light);
	font-weight: 700;
}

.review-ctn h5 {
	color: var(--color-gray-900);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0;
	font-family: var(--font-family-body), sans-serif;
}

.reviews-right {
	background: var(--color-body-text);
	color: var(--color-white);
}

.reviews-image {
	width: 100%;
}

.reviews-image img {
	width: 100%;
}

.reviews-content {
	padding: 20px 20px 50px;
}

.reviews-content h4 {
	text-transform: uppercase;
}

.reviews-stars {
	width: 190px;
	margin-bottom: 15px;
}

.review-stars img,
.reviews-stars img {
	display: block;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.reviews-holder {
		display: flex;
		flex-wrap: wrap;
	}

	.review-img {
		width: 140px;
		min-width: 140px;
		height: 140px;
	}

	.reviews-left {
		width: 57%;
	}

	.reviews-right {
		width: 43%;
	}

	.reviews-left-full,
	.reviews-right-full {
		width: 100%;
	}
}

@media screen and (min-width: 1025px) {
	.review-list {
		gap: 30px;
	}

	.reviews-left {
		padding: 50px;
	}

	.reviews-left h2 {
		font-size: 48px;
	}

	.reviews-heading h2 {
		font-size: 48px;
	}

	.reviews-content {
		padding: 30px 30px 50px;
	}
}
