@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-2 {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  direction: ltr;
}
.ova-text-marquee-2.direction-ltr {
  direction: rtl;
}
.ova-text-marquee-2.direction-ltr .content-wrapper {
  animation: ova_scroll_ltr 20s linear infinite;
  animation-delay: -20s;
}
.ova-text-marquee-2.direction-ltr .content-wrapper-2 {
  animation: ova_scroll2_ltr 20s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-2.direction-ltr.duration-slow .content-wrapper {
  animation: ova_scroll_ltr 20s linear infinite;
  animation-delay: -20s;
}
.ova-text-marquee-2.direction-ltr.duration-slow .content-wrapper-2 {
  animation: ova_scroll2_ltr 20s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-2.direction-ltr.duration-fast .content-wrapper {
  animation: ova_scroll_ltr 10s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-2.direction-ltr.duration-fast .content-wrapper-2 {
  animation: ova_scroll2_ltr 10s linear infinite;
  animation-delay: -5s;
}
.ova-text-marquee-2 .content-wrapper .text, .ova-text-marquee-2 .content-wrapper-2 .text {
  font-weight: 500;
  font-size: 58px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--heading);
}
@media (max-width: 1024px) {
  .ova-text-marquee-2 .content-wrapper .text, .ova-text-marquee-2 .content-wrapper-2 .text {
    font-size: 48px;
  }
}
.ova-text-marquee-2 .content-wrapper .text span, .ova-text-marquee-2 .content-wrapper-2 .text span {
  color: var(--primary);
}
.ova-text-marquee-2 .content-wrapper .image, .ova-text-marquee-2 .content-wrapper-2 .image {
  margin: 0 40px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  vertical-align: bottom;
}
.ova-text-marquee-2 .content-wrapper .image img, .ova-text-marquee-2 .content-wrapper-2 .image img {
  display: inline-block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}
.ova-text-marquee-2 .content-wrapper .image .line-decoration, .ova-text-marquee-2 .content-wrapper-2 .image .line-decoration {
  display: inline-block;
  width: 85px;
}
.ova-text-marquee-2 .content-wrapper {
  animation: ova_scroll 20s linear infinite;
  animation-delay: -20s;
}
.ova-text-marquee-2 .spacing {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 600px;
}
.ova-text-marquee-2 .content-wrapper-2 {
  animation: ova_scroll2 20s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-2.duration-slow .content-wrapper {
  animation: ova_scroll 20s linear infinite;
  animation-delay: -20s;
}
.ova-text-marquee-2.duration-slow .content-wrapper-2 {
  animation: ova_scroll2 20s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-2.duration-fast .content-wrapper {
  animation: ova_scroll 10s linear infinite;
  animation-delay: -10s;
}
.ova-text-marquee-2.duration-fast .content-wrapper-2 {
  animation: ova_scroll2 10s linear infinite;
  animation-delay: -5s;
}