.ova-title {
  position: relative;
  overflow: hidden;
}
.ova-title .sub-title-wrapper {
  display: inline-flex;
  align-items: center;
  column-gap: 25px;
}
.ova-title .sub-title-wrapper i {
  font-size: 40px;
  color: var(--primary);
}
.ova-title .sub-title {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ova-title .title {
  margin: 8px 0 30px 0;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.21;
  white-space: pre-line;
}
@media (max-width: 1024px) {
  .ova-title .title {
    white-space: normal;
  }
}
.ova-title .title a {
  transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  color: var(--heading);
}
.ova-title .title a:hover {
  transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  color: var(--primary);
}
.ova-title .title .last-text {
  color: var(--primary);
}
.ova-title .description {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.ova-title.template_3 .sub-title {
  font-size: 20px;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .ova-title.template_3 .sub-title {
    font-size: 16px;
  }
}
.ova-title.template_3 .title {
  font-size: 48px;
}
@media (max-width: 1024px) {
  .ova-title.template_3 .title {
    font-size: 44px;
  }
}
.ova-title.line-title .title {
  display: inline-block;
  margin: 0;
  position: relative;
}
.ova-title.line-title .title:before, .ova-title.line-title .title:after {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #f0e8e8;
  display: block;
}
@media (max-width: 768px) {
  .ova-title.line-title .title:before, .ova-title.line-title .title:after {
    width: 100%;
  }
}
.ova-title.line-title .title:before {
  position: absolute;
  top: 50%;
  right: calc(100% + 20px);
}
.ova-title.line-title .title:after {
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
}