.counter-block {
  position: relative;
  margin-bottom: 50px;
}
.counter-block:nth-child(even) .inner {
  background-image: none;
}
.counter-block .inner {
  position: relative;
  height: 350px;
  width: 350px;
  margin: 0 auto;
  background-color: var(--headings-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #363636;
  border-radius: 50%;
  text-align: center;
  background-image: url(../../images/current-theme/counter-bg.png);
}
@media (max-width: 1199.98px) {
  .counter-block .inner {
    border: 0;
    background-image: none;
  }
}
@media (max-width: 767.98px) {
  .counter-block .inner {
    height: 300px;
    width: 300px;
  }
}
.counter-block .inner:hover .title,
.counter-block .inner:hover .counter {
  color: var(--theme-color1);
}
.counter-block .counter {
  display: inline-block;
  font-size: 100px;
  font-weight: 700;
  line-height: 1em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color1);
  transition: all 300ms ease;
  margin-top: 0;
  margin-bottom: 5px;
}
@media (prefers-reduced-motion: reduce) {
  .counter-block .counter {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .counter-block .counter {
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .counter-block .counter {
    font-size: 90px;
  }
}
.counter-block .counter .count-text {
  font-size: 100px;
  font-weight: 700;
  line-height: 1em;
}
.counter-block .title {
  display: block;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
}

.counter-block-two {
  position: relative;
}
.counter-block-two:nth-child(even) .inner {
  background-image: none;
}
.counter-block-two .inner {
  padding: 20px 0 0;
  background: none;
  height: auto;
  width: auto;
  border: 0;
  text-align: center;
}
.counter-block-two .counter {
  display: inline-block;
  font-size: 100px;
  font-weight: 700;
  line-height: 1em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme-color1);
  transition: all 300ms ease;
  margin-top: 0;
  margin-bottom: 5px;
}
@media (prefers-reduced-motion: reduce) {
  .counter-block-two .counter {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .counter-block-two .counter {
    margin-top: 0;
  }
}
.counter-block-two .counter .count-text {
  font-size: 100px;
  font-weight: 700;
  line-height: 1em;
}
.counter-block-two .title {
  display: block;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.tm-counter-icon-top .inner {
  flex-direction: column;
}

.tm-counter-icon-right .inner {
  flex-direction: row-reverse;
  display: inline-flex;
}

.tm-counter-icon-right .inner .counter-icon {
  margin-right: 0;
  margin-left: 20px;
}