.ova-process {
  position: relative;
  display: grid;
  grid-row-gap: 50px;
}
.ova-process.one_column .item-process:before {
  content: none !important;
}
.ova-process.two_column {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
  .ova-process.two_column {
    grid-template-columns: auto;
  }
  .ova-process.two_column .item-process:before {
    content: none !important;
  }
}
.ova-process.three_column {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1200px) {
  .ova-process.three_column {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .ova-process.three_column {
    grid-template-columns: auto;
  }
  .ova-process.three_column .item-process:before {
    content: none !important;
  }
}
.ova-process .item-process {
  position: relative;
  text-align: center;
}
.ova-process .item-process:before {
  position: absolute;
  content: "";
  top: 150px;
  width: 100%;
  height: 1px;
  border: 1px dotted #D7CDCD;
}
.ova-process .item-process:last-child:before {
  content: none;
}
.ova-process .item-process .image-process {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #F0F2F5;
}
.ova-process .item-process .image-process .text_number {
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  position: absolute;
  right: 45px;
  top: 0;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: var(--heading);
  text-transform: uppercase;
  z-index: 2;
}
.ova-process .item-process .image-process img {
  position: relative;
  display: block;
  object-fit: cover;
  max-height: 100%;
  border-radius: 50%;
  z-index: 1;
}
.ova-process .item-process .info {
  position: relative;
}
.ova-process .item-process .info a: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;
  color: var(--primary);
}
.ova-process .item-process .info .title {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  margin: 34px 0 0 0;
  font-size: 24px;
  line-height: 1.2;
  padding-bottom: 20px;
}
.ova-process .item-process .info .description {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 24px;
}
@media (max-width: 460px) {
  .ova-process .item-process .info .description {
    padding: 0 5px;
  }
}

.ova-invisible {
  visibility: hidden;
}

.rtl .ova-progress .ova-percent-view .percentage {
  right: unset;
  left: 0;
}
.rtl .ova-progress .ova-percent-view .ova-percent {
  left: unset;
  right: 0;
}