swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 30px 40px;
    text-align: center;
    border-radius: 12px;
    background-color: #fff;
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: space-between;
}

p.testimonial-image img {
    width: 110px;
    border-radius: 120px;
    margin: auto;
    border: 2px solid var(--color-red);
    padding: 3px;
    background-color: #fff;
    margin-bottom: 20px;
}

p.testimonial-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color-red);
    left: 0;
    top: 85px;
    z-index: -1;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    background-color: var(--color-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

swiper-slide .Tname {
    color: var(--color-red);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0;
}

swiper-slide .Tdesig {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0;
}

swiper-slide .Tcom {
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.15;
}

i.bi.bi-quote {
    font-size: 5rem;
    line-height: 0;
    color: antiquewhite;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    swiper-container {
        slides-per-view: 1;
    }

    swiper-slide {
        width: 100%;
    }
}