/* Testimonial CSS */
.textMain .reviewList {
    position: relative;
    padding: 20px 0px;
}
.textMain .reviewList ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: end;
}
.textMain .reviewList li {
    margin: 0px;
    padding: 0px;
    background: none;
    font: 400 16px/20px var(--siteFont);
    position: relative;
}
.textMain .reviewList a {
    display: block;
    padding: 10px 25px;
    text-decoration: none;
    color: var(--themeOneBg);
    border-radius: 40px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}
.textMain .reviewActive a {
    background: var(--themeOneBg);
    color: var(--fontLight);
}
.textMain .reviewList a::before {
    margin-right: 10px;
}
.bg-icon::before {
    content: '';
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}
.textMain .googleReview a::before {
    background: url(/images/google-review.png) no-repeat center center;
}
.textMain .healthReview a::before {
    background: url(/images/healthgrade-review.png) no-repeat center center;
}
.reviewMain {
    position: relative;
    padding: 20px 0px;
}
.textMain .reviewMain > ul {
    margin: 0px;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}
.textMain .reviewMain > ul > li {
    margin: 0px;
    padding: 0px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font: 400 16px/20px var(--siteFont);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.textMain .reviewMain > ul > li:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}
.reviewDiv {
    padding: 20px 20px 20px 20px;
    height: 100%;
}
.reviewDiv::before {
    content: '\f10d';
    position: relative;
    color: var(--themeOneBg);
    font: 400 30px/30px 'fontello';
    padding-bottom: 10px;
    display: block;
}
.reviewName {
    font-style: italic;
    text-align: center;
    background: var(--themeOneBg);
    color: var(--fontLight);
    padding: 15px;
}
.reviewMore {
    margin: 0px;
    padding: 10px 0px 0px 0px;
    font: 400 16px/20px var(--siteFont);
    text-align: right;
}
.textMain .reviewMore ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.textMain .reviewMore li {
    margin: 0px;
    padding: 0px;
    background: none;
    list-style: none;
}
.textMain .rSource {
    font: 600 italic 16px/20px var(--siteFont);
}
.textMain li.rMore a {
    display: inline-block;
    vertical-align: top;
    margin: 0px;
    padding: 10px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 40px;
}
.textMain li.rMore a:hover {
    text-decoration: none;
    background: var(--themeOneBg);
    color: var(--fontLight);
}
.textMain .galleries ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.textMain .galleries li {
    margin: 0px;
    padding: 5px;
    border: 2px solid var(--fontDark);
}
.textMain .galleries li img {
    padding: 5px;
}
.stars {
    margin: 5px;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}
.rating-display {
    color: var(--themeOneBg);
    font: 400 16px/26px var(--siteFont);
    text-align: center;
    display: none;
    margin: 0px auto;
}
svg .star1 {
    fill: var(--fontLight) !important;
    stroke: var(--fontLight) !important;
}
svg .star1_stroke {
    fill: var(--fontLight) !important;
    stroke: var(--fontLight) !important;
}
svg .star4 {
    fill: none !important;
    stroke: none !important;
}
svg .star4_stroke {
    stroke: var(--fontLight) !important;
}
@media screen and (max-width: 900px) {
    .textMain .reviewMain > ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 800px) {
    .textMain .reviewList ul {
        justify-content: center;
    }
    .textMain .reviewList a {
        padding: 10px;
    }
}
@media screen and (max-width: 640px) {
    .textMain .reviewMain > ul {
        grid-template-columns: 1fr;
    }
    .textMain .reviewList li {
        font: 400 14px/20px var(--siteFont);
    }
}
/*----- Accessibility -----*/
html[data-theme='dark'] .accessible_on .textMain .reviewList > ul > li {
    box-shadow: inset 0 5px 5px 2px rgba(255, 255, 255, 0.5);
}
.accessible_on svg .star1 {
    fill: var(--linkColor) !important;
    stroke: var(--linkColor) !important;
}
.accessible_on svg .star1_stroke {
    fill: var(--linkColor) !important;
    stroke: var(--linkColor) !important;
}
.accessible_on svg .star4_stroke {
    stroke: var(--linkColor) !important;
}
