/* ==========================================================================
   Testimonials styles
============================================================================= */

.testimonials {
  
}

.testimonials .card {
  padding: 70px 0;
}

.testimonials .card .card-body {
  padding: 2rem;
  padding-top: 0;
  padding-bottom: 0;
}

.testimonials .card .owner-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-top: 25px;
}

.testimonials .card .store-name {
  font-size: 15px;
  letter-spacing: 0.05rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #0A5BC7 !important;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}

.testimonials .card .store-name:after {
  content: "";
  width: 60px;
  height: 4px;
  background: #e9eff1 !important;
  position: absolute;
  bottom: -3px;
  left: calc(50% - 30px);
}

.testimonials .card .avatar {
  max-width: 120px;
  min-width: 120px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  box-shadow: 0 0 0 4px #e9eff1;
}

.testimonials .card .btn-link {
  position: relative;
  display: inline-block;
  width: auto;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05rem;
  font-weight: 500 !important;
  cursor: pointer;
}

.testimonials .card .btn-link::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #2b343d;
  transition: all 0.2s ease-out;
}

.testimonials .card .btn-link:hover::after {
  left: 0;
  width: calc(100% - 0.05rem);
}

.error {
  border-color: #f44336;
}