/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
.nwm-marquee{
    overflow: hidden;    
}
.nwm-marquee > span{
    width: 30px;
}
.nwm-marquee > span img{
    width: 20px;
}
.ring_b {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nwm-marquee .ring_b span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}