/* IMPORT THE FRAMEWORK */
/* /////////////// MIXIN FUNCTIONS /////////////// */
/*  LINEAR GRADIENTS  */
/*  BREAKPOINTS  */
/*  VISUAL STYLES  */
/*  LAYOUT FRAMEWORK  */
.testimonial .img-wrapper, .testimonial .text-wrapper {
  display: block;
}

.testimonial .img-wrapper, .testimonial .text-wrapper {
  box-sizing: border-box;
}

.testimonial {
  clear: both;
}

.testimonial:after {
  display: table;
  content: '';
  clear: both;
}

/*  COLUMN FRAMEWORK  */
.testimonial .img-wrapper, .testimonial .text-wrapper {
  float: left;
}

/* LOOP TO CREATE A CLASS FOR EACH COLUMN WIDTH */
/* --------------------------------- */
/* /////// SITE SPECIFIC STYLES //// */
/* --------------------------------- */
.testimonial {
  border-bottom: 1px solid #f56f22;
}

.testimonial {
  background-color: #0d0e0e;
  /* Fallback Color */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#262626), to(#0d0e0e));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #262626, #0d0e0e);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #262626, #0d0e0e);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #262626, #0d0e0e);
  /* IE10 */
  background-image: -o-linear-gradient(top, #262626, #0d0e0e);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #262626, #0d0e0e);
  color: #FFF;
}

/* --------------------------------- */
/* /////// END SITE STYLES ///////// */
/* --------------------------------- */
/* TESTIMONIALS */
.testimonial {
  padding: 1.5em;
  margin-bottom: 1.5em;
}

.testimonial .img-wrapper {
  width: 25%;
}

.testimonial .text-wrapper {
  width: 70%;
  padding-left: 5%;
}

.testimonial .text-wrapper p {
  font-style: oblique;
}

/* MEDIA QUERIES */
@media screen and (max-width: 700px) {
  .testimonial {
    padding: 0.5em;
  }
  .testimonial .img-wrapper {
    width: 100%;
    margin-bottom: 0.5em;
  }
  .testimonial .text-wrapper {
    width: 100%;
    padding-left: 0%;
  }
}
