.counter-block-six {
  position: relative;
  margin-bottom: 30px;
}
.counter-block-six .inner {
  position: relative;
  border-radius: 10px;
  text-align: center;
  padding: 30px 30px;
  height: 100%;
  transition: all 300ms ease;
}
.counter-block-six .inner::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--theme-color2);
  opacity: 0.05;
  border-radius: 10px;
  content: "";
  transition: all 300ms ease;
  z-index: -1;
}
.counter-block-six .inner:hover::before {
  opacity: 1;
}
.counter-block-six .inner:hover .counter-icon {
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}
.counter-block-six .inner:hover .counter,
.counter-block-six .inner:hover .counter-icon,
.counter-block-six .inner:hover .title {
  color: #ffffff;
}
.counter-block-six .counter-icon {
  display: inline-block;
  font-size: 60px;
  line-height: 1em;
  transition: all 300ms ease;
  margin-bottom: 18px;
  color: var(--headings-color);
}
.counter-block-six .count-box .counter {
  font-size: 48px;
  margin-top: 0;
}