
.loader-bg{
    background-image: url('../assets/loader-anim.gif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
  }
  
   /* Global css ends   */
  
 /* Mobile device css start */
  
  @media (min-width:0px) and (max-width:640px){
  
    .loader-bg{
      padding: 4rem 0;
    }
  }
  
    /* Mobile device css ends  */
  
    /* Tab device css starts   */
  @media (min-width:641px) and (max-width :768px){
  
    .loader-bg{
      padding: 4rem 0;
    }
  
  }
  
  /* Tab device css ends */
  
  /* /* lg device css starts */ 
  
  @media (min-width:769px) and (max-width :1024px){
  
    .loader-bg{
      padding: 4rem 0;
    }
  
  }
  
    /* lg device css ends  */
  
   /* extra-large device css starts  */
  
  @media (min-width:1025px){
  
    .loader-bg{
      padding: 4rem 0;
    }
  
  }
   /* extra-large device css ends  */
  
  