.quote-card {
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  border-radius: var(--border-radius);
}
.quote-card .statistics-wrapper {
  padding: 2em 2em 0;
}
@media (max-width: 991.98px) {
  .quote-card .statistics-wrapper {
    padding: 1.5em 1.5em 0;
  }
}
@media (max-width: 767.98px) {
  .quote-card .statistics-wrapper {
    padding: 1em 1em 0;
  }
}
.quote-card .statistics-wrapper + div {
  padding: 1.5em 2em;
}
.quote-card .statistics-wrapper .value {
  margin-bottom: 0;
  color: var(--color-green-d1);
  text-align: center;
  font-family: "Kameron";
  font-weight: 700;
  font-size: 5rem;
  line-height: 1em;
}
@media (max-width: 991.98px) {
  .quote-card .statistics-wrapper .value {
    font-size: 4rem;
  }
}
@media (max-width: 767.98px) {
  .quote-card .statistics-wrapper .value {
    font-size: 3.5rem;
  }
}
@media (max-width: 575.98px) {
  .quote-card .statistics-wrapper .value {
    font-size: 3rem;
  }
}
.quote-card .statistics-wrapper .label {
  margin-top: -0.5em;
  color: var(--color-green-d1);
  text-align: center;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25em;
}
@media (max-width: 767.98px) {
  .quote-card .statistics-wrapper .label {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .quote-card .statistics-wrapper .label {
    font-size: 0.9rem;
  }
}
.quote-card .content-wrapper {
  padding: 2em;
  display: flex;
  flex-direction: column;
  row-gap: 1.75em;
  flex: 1;
}
@media (max-width: 991.98px) {
  .quote-card .content-wrapper {
    row-gap: 1.5em;
    padding: 1.5em !important;
  }
}
@media (max-width: 767.98px) {
  .quote-card .content-wrapper {
    row-gap: 1em;
    padding: 1em !important;
  }
}
.quote-card .content-wrapper .button {
  padding: 0 !important;
}
.quote-card .content-wrapper .description {
  flex: 1;
}
.quote-card .content-wrapper svg {
  height: auto;
}
@media (max-width: 991.98px) {
  .quote-card .content-wrapper svg {
    width: 60px;
  }
}
@media (max-width: 767.98px) {
  .quote-card .content-wrapper svg {
    width: 45px;
  }
}
.quote-card .content-wrapper svg path {
  fill: currentColor;
}
.quote-card .user-wrapper {
  display: flex;
  column-gap: 1.25em;
}
@media (max-width: 767.98px) {
  .quote-card .user-wrapper {
    column-gap: 1em;
  }
}
.quote-card .user-wrapper:last-child {
  padding-right: 1em;
}
.quote-card .user-wrapper .name-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
