.testimonial_section {
    margin-top: 4rem;
    max-width: 1440px;
    margin: auto;
}

.testimonial_section_header {
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 4rem;
    letter-spacing: -0.1rem;
    margin-bottom: 3.5rem;
    font-family: 'Urbanist', sans-serif !important;
}

h1.testimonial_section_header {
    text-align: left;
}

.testimonial {
    border: 1.6px solid #D2D2D2;
    border-radius: .8rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.testimonial_text {
    margin-bottom: 2.5rem;
}

.client_info_wrapper {
    display: flex;
    align-items: center;
}

.client_avatar_wrapper {
    background-color: #D5E7D080;
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    margin-right: 1.5rem;
    display: grid;
    place-content: center;

}

.client_name {
    color: #1A1A1A;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1rem;
}

.client_company {
    font-weight: 400;
    font-size: 0.7rem;
    line-height: 1rem;
    color: #767676;
}


.testimonials__outer_container {
    padding: 0rem 2rem;
    margin-top: 6rem;
    width: 100%;
}

.testimonials_container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
}
.testimonial {
    flex: 0 0 auto; 
    scroll-snap-align: start;
    margin-right: 1rem;
    width: 80vw;
}


.testimonial:last-child {
    margin-right: 0;
}

@media screen and (min-width: 800px) {

    .testimonial {
        flex-basis: 45%;
        margin-right: 1.5rem;
    }

}


@media screen and (min-width: 1200px) {
    .testimonial_section {
        margin-top: 10rem;
    }

    .testimonial {
        flex-basis: 30%;

    }
}