﻿


.marquee {
    font-family: Poppins !important;
    width: 100%;
    height: 50px;
    background: transparent;
    font-weight:bold;
    color:white;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}


    .marquee:before,
    .marquee:after {
        position: absolute;
        top: 0;
        width: 10rem;
        height: 100%;
        content: "";
        z-index: 1;
    }

  
    .marquee span {
        color: white;
        display: inline-block;
        padding-left: 100%; /* show the marquee just outside the paragraph */
        /*animation: marquee 40s linear infinite;*/
        animation: marquee linear infinite;
        line-height:50px
    }

    .marquee a {
        color: white;
       
    }

/* Make it move */
@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/*.marquee {
    width: 100%;
    height: 36px;
    background: black;
    overflow: hidden;
    position: relative;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

    .marquee:before {
        left: 0;
        background: linear-gradient(to right, #047537 0%, transparent 100%);
    }

    .marquee:after {
        right: 0;
        background: linear-gradient(to left, #047537 0%, transparent 100%);
    }

    .marquee > ul {
    padding: 0;
    margin: 0;
    display: flex;
    list-style-type: none;
    animation: marqee 40s linear infinite;
    position: absolute;
    height: 100%;
}

 




.marquee > ul > li {
    white-space: nowrap;
    margin-right: 2em;
    font-weight: bold;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    padding-top: 6px;
}


    



@keyframes marqee {
    0% {
        left: 100%;
        transform: translateX(0%);
    }

    100% {
        left: 0;
        transform: translateX(-100%);
    }
}

@keyframes fadeout {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}*/


.ImgMarquee {
    max-height: 20px;
    margin-right: 2px;
    vertical-align: middle;
}

