.testimonial .testimonial-bg-text {
    position: absolute;
    bottom: -17rem;
    right: 3.5rem;
    transform: rotate(90deg) translateY(50%);
    transform-origin: bottom right;
    -webkit-text-stroke-width: 1.44px;
    -webkit-text-stroke-color: rgba(7, 109, 242, 0.20);
    font-size: 9rem;
    font-style: normal;
    font-weight: 700;
    line-height: 129.703px;
    letter-spacing: -1.572px;
    color: transparent;
    white-space: nowrap;
    z-index: -1;
}

.testimonial-content .dis-md {
    padding-top: 3.25rem;
}

.testimonial-content .service-container {
    margin-top: 0px;
    padding-bottom: 3.25rem;
}

.testimonial-content {
    width: 100%;
    overflow: hidden;
}

.testimonial-cards1 {
    display: flex;
    gap: 3.75rem;
    width: calc(200% + 3.75rem);
    /* return to this when using the  figma content template 
    width: calc(600% + 3.75rem); */
    animation: secondscroll 24s linear infinite;
}

.testimonial-cards2 {
    display: flex;
    gap: 3.75rem;
    width: calc(200% + 3.75rem);
    /* return to this when using the  figma content template 
    width: calc(600% + 3.75rem); */
    animation: thirdscroll 24s linear infinite;
}

.testimonial-grid {
    display: flex;
    gap: 3.75rem;
    justify-content: space-between;
    align-items: center;
}

.testimonial-cards1:hover,
.testimonial-cards2:hover  {
    animation-play-state: paused;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-radius: 1rem;
    padding: 2rem;
    width: 20rem;
}

.testimonial-identity {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
}

.testimonials-image {
    width: 8rem;
    height: 8rem;
    border-radius: 11rem;
}

@keyframes secondscroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes thirdscroll {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}