

.top-bar-marquee{
    position: fixed !important;
    z-index: 9999;
    width:100vw;
    height:40px;
    background:rgb(103, 21, 21);
    color:white;
    overflow:hidden
    
  }
  .marq-text{
    margin-right:0px;
    position: relative;
    animation:slide 10s linear infinite;
    transition:all 10s linear;
    text-wrap: nowrap;
  }
  @keyframes slide{
    0%{
      left:800px
    }
    100%{
      left:-800px
    }
  }

  @media screen and (max-width:480px){
    .top-bar-marquee {
      display:none
    }
  }

.dk-footer-box-info a img{
  width: 150px;
  border-radius: 10px;
  padding: 0 10px;
  background: white;
}