.testimonial_grid{
    display: grid;
    grid-template-columns: 42% 41%;
    justify-content: center;
    padding: 2em 0;
    align-items: center;
    text-align: center;
}
.testimonial_description{
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}
.testimonial_name{
    font-size: 20px;
    margin-top: 2em;
    display: block;
    
}
.testimonial_title{
    color: var(--primary-color);
    font-weight: 600;
}
.testimonial_image{
    width: 400px;
    margin: 0 auto;
}
.testimonial_image img{
    border-radius: 8px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px){
    .testimonial_description{
        font-size: 24px;
        margin: 0 20px;
    }
    .testimonial_grid{
        display: block;
    }
    .testimonial_image {
        width: 200px;
        margin: 16px auto;
    }
}