.testimonial {
  display: flex;
  padding: 1rem 2.5vw;
}

.quote-box {
    padding: 30px;
    padding-bottom: 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: relative;
    margin-bottom: 30px;
  flex-basis: 60%;
}
.quote-box:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #f5f5f5;
    position: absolute;
    bottom: -20px;
    margin-left: -20px;
    left: 50%;
}
.quote {
    border: none;
    padding: 0;
    font-size: 2rem;
    color: #666666;
    margin: 0px;
}

.quote::before {
 content: """;
   font-size: 4rem;
}
.details {
    font-size: 13px;
}  
.name {
    display: block;
    font-size: 1.5rem;
}
.title {
    display: block;
    color: #b3b3b3;
    margin-bottom: 0;
    font-weight: normal;
    font-size: 13px;
}
.quote-box .fa{
    font-size: 18px;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.img-rounded {
    border-radius: 6px;
}
.testimonial-headshot {
    text-align: left;
  flex-basis: 40%;
}
.testimonial-headshot img {
    border-radius: 50%;
    border: 5px solid #f5f5f5;
    height: auto;
    width: 60%;
}

@media(min-width: 768px) {
  .testimonial-headshot img {
    width: 100%;
  }
}