.ova-contact-info-2::after {
  background-color: #E5E5E5;
  height: 80%;
  width: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.ova-contact-info-2::before {
  background-color: #E5E5E5;
  height: 80%;
  width: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.ova-contact-info-2 .icon {
  color: var(--heading);
  font-size: 26px;
  margin-bottom: 19px;
  border-radius: 50%;
  border: 11px solid var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 109px;
  height: 109px;
}
.ova-contact-info-2 .icon i {
  display: flex;
}
.ova-contact-info-2 .contact .label {
  font-size: 24px;
  margin: 0 0px 10px 0px;
  padding: 0;
  font-weight: 600;
  line-height: 1.2em;
}
.ova-contact-info-2 .contact .info {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.ova-contact-info-2 .contact .info .item {
  color: var(--text);
  line-height: 1.8;
}
.ova-contact-info-2 .contact .info .item a {
  font-size: 20px;
  color: var(--text);
  line-height: 1.8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.ova-contact-info-2 .contact .info .item a:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
  background-color: var(--primary);
}
.ova-contact-info-2 .contact .info .item a:hover {
  color: var(--primary);
}
.ova-contact-info-2 .contact .info .item a:hover:before {
  width: 100%;
}