.m-scroll {
  display: flex;
  position: relative;
  width: 100%;
  height: 200px;
  margin: auto;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767.5px) {
  .m-scroll { height: 100px; }
}

.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;
  transform: scale(2);
    transition: all 1s ease;
}
.m-scroll__title > div {
  display: flex;
  animation: scrollText 100s infinite linear;
}

.m-scroll__title > div h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 500;
  color: black;
  transition: all 2s ease;
}

.m-scroll__title > div h1 a {
  text-decoration:none;
  color:black;
  cursor: unset;
  margin-left: 70px;
  opacity:0.8;
  font-weight:200;
  font-size:4vw;
}
@media (min-width: 1800px) {
    .m-scroll__title > div h1 a {
      font-size:3vw;
  }
}


/*div:hover {
  animation-play-state: paused;
}*/
@keyframes scrollText {
  from   { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}