.testimonialHolder {
 background:linear-gradient( 90deg,#49bee1, #4a74e1);
  padding:80px 20px;
  position:relative;
  overflow:hidden;
}

.testimonialHolder:before{
  content:"";
  background-image:url(https://jannaways.co.uk/hubfs/5-Lenses-white.png);
  background-size:contain;
  background-repeat:no-repeat;
  height:300px;
  width:300px;
  position:absolute;
  left:-50px;
  bottom:-50px;
  opacity:0.4;
  display:block;
  z-index:1;
  animation: grow infinite 6s ease-in-out ;
}

.testimonialHolder:after{
  content:"";
  background-image:url(https://jannaways.co.uk/hubfs/5-Lenses-white.png);
  background-size:contain;
  background-repeat:no-repeat;
  height:200px;
  width:200px;
  position:absolute;
  right:-20px;
  top:0;
  opacity:0.4;
  display:block;
  z-index:1;
  animation: wiggle 1 6s ease-in-out ;
}

@media only screen and (max-width:600px){
  .testimonialHolder:before{
    height:100px;
    width:100px;
    position:absolute;
    left:-50px;
    bottom:-50px;
  }
  
  .testimonialHolder:after{
  height:75px;
  width:75px;
    
  }
}

.testimonialHolder .wrapper{
  max-width:1200px;
  display:block;
  width:100%;
  margin:0 auto;
  position:relative;
  z-index:2;
  
}

.testimonialSlider .item .quote{
  text-align:center;
  color:#fff;
}

.testimonialSlider .item .meta {
  padding-top:20px;
}

.testimonialSlider .item .meta:empty{
  padding:0; 
}

.testimonialSlider .item .meta span{
   text-align:center;
  color:#fff;
  display:block;
  font-weight:bold;
  font-size:20px;
  line-height:26px;
}

.testimonialHolder .slick-dots{
    margin-top: 20px;
    text-align: center;
    position: relative;
    bottom: auto;
  font-size:0;
}

.slick-dots li button {
  font-size:0;
  border:0;
  padding:0;
  background:#fff;
  border-radius:100%;
  opacity:0.4;
  transition: all ease 0.6s;
}
.slick-dots li.slick-active button{
  opacity:1;
  transition: all ease 0.6s;1
}
.slick-dots li button:before{
  display:none; 
}

@keyframes grow {
  0% { transform: scale(1) rotate(0deg); }

  50% { transform: scale(1.1) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}