.testimonials-owl{
  .quote-item{
    margin-top: 0;
    margin-bottom: 0;
  }
  &.owl-theme {
    .owl-nav{
      top: 59%;
      & > div {
        opacity: 1;
        &.disabled,
        &:hover{
          opacity: 0.5;
        }
        &:first-child{
          left: 8.5%;
        }
        &:last-child{
          right: 8.5%;
        }
        i{
          font-size: 13px;
          color: $darkgreyColor;
        }
      }
    }
  }

  @media (max-width: 1199px) {
    &.owl-theme {
      .owl-nav{
        display: none;
      }
    }
  }
}
.testimonial{
  .quote-item{
    max-width: none;
    margin: 0;
    padding: 20px 10px;
  }
  .special-heading{
    margin-top: 35px;
  }
  blockquote{
    margin-top: 38px;
    &::before,
    &::after{
      content: none;
    }
  }
  .quote-image{
    max-width: 160px;
    position: relative;
    margin: 0 auto;
    &::before{
      content: '';
      position: absolute;
      right: 0;
      bottom: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: $colorMain2;
      z-index: 2;
    }
    &::after{
      content: '\f10d';
      position: absolute;
      right: 12px;
      bottom: 5px;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      color: $lightColor;
      z-index: 2;
    }

    img {
      border-radius: 50%;
    }
    //testimonial author
    & + p {
      margin: 30px 0 20px;
    }
  }
  .count{
    margin-top: 49px;
    text-align: center;
    font-size: 12px;
    span{
      color: $darkgreyColor;
    }
    @media (max-width: 767px) {
      margin-top: 33px;
    }
  }
}