
/* Styles for the review carousel container */
.review-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adjust the gap between items */
    overflow: hidden;
}

/* Styles for each review item */
.review-carousel .review-item {
    width: 300px; /* Adjust the width of each item */
    padding: 20px;
    border-radius: 15px;
    background-color: #f7f7f7;
    display: flex !important;
  flex-direction: column;
  transition: 0.3s all ease-in-out;
  border: 1px solid #f7f7f7;
}
.review-carousel .review-item:hover {
   border-color: #eaeaea;;
}
/* Styles for the review thumbnail */
.review-carousel .review-thumbnail img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
    max-height: 137px;
    object-fit: cover;
    width: 100%;
}

/* Styles for the review title */
.review-carousel .review-item h3 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 600;
    padding-top: 15px;
}

/* Styles for the review content */
.review-carousel .review-content {
    font-size: 17px;
    line-height: 1.5;
    padding-bottom: 20px;
}
/* Styles for the previous and next arrows */
.review-carousel .slick-prev,
.review-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; /* Adjust arrow size */
    height: 40px; /* Adjust arrow size */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
    color: #333; /* Arrow color */
}

.review-carousel .slick-prev:hover,
.review-carousel .slick-next:hover {
    background-color: rgba(255, 255, 255, 0.9); /* Darker background on hover */
}

/* Styles for the arrow icons */
.review-carousel .slick-prev::before,
.review-carousel .slick-next::before {
    content: '\2039'; /* Unicode for left-pointing arrow and right-pointing arrow */
    font-family: Arial, sans-serif; /* Use a font that supports arrows */
    font-size: 24px; /* Adjust arrow size */
}

.review-carousel .slick-next::before {
    content: '\203A'; /* Unicode for right-pointing arrow */
}

.review-carousel .slick-prev {
    left: 10px; /* Adjust position */
}

.review-carousel .slick-next {
    right: 10px; /* Adjust position */
}


.review-carousel .slick-list {
    margin: 0 -10px; /* Prevents extra space on the sides */
}

.review-carousel .review-quote {
    max-width: 50px;
    opacity: 0.1;
    width: 100%;
    margin-top: auto;
    margin-left: auto;
}
.review-carousel .slick-track {
    display: flex;
    gap: 34px;
}
.review-carousel .slick-slide {
    margin: 0 12px;
    float: unset;
}
.review-carousel .review-thumbnail video {
    border-radius: 10px;
}
.review-carousel .slick-slide:focus {
outline-width: 0px;
  outline-style: none !important;
}