@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%);
  }
}
.ova-text-marquee-3 {
  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-3.direction-ltr {
  direction: rtl;
}
.ova-text-marquee-3.direction-ltr .content-wrapper {
  animation: ova_scroll_ltr 20s linear infinite;
  animation-delay: -20s;
}
.ova-text-marquee-3.direction-ltr .content-wrapper-2 {
  animation: ova_scroll2_ltr 20s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-3.direction-ltr.duration-slow .content-wrapper {
  animation: ova_scroll_ltr 30s linear infinite;
  animation-delay: -30s;
}
.ova-text-marquee-3.direction-ltr.duration-slow .content-wrapper-2 {
  animation: ova_scroll2_ltr 30s linear infinite;
  animation-delay: -15s;
}
.ova-text-marquee-3.direction-ltr.duration-fast .content-wrapper {
  animation: ova_scroll_ltr 10s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-3.direction-ltr.duration-fast .content-wrapper-2 {
  animation: ova_scroll2_ltr 10s linear infinite;
  animation-delay: -5s;
}
.ova-text-marquee-3 .content-wrapper, .ova-text-marquee-3 .content-wrapper-2 {
  width: 300%;
}
@media (max-width: 1024px) {
  .ova-text-marquee-3 .content-wrapper, .ova-text-marquee-3 .content-wrapper-2 {
    width: 400%;
  }
}
@media (max-width: 767px) {
  .ova-text-marquee-3 .content-wrapper, .ova-text-marquee-3 .content-wrapper-2 {
    width: 700%;
  }
}
.ova-text-marquee-3 .content-wrapper .icon, .ova-text-marquee-3 .content-wrapper-2 .icon {
  margin: 0 30px;
  display: inline-block;
  vertical-align: middle;
}
.ova-text-marquee-3 .content-wrapper .icon i, .ova-text-marquee-3 .content-wrapper-2 .icon i {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.22);
}
.ova-text-marquee-3 .content-wrapper .text, .ova-text-marquee-3 .content-wrapper-2 .text {
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  width: 200%;
}
.ova-text-marquee-3 .content-wrapper {
  animation: ova_scroll 20s linear infinite;
  animation-delay: -20s;
}
.ova-text-marquee-3 .spacing {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 600px;
}
.ova-text-marquee-3 .content-wrapper-2 {
  animation: ova_scroll2 20s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-3.duration-slow .content-wrapper {
  animation: ova_scroll 30s linear infinite;
  animation-delay: -30s;
}
.ova-text-marquee-3.duration-slow .content-wrapper-2 {
  animation: ova_scroll2 30s linear infinite;
  animation-delay: -15s;
}
.ova-text-marquee-3.duration-fast .content-wrapper {
  animation: ova_scroll 10s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-3.duration-fast .content-wrapper-2 {
  animation: ova_scroll2 10s linear infinite;
  animation-delay: -5s;
}