.ova-counter {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  row-gap: 15px;
  position: relative;
}
.ova-counter:hover .title {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-counter:hover .odometer {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-counter .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.ova-counter .icon i {
  font-size: 62px;
  color: var(--primary);
}
.ova-counter .icon svg {
  width: 62px;
  height: 62px;
}
.ova-counter .icon svg path {
  fill: var(--primary);
}
.ova-counter .odometer {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--secondary-font);
  color: var(--heading);
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
  vertical-align: baseline !important;
}
.ova-counter .odometer .odometer-formatting-mark {
  display: none;
}
.ova-counter .odometer .odometer-inside {
  line-height: 1;
}
.ova-counter .suffix {
  font-family: var(--primary-font);
  color: var(--heading);
  font-size: 60px;
  line-height: 1;
  font-weight: 500;
}
.ova-counter .title {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--primary-font);
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  white-space: pre-line;
}
.ova-counter .icon-star i {
  font-size: 14px;
  color: var(--primary);
}
.ova-counter.ova-counter-template2 .odometer {
  font-size: 24px;
  font-weight: 700;
}
.ova-counter.ova-counter-template2 .suffix {
  font-size: 24px;
  font-weight: 700;
}
.ova-counter.ova-counter-template2 .title {
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.ova-counter.ova-counter-template3 .counter-content {
  display: flex;
  align-items: center;
  gap: 20px;
}