#section-about {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

h1 {
	margin-bottom: 1rem;
}

#about-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
}

#about-text-container {
	color: #989695;
	width: 80%;
	max-width: 850px;
}

#about-container p {
	font-size: 28px;
	text-align: center;
	line-height: 30px;
}

#reviews {
	display: flex;
	flex: 1;
	flex-direction: column;
	width: 100%;
	align-items: center;
}

#reviews-carousel {
	background-color: grey;
	width: 80vw;
	min-width: 340px;
	flex: 1;
}

#about-stars-img {
	height: 36px;
}

#review-arrow-left {
	transform: scaleX(-1);
}

#reviews-carousel-container {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: "Prompt", sans-serif;
}

#review-container {
	width: 50%;
	align-items: center;
	display: flex;
	flex-direction: column;
}

#review-text {
	text-align: center;
	font-style: italic;
	font-size: 20px;
}

#review-owner {
	display: flex;
	font-size: 25px;
}

#review-name {
	color: #6576e8;
}

#review-description {
	color: #385061;
	font-style: italic;
}

@media (max-width: 768px) {
	#section-about {
		gap: 50px;
		padding: 40px 10px;
	}

	#about-text-container {
		width: 100%;
		padding: 0 20px;
	}

	#about-container p {
		font-size: 18px;
		line-height: normal;
	}

	#review-container {
		width: 100%;
		padding: 0 20px;
	}

	#review-text {
		font-size: 16px;
	}

	#review-owner {
		flex-direction: column;
		align-items: center;
		font-size: 18px;
		margin-top: 10px;
	}
}