.page-wrapper {
  .page-header.sticky.active {
      position: fixed;
      z-index: 999;
      background: #fff;
      width: 100%;
      box-shadow: 0px -5px 11px rgba(0,0,0,.5);
      animation: scroll .3s ease-in-out;
  }
}
@keyframes scroll {
  from {
      top: -100%;
  }
  to {
      top: 0px;
  }
}
.top-banner {
  background-color: #f1f1f1;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.top-banner p {
  margin: 0;
}
.top-banner a {
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
}
.top-banner a:hover {
  text-decoration: underline;
}