.testimonial_block.bg_darkBlue {
    background-color: var(--darkBlue);
}
.testimonial_block.bg_lightGreen {
    background-color: var(--lightGreen);
}

.testimonial_block.bg_darkBlue .content_wrapper .common-title,
.testimonial_block.bg_darkBlue .content_wrapper .desc,
.testimonial_block.bg_darkBlue .content_wrapper .author {
    color: var(--white);
}
.testimonial_block.bg_lightGreen .content_wrapper .common-title,
.testimonial_block.bg_lightGreen .content_wrapper .desc,
.testimonial_block.bg_lightGreen .content_wrapper .author {
    color: var(--darkBlue);
}
.testimonial_block.bg_darkBlue {
    --fullStar: #FFFFFF;
    --emptyStar: #000000;
}
.testimonial_block.bg_lightGreen {
    --fullStar: #14599A;
    --emptyStar: #000000;
}

.testimonial-swiper {
    position: relative;
    display: flex;
    gap: 60px 30px;
    overflow: hidden;
}
.testimonial-swiper .swiper-wrapper {
    padding-bottom: 80px;
}
.testimonial-swiper .content_wrap {
    gap: 15px;
}
.testimonial-swiper .author .bold {
    font-weight: 700;
    text-transform: capitalize;
}
.testimonial-swiper .author i {
    font-style: italic;
}
.ratings {
    margin: 0 auto;
}
.star-rating .full {
    color: var(--fullStar);
}
.star-rating .empty {
    color: var(--emptyStar);
}
.star-rating .half {
    background: linear-gradient(to right, var(--fullStar) 50%, var(--emptyStar) 50%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial_block.bg_darkBlue .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--darkGreen);
}
.testimonial_block.bg_darkBlue .swiper-pagination .swiper-pagination-bullet {
    border: 1px solid var(--darkGreen);
}