.quote-slider__misc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.quote-slider__buttons {
  display: flex;
  gap: 20px;
}
.quote-slider__buttons button {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  width: 30px;
  height: 30px;
  border: 1px solid #4f4d49;
  position: relative;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s all ease;
}
.quote-slider__buttons button svg {
  position: absolute;
  transition: 0.3s all ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.quote-slider__buttons button:hover {
  background: #39acbb;
  border-color: #39acbb;
}
.quote-slider__buttons button:hover svg {
  filter: invert(1) brightness(1.5);
}
.quote-slider__symbol {
  width: 46.11px;
  height: 36.89px;
  background: url("../quote.svg") no-repeat center / contain;
}
.quote-slider__quotes {
  position: relative;
}
.quote-slider__quotes blockquote {
  margin-bottom: clamp(1.1764705882rem, calc(0.4201680672rem + 2.8571428571vw), 2.9411764706rem);
}
.quote-slider__quotes blockquote p {
  font-weight: 200;
  font-style: italic;
  font-size: 20px;
  line-height: 32px;
}
.quote-slider__quotes blockquote cite {
  font-family: "Barlow Condensed";
  font-weight: bold;
  color: #38362c;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  margin-top: 20px;
  display: block;
}
