.review-slider {
	position: relative;
    height: 270px;
    overflow: hidden;
    max-width: 1000px;
    text-align: center;
    margin: 40px auto;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s, transform 1s;
	padding:20px;
	background: #e1f3dc;
    border-radius: 10px;
	display:flex;
	flex-direction: column;
    margin: auto;
    justify-content: center;
}
.review-slide .author{
	font-weight:bold;
}
.review-slide .rating{
	padding-top:10px;
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0);
}
.slider-nav {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%); /* Center the nav */
    display: flex;
    gap: 10px; /* Space between dots */
}

.nav-dot {
    width: 10px;
    height: 10px;
    border: 2px solid #2e2e30;
    border-radius: 50%;
    background-color: transparent;
}

.nav-dot.active {
    border: none;
    background-color: #7ac142;
}
.star {
    height: 24px;
    width: 24px;
    margin-right: 4px;
}
.quote {
    height: 24px;
    width: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .review-slider {
		height:390px;
	}
}