.quote {
  background-color: #40348C;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  border-radius: 30px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.quote .text {
  grid-column: 3/5;
  grid-row: 1;
  display: flex;
  justify-content: end;
}
@media (max-width: 500px) {
  .quote .text {
    grid-column: 1/5;
  }
}
.quote .text .wrapper {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 50px;
  max-width: 500px;
  font-size: 1.2rem;
}
@media (max-width: 500px) {
  .quote .text .wrapper {
    max-width: unset;
  }
}
.quote .text .wrapper .quote-content {
  position: relative;
  padding-top: 50px;
  color: white;
  line-height: 30px;
}
.quote .text .wrapper .quote-content::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../../assets/images/icons/quote.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.quote .text .wrapper .author {
  display: flex;
  gap: 20px;
  align-items: center;
  color: white;
}
@media (max-width: 500px) {
  .quote .text .wrapper .author {
    width: 100%;
    flex-direction: column;
  }
}
.quote .text .wrapper .author .name {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 500px) {
  .quote .text .wrapper .author .name {
    flex-direction: column;
  }
}
.quote .text .wrapper .author .name::before {
  content: "";
  width: 20px;
  height: 1px;
  background: white;
}
.quote .text .wrapper .author .photo img {
  border-radius: 50%;
}
.quote .illustration {
  grid-column: 1/3;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 500px) {
  .quote .illustration {
    grid-column: 1/5;
    grid-row: 2;
  }
}
.quote .illustration::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #40348C 0%, rgba(0, 0, 0, 0.185) 39%);
}
@media (max-width: 500px) {
  .quote .illustration::before {
    top: -1px;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.185) 20%, #40348C);
  }
}

/*# sourceMappingURL=quote.css.map */
