.quote {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 200px 0;
  overflow: hidden;
}
@media screen and (max-width: 550px) {
  .quote {
    padding: 50px 0;
    background-position: right;
  }
}
.quote::before {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-logo-dark) 0%, #000 30%, rgba(237, 221, 83, 0) 100%);
  z-index: 1;
  opacity: 1;
  display: block;
  position: absolute;
}
@media screen and (max-width: 550px) {
  .quote::before {
    padding: 50px 0;
    background: black;
    opacity: 0.5;
  }
}
.quote .wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 50vw;
  color: #d0d0ce;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 550px) {
  .quote .wrapper {
    width: auto;
    margin: 0 20px;
    margin-top: 120px;
  }
}
.quote .wrapper .quote-icon {
  height: 50px;
  width: 50px;
  background-image: url(../images/pictos/quote.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.quote .wrapper .quote-content {
  width: 30vw;
  font-size: 25px;
  line-height: 35px;
  color: white;
}
@media screen and (max-width: 550px) {
  .quote .wrapper .quote-content {
    width: auto;
  }
}
.quote .wrapper div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.quote .wrapper div .quote-author {
  font-size: 14px;
  font-weight: 600;
}
.quote .wrapper div .quote-author-position {
  color: #898484;
  font-weight: 600;
  font-size: 13px;
}
@media screen and (max-width: 550px) {
  .quote .wrapper div .quote-author-position {
    color: #fff;
  }
}

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