.ova-title .sub-title {
  position: relative;
  display: inline-block;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 14px;
}
.ova-title .sub-title.has-underline:before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
}
.ova-title .title {
  margin: 0 0 20px 0;
  color: var(--heading);
  font-size: 50px;
  font-weight: bold;
  line-height: 1.2;
  white-space: pre-line;
}
@media (max-width: 1024px) {
  .ova-title .title {
    white-space: normal;
    font-size: 42px;
  }
}
.ova-title .title a {
  color: var(--heading);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-title .title a:hover {
  color: var(--primary);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ova-title .description {
  margin: 0 0 15px 0;
  white-space: pre-line;
}
@media (max-width: 1024px) {
  .ova-title .description {
    white-space: normal;
  }
}