@media (min-width: 992px) {
  .main-header-bar.is-sticky {
    position: fixed;
    top: 0;
    margin:0 !important;
    width: 100%;
    background-color: #bb8c3e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(-100%);
    animation: stickySlideDown 0.3s ease forwards;
  }
  
  .main-header-bar.is-sticky .sub-menu {
    background-color: #bb8c3e !important;
    border:none !important;
  }


  @keyframes stickySlideDown {
    to {
      transform: translateY(0);
    }
  }
}


@media (min-width: 992px) {

  .main-header-bar.is-sticky .site-logo-img img {
    max-height: 70px !important;
    max-width: 70px !important
}

  .main-header-bar.is-sticky {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: auto !important;
  }

  .main-header-bar.is-sticky .ast-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: auto !important;
  }
  .main-header-bar.is-sticky .ast-site-identity {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .main-header-bar.is-sticky .ast-primary-header-bar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: auto !important;
  }
}