* { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body {
    margin: 0;
    padding: 0;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

div#header {
    position: fixed;
    width: 100%;
    padding: .2em;
    z-index: 99;
}

div#headerDefault {
    padding: .2em;
}

div#headerInner {
    margin: auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
}

div.headerText {
    padding-left: 1em;
    margin: auto;
    max-width: 1200px;
}

div.headerText h4 { color: #666; margin: 0; }
div.headerText h2 { margin: 0; }
div.headerText h3 {
    color: #666;
    margin-top: 0;
}

div#header,
div#headerDefault,
div#headerInner { height: 100px; }

div#hero {
    /*padding-top: 200px;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    /*background-color: rgb(33, 33, 38);
    background-image: url("badge.svg");*/
    height: 100vh;
    object-fit: contain;
    align-self: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
    /*border-bottom: 1px solid rgb(33, 33, 38);*/
}

#heroVideo {
    position: fixed;
    right: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(50%);
    z-index: -99;
}

div#hero div {
    text-align: center;
    color: white;
    padding: 2em;
    margin: auto;
    width: 70%;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: .5em;
    text-shadow: #000 1px 0 10px;
}

div#slogans {
    background-color: #2d973f;
    color: white;
    text-transform: uppercase;
}

div#slogans h3 { font-weight: bold; }

div#slogansInner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 1em;
    padding-right: 1em;
}
@media (max-width: 599px) {
    div#slogans { display: none; }
}

div#footer {
    background-color: #00426a; /* #00426a */
    color: white;
    flex-grow: 1;
}

div#footerInner {
    max-width: 1200px;
    margin: auto;
    padding: 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

div.contentFlex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

div#slogansInner img {
    fill: white;
    color: white;
    max-height: 48px;
    max-width: 48px;
}

div#footerLogos {
    display: flex;
    flex-direction: column;
}


.box25 { flex: 25%; }
.box30 { flex: 30%; }
.box40 { flex: 40%; }
.box50 { flex: 50%; }
.box60 { flex: 60%; }
.box70 { flex: 70%; }
.box75 { flex: 75%; }
.box80 { flex: 80%; }

div#footerInner a { color: darkgray; }

div#content,
div.blocks,
div.bigTitle {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    font-size: large;
    color: black;
}

div.bigTitle {
    margin-bottom: 1em;
    text-shadow: #000 1px 0 10px;
}

div#contentInner {
    padding: 1em;
}

div#content img {
    width: 100%;
    border: 1px solid #666;
    border-radius: .25em;
}

div#content p img {
    width: fit-content;
    border: 0;
}

div.blocks {
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

div.blocks img {
    width: 100%;
}
.svg {
    width: 100%;
    height: 100px;
}

div.block {
    width: 100%;
    background-color: rgba(135, 145, 195, 0.5);
    border-radius: .25em;
    margin: 1em;
    padding: 1em;
}

div.blocks h2,
div.bigTitle h1,
div.bigTitle p {
    text-align: center;
}

pre {
    background-color: rgba(135, 145, 195, 0.5);
    border-radius: .25em;
    margin: 1em;
    padding: 1em;
    font-family: monospace;
    white-space: pre-wrap;
}

code.highlighter-rouge {
    background-color: rgba(135, 145, 195, 0.5);
    padding: .2em;
    font-weight: bold;
}

h1, h2, h3, h4 {
    font-weight: normal;
}

blockquote {
    background-color: #004490;
    border-radius: .25em;
    padding: .3em;
    font-family: monospace;
    color: white;
}

a,
a:hover,
a:visited {
    color: #666;
    text-decoration: underline;
}

a:hover {
    text-decoration:dashed;
    color: #000;
}

.btn {
    border-radius: .25em;
    background-color: rgb(177, 16, 20);
    padding: .6em;
    color: white;
    text-decoration: none;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.btn:hover {
    color: white;
    border: 1px solid white;
}

.btn img {
    margin-right: .5em;
    vertical-align: middle;
}

img.distro {
    display: none;
    height: 25px;
}

.center { text-align: center;}

.newsblock a { text-decoration: none; }

@media (min-width: 750px) {
    img.distro { display: inline-block; }
}

@media (min-width: 870px) {
    div.block {
        margin: 0;
        margin-bottom: 1em;
        flex-basis: 45%;
    }
}

#markdown-toc::before {
    content: "Contents";
    font-weight: bold;
}

#markdown-toc ul {
    list-style: decimal;
}

#markdown-toc {
    background-color: rgba(135, 145, 195, 0.5);
    padding: 1em;
    padding-left: 2em;
    list-style: decimal;
    float: right;
}

#markdown-toc a,
#mardown-toc a:visited {
    text-decoration: none;
}

#download { scroll-margin-top: 100px; }

table { width: 100%; }

th {
    background-color: #004490;
    color: white;
    padding: .5em;
}

td {
    width: 50%;
    background-color: rgba(135, 145, 195, 0.5);
    padding: .5em;
}

.td { width: unset; }

hr {
    border-color: rgba(135, 145, 195, 0.5);
    margin-top: 2em;
    margin-bottom: 2em;
}

#breadcrumbs {
    padding: .5em;
}

.publishedDate {
    margin-top: 5em;
    padding: 1em;
    background-color: rgba(135, 145, 195, 0.5);
    border-radius: .25em;
    font-style: italic;
}

img.platform { max-width: fit-content; }
ul.platform { list-style-type: none; }

/* MENU */

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu a { text-decoration: none; }

.menu > li {
    margin: 0 1rem;
    overflow: hidden;
    color: white;
    line-height: 100px;
    font-weight: bold;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    margin-right: 1em;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle { display: none; }

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #00426a;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: "";
    margin-top: -8px;
}

.menu-button::after {
    content: "";
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

@media (max-width: 900px) {
    .menu-button-container { display: flex; }
    .mvts { display: none;}

    .menu {
        position: absolute;
        top: 0;
        margin-top: 110px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked ~ .menu li {
        border: 1px solid white;
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
        line-height: 2.5em;
    }

    .menu > li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: #00426a;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }

    .menu a {
        display: inline-block;
        width: 100%;
        height: 100%;
        text-align: center;
        color: white;
    }
    /*.menu a:hover { color: #00426a; }*/

    .menu > li:not(:last-child) {
        border-bottom: 1px solid white;
    }
}

.darkAlpha {
    background-color: rgba(33, 33, 38, 0.8) !important;
}

.blurry {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

blockquote::before { content: /*open-quote*/"“"; }
blockquote::after { content: /*close-quote*/"„"; }


blockquote::before,
blockquote::after {
    font-family: serif;
    opacity: 0.25;
    font-size: 6em;
}
blockquote::before {
    padding-bottom: .6em;
    padding-right: .2em;
}
blockquote::after {
    padding-top: .6em;
    padding-left: .2em;
    padding-right: .2em;
}

blockquote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    font-style: italic;
}

table {
    width: 100%;
    table-layout: fixed;
}

img.hero {
    width: 100%;
    object-fit: contain;
    height: auto;
}

.galleryblock {
    background-color: unset !important;
    border-radius: unset !important;
}
.fileblock {
    margin: unset !important;
    padding: unset !important;
    padding-bottom: 1em !important;
}
.galleryblock img {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
}
.fileblock img { height: auto  !important; }

.contact {
    border: unset !important;
    height: 64px;
    width: auto;
}
