.testimonials {
  background: #01152e;
}
.testimonials .cards-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
.testimonials .cards-wrapper .cards {
  width: calc(50% - 20px);
  margin: 0 10px 20px;
  background: #021a36;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.06);
  position: relative;
}
.testimonials .cards-wrapper .cards .quote-mark {
  color: #0fc3a7;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 10px;
}
.testimonials .cards-wrapper .cards p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 300;
}
.testimonials .cards-wrapper .cards .author {
  display: flex;
  align-items: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.testimonials .cards-wrapper .cards .author .initials {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0fc3a7;
  color: #021a36;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-right: 15px;
}
.testimonials .cards-wrapper .cards .author h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}
.testimonials .cards-wrapper .cards .author span {
  color: #0fc3a7;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .testimonials .cards-wrapper .cards {
    width: 100%;
    padding: 25px;
  }
}
