/* Header fixes */
header.header-1 .top-header {
  position: relative !important;
}

.main-header-wraper {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
}

/* Scroll offset for in-page anchors to account for fixed header */
:root {
  --header-offset-desktop: 150px;
  --header-offset-mobile: 80px;
}

/* Apply scroll-margin-top so browsers will stop scrolling earlier and sections appear under the header */
#our-services,
#about-us,
#contact-us {
  scroll-margin-top: var(--header-offset-desktop);
}

@media (max-width: 1199.98px) {
  #our-services,
  #about-us,
  #contact-us {
    scroll-margin-top: var(--header-offset-mobile);
  }
}
