/* *************** */
/* *************** */
/* *************** */
/* *************** */
:root {
  /* font-family */
  --ff--base: "Overpass", sans-serif;
  /* font-weight */
  --fw--base: 400;
  --fw--bold: 900;
  /* line-height */
  --lh--base: 1.4;
  /* font-sizes */
  --fs--base:	19.5px;
  /* CI colors */
  --color--pd: #a61612;
  --color--ph: #1d1d1b;
  --color--g: #E6E7E8;
  /* colors */
  --color--background: #ffffff;
  --color--text: #1d1d1b;
  --color--grey-00: #ffffff;
  --color--grey-01: #F6F6F6;
  --color--grey-02: #E7E7E7;
  --color--grey-03: #C8C8C8;
  --color--grey-04: #A9A9A9;
  --color--grey-05: #8A8A8A;
  --color--grey-06: #6B6B6B;
  --color--grey-07: #4C4C4C;
  --color--grey-08: #2D2D2D;
  --color--grey-09: #0E0E0E;
  --color--grey-10: #000000;
}

/* -----------------------------------
Responsive
----------------------------------- */
@media (max-width: 991.98px) {
  :root {
    /* font-sizes */
    --fs--base:	18.5px;
  }
}
@media (max-width: 767.98px) {
  :root {
    /* font-sizes */
    --fs--base:	18.0px;
  }
}
@media (max-width: 575.98px) {
  :root {
    /* font-sizes */
    --fs--base:	17.5px;
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

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;
}

/*
 * _base.scss
 * This file is like a "reset"-file
 * All changes here are globally and should be kept general
 */
html, body {
  height: 100%;
  width: 100%;
}

html {
  overflow-x: hidden;
}

/*
body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    header {
        flex-shrink: 0;
    }
    main {
        flex-grow: 1;
    }
    footer {
        flex-shrink: 0;
    }
}
*/
body {
  background: var(--color--background);
}

/* overpass-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Overpass";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/overpass-v18-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/overpass-v18-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/overpass-v18-latin-regular.woff2") format("woff2"), url("../fonts/overpass-v18-latin-regular.woff") format("woff"), url("../fonts/overpass-v18-latin-regular.ttf") format("truetype"), url("../fonts/overpass-v18-latin-regular.svg#Overpass") format("svg"); /* Legacy iOS */
}
/* overpass-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Overpass";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/overpass-v18-latin-900.eot"); /* IE9 Compat Modes */
  src: url("../fonts/overpass-v18-latin-900.eot?#iefix") format("embedded-opentype"), url("../fonts/overpass-v18-latin-900.woff2") format("woff2"), url("../fonts/overpass-v18-latin-900.woff") format("woff"), url("../fonts/overpass-v18-latin-900.ttf") format("truetype"), url("../fonts/overpass-v18-latin-900.svg#Overpass") format("svg"); /* Legacy iOS */
}
html {
  font-size: var(--fs--base);
}

body {
  font-family: var(--ff--base);
  font-weight: var(--fw--base);
  color: var(--color--text);
  line-height: var(--lh--base);
  font-size: 100%;
}

/* -----------------------------------
Headlines 
----------------------------------- */
/* -----------------------------------
Sizes 
----------------------------------- */
/* -----------------------------------
Paragraph 
----------------------------------- */
strong, b {
  font-weight: var(--fw--bold);
}

/* -----------------------------------
Icon 
----------------------------------- */
[class^=icon-], [class*=" icon-"] {
  font-display: swap;
}

#modal-legal .modal__container {
  max-width: 900px;
  font-size: 0.9em;
}

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

p + * {
  margin-top: 1.5em;
}

* + h1,
* + h2,
* + h3,
* + h4 {
  margin-top: 1.5em;
}

p i, h1 i, h2 i, h3 i, h4 i {
  color: var(--color--ph);
  text-transform: inherit;
  text-decoration: inherit;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

header {
  margin: 0 auto;
  max-width: 1600px;
  padding: 2em 2em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo {
  max-width: 30em;
  display: inline-block;
  width: 100%;
  margin: 0 auto;
}
header .logo img {
  width: 100%;
  height: auto;
}

main {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  padding: 0 2em;
  flex: 1 1 100%;
}

main {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 0em;
  justify-content: center;
  grid-template-areas: "main" "decor";
}

.main {
  grid-area: main;
}

.decor {
  grid-area: decor;
}

.main {
  padding: 2em 0;
  display: flex;
  flex-direction: column;
}
.main .content {
  margin: auto;
  text-align: center;
}

h1 {
  opacity: 0.9;
  font-size: 0.9em;
}

.fs-large {
  font-size: 2em;
  font-weight: var(--fw--bold);
  margin: 0.75rem 0 0;
  line-height: 1.1;
}

p a {
  color: inherit;
  text-decoration: underline;
}
p a:hover {
  color: var(--color--ph);
}

.decor {
  position: relative;
  color: var(--color--ph);
  text-align: center;
  line-height: 0;
  aspect-ratio: 16/13;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.decor picture {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.decor picture.fg {
  z-index: 10;
  margin: 0 auto;
}
.decor picture.fg * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.decor picture.bg {
  z-index: -1;
  margin: 0 -25%;
  width: 150%;
  height: 200%;
  top: unset;
}
.decor picture.bg * {
  -o-object-fit: cover;
     object-fit: cover;
}
.decor picture.bg img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: auto;
}
.decor picture.bg:before, .decor picture.bg:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  z-index: 1;
}
.decor picture.bg:before {
  left: -1px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 1%, rgba(255, 255, 255, 0));
}
.decor picture.bg:after {
  right: -1px;
  background: linear-gradient(-90deg, rgb(255, 255, 255) 1%, rgba(255, 255, 255, 0));
}

/* -----------------------------------
Responsive
----------------------------------- */
.fs-large {
  font-size: 1.85em;
}

@media (max-width: 1199.98px) {
  .fs-large {
    font-size: 1.7em;
  }
}
@media (max-width: 991.98px) {
  .decor {
    width: 116%;
    margin: 0 -8%;
  }
}
@media (max-width: 767.98px) {
  .fs-large {
    font-size: 1.4em;
  }
  .decor {
    width: 120%;
    margin: 0 -10%;
  }
}
@media (max-width: 575.98px) {
  .fs-large {
    font-size: 1em;
  }
}/*# sourceMappingURL=main.css.map */