.quoteMobile {
  display: none;
  grid-area: quote;
}
.testimonial {
     position: fixed;
     top: 50%;
     transform: translateY(-50%);
     right: 2rem;
     width: calc(var(--fixedWidth) + 10rem);
     color: var(--neutral);
     margin: 0;
     font-style:italic;
     padding: .5rem 30px 1.2em 33px;
     border-left: .5rem solid var(--comp);
     line-height: 1.5;
}

.testimonial::before{
  font-family: "Times New Roman", serif;
  content: "\201C";
  color: var(--main);
  font-size:4em;
  position: absolute;
  left: -7px;
  top:-13px;
}

.testimonial::after{
  content: '';
}
.testimonial span{
  display:block;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}
.testimonial a {
  text-decoration: underline;
  color: var(--neutral);
  padding-left: .5rem;
  transition: .3s;
}
.testimonial a:hover {
  color: var(--main);
}
.person::after {
    content: "\00a0\2605\00a0\2605\00a0\2605\00a0\2605\00a0\2605";
    color: var(--main);
}
@media only screen and (max-width: 1260px) {
  .testimonial {
    display: none;
  }
  .quoteMobile,
  .quoteMobile .testimonial {
    display: block;
    transform: none;
  }
  .quoteMobile {
      width: 90%;
  }
  .quoteMobile .testimonial {
      position: relative;
      top: initial;
      width: 70%;
      margin: 0 5rem 3rem 18rem;
  }
}
@media only screen and (max-width: 800px) {
    .quoteMobile .testimonial {
        width: 95%;
        margin: 0 0 3rem 3rem;
        padding-right: 0;
    }
}