﻿.ImageRoundedCCorners {
    border-radius: 25px;       
}

.FluidImageCustom {
    max-width: 100%;
    height: auto;
}

.marquee {
    position: fixed;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;    
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    clear:both;
    padding-bottom: 30px;

}


@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}
