
.testimonials-grid-card {
    box-shadow: 2px 3px 6.9px 0px #00000070;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #FFFFFF;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.testimonials-grid-box-content {
    padding: 50px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonials-grid-box-content:before{
    content:"";
    position: absolute;
    top: -34px;
    left: 50px;
    background: url(./../images/quote.svg) no-repeat center;
    background-size: cover;
    width: 65px;
    height: 50px;
}
.testimonial-person-section {
    background: #37691F;
    box-shadow: 15px 18px 30px 0px #3939BC29;
}

@media only screen and (max-width: 1023px) {
    .testimonials-grid-card{
        grid-template-columns: 1fr;
        border-radius: 0;
        margin-bottom: 30px;
    }
    .testimonials-grid-box-content:before {
       top: 0;
    }
    .testimonials-grid-box-content {
        margin-top: 50px;
    }
}   

