﻿
.ticker {
    overflow: hidden;
    width: 100%;
    padding: 80px 0 0;
 /* position: fixed;
    bottom: -50px;*/
    left: 0;
    font-family: 'Montserrat', Arial;
}


.ticker-title {
    width: 9500px;
    margin-top: 10px;
    /*padding-bottom: 5px;*/ 
    color: #065b70;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    /*text-shadow: 0 0 2px #065b70;*/ 
    background: linear-gradient(135deg, rgba(104,186,186,1) 0%,rgba(58,208,221,1) 11%,rgba(38,153,181,1) 24%,rgba(29,127,162,0.93) 30%,rgba(29,127,162,0.5) 68%); /* W3C */
}

    .ticker-title > * {
        display: inline-block;
        margin-right: 50px;
        animation: title 80s infinite linear;
    }

@keyframes title {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-4080px);
    }
}

.ticker-news {
    min-width: 9000px;
    padding: 10px 0;
    color: #ffffff;
    font-size: 36px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0,0,0,1);
    background: linear-gradient(135deg, rgba(104,186,186,1) 0%,rgba(29,127,162,1) 11%,rgba(29,127,162,0.5) 29%); /* W3C */
}

    .ticker-news > * {
        display: inline-block;
        animation: news 20s infinite linear;
    }

@keyframes news {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-4135px);
    }
}