.reviews {
	padding: 50px 0;
	background: var(--bs-light);
}
.reviews-title {
	text-align: center;
	margin-bottom: 10px;
}
.reviews-container {
}
.review {
	padding: 20px;
}
.review-author {
	margin-bottom: 10px;
}
.review-text {
	font-size: 16px;
	color: var(--bs-secondary);
	font-weight: var(--fw-light);
}
.review-text > *:not(:last-child) {
	margin-bottom: 5px;
}

.reviews .slick-dots button {
	padding: 0;
	margin: 0;
	width: 16px;
	height: 16px;
	box-shadow: 0 0 0 #000;
}
.reviews .slick-dots {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.reviews .slick-dots > li:not(:last-child) {
	margin-right: 10px;
}
.reviews .slick-dots > li {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--w);
	border: 1px solid var(--bs-secondary);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.reviews .slick-dots > li.slick-active {
	border: 1px solid var(--theme-blue);
	background: var(--theme-blue);
}
@media screen and (max-width: 1024px) {
	.review {
		padding: 20px 0;
	}
	.review-text {
		font-size: 16px;

	}
}