quote {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
quote p {
  position: relative;
  display: inline;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 140%;
  font-style: italic;
}
quote p::before {
  display: block;
  position: absolute;
  top: 0px;
  left: -20px;
  content: "\“";
  font-size: 32px;
  opacity: 0.8;
}
quote p::after {
  display: block;
  position: absolute;
  bottom: -10px;
  right: -20px;
  content: "\”";
  font-size: 32px;
  opacity: 0.8;
}
@media screen and (max-width: 660px) {
  quote p::after,
  quote p::before {
    display: none;
  }
}
