.ova-icon-box {
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary);
}
.ova-icon-box:hover {
  transition: all 0.3s ease;
}
.ova-icon-box .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  width: 80px;
  height: 80px;
  background-color: var(--primary);
}
.ova-icon-box .icon i {
  display: inline-flex;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}
.ova-icon-box .icon svg {
  fill: #fff;
  width: 32px;
  height: 32px;
}
.ova-icon-box .sub-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}
.ova-icon-box .title {
  margin: 0;
  font-size: 20px;
}
.ova-icon-box .desc {
  margin: 0;
  font-weight: 500;
}
.ova-icon-box.template_2 {
  border-bottom: 1px solid rgba(5, 26, 83, 0.1);
}
.ova-icon-box.template_2:hover {
  background-color: #fff;
}
.ova-icon-box.template_2 .icon {
  background-color: transparent;
}
.ova-icon-box.template_2 .icon i {
  font-size: 52px;
  color: var(--primary);
}
.ova-icon-box.template_2 .icon svg {
  fill: var(--primary);
  width: 52px;
  height: 52px;
}
.ova-icon-box.template_2 .title {
  margin: 0 0 5px 0;
  font-size: 24px;
}