.section-testimonial{
    padding: 96px 0;
}
.section-testimonial .inner-wrapper{
    background-color: var(--color-light-blue);
    border-radius: 5px;
    display: grid;
    column-gap: 20px;
    grid-template-columns: 1fr calc(37% - 20px);
    overflow: hidden;
    
}
.section-testimonial .inner-wrapper .left-part{
    padding: 90px 0 90px 60px ;
    flex-grow: 1;
}
.section-testimonial .inner-wrapper .left-part svg{
    margin-bottom: 40px;
}
.section-testimonial .inner-wrapper .left-part .title{
    font-family: var(--font-campton-book);
    font-size: 29px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    color: var(--color-black);
    max-width: 720px;
    margin-bottom: 48px;
}
.section-testimonial .inner-wrapper .left-part .name{
    font-size: 29px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    color: var(--color-black);
    font-family: var(--font-campton);
    margin-bottom: 8px;
    display: block;
}
.section-testimonial .inner-wrapper .left-part .name:last-child{
    margin-bottom: 0;
}
.section-testimonial .inner-wrapper .left-part .locations{
    font-family: var(--font-campton);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: var(--color-black);
    display: block;
}
.section-testimonial .inner-wrapper .right-part{
    position: relative;
    width: 100%;
    height: 100%;
}
.section-testimonial .inner-wrapper .right-part .img-wrapper{
    height: 100%;
    position: relative;
}
.section-testimonial .inner-wrapper .right-part .img-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/images/verticle-overlay.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    pointer-events: none;
}
.section-testimonial .inner-wrapper .right-part .img-wrapper img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media only screen and (max-width:768px){
    .section-testimonial{
        padding: 32px 0;
    }
    .section-testimonial .inner-wrapper .left-part{
        padding: 56px 32px 48px;
    }
    .section-testimonial .inner-wrapper{
        grid-template-columns:1fr
    }
    .section-testimonial .inner-wrapper .left-part svg{
        max-width: 40px;
        margin-bottom: 35px;
    }
    .section-testimonial .inner-wrapper .left-part .title{
        font-size: 23px;
        line-height: normal;
        margin-bottom: 24px;
    }
    .section-testimonial .inner-wrapper .left-part .name{
        font-size: 23px;
        line-height: normal;
    }
    .section-testimonial .inner-wrapper .left-part .locations{
        font-size: 19px;
        line-height: normal;
    }
    .section-testimonial .inner-wrapper .right-part .img-wrapper::before{
        background-image:url('../../assets/images/horizontal-overlay.png');
        background-size: 100% auto;
        background-position: top center;
    }
    
}