.quote-card {
  background: #fff;
  color: #222222;
  padding: 20px;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(34, 34, 34, 0.12);
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

@media (max-width: 400px) {
  .quote-card {
    background: #fff;
    color: #222222;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 45px;
    padding-left: 10px;
    padding-right: 0px;
    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 {
  /*color: black;*/
  /*font-weight: 100;*/
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 92%;
  text-align: center;
}

@media (max-width: 400px) {
  .quote-card p {
    font-size: 10px;
    line-height: 1.5;
    margin: 0;
    max-width: 92%;
    text-align: center;
  }
}

.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: -15px;
  left: 10px;
  font-size: 5em;
  color: rgba(238, 238, 238, 0.8);
  font-weight: normal;
}

.quote-card:after {
  font-family: Georgia, serif;
  content: "”";
  position: absolute;
  bottom: -110px;
  line-height: 100px;
  right: -32px;
  font-size: 25em;
  color: rgba(238, 238, 238, 0.8);
  font-weight: normal;
}

@media (max-width: 500px) {
  .quote-card:after {
    font-size: 16em!important;
    right: -25px!important;
  }
}

@media (max-width: 640px) {
  .quote-card:after {
    font-size: 20em;
    right: -25px;
  }
}

@media (max-width: 768px) {
  .quote-card:after {
    font-size: 21em;
    right: -25px;
  }
}

