ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 2rem;
	position: relative;
	overflow: hidden;
	/* optional styles for appearance */
	width: calc( 100% - 5.5rem);
	height: 2rem; /* height should be included to reserve visual space for the marquee */
}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	left: 0;
	display: block;
	white-space: nowrap; /* keep all text on a single line */
	line-height: 2.65rem;
	/* optional styles for appearance */
	font-size: 1.15rem;
	padding:0;
}
ul.marquee li a{color:inherit;}

@media screen and (max-width: 576px){
	ul.marquee li {
		line-height: 2.5rem;
		font-size: 1rem;
	}
    ul.marquee li a{color:#3066BE;font-size: 1rem;line-height: 2.5rem;}
}
