/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.customer-testimonials-section {
    position: relative;
    padding: 96px 0;
    text-align: center;
    background-color: #FAFCFF;
    overflow: hidden;
}

.customer-testimonials-section .dark-blue-circles {
    position: absolute;
    bottom: -500px;
    right: -600px;
    height: auto;
    width: 1000px;
}

.customer-testimonials__title {
    font-size: 32px;
    line-height: 42px;
    font-family: "Urbanist-SemiBold";
    color: #2A2243;
    text-align: center;
}

.customer-testimonials__slider {
    width: 100%;
    margin-bottom: 40px;
    padding: 48px 0;
    overflow: hidden;
}

.customer-testimonials__slider .splide__track {
    overflow: hidden;
}

.customer-testimonials__slider .splide__list {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.customer-testimonials__slider .splide__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.customer-testimonials__card {
    padding: 32px;
    border-radius: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    height: 100%;
}

.customer-testimonials__card:hover {
    cursor: -webkit-grab;
    cursor: grab;
}

.customer-testimonials__card--dark {
    background: #2a2243;
    color: white;
}

.customer-testimonials__card--light {
    background: white;
    color: #2a2243;
}

.customer-testimonials__card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}

.customer-testimonials__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.customer-testimonials__card--light .customer-testimonials__avatar {
    border-color: rgba(42, 34, 67, 0.1);
}

.customer-testimonials__avatar-initials {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: "Urbanist-SemiBold", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    background: -o-linear-gradient(315deg, #1E59F1 0%, #11EEEF 100%);
    background: linear-gradient(135deg, #1E59F1 0%, #11EEEF 100%);
}

.customer-testimonials__card--light .customer-testimonials__avatar-initials {
    color: white;
    background: -o-linear-gradient(315deg, #2a2243 0%, #4a3f6b 100%);
    background: linear-gradient(135deg, #2a2243 0%, #4a3f6b 100%);
}

.customer-testimonials__user-info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.customer-testimonials__name {
    font-family: "Urbanist-SemiBold";
    text-align: left;
    font-size: 20px;
    margin-bottom: 8px;
}

.customer-testimonials__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px;
}

.customer-testimonials__star {
    font-size: 18px;
    color: #ddd;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.customer-testimonials__star--filled {
    color: #ffc107;
}

.customer-testimonials__text {
    font-family: "Urbanist-Regular", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}


.customer-testimonials__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    margin: 40px 0;
    list-style: none;
    padding: 0;
}

.customer-testimonials__pagination-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(42, 34, 67, 0.3);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0;
}

.customer-testimonials__pagination-dot.is-active {
    background: #2a2243;
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

.customer-testimonials__pagination-dot:hover {
    background: #2a2243;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .customer-testimonials-section {
        padding: 48px 0;
    }
}