.marquee_style {	color: #002D6E;
	font-size: 18px;
	font-weight: bold;
	animation: animate 0.5s linear infinite;
    color: #000;
}
@keyframes animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}