.testimonial-section {
    background-color: #F1303A1A;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
}

.testimonial-container {
    margin-top: 40px;
}

.testimonial-section-header {
    color: #262626;
    font-weight: 500;
    font-size: 35px;
}

.testimonial-card {
    background-color: white;
    padding: 20px 15px;
    border-radius: 12px;
    height: auto;
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card-header .image {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.testimonial-card-header .header-text {
    font-weight: 500;
    font-size: 18px;
    color: var(--header-color);
     text-transform: capitalize;
}

.testimonial-card-header .header-title {
    margin-top: 5px;
}

.testimonial-card-body {
    margin-top: 12px;
    text-align: center;
}

.testimonial-card-body>.header {
    font-weight: 500;
    font-size: 20px;
    color: var(--header-color)
}

.testimonial-card-body>.description {
    font-weight: 16px;
    font-weight: 400;
    margin-top: 12px;
}

.testimonial-section .swiper-nav {
    margin-top: 35px;
}

.swiper-slide-active.testimonial-card {
    transform: scale(110%);
}

@media (max-width: 992px) {
    .swiper-slide-active.testimonial-card {
        transform: none
    }
}