@charset "UTF-8";
.quotes-block[data-v-0e87d3c8] {
  padding: 5rem 0 4rem;
}
.quotes-block .container[data-v-0e87d3c8] {
  display: grid;
  grid-template-rows: 350px auto;
}
.quote[data-v-0e87d3c8] {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1rem;
  align-self: center;
}
.quote > blockquote[data-v-0e87d3c8] {
  line-height: 1.5;
  position: relative;
  padding: 1.875rem 2.5rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--primary-light);
  white-space: pre-line;
  text-align: center;
}
.quote > blockquote[data-v-0e87d3c8]::before, .quote > blockquote[data-v-0e87d3c8]::after {
  font-size: 5.3125rem;
  font-weight: var(--bold);
  line-height: 1;
  position: absolute;
  color: var(--primary);
}
.quote > blockquote[data-v-0e87d3c8]::before {
  top: -1.25rem;
  left: -1.25rem;
  content: "“";
}
.quote > blockquote[data-v-0e87d3c8]::after {
  right: -1.25rem;
  bottom: -0.625rem;
  content: "„";
}
.quote aside[data-v-0e87d3c8] {
  position: relative;
  top: -0.625rem;
  padding-right: 2.5rem;
  text-align: right;
}
.quote aside h1[data-v-0e87d3c8] {
  font-size: var(--lg);
  font-weight: var(--bold);
  line-height: 1.1;
  margin: 0;
}
.quote aside em[data-v-0e87d3c8] {
  font-style: normal;
}
.progress[data-v-0e87d3c8] {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0 1rem;
}
.progress button[data-v-0e87d3c8] {
  display: block;
  padding: 1.25rem 0.5rem;
  content: "";
  cursor: pointer;
}
.progress button[data-v-0e87d3c8]::after {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 0.5rem;
  content: "";
  transition: all 0.3s ease;
  background-color: var(--faded-color);
}
.progress button.active[data-v-0e87d3c8]::after {
  background-color: var(--primary);
  width: 56px;
}
.progress button[data-v-0e87d3c8]:hover::after {
  opacity: 0.6;
}
.slide-next[data-v-0e87d3c8] {
  animation-name: slideQuote-0e87d3c8;
  animation-duration: 0.5s;
  animation-direction: normal;
}
.slide-previous[data-v-0e87d3c8] {
  animation-name: slideQuote-0e87d3c8;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
@keyframes slideQuote-0e87d3c8 {
from, to {
    opacity: 1;
    transform: translateX(0) scale(1);
}
25% {
    transform: scale(0.95);
}
45% {
    transform: translateX(25vw);
}
50% {
    opacity: 0;
}
55% {
    transform: translateX(-25vw);
}
75% {
    transform: scale(0.95);
}
}