/* [project]/src/marketing-site/app/site-shell.css [app-client] (css) */
html, body {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
}

.site-header .site-nav {
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffffd9;
  border: 0 solid #e5e7eb;
  border-radius: 1rem;
  width: calc(100% - 2rem);
  max-width: 1200px;
  padding: 4px 32px;
  font-family: Manrope, sans-serif;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 1px 12px #00000014;
}

.site-nav-content {
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  display: flex;
}

.site-nav-logo {
  align-items: center;
  display: flex;
}

.site-nav-links {
  align-items: center;
  gap: 32px;
  display: flex;
}

.site-nav-links a, .site-mobile-download, .site-mobile-nav a {
  color: #111827;
  text-decoration: none;
}

.site-nav-links a {
  font-weight: 500;
  transition: color .2s;
}

.site-nav-links a:hover, .site-mobile-nav a:hover, .site-footer-links a:hover {
  color: #198048;
}

.site-nav-links .site-nav-download, .site-mobile-download {
  font-weight: 700;
}

.site-mobile-download, .site-mobile-menu-button, .site-mobile-nav {
  display: none;
}

.site-footer {
  color: #4b5563;
  text-align: center;
  background-color: #f8f9fa;
  padding: 32px 0;
  font-family: Manrope, sans-serif;
}

.site-footer-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-footer-links {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  display: flex;
}

.site-footer-links a {
  color: #555;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 768px) {
  .site-header .site-nav {
    padding: 3px 24px;
    top: .5rem;
  }

  .site-nav-content {
    gap: 1rem;
  }

  .site-nav-logo img {
    width: 100px;
    height: 53px;
  }

  .site-nav-links {
    display: none;
  }

  .site-mobile-download {
    white-space: nowrap;
    margin-left: auto;
    display: block;
  }

  .site-mobile-menu-button {
    color: #111827;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    font-size: 24px;
    display: block;
  }

  .site-mobile-nav {
    background-color: #fffffffa;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 16px 24px;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    right: 0;
    box-shadow: 0 6px 12px #0000000f;
  }

  .site-mobile-nav.active {
    display: block;
  }

  .site-mobile-nav a {
    border-bottom: 1px solid #f3f4f6;
    padding: 12px 0;
    font-weight: 500;
    display: block;
  }

  .site-mobile-nav a:last-child {
    border-bottom: 0;
  }
}

/*# sourceMappingURL=src_marketing-site_app_site-shell_0a6kcpc.css.map*/