/* Quote Styling */

#maQuote p {
  position: relative;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #000;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  z-index: 2;
  text-shadow: none;
  text-align: left;
}

@media (min-width: 576px) {
  #maQuote p {
    font-size: 17px;
    text-align: justify;
  }
}

#maQuote small {
  font-size: 14px;
}

#maQuote .speech-bubble {
  display: block;
  width: 100%;
  position: relative;
  background: #fff;
  border: 3px solid #0085ff;
  border-radius: .5rem;
  text-shadow: none;
  padding: 15px 20px;
  box-sizing: border-box;
}

#maQuote .speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -17px;
  right: 52px;
  transform: translateX(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background: linear-gradient(-45deg, #fff 52%, transparent 0);
  border: 3px solid #0085ff;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 3px 0;
  box-sizing: border-box;
}

#maQuote .speech-bubble-quote {
  position: absolute;
  background-image: url("../../assets/img/quote-dark-left.svg");
  background-repeat: no-repeat;
  width: 130px;
  height: 110px;
  transform: scale(.8);
  opacity: .10;
  z-index: 1;
}

#maQuote .speech-bubble-signature p {
  margin-top: 25px;
  margin-right: 59px;
  font-size: 18px;
  line-height: 1.0;
  text-align: right;
}

#maQuote .stars {
  white-space: nowrap;
  position: relative;
  top: -2px;
}

