.key-figures {
  background-color: white;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}

.key-figures .article-title {
  margin-bottom: 2rem;
}

.key-figures-group .wrapper {

  flex: 1;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

div.key-figure {
  padding: 0 0px;
  font-size: 1.2rem;
  line-height: 1.2;
  width: 33%;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border: 0px solid pink;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

div.key-figure::after {
  content: ' ';
  width: 100px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  /* background-color: black; */
  transform: translateX(-50%);
  display: none;
}



div.key-figure:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

div.key-figure .inner {
  position: relative;
  text-align: center;
  /* padding: 25px 5px; */
  width: 280px;
  max-width: 80%;
  margin: 0 auto;
  border: 0px solid pink;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
}



div.key-figure .top {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  justify-content: end;

}

div.key-figure .preend {
  height: 25px;
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5px;
}

div.key-figure .counter {
  font-weight: bold;
  /* font-family: "Azeret Mono", monospace; */
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

div.key-figure .label {
  padding-top: 5px;
  font-size: 90%;
  text-transform: uppercase;
}



div.key-figure:nth-child(1) .counter {
  color: var(--medium-orange);
}



div.key-figure:nth-child(1) line {
  stroke: var(--medium-orange);

}



div.key-figure:nth-child(1)::after {
  background-color: var(--medium-orange);
}

div.key-figure:nth-child(2) .counter {
  color: var(--medium-green);
}


div.key-figure:nth-child(2) line {
  stroke: var(--medium-green);

}


div.key-figure:nth-child(2)::after {
  background-color: var(--medium-green);
}

div.key-figure:nth-child(3) .counter {
  color: var(--medium-blue);
}

div.key-figure:nth-child(3)::after {
  background-color: var(--medium-blue);
}

div.key-figure:nth-child(3) line {
  stroke: var(--medium-blue);

}

div.key-figure svg {
  position: absolute;
  transition: all 400ms;
}

div.key-figure .svg-top {
  top: 20px;
  left: 20px;
}

div.key-figure .svg-bottom {
  bottom: 20px;
  right: 20px;
  transform-origin: 50% 50%;
  transform: rotate(180deg);


}

div.key-figure:hover .svg-top {
  top: 0px;
  left: 0px;
}

div.key-figure:hover .svg-bottom {
  bottom: 0px;
  right: 0px;
  transform-origin: 50% 50%;
  transform: rotate(180deg);
}












@media screen and (min-width: 1200px) {
  div.key-figure .counter {
    font-size: 3.5rem;
  }

  div.key-figure .counter {
    font-size: 3.5rem;
  }

  div.key-figure .inner {
    padding: 25px 45px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  div.key-figure .counter {
    font-size: 3rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  div.key-figure .counter {
    font-size: 3rem;
  }

  .div.key-figure .inner {
    width: 31% !important;
    aspect-ratio: 1.2;
  }
}




@media screen and (max-width: 767px) {
  .key-figures-group .wrapper {
    flex-direction: column
  }

  div.key-figure {
    font-size: 1rem;
    line-height: 1.1;
  }

  div.key-figure .inner {
    aspect-ratio: 1.4;
  }

  div.key-figure .counter {
    font-size: 3rem;
  }

  .key-figures-3 .key-figure {
    width: 90% !important;
  }
}