.reviews-menu {
	display: flex;
	flex-direction: column;
	gap: 16px;

}
@media (min-width: 992px) {
	.reviews-menu {
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
	}
}
@media (min-width: 1200px) {
	.reviews-menu {
		gap: 97px;
	}
}
.reviews-menu a .circle,
.reviews-menu a svg {
	fill: currentColor;
	flex: 0 0 24px;
	height: 24px;
}
.reviews-menu a span {
	display: block;
}
.reviews-menu a {
	white-space: nowrap;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.3;
	border-radius: 20px;
	padding: 22px 38px;
	background: #e5effe;
	color: #9fa8b2;
	transition: color 0.3s ease, background 0.3s ease;
}
@media (min-width: 992px) {
	.reviews-menu a {
		white-space: nowrap;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 20px;
		font-weight: 500;
		font-size: 18px;
		line-height: 1.3;
		border-radius: 20px;
		padding: 15px 43px;
		background: #e5effe;
		color: #9fa8b2;
		transition: color 0.3s, background 0.3s;
	}
	.reviews-menu a .circle,
	.reviews-menu a svg {
		fill: currentColor;
		flex: 0 0 25px;
		height: 25px;
	}
}



.reviews-menu a:hover,
.reviews-menu a.active {
	background: #a9ff35;
	color: #000;
}
