.star-rating {
	display: flex;
	align-items: center;
}

.star {
	font-size: 20px;
	color: #d61212; /* Gold color for filled stars */
}

.star.filled {
	color: #d61212;
}

.star {
	color: #dcdcdc; /* Gray color for empty stars */
}

.testimonial-slider {
	opacity: 1;
}

.testimonial-slider .testimonial-content{
	margin-bottom: 20px;
}

.testimonial-slider h3{
	font-weight: 700;
}


.testimonial-slider.hidden {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}


.testimonial-slider .slick-prev.slick-arrow {
    width: 20px;
    height: 20px;
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-left: 0; /* Adjust this to your needs */
    margin-top: -30px;
    left: -40px;
    content: none;
}

.testimonial-slider .slick-prev.slick-arrow:hover {
    border-color: #eabb9b; /* Change to your desired hover color */
}

.testimonial-slider .slick-prev.slick-arrow::before {
    content: none;
}



.testimonial-slider .slick-next.slick-arrow {
    width: 20px;
    height: 20px;
    border: solid black;
    border-width: 2px 0 0 2px;
    display: inline-block;
    padding: 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-left: 0; /* Adjust this to your needs */
    margin-top: -30px;
    right: -40px;
    content: none;
}

.testimonial-slider .slick-next.slick-arrow:hover {
    border-color: #eabb9b; /* Change to your desired hover color */
}

.testimonial-slider .slick-next.slick-arrow::before {
    content: none;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 36px;
}