.counter-block-three {
  position: relative;
  margin-bottom: 50px;
}
.counter-block-three:nth-child(even) .inner {
  background-image: none;
}
.counter-block-three .inner {
  position: relative;
  height: 380px;
  width: 380px;
  margin: 0 auto;
  background-color: var(--theme-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  text-align: center;
  background-image: url(../images/icons/counter-bg.png);
}
@media (max-width: 1199.98px) {
  .counter-block-three .inner {
    border: 0;
    background-image: none;
  }
}
@media (max-width: 575.98px) {
  .counter-block-three .inner {
    width: 300px;
    height: 300px;
  }
}
.counter-block-three .inner:hover .count-text,
.counter-block-three .inner:hover .counter {
  color: var(--theme-color1);
}
.counter-block-three .inner .counter {
  display: inline-block;
  font-size: 100px;
  font-weight: 700;
  line-height: 1em;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color1);
  transition: all 300ms ease;
  margin-bottom: 5px;
}
@media (max-width: 1199.98px) {
  .counter-block-three .inner .counter {
    margin-top: 0;
  }
}
.counter-block-three .inner .counter .count-text {
  font-weight: 700;
  font-size: 100px;
  line-height: 100px;
}
.counter-block-three .inner .title {
  display: block;
  font-size: 16px;
  line-height: 29px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}