.r-bar {
	width:100%;
	height:900px;
	position: relative;
	display:flex;
	flex-wrap:wrap;
	gap: 15px;
	margin-top: 60px;
}

/* Default styles for larger screens (laptop) */
.r-box {
	width: 32%;
	height: 350px;
	border: solid;
	align-content: center;
	place-items: center;
	margin-top: 25px;
}

.deco {
	position: relative;
	width: 100%;
	height: 100%;
}

.deco:before {
	content: '';
	position: absolute;
	background-image: url(../image/review.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: -38px;
	left: 40px;
	right: 0;
	bottom: 0;
	padding: 0 9px;
	background-color: #fff;
	width: 83px;
	height: 83px;
}

.review {
	position: relative;
	z-index: 1;
}

.rate {
	width: 30%;
	float: right;
	display: flex;
	margin-right: 85px;
	margin-top: 30px;
	height: 50px;
}

.star {
	margin-left: 7px;
	width: 30px;
	height: 30px;
}

.sweet-word {
	width: 100%;
	height: 200px;
	display: flex;
}

.sweet-word p {
	font-size: 18px;
	margin-top: 9px;
	text-align: center;
	margin-left: 5px;
	margin-right: 5px;
}

h6 {
	font-size: 35px;
	text-align: end;
	margin-right: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.r-bar{
		display: contents;
	}
	.r-box {
		width: 90%;
		height: auto;
		margin-top: 50px;
		margin-left: 20px;
	}

	.deco:before {
		width: 60px;
		height: 60px;
		top: -30px;
		left: 10px;
		background-size: contain; /* Maintain aspect ratio */
		background-position: center; /* Center the image */
	}

	.review {
		width: 100%;
		height: auto;
	}

	.rate {
		width: 50%;
		margin-right: 20px;
		margin-top: 20px;
	}

	.star {
		width: 25px;
		height: 25px;
	}

	.sweet-word p {
		font-size: 16px;
	}

	h6 {
		font-size: 25px;
		text-align: left;
	}
}
