.counter-block-two {
  position: relative;
  margin-bottom: 50px;
}
.counter-block-two:last-child .inner:before {
  display: none;
}
.counter-block-two .inner {
  position: relative;
  text-align: center;
}
.counter-block-two .inner:before {
  position: absolute;
  right: -12px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #d4d0e4;
  opacity: 0.2;
  content: "";
}
.counter-block-two .inner:hover .icon-box i {
  transform: scale(-1) rotate(180deg);
}
.counter-block-two .inner:hover .title {
  opacity: 1;
}
.counter-block-two .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  width: 92px;
  font-size: 52px;
  color: var(--theme-color2);
  background-color: var(--theme-color1);
  border-radius: 50%;
  margin: 0 auto 15px;
}
.counter-block-two .icon-box:before {
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  background-color: #fff;
  opacity: 0.15;
  content: "";
  border-radius: 50%;
}
.counter-block-two .icon-box i {
  position: relative;
  display: block;
  transition: all 300ms ease;
}
.counter-block-two .count-box {
  position: relative;
  display: block;
  font-size: 60px;
  font-weight: 600;
  line-height: 1em;
  transition: all 300ms ease;
}
.counter-block-two .count-box .counter {
  font-size: 60px;
  font-weight: 600;
  line-height: 1em;
  color: #fff;
  transition: all 300ms ease;
}
.counter-block-two .title {
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 0;
  transition: all 300ms ease;
}