/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 22 2025 | 07:42:17 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Announcement Bar */
.announcement-bar {
    background: #1A6C8F; /* dark background */
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    padding: 150px;
    font-weight: 500;
    position: relative;
    z-index: 9999;
}

.announcement-bar .ticker {
    display: inline-block;
    padding-left: 100%; /* start off screen */
    animation: ticker 15s linear infinite;
}

.announcement-bar p {
    display: inline-block;
    margin: 0;
    font-size: 16px;
	text-transform: uppercase;
}

/* Scrolling effect */
@keyframes ticker {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}