.counter-block-one {
  position: relative;
}
@media (max-width: 991.98px) {
  .counter-block-one {
    margin-bottom: 40px;
  }
}
.counter-block-one .inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.counter-block-one .inner:hover .counter-icon {
  background-color: var(--theme-color1);
  color: #fff;
}
.counter-block-one .inner:hover .counter-icon i {
  transform: scaleX(-1) rotate(180deg);
}
.counter-block-one .inner:hover .counter-title {
  opacity: 1;
}
.counter-block-one .counter-icon {
  background-color: var(--theme-color-white);
  color: var(--theme-color1);
  border-radius: 50%;
  position: relative;
  height: 100px;
  width: 100px;
  font-size: 50px;
  line-height: 96px;
}
.counter-block-one .counter-icon i {
  position: relative;
  transition: all 300ms ease;
}
.counter-block-one .count-box {
  position: relative;
  display: block;
  font-size: 60px;
  font-weight: 600;
}
.counter-block-one .count-box .counter {
  color: var(--headings-color);
  font-size: 80px;
  line-height: 1;
  margin-top: 0;
  font-weight: 500;
  font-family: var(--heading-font-family);
}
.counter-block-one .title-wrapper {
  display: block;
  font-size: 22px;
  margin-top: 0;
  color: var(--headings-color);
  font-weight: 500;
  margin-bottom: 0;
}