.ova-text-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 4px 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background-color: var(--primary);
  width: 100%;
  direction: ltr;
}
.ova-text-marquee.direction-ltr {
  direction: rtl;
}
.ova-text-marquee.direction-ltr .content-wrapper {
  animation: ova_scroll_ltr 20s linear infinite;
  animation-delay: -20s;
}
.ova-text-marquee.direction-ltr .content-wrapper-2 {
  animation: ova_scroll2_ltr 20s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee.direction-ltr.duration-slow .content-wrapper {
  animation: ova_scroll_ltr 30s linear infinite;
  animation-delay: -30s;
}
.ova-text-marquee.direction-ltr.duration-slow .content-wrapper-2 {
  animation: ova_scroll2_ltr 30s linear infinite;
  animation-delay: -15s;
}
.ova-text-marquee.direction-ltr.duration-fast .content-wrapper {
  animation: ova_scroll_ltr 10s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee.direction-ltr.duration-fast .content-wrapper-2 {
  animation: ova_scroll2_ltr 10s linear infinite;
  animation-delay: -5s;
}
.ova-text-marquee .content-wrapper, .ova-text-marquee .content-wrapper-2 {
  width: 330%;
}
@media (max-width: 1024px) {
  .ova-text-marquee .content-wrapper, .ova-text-marquee .content-wrapper-2 {
    width: 400%;
  }
}
@media (max-width: 767px) {
  .ova-text-marquee .content-wrapper, .ova-text-marquee .content-wrapper-2 {
    width: 700%;
  }
}
.ova-text-marquee .content-wrapper .icon, .ova-text-marquee .content-wrapper-2 .icon {
  margin: 0 30px;
  display: inline-block;
  vertical-align: middle;
}
.ova-text-marquee .content-wrapper .icon i, .ova-text-marquee .content-wrapper-2 .icon i {
  font-size: 24px;
  color: #fff;
}
.ova-text-marquee .content-wrapper .text, .ova-text-marquee .content-wrapper-2 .text {
  font-family: var(--secondary-font);
  font-size: 24px;
  color: #fff;
  width: 200%;
}
.ova-text-marquee .content-wrapper {
  animation: ova_scroll 20s linear infinite;
  animation-delay: -20s;
}
.ova-text-marquee .spacing {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 600px;
}
.ova-text-marquee .content-wrapper-2 {
  animation: ova_scroll2 20s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee.duration-slow .content-wrapper {
  animation: ova_scroll 30s linear infinite;
  animation-delay: -30s;
}
.ova-text-marquee.duration-slow .content-wrapper-2 {
  animation: ova_scroll2 30s linear infinite;
  animation-delay: -15s;
}
.ova-text-marquee.duration-fast .content-wrapper {
  animation: ova_scroll 10s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee.duration-fast .content-wrapper-2 {
  animation: ova_scroll2 10s linear infinite;
  animation-delay: -5s;
}

@keyframes ova_scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes ova_scroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes ova_scroll_ltr {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes ova_scroll2_ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}