/*Testimonials Layout 1 start Here*/
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    --testimonial-columns: 3;
}

/* Default (Desktop) */
.testimonial-template-container {
    /* width: calc(100% / var(--testimonial-columns, 3) - 20px); */
    width: calc(100% / var(--testimonial-columns) - 20px);
    background-color: var(--testimonial-bg-color, #ffffff); /* Default White */
    padding: 26px 46px;
    border-radius: 12px;
    text-align: left;
    border: 3px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonials-container {
        /* --testimonial-columns: var(--testimonial-columns-tablet, 2); */
        --testimonial-columns: var(--testimonial-columns-tablet);
    }
}

@media (max-width: 767px) {
    .testimonials-container {
        /* --testimonial-columns: var(--testimonial-columns-mobile, 1); */
        --testimonial-columns: var(--testimonial-columns-mobile);
    }

    .testimonial-template-container {
        padding: 12px;
        width: 100%;
    }

    .testimonial-content h2 {
        font-size: 16px !important;
    }

    .testimonial-content .quote-img {
        width: 50px;
    }
}

@media screen and (max-width: 900px) {
    .testimonials-container {
        flex-wrap: wrap;
    }
}

.testimonial-content p {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 500;
    line-height: 27px;
    color: #110024;
}

.testimonial-content .quote-img {
    display: flex;
}

.customer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-profile img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-name h3 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: capitalize;
    color: #110024;
    text-align: left;
    margin: 0;
}

.customer-name p {
    font-size: 14px;
    color: #474752;
    margin: 0;
    font-weight: 400;
    text-transform: capitalize;
    text-align: left;
}

.star-rating {
    display: flex;
    font-size: 24px;
    color: #FFD700;
}

.star-rating .star {
    cursor: default;
    transition: color 0.3s;
}

.star-rating .star.filled {
    color: #FFD700;
}

.rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*Testimonials Layout 1 End Here*/

/* .elementor-widget-testimonials_widget .testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.elementor-widget-testimonials_widget .testimonial-template-container {
    background: #fff;
    padding: 26px 46px;
    border-radius: 12px;
    text-align: left;
    width: calc(33.33% - 20px);
    border: 3px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.elementor-widget-testimonials_widget .testimonial-template-container {
    width: calc(33.33% - 20px) !important;
}

@media (max-width: 767px) {
    .elementor-widget-testimonials_widget .testimonial-template-container {
        width: 100% !important;
        padding: 12px !important;
    }
    .elementor-widget-testimonials_widget .testimonial-content h2 {
        font-size: 16px !important;
    }
} */