.interactive-graph {
  margin: 160px auto;
  width: 562px;
  height: 562px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.interactive-graph .graph-big-path {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/circulo_grande.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.interactive-graph .graph-center {
  width: 346px;
  height: 346px;
  border-radius: 50%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eaebe9;
}
.interactive-graph .graph-center .graph-center-path {
  position: absolute;
  background-image: url("../img/circulo.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 346px;
  height: 346px;
  z-index: 4;
  transform: rotate(calc(360deg / 9 * var(--center-path-index-position)));
}
.interactive-graph .graph-center .graph-empty-content {
  position: absolute;
  z-index: 5;
  transition: 0.5s;
  font-family: Manrope;
  font-size: 60px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: -3.19px;
  text-align: center;
  color: #000;
}
.interactive-graph .graph-center .graph-content {
  position: absolute;
  opacity: 0;
  z-index: 6;
  transition: 0.5s;
  width: 226px;
}
.interactive-graph .graph-center .graph-content h5 {
  font-family: Manrope;
  font-size: 32px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.88;
  letter-spacing: -0.84px;
  text-align: center;
  color: #7a7423;
}
.interactive-graph .graph-center .graph-content h6 {
  font-family: Manrope;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}
.interactive-graph .graph-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 5;
  transform-origin: 25px 189.6666666667px;
  transform: rotate(calc(360deg / 9 * var(--arrow-index-position)));
  top: 91.3333333333px;
  opacity: 0;
}
.interactive-graph .graph-arrow img {
  width: 100%;
  height: 100%;
}
.interactive-graph .graph-item {
  width: 104px;
  height: 104px;
  position: absolute;
  transform-origin: 52px 333px;
  transform: translateY(281px);
  top: -52px;
  transition: 0.5s ease-out;
  transition-delay: calc(0.1s * var(--graph-item-index));
  z-index: 2;
}
.interactive-graph .graph-item.graph-item-visible {
  transform: rotate(calc(360deg / 9 * var(--graph-item-index)));
}
.interactive-graph .graph-item.graph-item-active .content {
  transform: scale(1.2) rotate(calc(360deg / -9 * var(--graph-item-index)));
  background-color: #aaea12;
}
.interactive-graph .graph-item.graph-item-active .content img {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(182deg) brightness(112%) contrast(102%);
}
.interactive-graph .graph-item .content {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 5px 10px 30px 0 rgba(50, 48, 17, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(calc(360deg / -9 * var(--graph-item-index)));
}
.interactive-graph .graph-item .content img {
  filter: invert(39%) sepia(86%) saturate(375%) hue-rotate(19deg) brightness(92%) contrast(93%);
}
.interactive-graph .graph-item .content:hover {
  transform: scale(1.2) rotate(calc(360deg / -9 * var(--graph-item-index)));
  background-color: #aaea12;
}
.interactive-graph .graph-item .content:hover img {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(182deg) brightness(112%) contrast(102%);
}