.panel-scrolling-text { background-color: #fff; padding-top: 20px; padding-bottom: 20px; }

.m-scroll {
  display: flex;
  position: relative;
  width: 100%;
  height: 42px;
  margin: auto;
  overflow: hidden;
  z-index: 1;
}
.m-scroll__title {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transition: all 1s ease;
}
.m-scroll__title > div {
  display: flex;
  -webkit-animation: scrollText 80s infinite linear;
          animation: scrollText 80s infinite linear;
}
.m-scroll__title p {
  margin: 0 4px 0 0;
  font-size: 35px;
  color: #000;
  transition: all 2s ease;
  display: inline-block;
  font-family: 'College Block 2.0';
  letter-spacing: 2.14px;
}
.m-scroll__title p span { color: #033dda; }
.m-scroll__title a {
  text-decoration: none;
  color: white;
}

.scroll-direction-right .m-scroll__title > div { 
  -webkit-animation: scrollTextRight 80s infinite linear;
          animation: scrollTextRight 80s infinite linear;
}

.scroll-direction-right .m-scroll__title { left: auto; right: 0; justify-content: flex-end; }

/*div:hover {
  animation-play-state: paused;
}*/
@-webkit-keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@-webkit-keyframes scrollTextRight {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(50%);
  }
}
@keyframes scrollTextRight {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(50%);
  }
}
