@media (min-width: 992px) {
    .g-fixed {
      width: 120px;
      position: fixed;
      bottom: 130px;
      right: 0;
    }
    .g-fixed2 {
        width: 120px;
        position: fixed;
        bottom: 0;
        right: 0;
        margin-top: 10px;
      }
  }
  
  @media (max-width: 991px) {
    .g-fixed {
      width: 120px;
      position: fixed;
      bottom: 130px;
      right: 0;
    }
    .g-fixed2 {
        width: 120px;
        position: fixed;
        bottom: 0;
        right: 0;
        margin-top: 10px;
      }
  }
