*{
    margin:0;
    padding:0;
    font-family:Arial,Verdana;
    font-size:14px;
    text-decoration:none;
    box-sizing: border-box;
    color:#000;
}

html::before {
    content: ' ';
    display: block;
    background-image: url(../image/bg.webp);
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 100vh; width: 100vw;
    top: 0; bottom: 0; left: 0; right: 0;
    position: fixed;
    z-index: -10;
}

html{
    background-color:#FFFFFF;
    background-size:cover;
    background-attachment:fixed;
    background-repeat:no-repeat;
    background-position: center center;
}
header{
    height:300px;
    position: sticky;
    top:-120px;
    left:0px;
    background-color: rgba(84,93,133,0.7);
    border-bottom:1px solid rgb(69,38,15);
    transition: all 0.7s;
    z-index:500;
}
header.inaktiv,footer{
    background-color: rgba(84,93,133,0.9);
}
header #logo{
    max-height: 70%;
    position: absolute;
    top:40px;
    left:50px;
    transition: all 0.7s;
}
header.inaktiv #logo{
    max-height: 40%;
    position: absolute;
    top:auto;
    left:50px;
    bottom:30px;
}
header h1{
    position: absolute;
    bottom:215px;
    right:20vW;
    font-size:2.4em;
    color: rgba(255,255,255,0.7);
    text-shadow:4px 4px 8px #000;
    font-style: italic;
}
header ul{
    position: absolute;
    bottom:110px;
    right:27vW;
    list-style-type: "\2713\00A0";
    transition: all 0.7s;
}
header.inaktiv ul{
    opacity:0;
}
header ul li{
    font-weight: bold;
    font-size:1.8em;
    color: rgba(255,255,255,0.7);
    text-shadow:4px 4px 8px #000;
    font-style: italic;
    padding-left:10px;
}
header menu{
    list-style-type: none;
    position: absolute;
    bottom:0px;
    right:5vW;
}
header menu li{
    display: inline-block;
}
header menu li a{
    display: inline-block;
    font-size:2rem;
    color: rgba(255,255,255,0.5);
    text-shadow:4px 4px 8px #000;
    padding:5px 10px;
    transition: all 0.7s;
}
header menu li:hover a,header menu li.aktiv a{
    color: rgba(255,255,255,1);
}
footer{
    height:50px;
    width:100%;
    line-height: 50px;
    position: fixed;
    left:0;
    bottom: 0;
    z-index:500;
    border-top:1px solid rgb(69,38,15);
}
footer menu{
    list-style-type: none;
    position: absolute;
    right:5vW;
}
footer menu li{
    display: inline-block;
}
footer menu li a{
    display: inline-block;
    font-size:1.1rem;
    color: rgba(255,255,255,0.5);
    text-shadow:4px 4px 8px #000;
    padding:0px 8px;
    line-height: 50px;
    transition: all 0.7s;
}
footer menu li:hover a,footer menu li.aktiv a{
    color: rgba(255,255,255,1);
}
main section{
    display: grid;
    min-height:100vH;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 20px;
    margin-bottom: 45vH;
}
main section:last-of-type{
    margin-bottom: 50px;
}
main section#home,main section#datenschutz,main section#impressum{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
main section article{
    background-color:rgba(255,255,255,0.8);
    padding: 20px;
    box-shadow:4px 4px 9px #000;
    border-radius:15px;
    border-top-left-radius:0;
}
main section article h2{
    font-size:1.3em;
    margin-bottom:14px;
    color:#EA5F00;
    text-shadow: 1px 1px 1px #000;
}
p{
    line-height:1.2em;
}
small{
    font-size:0.7em;
}
.checklist{
    display:block;
    width:19px;
    height:22px;
    cursor:pointer;
    position:absolute;
    top:20px;
    right:10px;
    background-image: url(../image/checklist.svg);
    background-position: center center;
    background-size: cover;
}
.ui-dialog{
    z-index:1000 !important;
}
.ui-dialog ul{
    margin-left:20px;
}

#index article{
    background-image: url(../image/euro_d.png);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    padding-left:180px;
}
#formulare li a{
    float:right;
}
/* ------------------------------ [+] Formular ------------------------------------------------- */

form{
    width: 89%;
    margin:auto;
    line-height:34px;
}
#kontakt a{
    color:inherit;
    font-size:inherit;
}
form label{
    display:inline-block;
    vertical-align:top;
    width:15%;
    padding-left:20px;
}

form input,form textarea{
    width:82%;
    padding:5px 7px;
    border-radius:5px;
    border:1px solid #969696;
}

form input[type=submit],form input[type=reset]{
    width:40.5%;
    background-color: rgba(84,93,133,0.7);
    color:#fff;
    cursor:pointer;
}
form input[name=vorname]{
    display:none;
}

form textarea{
    margin-top:3px;
    height:9em;
    resize: none;
}

form div{
    text-align: center;
    color:#EA5F00;
}

.fehler{
    color:#EA5F00;
    font-weight:bold;
}
.erfolg{
    color:#339966;
    font-weight:bold;
}
/* ------------------------------ [-] Formular ------------------------------------------------- */