.ova-item-list {
  transition: all 0.3s ease;
  background-color: #fff;
  padding: 40px;
}
@media (max-width: 767px) {
  .ova-item-list {
    padding: 40px 25px;
  }
}
.ova-item-list:hover {
  transition: all 0.3s ease;
}
.ova-item-list .main-icon {
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #f3f4f7;
  border-radius: 50%;
}
.ova-item-list .main-icon i, .ova-item-list .main-icon svg {
  font-size: 36px;
  width: 36px;
  height: 36px;
  line-height: 1;
  color: var(--primary);
  fill: var(--primary);
}
.ova-item-list .title-category {
  margin: 0 0 25px 0;
  font-size: 24px;
}
.ova-item-list .item {
  position: relative;
  display: block;
  margin: 0 14px;
  padding: 14px 0;
  border-bottom: 1px solid #E6E8EE;
}
@media (max-width: 400px) {
  .ova-item-list .item {
    margin: 0;
  }
}
.ova-item-list .item:first-child {
  border-top: 1px solid #E6E8EE;
}
.ova-item-list .item:hover .title {
  transition: all 0.3s ease;
  text-decoration: underline;
}
.ova-item-list .item .title {
  transition: all 0.3s ease;
  margin: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}
.ova-item-list .item i {
  display: inline-flex;
  font-size: 15px;
  color: var(--heading);
}