:root {
    --font-family-p1: "Montserrat";
    --font-family-p2: "Inter";
    --color-primary: #C62828;
    --color-secondary: #54595F;
    --color-text: #1A1A1A;
    --color-accent: #7A1414;
    --color-86a881a: #A61F1F;
    --color-03286ce: #E53935;
    --color-cea7b95: #4A4A4A;
    --color-736cb0c: #7A7A7A;
    --color-d699c26: #F6F6F6;
    --color-a9c3068: #E6E6E6;
    --color-ea634bf: #DDDDDD;
    --color-white: #FFFFFF;
    --color-black: #000000;
}

/*  */
.TestimonialSliderSc {
    display: flex;
    justify-content: center;
}

.TestimonialSlider {
    width: 100%;
    padding: 10px 10px 50px;
}

/* Card */
.TestimonialSlider .ts-card {
    display: flex;
    background: var(--color-white);
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

/* Image */
.TestimonialSlider .ts-img {
    width: 50%;
}

.TestimonialSlider .ts-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.TestimonialSlider .ts-content {
    width: 50%;
    padding: 50px;
    position: relative;
}

/* Stars */
.TestimonialSlider .ts-stars {
    color: #f4a100;
    font-size: 18px;
    margin: 0 0 15px;
}

.TestimonialSlider .ts-stars i {
    margin: 0 3px 0 0;
}

/* Quote */
.TestimonialSlider .ts-quote {
    font: 400 20px/1.6 var(--font-family-p2);
    color: #333;
    margin: 0 0 30px;
}

.TestimonialSlider .ts-quote p {
    margin: 0;
}

/* Name */
.TestimonialSlider .ts-name {
    font: 600 18px/1.2 var(--font-family-p1);
}

/* Role */
.TestimonialSlider .ts-role {
    color: var(--color-primary);
    font: 400 14px/1.2 var(--font-family-p2);
}

/* Quote Icon */
.TestimonialSlider .ts-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 70px;
    color: rgba(0, 0, 0, .05);
}

/* Pagination */
.TestimonialSlider .swiper-pagination {
    margin: 20px 0 0;
    text-align: center;
    position: unset;
}

.TestimonialSlider .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.TestimonialSlider .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 25px;
    border-radius: 10px;
}

.TestimonialSlider .ts-nav {
    position: absolute;
    top: calc(50% - 50px);
    left: 50%;
    width: 96%;
    transform: translate(-50%, 50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 9;
}

.TestimonialSlider .ts-prev,
.TestimonialSlider .ts-next {
    width: 45px;
    height: 45px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    cursor: pointer;
    pointer-events: all;
    transition: .3s;
}

.TestimonialSlider .ts-prev {}

.TestimonialSlider .ts-next {}

.TestimonialSlider .ts-prev:hover,
.TestimonialSlider .ts-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.TestimonialSlider .ts-prev i,
.TestimonialSlider .ts-next i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .TestimonialSlider .ts-card {
        flex-direction: column;
    }

    .TestimonialSlider .ts-img,
    .TestimonialSlider .ts-content {
        width: 100%;
    }

    .TestimonialSlider .ts-content {
        padding: 30px;
    }
}