.half-half--wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media( min-width:767px ) {
    .half-half--wrapper {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .half-half--wrapper.col-reverse {
        grid-auto-flow: dense;
    }
    
    .half-half--wrapper.col-reverse > .left-half {
        grid-column: 2;
    }
    
    .half-half--wrapper.col-reverse > .right-half {
        grid-column: 1;
    }

    .half-half--wrapper.col-reverse  .testimonial-slide {
        text-align: right;
    }
}

.big-quote {
    font-family: var(--font-primary);
    font-size: 70px;
    line-height: 70px;
    color: var(--color-quote);
    height: 50px;
}

.testimonial-text {
    font-size: 24px;
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.testimonial-text p {
    font-weight: inherit;
    font-size: inherit;
    font-family: inherit;
}

.client_name {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    font-family: var(--font-secondary);
}

.job_title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 300;
}

.wrapper-heading + .half-text-half-testimonial-slider {
    padding-top: 0;
}

.wrapper-heading + .section-padding {
    z-index: 1;
    position: relative;
}

.right-half {
    position: relative;
    overflow: hidden;
}

.js-testimonial-slider > div {
    display: none;
}

.js-testimonial-slider > div:first-child {
    display: block;
}

.js-testimonial-slider.slick-initialized > div {
    display: block;
}

.half-text-half-testimonial-slider.white-color .testimonial-text p,
.half-text-half-testimonial-slider.white-color .testimonial-name-job,
.half-text-half-testimonial-slider.white-color .left-half {
    color: var(--color-white);
}