.ova-progress-circle-wrapper {
  text-align: center;
}
.ova-progress-circle-wrapper:hover .title {
  transition: all 0.3s ease;
  text-decoration: underline;
}
.ova-progress-circle-wrapper .ova-progress-circle {
  display: inline-flex;
  position: relative;
  z-index: 1;
}
.ova-progress-circle-wrapper .ova-progress-circle:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: -1;
}
.ova-progress-circle-wrapper .ova-progress-circle .percent {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  transform: translate(-50%, -50%);
}
.ova-progress-circle-wrapper .ova-progress-circle .percent .content {
  display: flex;
  align-items: center;
}
.ova-progress-circle-wrapper .ova-progress-circle .icon {
  margin-bottom: 18px;
}
.ova-progress-circle-wrapper .ova-progress-circle .icon i {
  display: inline-flex;
  font-size: 64px;
  color: var(--primary);
}
.ova-progress-circle-wrapper .info {
  position: relative;
  margin-top: -95px;
  padding: 125px 35px 30px 35px;
  background-color: #f2f3f6;
}
.ova-progress-circle-wrapper .info:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  -webkit-clip-path: polygon(100% 0, 0 0, 52% 100%);
  clip-path: polygon(100% 0, 0 0, 52% 100%);
}
.ova-progress-circle-wrapper .title {
  transition: all 0.3s ease;
  margin: 0 0 10px 0;
  font-size: 24px;
  line-height: 1.2;
}