:root {
  --orange: #bb6d48;
  --yellow: #c2a31e;
  --birdpoop: #aeaa99;
  --orangeGrey: #384328;
  --standard-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.section--testimonies {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 8rem;
}
.section--testimonies .container-fluid {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #384328;
}
.section--testimonies .graphic {
  margin-bottom: 3rem;
}
.section--testimonies .graphic .octaCircle {
  fill: #384328;
  width: 200px;
}
.section--testimonies .figure__wrap {
  position: relative;
  width: 100%;
  display: flex;
}
.section--testimonies figure {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  margin: 0;
  opacity: 0;
  z-index: 1;
  transition: 150ms var(--standard-ease);
}
.section--testimonies figure.active {
  opacity: 1;
  z-index: 2;
}
.section--testimonies blockquote {
  margin-bottom: 2rem;
}
.section--testimonies blockquote p {
  font-size: 2rem;
  font-weight: var(--text-bold);
  font-family: var(--font-heading);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}
.section--testimonies figcaption {
  text-align: center;
}
.section--testimonies figcaption::before {
  content: "";
  display: block;
  position: relative;
  width: 3rem;
  border-top: 3px solid #384328;
  margin: 1rem auto 2rem;
}
.section--testimonies figcaption span {
  font-size: 1rem;
  display: block;
}
.section--testimonies figcaption .name {
  text-transform: uppercase;
}
.section--testimonies .controls {
  position: absolute;
  top: 50%;
  right: 2vw;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.section--testimonies .controls button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  transition: unset;
}
@keyframes progress {
  from {
    stroke-dasharray: 100, 0;
  }
  to {
    stroke-dasharray: 0, 100;
  }
}
.section--testimonies .controls button .donut {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.section--testimonies .controls button .donut--center {
  fill: var(--orangeGrey);
  transform: scale(0.5);
  transform-origin: center;
}
.section--testimonies .controls button .donut--segment {
  fill: transparent;
  stroke: var(--orangeGrey);
  stroke-width: 3;
  stroke-dashoffset: 25;
  stroke-dasharray: 0, 100;
  transform: scaleX(-1);
  transform-origin: center;
}
.section--testimonies .controls button.active .donut--segment {
  stroke-dasharray: 100, 0;
}
.section--testimonies .controls button.animate .donut--segment {
  transition: stroke-dasharray 1s ease;
  animation: progress var(--btnSpeed) linear;
}
.section--testimonies .controls .status {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -150%);
  opacity: 0;
  transition: 100ms var(--standard-ease);
}
.section--testimonies .controls .icon {
  fill: var(--orangeGrey);
  opacity: 0.7;
  width: 1.3rem;
}/*# sourceMappingURL=review-style.css.map */