.ova-process {
  position: relative;
  display: grid;
  grid-row-gap: 50px;
}
.ova-process.one_column .item-process:before, .ova-process.one_column .item-process:after {
  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, .ova-process.two_column .item-process:after {
    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, .ova-process.three_column .item-process:after {
    content: none !important;
  }
}
.ova-process .item-process {
  position: relative;
  text-align: center;
}
.ova-process .item-process:before {
  position: absolute;
  content: "";
  left: 0;
  top: 95px;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}
.ova-process .item-process:first-child:after {
  left: 0;
}
.ova-process .item-process:last-child:after {
  right: 0;
}
.ova-process .item-process:first-child:after, .ova-process .item-process:last-child:after {
  position: absolute;
  content: "";
  top: 90px;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
}
.ova-process .item-process .image-process {
  position: relative;
  display: inline-block;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  margin-bottom: 26px;
}
.ova-process .item-process .image-process:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 2px solid var(--primary);
  width: 108%;
  height: 108%;
  border-radius: 50%;
}
.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: -25px;
  bottom: 55%;
  background-color: var(--primary);
  width: 68px;
  height: 68px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  font-size: 20px;
  z-index: 2;
}
.ova-process .item-process .image-process img {
  position: relative;
  display: block;
  width: 190px;
  height: 190px;
  object-fit: cover;
  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: 0;
  font-weight: 400;
  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-weight: 500;
  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;
}