
/*------------------------------------------------------------------------
# mod_ol_testimonials Extension
# ------------------------------------------------------------------------
# author    olwebdesign
# copyright Copyright (C) 2020 olwebdesign.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: http://www.olwebdesign.com
-------------------------------------------------------------------------*/

.testimonial-block {
  position: relative;
  padding-top: 20px;
}
.testimonial-block .inner-box {
  position: relative;
  text-align: center;
}
.testimonial-block .inner-box:hover .content-box {
  background-color: #333;
}
.testimonial-block .inner-box:hover .content-box:before {
  border-top: 20px solid #333;
}
.testimonial-block .inner-box:hover .content-box .text {
  color: #9898a0;
}
.testimonial-block .inner-box:hover .thumb img {
  border: 2px solid #d70006;
}
.testimonial-block .content-box {
  position: relative;
  padding: 0px 40px 40px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 40px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block .content-box::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: 0 auto;
  width: 40px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
  content: "";
}
.testimonial-block .content-box .rating {
  position: relative;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  display: inline-block;
  padding: 10px 70px;
  height: 40px;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #fff;
  background-color: #d70006;
  border-radius: 5px;
}
.testimonial-block .content-box .text {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #767676;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block .thumb {
  display: block;
  height: 75px;
  width: 75px;
  margin: 0 auto 5px;
  border-radius: 50%;
}
.testimonial-block .thumb img {
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.testimonial-block .designation {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 20px;
  color: #767676;
  text-transform: uppercase;
  font-weight: 500;
}
.testimonial-block .name {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #d70006;
  line-height: 30px;
}