*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
  background-color: #fff; /* Sikrer en hvid baggrund */
  color: #000; /* Standard tekstfarve */
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Formularfelter */
input, textarea, select, button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-shadow: none; /* Fjern skygger */
}

/* Specifik styling til knapper */
button {
  cursor: pointer;
  border: none;
}

/* Tekstlinks */
a {
  text-decoration: none;
  color: inherit; /* Beholder tekstfarve fra omgivelser */
  background: none;
}

/* Checkboxes og radio-knapper */
input[type=checkbox], input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

/* Fokus-tilstand */
input:focus, textarea:focus {
  outline: 0;
  outline-offset: 0;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
html {
  font-size: 62.5%;
  overscroll-behavior: none;
}

body {
  box-sizing: border-box;
  background-color: #fff;
  overscroll-behavior: none;
}

.hidden {
  display: none !important;
}

@media (min-width: 64em) {
  .desktop-hide {
    display: none !important;
  }
}

@media (max-width: 64em) {
  .mobile-hide {
    display: none !important;
  }
}

.mb-5 {
  margin-bottom: 0.5rem;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-50 {
  margin-bottom: 5rem;
}

.mb-75 {
  margin-bottom: 7.5rem;
}

.mb-100 {
  margin-bottom: 10rem;
}

html, body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

p {
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  color: #285078;
}
@media (min-width: 64em) {
  p {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 64em) {
  p.focused-text {
    font-size: 3rem;
  }
}
a {
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}

b {
  font-weight: 700;
}

h1, h2, h3, h4, h5 {
  font-style: normal;
  font-weight: 700;
  color: #285078;
}

h1 {
  font-size: 3.6rem;
  line-height: 3.6rem;
  margin-bottom: 4rem;
}
@media (min-width: 64em) {
  h1 {
    font-size: 6.2rem;
    line-height: 6.2rem;
  }
}

h2 {
  font-size: 2.6rem;
  line-height: 2.6rem;
  margin-bottom: 3rem;
}
@media (min-width: 64em) {
  h2 {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
}

h3 {
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin-bottom: 1.8rem;
}

h4 {
  font-size: 2rem;
  line-height: 2.6rem;
  margin-bottom: 1.7rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 1.5rem;
}
h5.no-margin {
  margin-bottom: 0;
}

ol.list {
  list-style-type: lower-latin;
  list-style-position: outside;
  margin-left: 4rem;
}
ol.list li {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  position: relative;
  padding-left: 1rem;
  text-indent: 0;
  color: #285078;
}
ol.list li::marker {
  font-size: 1.8rem;
  color: #285078;
}

ul.list {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 4rem;
}
ul.list li {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  position: relative;
  padding-left: 1rem;
  text-indent: 0;
  color: #285078;
}
@media (min-width: 64em) {
  ul.list li {
    font-size: 2rem;
  }
}
ul.list li::marker {
  font-size: 1.8rem;
  color: #285078;
}
ul.list--text-heavy > li {
  line-height: 3rem;
}
ul.list--light li {
  color: #fff;
}
ul.list--light li::marker {
  color: #fff;
}

.text-cursive {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-large {
  font-size: 2.4rem;
}

.header {
  position: fixed;
  width: 100%;
  padding: 4.5rem 3.5rem;
  z-index: 500;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 64em) {
  .header {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.header__container {
  display: flex;
  width: 100%;
  align-items: center;
}
@media (min-width: 80em) {
  .header__container {
    width: 115rem;
    margin: 0 auto;
  }
}
.header--scrolled {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem 3.5rem;
}
@media (min-width: 64em) {
  .header--scrolled .top-navigation {
    gap: 1.5rem;
  }
  .header--scrolled .header__logo {
    flex: 0 0 20rem;
  }
}
.header__logo {
  position: relative;
  flex: 1 0 auto;
  height: 5rem;
  z-index: 500;
  transition: flex 0.3s ease-in-out;
}
@media (min-width: 80em) {
  .header__logo {
    flex: 0 0 27rem;
    height: 100%;
  }
}
.header__navigation {
  flex: 0 0 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1100;
}
@media (min-width: 64em) {
  .header__navigation {
    display: none;
  }
}
.header__top-navigation {
  display: none;
  flex: 1 0 auto;
}
@media (min-width: 64em) {
  .header__top-navigation {
    display: flex;
  }
}

.navigation {
  position: fixed;
  top: 0;
  right: -1px;
  width: 79vw;
  height: 100vh;
  background-color: #1a2e53;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.navigation.is-active {
  transform: translateX(0);
}
.navigation__container {
  margin-top: 11rem;
}

.navigation-list__item {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 2.2rem 3.5rem;
  color: #fff;
}
.navigation-list__item.is-active {
  background-color: #FBAA19;
}

.hero {
  background-color: #0e192d;
  position: relative;
  width: 100%;
  height: 65rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero--full-height {
  height: 100vh;
}
@media (max-width: 64em) {
  .hero--mobile-full-height {
    height: 100vh;
  }
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 10rem 2rem 2rem 2rem;
  color: #fff;
}
@media (min-width: 64em) {
  .hero__content {
    padding: 20rem 2rem 2rem 2rem;
  }
}
.hero__content--dimmed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a2e53;
  opacity: 0.34;
  z-index: -1;
}
.hero__align {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  color: #fff;
}
@media (min-width: 64em) {
  .hero__align {
    max-width: 115rem;
    margin: 0 auto;
  }
}
.hero__align--center {
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero__align--bottom {
  flex: 0 1 0;
  padding: 2rem 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero__align p {
  font-size: 2.2rem;
  line-height: 2.8rem;
  color: #fff;
}
@media (min-width: 64em) {
  .hero__button .button {
    font-size: 2.5rem;
  }
  .hero__button .button.button--block {
    width: auto;
    padding: 0 5rem;
  }
}
.hero__title {
  text-align: center;
  color: #fff;
}
.hero__title--primary {
  font-size: 5.5rem;
  line-height: 5.5rem;
  font-weight: 700;
}
@media (min-width: 48em) {
  .hero__title--primary {
    font-size: 9.5rem;
    line-height: 9.5rem;
  }
}
.hero__title--secondary {
  font-size: 3.5rem;
  line-height: 3.5rem;
  font-weight: 400;
}
@media (min-width: 48em) {
  .hero__title--secondary {
    font-size: 7rem;
    line-height: 7.5rem;
  }
}
.hero__text {
  font-size: 2rem;
  line-height: 2.5rem;
  color: #fff;
  max-width: 27.5rem;
}
@media (min-width: 48em) {
  .hero__text {
    max-width: 45rem;
  }
}
@media (min-width: 64em) {
  .hero__text {
    max-width: 65rem;
  }
}
.hero__text > p {
  font-size: 2rem;
  line-height: 2.5rem;
}
.hero__text > p:last-of-type {
  margin-bottom: 4rem;
}
.hero__video-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__video-effect--smoke {
  opacity: 0.4;
}
.hero__button-icon {
  font-size: 8rem;
  color: #fff;
}

.section {
  position: relative;
  padding: 5rem 2rem;
}
.section--center h1, .section--center h2, .section--center h3, .section--center h4, .section--center h5, .section--center p {
  text-align: center;
}
@media (min-width: 64em) {
  .section {
    display: flex;
    flex-direction: column;
    padding: 10rem 2rem;
  }
}
.section__body:not(:last-child) {
  padding-bottom: 5rem;
}
@media (min-width: 64em) {
  .section__body {
    width: 115rem;
    margin: 0 auto;
  }
}
.section__body-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 64em) {
  .section__body-container {
    flex-direction: row;
    gap: 10rem;
  }
  .section__body-container .button {
    font-size: 2.5rem;
  }
  .section__body-container--reverse {
    flex-direction: row-reverse;
  }
}
.section__body-left, .section__body-right {
  flex: 1;
}
.section__body-left--padding, .section__body-right--padding {
  padding: 5rem 2rem;
}
@media (min-width: 64em) {
  .section__body-left > h1, .section__body-left h2, .section__body-left h3, .section__body-left h4, .section__body-left h5, .section__body-left h6, .section__body-left p, .section__body-right > h1, .section__body-right h2, .section__body-right h3, .section__body-right h4, .section__body-right h5, .section__body-right h6, .section__body-right p {
    text-align: left;
  }
  .section__body-left .button, .section__body-right .button {
    font-size: 2.5rem;
  }
  .section__body-left.narrow, .section__body-right.narrow {
    max-width: 40rem;
  }
  .section__body-left.pull-up, .section__body-right.pull-up {
    position: relative;
    top: -5rem;
  }
  .section__body-left.body-padding, .section__body-right.body-padding {
    padding: 5rem 0;
  }
}
.section__body-container--right-edge {
  align-items: stretch;
}
.section__body-container--right-edge .section__body-left {
  max-width: 48rem;
  padding: 5rem 2rem;
  flex-shrink: 0;
}
@media (min-width: 64em) {
  .section__body-container--right-edge .section__body-left {
    padding: 5rem 0;
  }
}
.section__body-container--right-edge .section__body-right {
  margin-right: calc(-1 * (100vw - 115rem) / 2);
  width: 100vw;
  max-width: none;
}
.section__header .page-title {
  margin-bottom: 1rem;
}
.section__header .page-subtitle {
  font-weight: 400;
}
.section--full {
  width: 100%;
  align-items: center;
  justify-content: center;
}
.section--blue {
  background-color: #285078;
  color: #fff;
}
.section--yellow {
  background-color: #fecc00;
  color: #fff;
}
.section--yellow h1, .section--yellow h2, .section--yellow h3, .section--yellow h4, .section--yellow h5, .section--yellow p {
  color: #fff;
}
.section--grey {
  background-color: #f2f2f2;
}
.section--no-padding {
  padding: 0;
}
.section--small-padding {
  padding: 5rem 2rem;
}
.section--flame-background {
  width: 100%;
  background-color: #000;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), url("/images/bbn/backgrounds/flammer-section.png");
  background-size: cover;
  background-position: center bottom;
  color: #fff;
}
@media (min-width: 64em) {
  .section--flame-background {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), url("/images/bbn/backgrounds/flammer-section-desktop.png");
  }
}
@media (min-width: 64em) {
  .section--flame-background .section__body, .section--flame-background .section__header {
    width: 67rem;
    margin: 0 auto;
  }
}
.section--blue h1, .section--blue h2, .section--blue h3, .section--blue h4, .section--blue h5, .section--blue p, .section--flame-background h1, .section--flame-background h2, .section--flame-background h3, .section--flame-background h4, .section--flame-background h5, .section--flame-background p {
  color: #fff;
}
.section--before-cover {
  padding-bottom: 15rem;
}
@media (max-width: 64em) {
  .section--end-triangel {
    margin-bottom: 3.5rem;
  }
  .section--end-triangel::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 35px solid #285078;
  }
}
.section--with-cover .section__cover {
  width: 100%;
  position: relative;
  margin-top: -15rem;
  z-index: 1;
}
.section--with-cover .section__header {
  margin-top: 5rem;
  text-align: center;
}
@media (min-width: 64em) {
  .section--with-cover .section__header {
    margin-top: 2rem;
  }
}
.section__slider {
  margin-top: 5rem;
}
.section__footer {
  padding-top: 2rem;
}
.section__footer--padding {
  padding: 3rem 2rem;
}
.section__youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.section__youtube-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.footer {
  background-color: #285078;
  color: #fff;
  padding: 5rem 2rem;
}
@media (min-width: 64em) {
  .footer__container {
    display: flex;
    max-width: 115rem;
    margin: 0 auto;
  }
}
.footer__logo {
  margin-bottom: 3rem;
}
.footer__logo img {
  max-width: 12.8rem;
}
.footer__text {
  margin-bottom: 3rem;
}
.footer__text a, .footer__text p, .footer__text h5 {
  color: #fff;
  font-size: 1.5rem;
}
.footer__text p {
  line-height: 2rem;
}
@media (min-width: 64em) {
  .footer__text {
    flex: 1 1 auto;
    padding: 0 5rem;
  }
  .footer__text--narrow {
    flex: 0 0 25rem;
  }
}
@media (min-width: 64em) {
  .footer__links {
    order: 3;
  }
}

.form__input {
  background-color: #285078;
  border: 0;
  border-radius: 3rem;
  color: #fff;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  width: 100%;
  outline: none;
}
@media (min-width: 64em) {
  .form__input {
    font-size: 2.5rem;
    padding: 2.5rem 3rem;
    border-radius: 33.5rem;
  }
}
.form__input::-moz-placeholder {
  color: #fff;
}
.form__input::placeholder {
  color: #fff;
}
.form__input:focus {
  background-color: #1a2e53;
}
.form__input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
  position: relative;
}
.form__btn-input-group {
  background-color: #285078;
  border-radius: 3.45rem;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.form__btn-input-group .form__input {
  flex: 1;
  border-radius: 3.45rem;
  border-right: none;
  padding: 2.35rem;
  font-size: 1.8rem;
}
.form__btn-input-group .form__input:focus {
  background-color: #285078;
}
.form__btn-input-group .form__button {
  background-color: #FBAA19;
  border: 0;
  border-radius: 50%;
  width: 7rem;
  height: 7rem;
  color: #fff;
  padding: 1rem;
  font-size: 2.8rem;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -1px;
  position: relative;
}
.form__custom-dropdown {
  position: relative;
  width: 100%;
  background-color: #285078;
  border-radius: 3rem;
  padding: 1.65rem 2rem;
  color: #fff;
  cursor: pointer;
  text-align: left;
}
.form__custom-dropdown .dropdown-selected {
  font-size: 1.6rem;
}
.form__custom-dropdown .dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  font-size: 1.6rem;
  color: #285078;
  padding: 0.5rem 0;
  border-radius: 0 0 2.5rem 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.form__custom-dropdown .dropdown-options li {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #cdd5d9;
  cursor: pointer;
}
.form__custom-dropdown .dropdown-options li:last-child {
  border-bottom: none;
}
.form__custom-dropdown .dropdown-options li:hover {
  background-color: #7DA5B9;
  color: #fff;
}
.form__custom-dropdown.open .dropdown-options {
  display: block;
}
@media (min-width: 64em) {
  .form__custom-dropdown {
    padding: 2.5rem 3rem;
    border-radius: 33.5rem;
  }
  .form__custom-dropdown .dropdown-options, .form__custom-dropdown .dropdown-selected {
    font-size: 2.5rem;
  }
}
.form__custom-dropdown.open {
  border-radius: 2.5rem 2.5rem 0 0;
  background-color: #1a2e53;
}
.form__custom-dropdown::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  color: #fff;
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
  font-size: 2rem;
  pointer-events: none;
}
.form__button {
  background-color: #fecc00;
  border: none;
  border-radius: 2.5rem;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  outline: none;
}
.form__button:hover {
  background-color: #FBAA19;
}
.form__button:disabled {
  background-color: #cdd5d9;
  cursor: not-allowed;
}
.form__checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.form__checkbox__input {
  display: none;
}
.form__checkbox__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  line-height: 2rem;
  cursor: pointer;
  text-align: left;
}
.form__checkbox__label::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-size: 2rem;
  flex: 1 0 2.5rem;
  font-weight: 600;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #285078;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background-color: #285078;
  transition: all 0.3s ease;
}
.form__checkbox__input:checked + .form__checkbox__label::before {
  color: #fff;
  background-color: #285078;
}
.form .form__radio {
  display: flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 1rem;
}
.form .form__radio--inline {
  flex-direction: row;
}
.form .form__radio__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form .form__radio__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  color: #285078;
  cursor: pointer;
  position: relative;
  padding-left: 3rem;
}
.form .form__radio__label::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border: 0.3rem solid #285078;
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form .form__radio__label::after {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  background-color: #285078;
  border-radius: 50%;
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.form .form__radio__input:checked + .form__radio__label::after {
  opacity: 1;
}
.form__textarea {
  background-color: #285078;
  border-radius: 1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  width: 100%;
  height: 10rem;
  outline: none;
  resize: none;
}
@media (min-width: 64em) {
  .form__textarea {
    font-size: 2.5rem;
    padding: 2.5rem 3rem;
  }
}
.form__textarea::-moz-placeholder {
  color: #cdd5d9;
}
.form__textarea::placeholder {
  color: #cdd5d9;
}
.form__textarea:focus {
  background-color: #1a2e53;
}
.form__label {
  display: block;
  font-size: 1.6rem;
  color: #0e192d;
  margin-bottom: 0.5rem;
  text-align: left;
}
@media (min-width: 64em) {
  .form__label {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.form__helper-text {
  font-size: 1.2rem;
  color: #cdd5d9;
  margin-top: 0.5rem;
}
.form__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 64em) {
  .form__title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
.form__validation-error {
  color: #ca2f28;
  font-weight: bold;
  background-color: #eca29f;
  font-size: 1.4rem;
  padding: 1rem;
  text-align: left;
  margin-top: -0.5rem;
  border-radius: 1rem;
}

.station__video-container {
  flex: 1;
  display: flex;
  height: 100%;
}
.station__video {
  width: 100%;
  height: auto;
}
.station__map-container {
  background-color: #1a2e53;
  height: 30rem;
}
@media (min-width: 64em) {
  .station__map-container {
    height: 50.5rem;
  }
}
.station__informations {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media (min-width: 64em) {
  .station__informations {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.station__information {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 4rem;
}
.station__map {
  width: 100%;
  height: 100%;
}
.station__questions {
  margin-top: 8rem;
}
.station__questions .list {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
.station__questions .list > li {
  font-size: 2.3rem;
  margin-bottom: 4rem;
  line-height: 3rem;
}
.station__questions .list > li::marker {
  font-size: 2.3rem;
}
.station__contact-info {
  line-height: 1.8;
}
.station__contact-info > i {
  margin-right: 1rem;
  font-size: 2.2rem;
  position: relative;
  bottom: -2px;
}

.station-list__title {
  margin-bottom: 0.3rem;
  font-size: 1.6rem;
  color: #285078;
  text-align: left;
}
.station-list h2.station-list__title {
  text-align: left;
  line-height: 1.6rem;
  margin-bottom: 1rem;
}
.station-list__address {
  font-size: 1.6rem;
  color: #285078;
  text-align: left;
  margin-bottom: 0.5rem;
}
.station-list__status {
  font-size: 1.6rem;
  color: #285078;
  text-align: left;
}
.station-list__item > .station-list__link {
  display: flex;
}
.station-list__text {
  flex: 1 1 auto;
}
@media (min-width: 64em) {
  .station-list__text {
    flex: 1 0 auto;
  }
}
.station-list__icon-status {
  flex: 0 0 6.4rem;
}
.station-list__icon-status .map-icon-explainer,
.station-list__icon-status .map-icon-explainer__icon {
  margin: 0;
}

.notify-me .notify-me__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 64em) {
  .notify-me .notify-me__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    gap: 2rem;
  }
}
.notify-me .form__input-group {
  margin: 0;
}
@media (min-width: 64em) {
  .notify-me .form__input-group {
    margin: 0;
  }
}
@media (min-width: 64em) {
  .notify-me__email {
    grid-column: 1/2;
  }
}
@media (min-width: 64em) {
  .notify-me__mobile {
    grid-column: 2/3;
  }
}
.notify-me__consent .form__checkbox__label {
  font-size: 1.2rem;
  color: #285078;
}
@media (min-width: 64em) {
  .notify-me__consent {
    grid-column: 1/-1;
    margin-top: 1rem;
    padding-left: 2rem;
  }
  .notify-me__consent .form__checkbox__label {
    font-size: 2rem;
  }
}
.notify-me__button {
  width: 100%;
}
@media (min-width: 64em) {
  .notify-me__button {
    grid-column: 3/4;
    grid-row: 1/-1;
  }
}

.logo {
  width: 100%;
  height: 100%;
}
.logo__link {
  display: block;
  overflow: hidden;
  margin-right: 2rem;
  height: 100%;
}
.logo__link img {
  max-width: 100%;
  width: auto;
  height: 100%;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  width: 3.5rem;
  cursor: pointer;
}
.burger-menu__line {
  background: #fff;
  border-radius: 0.5rem;
  height: 0.4rem;
  margin: 0.4rem 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.burger-menu__line:nth-of-type(1) {
  width: 50%;
}
.burger-menu__line:nth-of-type(2) {
  width: 100%;
}
.burger-menu__line:nth-of-type(3) {
  width: 75%;
}
.burger-menu input[type=checkbox] {
  display: none;
}
.burger-menu.is-active input[type=checkbox] ~ .burger-menu__line:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(5px, 1px);
  background: #fecc00;
}
.burger-menu.is-active input[type=checkbox] ~ .burger-menu__line:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
  background: #fecc00;
}
.burger-menu.is-active input[type=checkbox] ~ .burger-menu__line:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(15px, -7px) rotatez(45deg);
  background: #fecc00;
}

.button {
  background-color: #FBAA19;
  border: none;
  border-radius: 2.5rem;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  min-height: 5rem;
  font-size: 1.7rem;
  line-height: 5rem;
  padding: 0 2rem;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 64em) {
  .button {
    font-size: 2.5rem;
    padding: 1.5rem 3rem;
    border-radius: 33.5rem;
    min-width: 15rem;
  }
}
.button--border {
  border: 2px solid #1a2e53;
}
.button--block {
  display: block;
  width: 100%;
}
.button--mobile-block {
  display: block;
  width: 100%;
}
@media (min-width: 64em) {
  .button--mobile-block {
    display: inline-block;
    width: auto;
    padding: 0 4rem;
  }
}
.button--transparent {
  background: transparent;
}
.button--secondary {
  background-color: #1a2e53;
}
.button--blue {
  background-color: #7DA5B9;
  color: #fff;
}
.button--grey {
  background-color: #cdd5d9;
  color: #285078;
}
.button--margin-bottom {
  margin-bottom: 4rem;
}
.button--large {
  font-size: 1.5rem;
}
@media (min-width: 64em) {
  .button--large {
    font-size: 2.5rem;
  }
}
.button--small {
  padding: 0 1.5rem;
}
.button--outline {
  background-color: transparent;
  border: 1px solid #FBAA19;
  color: #FBAA19;
}
.button:hover {
  cursor: pointer;
}
.button:focus {
  outline: none;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 1rem;
  margin: 3rem 0;
}
@media (min-width: 64em) {
  .button-group {
    justify-content: center;
    gap: 3rem;
  }
}
.button-group > .button {
  color: #285078;
  line-height: 1;
  padding: 0 3rem;
  font-weight: 400;
}
@media (min-width: 64em) {
  .button-group > .button {
    font-size: 1.7rem;
    padding: 0 5rem;
    border-radius: 2.5rem;
  }
}
.button-group > .button.button--outline {
  color: #FBAA19;
}

.picture {
  border-radius: 2rem;
  filter: brightness(0.7) contrast(1) saturate(0.9);
  overflow: hidden;
}
.picture--no-filter {
  filter: none;
}
.picture .motion-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.picture--standard {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.picture--standard img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.picture--square {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.picture--square img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.picture--low {
  width: 100%;
  padding-top: 41.57%;
  position: relative;
}
.picture--low img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.picture--tall {
  width: 100%;
  padding-top: 66.67%;
  position: relative;
}
.picture--tall img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.picture--x-tall {
  width: 100%;
  padding-top: 125%;
  position: relative;
}
.picture--x-tall img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.picture--portrait {
  width: 100%;
  padding-top: 75%;
  position: relative;
}
.picture--portrait img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.picture--free {
  position: relative;
  overflow: visible;
}
.picture--free img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: auto;
}

.video-teaser {
  background-color: #0e192d;
  background-size: cover;
  background-repeat: no-repeat;
  width: 26.4rem;
  height: 26.4rem;
  border-radius: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 64em) {
  .video-teaser {
    width: 36.4rem;
    height: 36.4rem;
  }
}
.video-teaser::before {
  content: "\f144";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.video-teaser::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}
.video-teaser--wide {
  width: 100%;
  height: initial;
  aspect-ratio: 356/148;
}
.video-teaser--wide::before {
  font-size: 4rem;
  top: auto;
  left: auto;
  bottom: 1.3rem;
  right: 2rem;
  transform: initial;
}
.video-teaser--large {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
.video-teaser--large::before {
  font-size: 6rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  right: auto;
}
.video-teaser__content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.video-teaser__content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  text-align: left;
}
.video-teaser__content p {
  font-size: 1.4rem;
  margin: 0;
  text-align: left;
}

.video-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (min-width: 64em) {
  .video-teaser-list {
    width: 115rem;
  }
}
.video-teaser-list li {
  width: 100%;
}
@media (min-width: 48em) {
  .video-teaser-list li {
    width: calc(50% - 1.34rem);
  }
}
@media (min-width: 64em) {
  .video-teaser-list li {
    width: calc(33.333% - 1.34rem);
  }
}

.social-media {
  margin: 4rem 0 0 0;
}
.social-media__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
}
.social-media__list li > a {
  display: block;
  width: 5.4rem;
  height: 5.4rem;
  background-repeat: no-repeat;
}
.social-media__youtube {
  background-image: url("/images/bbn/icons/Youtube.png");
}
.social-media__instagram {
  background-image: url("/images/bbn/icons/Instagram.png");
}
.social-media__facebook {
  background-image: url("/images/bbn/icons/Facebook.png");
}
.social-media__linkedin {
  background-image: url("/images/bbn/icons/Linkedin.png");
}
.social-media__tiktok {
  background-image: url("/images/bbn/icons/Tiktok.png");
}

.map {
  height: 68.8rem;
  width: 100%;
}
.map__search {
  width: 100%;
}
@media (min-width: 64em) {
  .map__search {
    max-width: 115rem;
  }
}
.map__search-section {
  padding-bottom: 3rem;
}
.map .google-map {
  height: 100%;
}

.map-icon-explainer {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 2rem;
  color: #285078;
}
.map-icon-explainer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-icon-explainer__icon {
  background-color: #f2f2f2;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-icon-explainer__icon--large {
  width: 13rem;
  height: 13rem;
}
@media (min-width: 64em) {
  .map-icon-explainer__icon {
    width: 13rem;
    height: 13rem;
    margin-bottom: 2.2rem;
  }
}
.map-icon-explainer__icon--small {
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 1.6rem;
}
.map-icon-explainer__icon > img {
  max-width: 70%;
  max-height: 70%;
  display: block;
}
.map-icon-explainer__text {
  font-size: 1.3rem;
  text-align: center;
  max-width: 12.5rem;
}
@media (min-width: 64em) {
  .map-icon-explainer__text {
    font-size: 1.8rem;
    max-width: 18rem;
  }
}

.slider {
  margin: 0 -2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (min-width: 64em) {
  .slider {
    justify-content: center;
  }
}
.slider::-webkit-scrollbar {
  display: none;
}
.slider ul {
  display: flex;
  padding: 0;
  margin: 0 1rem;
  list-style: none;
}
.slider li {
  scroll-snap-align: start;
}
.slider li .video-teaser {
  margin: 0 1rem;
}
.slider li:first-of-type .video-teaser {
  margin-left: 2rem;
}

.video-player {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-player.active {
  opacity: 1;
  visibility: visible;
}
.video-player__video {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.video-player__video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}
.video-player__video::-webkit-media-controls-timeline-container {
  display: none !important;
}
.video-player__video::-webkit-media-controls-enclosure {
  overflow: hidden;
}
.video-player__video::-webkit-media-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-player__video::-webkit-media-controls-playback-rate-button {
  display: none !important;
}
.video-player__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 5rem;
  color: white;
  cursor: pointer;
}

@media (min-width: 64em) {
  .accordion {
    width: 115rem;
    margin: 0 auto;
  }
}
.accordion__item {
  border-bottom: 3px solid #fff;
}
.accordion__item:last-child {
  border-bottom: none;
}
.accordion h2.accordion__title {
  margin: 0.25rem 0;
  font-size: 3rem;
}
.accordion h5.accordion__text {
  font-weight: 600;
  margin-bottom: 3rem;
  font-size: 1.6rem;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
  padding: 2.5rem 2rem;
  background-color: #285078;
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.accordion__header h2.accordion__title {
  color: #fff;
  margin: -0.25rem 0;
  font-size: 1.8rem;
}
.accordion__header h5.accordion__text {
  color: #fff;
  font-size: 1.4rem;
  margin: 0;
}
@media (min-width: 64em) {
  .accordion__header h2.accordion__title {
    font-size: 3rem;
    margin-bottom: 0.4rem;
  }
  .accordion__header h5.accordion__text {
    font-size: 1.8rem;
  }
}
@media not all and (hover: none) {
  .accordion__header:hover {
    background-color: #1b3752;
  }
}
.accordion__header .accordion__icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  font-size: 2.5rem;
}
.accordion__header.is-open .accordion__icon {
  transform: rotate(180deg);
}
.accordion__header.is-open {
  background-color: #fecc00;
}
.accordion__header.is-open .accordion__title, .accordion__header.is-open .accordion__text {
  color: #285078;
}
.accordion__content {
  overflow: hidden;
  max-height: 0;
  padding: 0 2rem;
  opacity: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
.accordion .is-open + .accordion__content {
  max-height: 30rem;
  padding: 2.5rem 2rem;
  opacity: 1;
}

.questionnaire {
  margin-bottom: 4rem;
}
.questionnaire__progress {
  display: flex;
  justify-content: space-evenly;
  max-width: 40rem;
  margin: 0 auto;
}
@media (min-width: 64em) {
  .questionnaire__progress {
    max-width: 60rem;
  }
}
.questionnaire__progress-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #7DA5B9;
  font-size: 1.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}
@media (min-width: 64em) {
  .questionnaire__progress-item {
    width: 6.4rem;
    height: 6.4rem;
    font-size: 2.5rem;
  }
}
.questionnaire__progress-item.active {
  background-color: #285078;
}
.questionnaire__progress-item::before {
  content: attr(data-progress-id);
  position: absolute;
}
.questionnaire__progress-item.correct::before, .questionnaire__progress-item.incorrect::before {
  content: "";
  color: transparent;
}
.questionnaire__progress-item.correct {
  background-color: #17a927;
}
.questionnaire__progress-item.correct::after {
  content: "\f164";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  font-size: 2.2rem;
  color: white;
}
.questionnaire__progress-item.incorrect {
  background-color: #DB504A;
}
.questionnaire__progress-item.incorrect::after {
  content: "\f165";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  font-size: 2.2rem;
  color: white;
}
.questionnaire__section {
  margin-top: 5rem;
}
.questionnaire__answer {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
.questionnaire__answer > .button {
  width: 10rem;
}
.questionnaire__answer > .button:focus {
  background-color: #285078;
}
.questionnaire__form-button {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}
.questionnaire__form-button > .button {
  padding: 0 4rem;
}
.questionnaire__form-button .button--grey {
  font-weight: normal;
}
.questionnaire__container {
  background: #f2f2f2;
  margin-top: -2rem;
  text-align: center;
  padding: 6rem 2rem 6rem 2rem;
}
@media (min-width: 64em) {
  .questionnaire__container {
    margin-top: -3rem;
  }
}
.questionnaire__questions, .questionnaire__success, .questionnaire__form {
  width: 100%;
  margin-top: 3rem;
}
@media (min-width: 64em) {
  .questionnaire__questions, .questionnaire__success, .questionnaire__form {
    width: 115rem;
    margin: 6rem auto 3rem auto;
  }
}
.questionnaire__question p {
  font-size: 2.8rem;
  line-height: 3.8rem;
}
@media (min-width: 64em) {
  .questionnaire__question p {
    font-weight: 700;
  }
}
.questionnaire__form-item {
  text-align: left;
}
.questionnaire__form-item p {
  text-align: left;
}
.questionnaire__error {
  background: #fecc00;
  padding: 2rem;
  text-align: center;
}
.questionnaire__error a {
  color: #285078;
}
.questionnaire__sub-content {
  padding: 2rem;
  margin: 0 -2rem 2rem -2rem;
  background-color: #C8DAE4;
}
.questionnaire__error-icon, .questionnaire__success-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: #285078;
}

.list-block {
  margin: 0 -2rem;
  padding: 0;
}
@media (min-width: 64em) {
  .list-block {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0;
  }
}
.list-block__item {
  display: block;
  width: 100%;
}
@media (min-width: 64em) {
  .list-block__item {
    width: calc(50% - 1.34rem);
  }
}
.list-block__link {
  display: block;
  background-color: #cdd5d9;
  padding: 1.5rem 3rem;
  margin-bottom: 0.3rem;
  text-decoration: none;
}
@media not all and (hover: none) {
  .list-block__link:hover {
    background-color: #b0bdc3;
  }
}

.alert {
  background-color: #C8DAE4;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 0.9rem;
  text-align: left;
  display: flex;
  align-items: center;
}
.alert__header {
  color: #285078;
  text-align: left;
  flex: 1 1 auto;
  font-size: 2rem;
  line-height: 2.4rem;
}
.alert__icon {
  flex: 0 0 6rem;
  font-size: 4rem;
  color: #285078;
}
.alert__list .alert__list-item, .alert__list .alert__list-item::marker {
  color: #285078;
  font-size: 1.6rem;
}
.alert--danger {
  background-color: #eca29f;
}
.alert--danger .alert__list .alert__list-item,
.alert--danger .alert__list .alert__list-item::marker,
.alert--danger .alert__header {
  color: #9f2520;
}

.top-navigation {
  display: none;
  flex-direction: column;
  color: white;
  gap: 3rem;
  justify-content: center;
  transition: gap 0.3s ease-in-out;
}
@media (min-width: 64em) {
  .top-navigation {
    display: flex;
  }
}
.top-navigation__items {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: right;
}
.top-navigation__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-navigation__link {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 1.2rem;
  font-size: 1.5rem;
}
.top-navigation__link--some {
  width: 3rem;
  height: 3rem;
  background-color: #FBAA19;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-navigation__link--main {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.5rem 2rem;
  border-radius: 1.6rem;
}
.top-navigation__link--main.active {
  background-color: #FBAA19;
}
.top-navigation__link--utility.active {
  color: #FBAA19;
}
.top-navigation__link--utility.focus {
  border: 2px solid #FBAA19;
  border-radius: 1.6rem;
}
.top-navigation__link--utility.focus:hover {
  background-color: #FBAA19;
}

@media (max-width: 64em) {
  .contact__section {
    padding: 5rem 2rem;
  }
}
.contact .map {
  height: 90rem;
}

.employer__folder-picture {
  position: relative;
  left: -6rem;
  margin-top: -17rem;
}
.employer__folder-picture > img {
  width: 120%;
}
.employer__list.list > li {
  font-size: 2.3rem;
  margin-bottom: 2rem;
  line-height: 3rem;
}
.employer__list.list > li::marker {
  font-size: 2.3rem;
}
.employer__image-drag-up {
  position: relative;
  margin-top: -15rem;
}
@media (min-width: 64em) {
  .employer__video-container {
    width: 63.7rem;
    margin: 0 auto;
  }
}
