/**
 * Quote
 */

.quote::before {
  content: "";
  display: block;
  position: relative;
  width: 36px;
  height: 29px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../../images/quote-medium.svg');
  margin: 1rem auto;
}
.quote h2 {
  margin: 0 0 0.5rem;
  font-size: var(--heading-size-large);
  line-height: 1;
}
@media all and (min-width: 768px) {
  .quote__texts {
    display: flex;
    gap: 2rem;
  }
}