section .scroll {
  width: 100%;
  display: flex;
}
section .scroll div {
  background-color: #fff;
  color: #000;
  font-size: 4em;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  animation: animate 40s linear infinite;
  animation-delay: -40s;
}

section .scroll div:nth-child(2) {
  animation: animate2 40s linear infinite;
  animation-delay: -20s;
}

.scroll.text4 {
    overflow: hidden;
}

.main-sec {
    position: relative;
    top: -114px;
    margin-bottom: -100px;
}
.text4 div {
    font-size: 100px !important;
    background-color: #ffffff00;
    z-index: -1;
    color: #0000002e !important;
}

section .scroll div {
 
  font-family: 'Bebas Neue';}

span#hs_cos_wrapper_widget_1668787328164_ {
    -webkit-text-stroke: 1px #0000002e;
}

section .scroll div span {
  -webkit-text-stroke: 2px #000;
  color: transparent;
}
@keyframes animate {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes animate2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}