.vstack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200;
  src: url('fonts/outfit-v11-latin-200.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/outfit-v11-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/outfit-v11-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/outfit-v11-latin-700.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/outfit-v11-latin-900.woff2') format('woff2');
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}
/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}
/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}
/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
img {
  height: auto;
}
a[class] {
  color: inherit;
}
:root {
  --veil-color: rgba(0, 0, 0, 0.4);
  --veil-opacity: 0.7;
  --media-border-radius: 8px;
}
body {
  font-family: Outfit, Helvetica, sans-serif;
  background: #fffcf0;
  color: #291f1e;
}
a[href^="tel:"],
a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
a[href^="tel:"]::before,
a[href^="mailto:"]::before {
  content: "";
  display: block;
  inline-size: 24px;
  block-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
a[href^="tel:"]::before {
  background-image: url(icon-phone.svg);
}
a[href^="mailto:"]::before {
  background-image: url(icon-email.svg);
}
.separate {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}
.placeholder {
  box-sizing: border-box;
  background: var(--bg-color, rgba(0, 100, 200, 0.3));
  min-height: 5em;
  border: 2px dashed rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  padding: 10px;
  text-align: center;
}
.placeholder h3 {
  margin: auto;
  font-size: 1em;
  font-weight: normal;
}
.placeholder h3::before {
  content: "[ ";
}
.placeholder h3::after {
  content: " ]";
}
.text {
  font-size: 0.875rem;
  line-height: 1.5;
}
.text > * + * {
  -webkit-margin-before: var(--stack-space, 1rem);
          margin-block-start: var(--stack-space, 1rem);
}
.text.contain p,
.text.contain ul,
.text.contain ol,
.text.contain h2,
.text.contain h3,
.text.contain h4 {
  max-inline-size: 75ch;
}
.text.start {
  text-align: start;
}
.text.center {
  text-align: center;
}
.text.end {
  text-align: end;
}
.text h3 + * {
  -webkit-margin-before: 0.2em;
          margin-block-start: 0.2em;
}
.text blockquote {
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
  -webkit-border-start: 0.5em solid;
          border-inline-start: 0.5em solid;
  font-style: italic;
}
.text hr {
  border: none;
  background: #008800;
  block-size: 1px;
  inline-size: 8em;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.text ul,
.text ol {
  padding-inline: 1em;
}
@media (min-width: 740px) {
  .text {
    font-size: 1.125rem;
  }
}
.text table {
  padding: 0.5em;
  background: rgba(0 0 0 / 0.15);
  border-radius: 6px;
}
.text table th,
.text table td {
  text-align: start;
  font-weight: normal;
  line-height: inherit;
  padding-block: 0.2em;
  padding-inline: 1ch;
}
.text table tr:nth-child(even) {
  background: rgba(0 0 0 / 0.1);
}
.linkbutton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  block-size: 2.86em;
  padding-inline: 1.14em;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20rem;
  border: 1px solid #008800;
  transition: 280ms ease-in-out;
}
.linkbutton:focus,
.linkbutton:hover {
  background: #006a25;
  color: #fff;
}
@media (min-width: 740px) {
  .linkbutton {
    min-inline-size: 12em;
  }
}
.navigation ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding-inline: 0;
}
.navigation a {
  text-decoration: none;
  text-underline-offset: 3px;
  outline-offset: 6px;
}
.navigation a:hover,
.navigation a:focus-visible {
  text-decoration: underline;
}
.logo {
  font-size: 0.6875rem;
  display: inline-block;
  font-weight: 300;
  color: #008800;
  background: transparent;
  padding: 10px;
  translate: -10px;
  border-radius: 4px;
  transition: background-color 200ms ease-in-out;
}
.logo .name {
  font-size: 2.18em;
  font-weight: 200;
}
.logo .name .strong {
  font-weight: bold;
}
.logo a {
  color: inherit;
  text-decoration: none;
  outline: none;
}
.logo:hover,
.logo:has(a:focus-visible) {
  background: rgba(0, 0, 0, 0.05);
}
.logo:has(a:focus-visible) {
  outline: auto;
  outline-offset: 3px;
}
.mediablock {
  position: relative;
}
.mediablock video,
.mediablock iframe,
.mediablock img {
  border: none;
  block-size: auto;
}
.mediablock.noscale {
  display: inline-block;
}
.mediablock:not(.noscale) picture,
.mediablock:not(.noscale) img,
.mediablock:not(.noscale) video {
  inline-size: 100%;
  block-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mediablock.empty,
.mediablock.deleted {
  background-color: #cfcfe4;
  inline-size: 100%;
  aspect-ratio: 5 / 3;
}
.mediablock.deleted {
  background-color: rgba(200, 0, 0, 0.2);
  box-shadow: inset 0 0 0 4px rgba(200, 100, 100, 0.4);
}
.mediablock.masked {
  -webkit-mask: url(mediablock_mask.svg) no-repeat;
          mask: url(mediablock_mask.svg) no-repeat;
}
.mediablock.mirror img,
.mediablock.mirror video {
  transform: scaleX(-1);
}
.mediablock.veiled::before {
  content: "";
  display: block;
  background: var(--veil-color, rgba(245, 245, 245, 0.5));
  opacity: var(--veil-opacity, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 10;
}
.components .mediablock.empty,
.components .mediablock.deleted {
  max-inline-size: 500px;
}
.menutrigger {
  inline-size: 45px;
  block-size: 45px;
  border-radius: 3px;
  display: flex;
  place-items: center;
  place-content: center;
  background: transparent;
  transition: background-color 200ms ease-in-out;
}
.menutrigger:hover,
.menutrigger:focus-within {
  background: rgba(0, 0, 0, 0.05);
  outline: auto;
  outline-offset: 3px;
}
.menutrigger a {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  outline: none;
}
.menutrigger a::before,
.menutrigger a::after {
  content: "";
  display: block;
  inline-size: 20px;
  block-size: 2px;
  background: #000;
}
.menutrigger a span {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.iconbutton {
  display: flex;
  inline-size: 40px;
  block-size: 40px;
  place-items: center;
  place-content: center;
  border: 1px solid #008800;
  border-radius: 7px;
  color: #291f1e;
  transition: 280ms ease-in-out;
}
.iconbutton:hover,
.iconbutton:focus-visible {
  background: #008800;
  color: #fff;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.actions.at-center {
  justify-content: center;
}
.actions.at-end {
  justify-content: end;
}
.sample-panel {
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.topbar {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: 1.125rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  box-shadow: 0px 6px 14px 0px rgba(98, 76, 0, 0.1);
  background: #fffcf0;
}
@media (min-width: 740px) {
  .topbar {
    font-size: 1.25rem;
    padding-inline: 50px;
  }
}
.topbar > div {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  gap: inherit;
  align-items: center;
}
.topbar .navigation {
  display: none;
  padding-inline: 10px;
}
.topbar .navigation.showing,
.topbar .navigation:target {
  position: absolute;
  inset-block-start: 90%;
  inset-inline-end: 20px;
  display: flex;
  background: #fffcf0;
  box-shadow: 0 0 14px #624c0019;
  border-radius: 3px;
  padding-inline: 30px;
  padding-block: 10px;
}
.topbar .menutrigger {
  transition: opacity 300ms ease-in;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 30px;
  translate: 0 -50%;
}
.topbar .linkbutton {
  -webkit-margin-end: 80px;
          margin-inline-end: 80px;
  font-size: 0.9rem;
}
@media (min-width: 740px) {
  .topbar .linkbutton {
    -webkit-margin-end: 40px;
            margin-inline-end: 40px;
  }
}
.topbar .logo {
  translate: -5px;
}
html[data-upgraded][data-pristine] .topbar .menutrigger,
html[data-upgraded][data-pristine] .topbar .linkbutton {
  transition: none;
  opacity: 0;
  pointer-events: none;
}
.sheet {
  background: var(--sheet-color, #fffcf0);
  padding-block: var(--sheet-padding, 6rem);
  padding-inline: 70px;
}
.sheet > :where(*) {
  max-inline-size: var(--layout-size, 1200px);
  margin-inline: auto;
}
.sheet.sandy {
  --sheet-color: #f6f0db;
}
.sheet.greeny {
  --sheet-color: #dbffe8;
}
.sheet.whitey {
  --sheet-color: #fff;
}
.textwithmedia {
  --threshold: 30rem;
  --align: stretch;
  display: flex;
  align-items: var(--align);
  flex-wrap: wrap;
  gap: 1rem;
  --threshold: 670px;
  align-items: center;
  gap: 40px;
}
.textwithmedia > * {
  flex-grow: 1;
  flex-basis: calc((var(--threshold) - 100%) * 999);
}
.textwithmedia.topped {
  align-items: flex-start;
}
.textwithmedia.flipped {
  flex-direction: row-reverse;
}
.textwithmedia.ended > .text {
  text-align: end;
}
.textwithmedia .mediablock {
  overflow: hidden;
  overflow: clip;
}
.textwithmedia .mediablock:not(.noscale),
.textwithmedia .mediablock.noscale img {
  border-radius: var(--media-border-radius);
}
.textwithmedia .text :where(h1, h2, h3) {
  font-size: 2.25rem;
  color: var(--color-header, #006a25);
}
.textwithmedia .text :where(h1, h2, h3) ~ h2,
.textwithmedia .text :where(h1, h2, h3) ~ h3 {
  font-size: revert;
}
@media (min-width: 740px) {
  .textwithmedia .text :where(h1, h2, h3) {
    font-size: 3.4375rem;
  }
}
.hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 2fr) minmax(0, 4fr);
  min-block-size: 100%;
  min-block-size: 100vb;
}
.hero .mediablock {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  inline-size: 100%;
  block-size: 100%;
  z-index: 1;
}
.hero .hero-header {
  grid-column: 1 / -1;
  grid-row: 2;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  text-transform: uppercase;
  margin-inline: 1rem;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.hero .hero-header :where(h1, h2) {
  font-size: 2.5rem;
  line-height: 1.2;
}
.hero .hero-header :where(h1, h2) > :first-child {
  font-weight: 900;
}
.hero .hero-header :where(h1, h2) > :last-child {
  font-weight: 300;
}
.hero .hero-header .actions {
  -webkit-margin-before: 3em;
          margin-block-start: 3em;
}
.hero .hero-header .actions .linkbutton {
  background: rgba(0, 0, 0, 0.4);
}
.hero .hero-header .actions .linkbutton:hover,
.hero .hero-header .actions .linkbutton:focus-visible {
  background: #006a25;
}
@media (min-width: 740px) {
  .hero .hero-header {
    margin-inline: 7.5rem;
    -webkit-margin-after: 2em;
            margin-block-end: 2em;
  }
  .hero .hero-header :where(h1, h2) {
    font-size: 4.375rem;
  }
  .hero .hero-header .actions {
    font-size: 1.25rem;
  }
}
@media (max-height: 500px) {
  .hero {
    grid-template-rows: minmax(0, 1fr) minmax(0, 3fr);
  }
  .hero .hero-header {
    -webkit-padding-after: 1em;
            padding-block-end: 1em;
  }
  .hero .hero-header :where(h1, h2) {
    font-size: 2.5rem;
  }
  .hero .hero-header .actions {
    -webkit-margin-before: 2em;
            margin-block-start: 2em;
  }
}
[data-animates="true"] .hero .hero-header h1 div {
  opacity: 0;
  animation: appear 800ms 1800ms ease-in-out forwards;
}
[data-animates="true"] .hero .hero-header h1 div:first-child {
  animation-delay: 700ms;
}
[data-animates="true"] .hero .actions {
  opacity: 0;
  animation: appear 800ms 2550ms ease-in-out forwards;
}
@keyframes appear {
  from {
    opacity: 0;
    translate: 0 30px;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.site-footer .logo {
  align-self: start;
}
.site-footer h2 {
  -webkit-border-after: 2px solid;
          border-block-end: 2px solid;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.site-footer .info {
  display: flex;
  flex-direction: row;
  gap: 70px;
  flex-wrap: wrap;
  align-items: start;
}
.site-footer .certification {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
.site-footer .actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.site-footer .policy {
  -webkit-border-before: 1px solid #d9d9d9;
          border-block-start: 1px solid #d9d9d9;
  -webkit-padding-before: 2rem;
          padding-block-start: 2rem;
  text-align: end;
}
@view-transition {
  navigation: auto;
}
:root {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-block-start: var(--scroll-margin-compact, 50px);
}
@media (min-width: 740px) {
  :target {
    scroll-margin-block-start: 80px;
  }
}
[data-layout] .sheet {
  min-block-size: 100vb;
  padding-inline: 20px;
}
[data-layout] > header {
  position: fixed;
  inline-size: 100%;
  display: flex;
  z-index: 15;
}
[data-layout] > header .topbar {
  inline-size: 100%;
}
@media (min-width: 1200px) {
  [data-layout] > header {
    justify-content: center;
  }
}
@media (max-width: 739px) {
  .illu {
    max-inline-size: 70px;
    float: inline-end;
  }
}
header:has(+ main #faa-det-bedre:target) a[href="#faa-det-bedre"],
header:has(+ main #praester-bedre:target) a[href="#praester-bedre"],
header:has(+ main #du-kan-hvad-du-vil:target) a[href="#du-kan-hvad-du-vil"],
header:has(+ main #hjernesmarte-boern:target) a[href="#hjernesmarte-boern"],
header:has(+ main #hjernestaerke-foraeldre:target) a[href="#hjernestaerke-foraeldre"],
header:has(+ main #praktisk-info:target) a[href="#praktisk-info"],
header:has(+ main #slip-fri:target) a[href="#slip-fri"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
#slip-fri {
  --scroll-margin-compact: -780px;
}
#slip-fri h2,
#slip-fri h2 + p {
  color: #006a25;
}
#slip-fri .textwithmedia .mediablock img {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
#praester-bedre {
  --scroll-margin-compact: -450px;
}
#praester-bedre h2,
#praester-bedre h2 + p {
  color: #cf6f49;
}
#du-kan-hvad-du-vil {
  --scroll-margin-compact: -620px;
}
#du-kan-hvad-du-vil h2,
#du-kan-hvad-du-vil h2 + p {
  color: #006a25;
}
#hjernesmarte-boern,
#hjernestaerke-foraeldre {
  --scroll-margin-compact: -320px;
}
#hjernesmarte-boern h2,
#hjernestaerke-foraeldre h2,
#hjernesmarte-boern h2 + p,
#hjernestaerke-foraeldre h2 + p {
  color: #cf6f49;
}
#hjernesmarte-boern .textwithmedia .mediablock img,
#hjernestaerke-foraeldre .textwithmedia .mediablock img {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
#hvem-er-jeg {
  --scroll-margin-compact: -990px;
}
#hvem-er-jeg h2,
#hvem-er-jeg h2 + p {
  color: #006a25;
}
#praktisk-info {
  --layout-size: 780px;
  --scroll-margin-compact: 80px;
}
#praktisk-info h2 {
  font-size: 2em;
}
#praktisk-info h3 {
  -webkit-margin-before: 1.5em;
          margin-block-start: 1.5em;
}
#praktisk-info h2,
#praktisk-info h3 {
  color: #006a25;
}
#praktisk-info .pricing td {
  text-align: end;
}
#velkommen h2,
#velkommen h2 + ul {
  color: #8f6d63;
}
#faa-det-bedre {
  --scroll-margin-compact: -450px;
  position: relative;
}
#faa-det-bedre h2,
#faa-det-bedre h2 + p {
  color: #cf6f49;
}
@media (min-width: 740px) {
  #faa-det-bedre h2,
  #faa-det-bedre h2 + p + p {
    max-inline-size: 80%;
  }
  #faa-det-bedre .illu {
    position: absolute;
    inset-inline-start: 42%;
    inset-block-start: 160px;
  }
}
