 .carousel-container {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.testimonial {
	padding: 10px;
	text-align: center;
	display: none;
	animation: fadeEffect 1s;
}

.testimonial.active {
	display: block;
}

.quote {
	font-size: 16px;
	line-height: 1.4;
	color: #333;
	margin-bottom: 20px;
}

.author {
	font-weight: bold;
	color: #555;
	font-size: 14px;
}

.nav-dots {
	text-align: center;
	margin: 20px 0;
}

.dot {
	height: 10px;
	width: 10px;
	margin: 0 5px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.dot.active {
	background-color: #717171;
}

.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	padding: 7px;
	margin-left: -15px;
	margin-right: -15px;
	color: #555;
	font-weight: bold;
	font-size: 20px;
	transition: 0.3s ease;
	border-radius: 3px;
	user-select: none;
	background-color: rgba(255, 255, 255, 0.5);
}

.prev {
	left: 10px;
}

.next {
	right: 10px;
}

.prev:hover, .next:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

@keyframes fadeEffect {
	from {opacity: 0.4}
	to {opacity: 1}
}

@media screen and (max-width: 600px) {
	.quote {
		font-size: 16px;
	}
	.prev, .next {
		padding: 8px;
		font-size: 16px;
	}
}