
#testimoniales{
    background: #f1f1f1;
}

#testimoniales h2{
    color: #777777;
}

.testimonials{

    color: #434343;
    text-align: center;
  }
  .inner{
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding-bottom: 40px;
  }
  
  .border{
    width: 160px;
    height: 5px;
    background: #009045;
    margin: 26px auto;
  }
  
  .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .col{
    flex: 100%;
    max-width: 80%;
    box-sizing: border-box;
    padding: 15px;
  }
  .testimonial{
    background: #fff;
    padding: 30px;
  }
  .testimonial img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  .name{
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0;
  }
  .stars{
    color: #009045;
    margin-bottom: 20px;
  }
  

  /*--------------------*/

  @media screen and (max-width:600px) {
    .col{
      flex: 100%;
      max-width: 100%;
    }
  }

  @media (min-width:1024px){
    .col{
    flex: 33.33%;
    max-width: 33.33%;
    }  
  }

  @media (min-width:1440px){
    .col{
    flex: 33.33%;
    max-width: 33.33%;
    }  
  }