.z-testimonial-wrapper{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  > div{
    float: left;
    width: 40%;
    @media screen and (max-width: 959px){
      width: 100%;
    }
  }
  .image{
    width: 60%;
    @media screen and (max-width: 959px){
      width: 100%;
    }
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .content{
    width: 40%;
    padding: 40px;
    color: #fff;
    h2{
      margin-top: 0;
      margin-bottom: 25px;
      color: #fff;
      font-weight: 500;
      i{
        transform: translateY(7px);
        font-size: 45px;
        margin-right: 10px;
      }
    }
    h3{
      margin: 10px 0;
      color: #fff;
    }
    .author{
      font-style: italic;
      font-size: 12px;
    }
    .rating{
      i{
        color: #f8e71c;
      }
    }
    .testimonial-slider{
      &.slick-initialized{
        padding-bottom: 30px;
      }
    }
    .slick-arrow{
      position: absolute;
      bottom: 0;
      text-indent: -9999px;
      height: 30px;
      line-height: 30px;
      background:{
        image: url("assets/images/chevron-right.png");
        position: center;
        repeat: no-repeat;
        color: transparent;
      }
      &.slick-prev{
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
      }
      &.slick-next{
        left: 40px;
      }
    }
  }
}