/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
.marquee {
  height:300px;
  overflow: hidden;
  position: relative;
}

.marquee > div {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 10s linear infinite;
}

.marquee div {
	font-family: arboria, sans-serif;
  font-weight: 900;
  font-style: normal;
	font-size: 100px;
	-webkit-text-fill-color: transparent;
  -webkit-text-stroke: 3px;
	margin: 0;
	line-height: 120px;
	text-align: center;
	color: #EA6676;
	display: inline-block;
	margin-right:15px;
}

@keyframes marquee {
  0% {
	transform: translate3d(0%, 0, 0);
  }
  100% {
	transform: translate3d(-50%, 0, 0);
  }
}