html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body.home-page {
  margin-bottom: 0;
  min-height: 100vh;
}

main.home-page-main {
  min-height: calc(100vh - 72px);
}

.site-header {
  position: relative;
  z-index: 20;
  background: #00356e;
  border: 0;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.08) inset,
    0 10px 22px -6px rgba(0, 16, 36, 0.72),
    0 24px 52px -10px rgba(0, 28, 60, 0.56),
    0 12px 28px -8px rgba(0, 53, 110, 0.95),
    0 32px 90px -18px rgba(0, 53, 110, 0.82);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 36px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 53, 110, 0.58) 0%,
    rgba(0, 53, 110, 0.28) 38%,
    rgba(0, 53, 110, 0.1) 68%,
    rgba(0, 53, 110, 0) 100%
  );
  filter: blur(10px);
}

.site-header .navbar-brand,
.site-header .nav-link {
  color: #f1f3f5;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .navbar-brand:hover,
.site-header .navbar-brand:focus {
  color: #ffffff;
}

body.map-page {
  margin-bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

main.map-page-main {
  flex: 1 1 auto;
  min-height: 0;
}
.site-header .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header .navbar-logo {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.95;
}
