/* Owl Dots Container */
.owl-dots {
    margin-top: 20px;
    text-align: right;
}

/* Each Dot */
.owl-dot span {
    width: 10px;
    height: 2px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.3s;
}

/* Active Dot */
.owl-dot.active span {
    background: #153B89;
    width: 22px;
    border-radius: 10px;
}


.Testimonials {
    margin: 90px 0 60px;
    text-align: center;
}

.Testimonials .common_title .common_main_title::after {
    width: 100px;
    margin: 0;
}

.Testimonials .testimonial_swiper .testimonial_card {
    background: #EEEFFF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    opacity: 0.9;
    padding: 20px;
}

.Testimonials .testimonial_swiper .testimonial_card .card_header_div {
    display: flex;
    gap: 20px;
    align-items: center;
}

.Testimonials .testimonial_swiper .testimonial_card .card_header_div .short_div {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.Testimonials .testimonial_swiper .testimonial_card .card_header_div .short_div .short_form {
    font-size: 24px;
    font-weight: 800;
    color: #202020;
    margin: 0;
}

.Testimonials .testimonial_swiper .testimonial_card .card_header_div .card_title {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: #202020;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.Testimonials .testimonial_swiper .testimonial_card .card_review {
    font-size: 14px;
    font-weight: 600;
    color: #202020;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.Testimonials .testimonial_swiper .swiper-pagination {
    position: unset;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 20px;
}

.Testimonials .testimonial_swiper .swiper-pagination-bullet-active {
    background: #153B89 !important;
    width: 30px !important;
    height: 4px !important;
    border-radius: 5px !important;
    opacity: 1 !important;
}

.Testimonials .testimonial_swiper .swiper-pagination-bullet {
    background: #153B89;
    width: 15px;
    height: 3px !important;
    border-radius: 5px !important;
    opacity: 0.5;
}


/* ===================== Media Queries ===================== */

@media (min-width:0px) and (max-width:767px) {
    .Testimonials .testimonial_swiper .testimonial_card .card_header_div .card_title {
        font-size: 15px;
    }

    .Testimonials .testimonial_swiper .testimonial_card .card_review {
        font-size: 13px;
        text-align: justify;
    }

    .Testimonials {
        margin: 0;
    }
}