
.marquee {
    width: 100%;
	line-height: 20px;
	background-color: #003466;
	color: white;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marquee p {
    display: inline-block;
    padding-left: 100%;
    font-weight: 600;
    animation: marquee 20s linear infinite;
}

.marquee p:hover {
    animation-play-state: paused;
}


.marquee a{

    color: white;
    text-decoration: none;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}