header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: #f8fbff;
  box-shadow: 0 1px 0 rgba(25, 130, 196, 0.12);
  position: sticky !important;
  top: 0;
  z-index: 10 !important;
}

header.background:before {
  background-image: radial-gradient(circle at 8% 18%, rgba(138, 201, 38, 0.15) 0 4.5rem, transparent 4.6rem), radial-gradient(circle at 90% 12%, rgba(255, 202, 58, 0.16) 0 5.5rem, transparent 5.6rem), radial-gradient(circle at 72% 92%, rgba(25, 130, 196, 0.1) 0 7rem, transparent 7.1rem), linear-gradient(135deg, #fbfdff 0%, #f3f9ff 52%, #fbfcf7 100%) !important;
  opacity: 1;
}

header[data-big].background:before {
  background-image: radial-gradient(circle at 15% 18%, rgba(138, 201, 38, 0.17) 0 7rem, transparent 7.1rem), radial-gradient(circle at 84% 22%, rgba(255, 202, 58, 0.18) 0 8.5rem, transparent 8.6rem), radial-gradient(circle at 76% 88%, rgba(25, 130, 196, 0.12) 0 10rem, transparent 10.1rem), linear-gradient(135deg, #fbfdff 0%, #f3f9ff 52%, #fbfcf7 100%) !important;
}

header a {
  color: var(--text);
  text-decoration: none;
}

.home {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.logo {
  height: 40px;
}

.logo > * {
  width: unset;
  height: 100%;
}

.title-text {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
  font-family: var(--title);
  text-align: left;
}

.title {
  font-size: var(--large);
  font-family: "SchoolSafetyRoundedSmile", var(--title);
  font-weight: 700;
}

.subtitle {
  font-family: "SchoolSafetyRoundedSmile", var(--title);
  font-weight: 400;
  position: relative;
  top: -4px;
  opacity: 0.65;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0;
  color: var(--text);
  appearance: none;
  transition: background var(--transition);
}

.nav-toggle:after {
  content: "\f0c9";
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--text);
  font-size: 15px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.nav-toggle:checked:after {
  content: "\f00d";
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--heading);
  text-transform: uppercase;
}

nav > a {
  padding: 5px;
}

nav > a:hover {
  color: var(--primary);
}

header:not([data-big]) .logo {
  height: 54px;
}
header:not([data-big]) .title-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
header:not([data-big]) .title {
  line-height: 1.28;
}
header:not([data-big]) .subtitle {
  top: 0;
}
@media (max-width: 700px) {
  header:not([data-big]) {
    justify-content: flex-end;
  }
  header:not([data-big]) .nav-toggle {
    display: flex;
  }
  header:not([data-big]) .nav-toggle:not(:checked) + nav {
    display: none;
  }
  header:not([data-big]) nav {
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
  }
}

header[data-big] {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 20px;
  top: unset;
}
header[data-big] .home {
  flex-direction: column;
  flex-grow: 0;
}
header[data-big] .logo {
  height: 80px;
  flex-shrink: 0;
}
header[data-big] .title-text {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
header[data-big] .title {
  font-size: var(--xxl);
}
header[data-big] .subtitle {
  font-size: var(--large);
}

/*# sourceMappingURL=header.css.map */