@charset "UTF-8";
:root {
  --color:	#002145;
  --color-primary:	#d73237;
  --color-secondary:	#f5c846;
  --color-dark:	#000;
  --color-light:	#888;
  --color-red:	#d73237;
  --color-yellow:	#f5c846;
  --bg:	#fff;
  --bg-dark:	#002145;
  --bg-light:	#fff;
  --light:	#fff;
  --dark:	#111;
  --font-primary:	Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  --font-secondary:	Lobster, serif;
  --font-display:	swap;
  --font-size:	1.25rem;
  --font-size-intro:	1.875rem;
  --font-size-small:	1rem;
  --font-size-tiny:	0.875rem;
  --font-weight-extralight:	200;
  --font-weight-light:	300;
  --font-weight-regular:	400;
  --font-weight-medium:	500;
  --font-weight-bold:	700;
  --font-weight-black:	900;
  --icons:	Font Awesome 6 Free;
  --h1:	clamp(2.5rem, 5vw, 5rem);
  --h2:	clamp(2rem, 5vw, 3rem);
  --h3:	clamp(1.25rem, 5vw, 1.75rem);
  --h4:	clamp(var(--font-size), 5vw, 1.5rem);
  --h5:	var(--font-size);
  --h6:	var(--font-size-small);
  --button-padding:	.75rem 1rem;
  --input-color:	#002145;
  --input-bg:	#fff;
  --input-border-width:	.2em;
  --input-border-color:	#002145;
  --input-border-radius:	5px;
  --gap:	1.5rem;
  --flow:	10vmin;
  --flow-min:	5rem;
  --flow-save:	max(var(--flow), var(--flow-min));
  --atime:	0.3s;
  --flex-gap:	1.5rem;
  --inner-max:	80rem;
  --inner-narrow:	52rem;
  --border-width:	1px;
  --border-radius:	3px;
  --border-color:	rgba(0, 0, 0, 0.125);
}

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

html {
  scroll-behavior: smooth;
}

main {
  display: block;
}

hr {
  margin: max(var(--gap), var(--flow)/2) 0;
  border: 0;
  border-top: var(--border-width, var(--border-width)) solid var(--border-color);
}

:where(a) {
  text-decoration: none;
}
:where(a):link, :where(a):visited {
  color: currentColor;
}
:where(a).currentcolor {
  color: currentColor;
}

ul,
ol,
menu {
  padding: 0;
}

menu {
  list-style: none;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

ul,
ol {
  padding-left: 1.5rem;
}
ul li::marker,
ol li::marker {
  color: currentColor;
}

img,
svg,
video,
object,
iframe,
canvas {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

figure > a {
  display: block;
}
figure img {
  width: 100%;
}

table {
  border-collapse: collapse;
}

:where(q, blockquote) {
  quotes: "„" "“";
}

:where(blockquote) :is(p) {
  font-size: 1em;
}

abbr[title] {
  cursor: help;
  text-decoration: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 80%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

form {
  text-align: left;
}

fieldset {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
  position: relative;
  display: block;
  margin-bottom: 0.35rem;
  padding: 0;
  font-weight: normal;
}
label em {
  font-style: normal;
}

input,
button,
textarea {
  font: inherit;
}

select {
  cursor: inherit;
  outline: none;
  border: none;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
select::-ms-expand {
  display: none;
}

textarea {
  min-height: 10rem;
  padding: calc(var(--gap) / 2);
  white-space: revert;
  resize: vertical;
}

button {
  cursor: pointer;
  overflow: visible;
  border: 0;
  background: none;
  letter-spacing: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-font-smoothing: inherit;
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.15);
}

::selection {
  background: rgba(0, 0, 0, 0.15);
}

.theme--dark ::-moz-selection {
  background-color: rgba(255, 255, 255, 0.15);
}

.theme--dark ::selection {
  background-color: rgba(255, 255, 255, 0.15);
}

::-moz-placeholder {
  color: var(--placeholder, --color);
}

::placeholder {
  color: var(--placeholder, --color);
}

::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:focus {
  outline: 0;
}

:focus-visible {
  border-color: var(--accent-ui);
}

#root,
#__next {
  isolation: isolate;
}

[hidden] {
  display: none;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  background: var(--bg-dark);
}
html > * {
  box-sizing: inherit;
}

body {
  font-family: var(--font-primary);
  font-size: 100%;
  line-height: 1.5;
  color: var(--color);
  background-color: var(--bg);
}

figure {
  display: block;
  margin: 0;
}
figure img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

.dev {
  font-family: monospace;
  font-size: 100%;
  padding: 1.5rem;
  margin: 1.5rem auto;
  border-radius: 3px;
  border: 2px solid blue;
  max-width: var(--inner-max);
}

.yn-cookies {
  --color: var(--font-pri);
}
.yn-cookies .button.yn-cookies__button {
  --button-font: var(--color, currentColor);
  --button-border-color: var(--button-font);
  --button-solid-font: var(--font-sec);
  --button-solid-bg: var(--bg-sec);
  --button-solid-hover-font: var(--accent-pri-font);
  --button-solid-hover-bg: var(--accent-pri);
  text-align: center;
  cursor: pointer;
}
.yn-cookies .yn-cookies__settings__item {
  list-style: none;
}
.yn-cookies label {
  opacity: 1;
}
.yn-cookies label p.h4 {
  font-weight: var(--font-weight-medium);
}

/* lobster-regular - latin */
@font-face {
  font-family: "Lobster";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lobster-v31-latin-regular.woff2") format("woff2");
}
/* inter-300 - latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/inter-v19-latin-300.woff2") format("woff2");
}
/* inter-regular - latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-v19-latin-regular.woff2") format("woff2");
}
/* inter-700 - latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-v19-latin-700.woff2") format("woff2");
}
.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col.reverse {
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.start-xs {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  align-items: flex-start;
}

.middle-xs {
  align-items: center;
}

.bottom-xs {
  align-items: flex-end;
}

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 49rem;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    align-items: flex-start;
  }
  .middle-sm {
    align-items: center;
  }
  .bottom-sm {
    align-items: flex-end;
  }
  .around-sm {
    justify-content: space-around;
  }
  .between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 64em) {
  .container {
    width: 65rem;
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    justify-content: center;
    text-align: center;
  }
  .end-md {
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    align-items: flex-start;
  }
  .middle-md {
    align-items: center;
  }
  .bottom-md {
    align-items: flex-end;
  }
  .around-md {
    justify-content: space-around;
  }
  .between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    width: 76rem;
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    align-items: flex-start;
  }
  .middle-lg {
    align-items: center;
  }
  .bottom-lg {
    align-items: flex-end;
  }
  .around-lg {
    justify-content: space-around;
  }
  .between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
:where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1.25;
}
:where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) + p {
  margin-top: calc(var(--gap) / 2);
}
@media screen and (min-width: 48rem) {
  :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6).heading span, :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6).heading em {
    display: block;
  }
}
:where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6).ff-pri {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
}
:where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6).ff-sec {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-regular);
}

h1, .h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: var(--font-weight-light);
}
h1 em, .h1 em {
  font-size: var(--h1);
}

h2, .h2 {
  font-size: var(--h2);
}

h3, .h3 {
  font-size: var(--h3);
}

h4, .h4 {
  font-size: var(--h4);
}

h5, .h5 {
  font-size: var(--h5);
}

h6, .h6 {
  font-size: var(--h6);
}

:where(p, ul, ol, dl, address) {
  font-size: var(--font-size);
  line-height: 1.65;
}
:where(p, ul, ol, dl, address):not(:last-child) {
  margin-bottom: var(--gap);
}
:where(p, ul, ol, dl, address) a:not([class]), :where(p, ul, ol, dl, address) a[class*=yn-] {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.35em;
}

.tagline {
  display: block;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5lh;
}

.heading em {
  font-family: var(--font-secondary);
  font-style: normal;
}

body {
  background: var(--bg);
}

.site__header {
  position: absolute;
  inset: 0;
  bottom: auto;
  text-align: center;
  padding: calc(var(--gap) * 2);
  padding-bottom: var(--gap);
  z-index: 100;
}

.site__content {
  background: var(--bg);
}

.site__footer {
  font-size: var(--font-size-small);
  color: #fff;
  padding: calc(var(--gap) * 2);
  background: var(--bg-dark);
}
.site__footer ul, .site__footer ol {
  font-size: inherit;
}
.site__footer ul.list--inline, .site__footer ol.list--inline {
  gap: var(--gap);
}
.site__footer .site__logo {
  max-width: unset;
  filter: brightness(0) invert(1);
}
.site__footer .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

section {
  position: relative;
  padding-bottom: max(var(--flow), var(--flow-min));
}
section:not(.section--banner):first-child {
  padding-top: max(var(--flow), var(--flow-min));
}
section:has(.gfx-circle) {
  overflow-x: hidden;
}
section.bg {
  padding-top: max(var(--flow), var(--flow-min));
  background: var(--section-bg);
}
section.bg + section {
  padding-top: max(var(--flow), var(--flow-min));
}

.outer {
  padding-inline: var(--gap);
}

.inner {
  padding-inline: var(--gap);
  margin-inline: auto;
  width: 100%;
  max-width: var(--inner-max);
}

.bg {
  padding-bottom: var(--flow);
}
.bg.bg--light {
  --section-bg: #f1f1f1 ;
}
.bg.bg--flags {
  background: url("/assets/img/gfx_flags.png") top left repeat;
}

.site__logo {
  display: inline-block;
  max-width: max(25vmin, 12rem);
}

.nav__site__button {
  display: block;
}

.article > * + * {
  padding-top: var(--flow-save);
}

.article__heading {
  --size: 10vmin;
  position: relative;
}
.article__heading .heading {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 64rem) {
  .article__heading::before {
    content: "";
    position: absolute;
    top: -4rem;
    left: -5rem;
    right: auto;
    display: inline-block;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    aspect-ratio: 1/1;
    border: min(1.75rem, 3vmin) solid var(--color-secondary);
    background: var(--color-primary);
    z-index: 1;
  }
}

.article__images {
  position: relative;
  display: flex;
  gap: var(--gap);
}
.article__images figure {
  flex: 0.5;
}
@media screen and (min-width: 64rem) {
  .article__images {
    padding-inline: 20vmin 5vmin;
    gap: 0;
  }
  .article__images figure {
    flex: unset;
  }
  .article__images figure:first-child {
    position: absolute;
    bottom: -5rem;
    left: 5rem;
  }
}

.quote {
  font-family: var(--font-secondary);
  font-size: var(--h2);
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.35;
  margin-top: max(var(--flow), 3rem);
}
.quote p {
  line-height: inherit;
}

.section--entry {
  position: relative;
  background: none;
  overflow: hidden;
}
.section--entry::before {
  content: "";
  position: absolute;
  top: 38%;
  left: 0;
  width: 50%;
  height: 25%;
  background-size: contain;
  background-position: center;
  background-repeat: repeat-x;
  background-image: url("/assets/img/gfx_stripes.png");
  transform: translateY(-50%);
}

.entry {
  color: #fff;
}
.entry.flex {
  align-items: center;
  gap: 0;
}
.entry .entry__content {
  position: relative;
  padding: 10vmin 8vmin 10vmin 5vmin;
  background: var(--color-primary);
}
.entry .entry__image {
  position: relative;
}
@media screen and (min-width: 48rem) {
  .entry .entry__image {
    left: -3vmin;
    margin-right: -3vmin;
  }
}

.flex {
  --item-gap: 5vmin;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: var(--item-gap);
  margin-top: var(--gap);
}
.flex > * {
  flex: 1;
}
@media screen and (min-width: 48rem) {
  .flex {
    flex-direction: row;
  }
}

.item {
  position: relative;
  z-index: 10;
}
.item .item__image {
  margin-bottom: var(--gap);
}

.gfx-circle {
  --gfx-size: 30vmin;
  display: none;
  position: absolute;
  top: 10%;
  left: -10rem;
  width: max(20rem, var(--gfx-size));
  height: max(20rem, var(--gfx-size));
  border-radius: 100%;
  aspect-ratio: 1/1;
  border: min(4rem, 10vmin) solid var(--color-secondary);
  background: var(--dark);
}
@media screen and (min-width: 64rem) {
  .gfx-circle {
    display: inline-block;
  }
}

@media screen and (min-width: 64rem) {
  .form__image {
    margin-left: -15vmin;
  }
  .form__image img {
    max-height: 35rem;
  }
}

.banner {
  --max-height: 75vmin;
  position: relative;
  background-color: var(--bg);
}

.banner__image {
  overflow: hidden;
}
.banner__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: var(--max-height);
}
.banner__image::after {
  content: "";
  display: block;
  height: 2.5vmin;
  background-image: url("../img/gfx_flags.png");
  background-position: bottom left;
}
@media screen and (min-width: 64rem) {
  .banner__image::after {
    height: 5vmin;
  }
  .banner__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 33, 69, 0.5);
    z-index: 0;
  }
}

.banner__content {
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: currentColor;
  padding-top: var(--flow);
  z-index: 10;
}
.banner__content h1 span {
  display: block;
}
@media screen and (min-width: 64rem) {
  .banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    color: #fff;
    text-align: center;
    padding: 0;
  }
}

.banner__wave {
  display: none;
  position: absolute;
  bottom: -10vmin;
  left: 0;
  width: 100%;
  z-index: 0;
}
.banner__wave svg path {
  fill: rgba(194, 194, 194, 0.125);
}
.banner__wave svg path.path-1 {
  fill: #fff;
}
@media screen and (min-width: 64rem) {
  .banner__wave {
    display: block;
  }
}

.yn-article > * + * {
  margin-top: var(--gap);
}
.yn-article p + h3 {
  margin-top: calc(var(--gap) * 2);
}
.yn-article :where(h2, h3, h4) + :where(h2, h3, h4) {
  margin-top: calc(var(--gap) / 3);
}

.text-center .yn-buttons {
  justify-content: center;
}

.list {
  padding: 0;
  margin: 0;
}
.list.list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--gap) / 2);
  list-style: none;
}
.list.list--inline.text-center {
  justify-content: center;
}

.button {
  display: inline-block;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  color: var(--color);
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid transparent;
  background-color: var(--color-secondary);
  transition: opacity var(--atime) ease-in-out;
}
.button i[class*=fa-] {
  margin-right: 4px;
}
.button.button--social {
  font-size: var(--font-size-tiny);
  color: #fff;
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-dark);
}
.button:hover {
  opacity: 0.7;
}

form {
  width: 100%;
  margin-bottom: var(--gap);
}

fieldset legend {
  display: inline-block;
  margin-bottom: var(--gap);
  padding-right: var(--gap);
  border-radius: var(--border-radius);
  background: var(--bg);
}
fieldset .row + .row {
  margin-top: var(--gap);
}

label {
  display: block;
  font-size: var(--font-size-tiny);
  transition: color var(--atime) ease, background var(--atime) ease, border var(--atime) ease;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-regular);
  color: var(--input-color, var(--color));
  line-height: var(--lh);
  padding: var(--button-padding);
  border-radius: var(--input-border-radius);
  border: var(--input-border-width) solid var(--input-border-color);
  background-color: var(--input-bg, transparent);
  transition: color var(--atime) ease, background var(--atime) ease, border var(--atime) ease;
  box-shadow: inset 0 -2px 5px rgba(73, 111, 235, 0.25);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--placeholder);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--placeholder);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: unset;
}

input[type=radio],
input[type=checkbox] {
  z-index: -1;
  position: absolute;
  left: 0;
  width: auto;
  padding: 0;
  opacity: 0;
}
input[type=radio] + label,
input[type=checkbox] + label {
  display: block;
  opacity: 1;
}
input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  float: left;
  display: block;
  height: 20px;
  width: 20px;
  margin-right: 0.75rem;
  border: var(--input-border-width, 2px) solid var(--input-border-color);
  background-color: var(--input-bg);
}
input[type=radio] + label::before, input[type=radio] + label::after,
input[type=checkbox] + label::before,
input[type=checkbox] + label::after {
  border-radius: var(--border-radius);
  transition: color calc(var(--atime) / 2) ease, background calc(var(--atime) / 2) ease, border calc(var(--atime) / 2) ease;
}
input[type=radio] + label::after,
input[type=checkbox] + label::after {
  margin-top: 2px;
}
input[type=radio] + label > div,
input[type=checkbox] + label > div {
  font-size: 1em;
}
input[type=radio]:disabled + label,
input[type=checkbox]:disabled + label {
  cursor: auto;
  color: var(--font-light);
}
input[type=radio]:disabled + label::before,
input[type=checkbox]:disabled + label::before {
  background-color: var(--input-border-color);
  box-shadow: none;
}
input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  height: 12px;
  width: 12px;
  background-color: var(--color-primary);
}
input[type=radio]:focus-visible + label::before,
input[type=checkbox]:focus-visible + label::before {
  outline: var(--outline-width, 3px) solid var(--access-ui, blue);
}

input[type=radio] + label::before {
  border-radius: 50%;
}

select {
  padding-right: calc(var(--gap) * 2);
  background-image: linear-gradient(45deg, transparent 50%, var(--input-color) 50%), linear-gradient(135deg, var(--input-color) 50%, transparent 50%), linear-gradient(to right, var(--border-color), var(--border-color));
  background-position: calc(100% - 20px) calc(1em + 5px), calc(100% - 15px) calc(1em + 5px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px calc(100% - 15px);
  background-repeat: no-repeat;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 black;
}
select::-webkit-calendar-picker-indicator {
  display: none !important;
}

.yn-form fieldset .button {
  margin-top: 0;
}

.widget {
  margin-bottom: var(--gap);
}
.widget.widget--submit {
  margin-top: var(--gap);
}

.yn-consents p {
  font-size: 1em;
}
.yn-consents input[type=checkbox] + label::before {
  margin-right: 1rem;
}
.yn-consents .ynfinite-consent-text {
  font-size: var(--font-size-small);
  overflow: hidden;
}

.yn-form-grid-row {
  flex-direction: column;
}
.yn-form-grid-row:last-of-type .widget {
  margin: 0;
}
@media screen and (max-width: 48rem) {
  .yn-form-grid-row .yn-form-grid-field {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 48rem) {
  .yn-form-grid-row {
    flex-direction: row;
  }
}

html .widget.widget--file .widget__label {
  display: block;
  font-size: var(--button-font-size);
  font-weight: var(--font-weight-regular);
  padding: 0.75rem var(--item-gap);
  background: var(--input-bg);
  transition: opacity var(--atime) ease;
}
html .widget.widget--file .widget__label ul {
  padding: 0.75rem 0 0 !important;
  margin-top: 0.75rem !important;
  border-top: 1px dashed var(--border-color);
}
html .widget.widget--file:hover .widget__label {
  opacity: 1;
}

.message {
  padding: var(--gap);
  border-radius: var(--border-radius);
  background: var(--bg-verylight);
}

body:not(:has(.section--banner)) .site__header {
  position: relative;
}

body:has(.section--banner) .site__logo {
  filter: brightness(0) invert(1);
}

section.section--why {
  padding-bottom: max(var(--flow) * 2, var(--flow-min));
}

.section--entry {
  padding-bottom: max(var(--flow) * 2, var(--flow-min));
}

section.section--partners .gfx-circle {
  top: 20%;
  left: auto;
  right: -10rem;
  background: var(--color-primary);
}

section.section--cta {
  color: #fff;
  padding: calc(var(--gap) * 1.5);
}
section.section--cta .outer {
  text-align: center;
  padding: var(--gap);
  background: var(--bg-dark);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}
section.section--cta .text {
  margin-top: var(--gap);
}
@media screen and (min-width: 48rem) {
  section.section--cta .outer {
    padding: calc(var(--gap) * 2.5) calc(var(--gap) * 2);
  }
  section.section--cta .text {
    padding-inline: 10vmin;
  }
}

@media screen and (max-width: 64rem) {
  .rellax {
    transform: none !important;
  }
}
.row {
  --item-gap: var(--gap);
  margin-left: calc(var(--item-gap) * -1);
  margin-right: calc(var(--item-gap) * -1);
}
.row[class*=center-], .row[class*=end-] {
  text-align: left;
}
.row > div[class*=col-] {
  padding-left: var(--item-gap);
  padding-right: var(--item-gap);
}
@media screen and (max-width: 64rem) {
  .row > div[class*=col-]:not(:last-child) {
    margin-bottom: var(--item-gap);
  }
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.no-transform {
  text-transform: none;
}

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

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

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

@media screen and (min-width: 48rem) {
  .text-left-sm {
    text-align: left;
  }
  .text-center-sm {
    text-align: center;
  }
  .text-right-sm {
    text-align: right;
  }
}
@media screen and (min-width: 64rem) {
  .text-left-md {
    text-align: left;
  }
  .text-center-md {
    text-align: center;
  }
  .text-right-md {
    text-align: right;
  }
}
@media screen and (min-width: 75rem) {
  .text-left-lg {
    text-align: left;
  }
  .text-center-lg {
    text-align: center;
  }
  .text-right-lg {
    text-align: right;
  }
}
.hidden {
  display: none;
}

.ui-hidden {
  visibility: hidden;
}

@media screen and (min-width: 48rem) {
  .visible-sm {
    display: none !important;
  }
}
@media screen and (min-width: 64rem) {
  .visible-md {
    display: none !important;
  }
}
@media screen and (min-width: 75rem) {
  .visible-lg {
    display: none !important;
  }
}
@media screen and (max-width: 48rem) {
  .hidden-sm {
    display: none !important;
  }
}
@media screen and (max-width: 64rem) {
  .hidden-md {
    display: none !important;
  }
}
@media screen and (max-width: 75rem) {
  .hidden-lg {
    display: none !important;
  }
}
[class^=z] {
  position: relative;
}

.z0 {
  z-index: 0;
}

.z10 {
  z-index: 10;
}

.z20 {
  z-index: 20;
}

.z30 {
  z-index: 30;
}

.z40 {
  z-index: 40;
}

.z50 {
  z-index: 50;
}

.z60 {
  z-index: 60;
}

.z70 {
  z-index: 70;
}

.z80 {
  z-index: 80;
}

.z90 {
  z-index: 90;
}

.z100 {
  z-index: 100;
}

.container {
  container-type: inline-size;
}
.container--inline {
  container-type: inline-size;
}
.container--block {
  container-type: size;
}

img.auto {
  width: auto;
  max-width: unset;
}

.stretch {
  display: flex;
}
.stretch > * > img {
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.stretch:is(figure) {
  height: 100%;
}

.truncate > p {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1lh;
  width: 85%;
  overflow: hidden;
}

.truncate--lines {
  position: relative;
  margin-top: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.truncate--lines::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  top: auto;
  height: 1lh;
  background: linear-gradient(to right, transparent, var(--section-bg, #fff) 95%);
  pointer-events: none;
}

.mtxs {
  margin-top: 1.5rem;
}

.mbxs {
  margin-bottom: 1.5rem;
}

.mts {
  margin-top: 3rem;
}

.mbs {
  margin-bottom: 3rem;
}

.mtm {
  margin-top: 5vmin;
}

.mbm {
  margin-bottom: 5vmin;
}

.mtl {
  margin-top: 10vmin;
}

.mbl {
  margin-bottom: 10vmin;
}

.mtxl {
  margin-top: 20vmin;
}

.mbxl {
  margin-bottom: 20vmin;
}

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