/* Sticky header */
.header {
  background: #fff;
  z-index: 9999;
}
body.has-fixed-header {
  padding-top: var(--header-offset, 120px);
}
@media (max-width: 768px) {
  .navbar-collapse {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
}
