.quote-card {
  background: #b5e8d5;
  padding: 20px;
  padding-left: 50px;
  box-sizing: border-box;
  /* box-shadow: 0 2px 4px rgba(34, 34, 34, 0.12); */
  position: relative;
  overflow: hidden;
  min-height: 120px;
}
.quote-card p {
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
}
.quote-card cite {
  font-size: 16px;
  margin-top: 10px;
  display: block;
  font-weight: 200;
  opacity: 0.8;
}
.quote-card:before {
  font-family: Georgia, serif;
  content: "“";
  position: absolute;
  top: -40px;
  left: -5px;
  font-size: 7em;
  color: #2f2e2e;
  font-weight: normal;
}
.quote-card:after {
  font-family: Georgia, serif;
  content: "”";
  position: absolute;
  bottom: -70px;
  line-height: 100px;
  right: 0px;
  font-size: 22em;
  color: #2f2e2e;
  font-weight: normal;
}

@media (max-width: 640px) {
  .quote-card:after {
    font-size: 13em;
    right: -3px;
    bottom: -60px;
  }
  .quote-card p {
    max-width: 90%;
    padding-left: 5%;
  }
}
@media (min-width: 900px) {
  .quote-card p {
    padding-left: 5%;
    max-width: 80%;
  }
}
