.bottominfo {
    overflow: hidden;
    position: relative;
  }
  
  .bottominfo a {
    float: left;
    display: block;
    color: rgb(104, 104, 104);
    text-align: center;
    padding: 20px 0 20px 16px;
    text-decoration: none;
    font-size: 10px;
  }
  
  .bottominfo a:hover {
    color: black;
  }
  
 
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1200px
  */
  
  @media (min-width: 1025px) and (max-width: 1200px) {
  
    .bottominfo.responsive {position: relative;}
    
    .bottominfo.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
  
    .bottominfo.responsive {position: relative;}
    
    .bottominfo.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    .bottominfo.responsive {position: relative;}
    
    .bottominfo.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
  
    .bottominfo.responsive {position: relative;}
    
    .bottominfo.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 0px) and (max-width: 480px) {
  
    .bottominfo.responsive {position: relative;}
    
    .bottominfo.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    
  }