.testimonials{
    display: flex;
    position: relative;
    padding: 0;
    margin: 0 -1rem;
    align-items: stretch;
}
.testimonials li{
    flex:1;
    padding: 0 1rem;
    list-style-type: none;
}
.testimonials-content{
    box-shadow: 0 8px 8px -4px rgba(16, 24, 40, .03), 0 20px 24px -4px rgba(16, 24, 40, .08);
    background-color: #fff;
    border-radius: .625rem;
    padding: 2rem;
    border-top: 1rem solid var(--primary);
    text-align: center;
    height: 100%;
}

.testimonials-content img{
    max-width: 60px;
}
.testimonials-content .name{
    font-size: .875rem;
    position: relative;
    padding-bottom: .5rem;
    display: inline-block;
    margin: 0;
    font-weight: 600;
    color: #001E35;
}
/* .testimonials-content h3::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .15rem;
    background-color: var(--primary);
} */

@media only screen and (max-width: 992px) {
    .testimonials-content{
        padding: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    .testimonials{
        display: block;
    }
    .testimonials li{
        margin-bottom: 2rem;
    }
    .testimonials li:last-child{
        margin-bottom: 0;
    }
}
.reviewimage{
    border-radius: 2rem;
}