html {
  scroll-behavior: smooth;
}

body.hk-public-page {
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body.hk-public-page .title-font,
body.hk-public-page .hero-title,
body.hk-public-page .section-title {
  font-family: "Montserrat", "Nunito Sans", sans-serif;
}

@keyframes hk-rise-fade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.hk-public-page .fade-up {
  animation: hk-rise-fade 0.55s ease both;
}

body.hk-public-page .fade-delay-1 {
  animation-delay: 0.08s;
}

body.hk-public-page .fade-delay-2 {
  animation-delay: 0.15s;
}
