/* @import url('https://fonts.googleapis.com/css2?family=Comfortaa&display=swap'); */

:root {
  --yellow-1: #f2c94c;
  --orange-1: #F2A530;
  --blue-141: #00A0E3;
  --color-text: #222;
  --color-links: inherit;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

.owf, .owf::before, .owf::after {
  font-family: owfont !important;
}

body {
  min-height: 100vh;
  background-color: #ebebeb;
  display: flex;
  flex-direction: column;
  line-height: 1.4em;
  color: var(--color-text);
}

.container {
  margin: 0 auto;
  width: min(90vw, 1200px);
}

#content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

header {
  height: 120px;
  background: var(--blue-141);
  color: #fff;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  text-transform: uppercase;
  font-weight: 2rem;
  font-weight: 900;
}
header .logo a {
  text-decoration: none;
  color: #fff;
}

footer {
  height: 60px;
  background-color: #444;
  display: flex;
  align-items: center;
  font-size: 0.8em;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(180,180,180);
}

footer a, footer a { color: var(--color-links); text-decoration: none; font-weight: 700; }
footer a:hover { color: rgba(255,255,255,0.6); text-decoration: underline; }

header nav { display: none; }

ul.main-navigation {
  list-style: none;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}

nav ul a {
  text-decoration: none;
  color: inherit;
  padding-left: 2rem;
}

h1, h2, h3, h4 {
    font-family: Comfortaa, cursive;
    margin-top: 1em;
    line-height: 1.3em;
}

h1 { font-size: 2.2em; padding: 0.5em 0; }
h2 { font-size: 1.8em; padding: 0.5em 0; }
h3 { font-size: 1.4em; padding: 0.5em 0; }

a { text-decoration: none; color: var(--blue-141); }
a:hover { text-decoration: underline; }

a {
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

p {
    margin-bottom: 1em;
}

#cookies-eu-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.9);
    z-index: 20000;
    color: #ebebeb;
    padding: 1rem 10vw;
}

#cookies-eu-banner .cookies-eu-text { margin: 0; }
#cookies-eu-banner .cookies-eu-buttons {
    display: flex;
    margin-left: 1rem;
}
#cookies-eu-banner .cookies-eu-buttons button {
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    border: 1px solid #000;
    border-radius: 0.3rem;
    color: #000;
    font-weight: 500;
}
#cookies-eu-banner .cookies-eu-buttons button:hover {
    color: #fff;
    transition: all ease-in-out 0.2s;
}
#cookies-eu-reject { background: rgba(242,165,48,1); }
#cookies-eu-reject:hover { background: rgba(242,165,48,0.6); }
#cookies-eu-accept { background: rgba(0,160,227,1); }
#cookies-eu-accept:hover { background: rgba(0,160,227,0.6); }



dl {
    display: block;
    padding-left: 2em;
    margin-bottom: 1.4em;
    width: inherit;
}


dl dt { font-weight: 500; padding: 0.6em 0 0.2em;}
dl dt+dd { padding-top: 0.5em; padding-left: 1em; }
dd br { display: block; content: ''; margin-bottom: 0.5em;}




@media screen and (max-width: 800px) {
    dl { padding-left: 1em; }

    #cookies-eu-banner {
        flex-flow: column;
    }
    #cookies-eu-banner .cookies-eu-buttons {
        margin-top: 5vw;
    }
}
