.marquee {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
  }

  .marquee:hover .marquee__item {
	-webkit-animation-play-state: paused;
			animation-play-state: paused;
  }
  .marquee__seperator {
	margin: 0 2rem;
  }
  
  @-webkit-keyframes marquee {
	0% {
	  transform: translateX(0);
	}
	100% {
	  transform: translateX(-100%);
	}
  }
  
  @keyframes marquee {
	0% {
	  transform: translateX(0);
	}
	100% {
	  transform: translateX(-100%);
	}
  }
  .marquee {
	padding-top:5px; 
	height: 40px; 
	width: 100%; 
	background-color: #292d76; 
	color: #ffffff; 
	font-size: 18px; 
	margin-top: -4px; 
	margin-bottom: 0px;
  } 