/*
rot: 255,23,81

*/
:root{
    --rot: rgb(255,23,81);
    --schwarz: rgba(10,22,39,0.8);
}
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    text-decoration: none;
    font-family:Verdana;
    font-size:14px;
    color:#000;
}
body{
    background: linear-gradient(to bottom,  rgba(245,246,246,1) 0%,rgba(219,220,226,1) 21%,rgba(184,186,198,1) 49%,rgba(221,223,227,1) 80%,rgba(245,246,246,1) 100%);

    /*min-height:1200vH;*/
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
}
header{
    background-color: var(--schwarz);
    height:150px;
    width:100vW;
    vertical-align: middle;
    line-height: 160px;
    position:fixed;
    top:0px;
    left:0px;
    box-shadow: 0px 0px 10px var(--schwarz);
    border-bottom:1px solid #fff;
    z-index:1000;
}

header img{
    vertical-align: middle;
    max-height:70%;
}
footer{
    background-color: var(--schwarz);
    height:40px;
    width:100vW;
    vertical-align: middle;
    line-height: 40px;
    position:fixed;
    bottom:0px;
    left:0px;
    box-shadow: 0px 0px 10px var(--schwarz);
    border-top:1px solid #fff;
    padding:0px 15px;
    text-align:right;
}
footer, footer *{
    color:#fffdfd;
}
footer a{
    display:inline-block;
    margin-right:15px;
    font-size:0.9em;
}


main{
    padding:150px 0px 40px 0px;
    width:95vW;
    margin:auto;
}

main > section{
    background:rgba(255,255,255,0.5);
    margin:10px auto 80px auto;
    padding:15px;
    border-radius:10px;
    min-height:calc(100vH - 230px);
    transition:all 0.8s;
    width:90%;
    height: calc(100vH - 230px);
    display:grid;
    grid-template-columns:33% 1fr;
    grid-column-gap:15px;
}

main > section.nocol{
    grid-template-columns:1fr;
    overflow-x:auto;
}


main > section > figure,main > section > article{
    border-radius:10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

h2{
    font-size:21px;
    color:var(--rot);
    text-align: center;
    text-shadow:2px 2px 2px var(--schwarz);
}
ul{
    margin-left:30px;
    margin-top:20px;
}
ul li{
    margin:3px 0px;
}

aside.tbl{
    display:table;
    width:calc(100% - 40px);
    margin-top:6px;
    margin-left:30px;
}
aside.tbl span{
    display:table-cell;
}
aside.tbl span:first-of-type{
    width: 245px;
}

header #burger{
    position:absolute;
    top:40px;
    right:60px;
    display:block;
    z-index:100;
    width:60px;
    cursor:pointer;
}
header #burger *{
    transition: all 0.3s;
}
header #burger span{
    display:block;
    height:12px;
    width:90%;
    border-bottom:6px solid var(--rot);
    border-radius:6px;
}
header #burger span:first-of-type{
    margin-left:10px;
}
header #burger span:last-of-type{
    margin-left:-10px;
}
header #burger:hover span{
    margin-left:0px;
    border-color:#fff;
}
.closer{
    display:block;
    position:absolute;
    top:35px;
    right:50px;
    height:50px;
    width:50px;
    border-radius:25px;
    border:3px solid var(--rot);
}
.closer span{
    display:block;
    height:6px;
    width:80%;
    background-color:  var(--rot);
    border-radius:6px;
    position:absolute;
    transition:all 0.5s;
}
.closer span:first-of-type{
    transform: rotate(-180deg);
    top:14px;
    left:4px;
}
.closer span:last-of-type{
    top:24px;
    left:4px;
}
.closer:hover span:first-of-type{
    transform: rotate(-45deg);
    top:18px;
    background-color:#fff;
}
.closer:hover span:last-of-type{
    transform: rotate(-135deg);
    top:18px;
    background-color:#fff;
}


/* ----------------------------- */
#html5lightbox-watermark{
    display:none !important;
}
#html5-lightbox-overlay{
    background-color: var(--schwarz) !important;
}
.html5-elem-box{
    border-radius:10px;
}
#galerie figure{
    display:inline-block;
    height:150px;
    width:150px;
    margin:10px;
    border-radius:10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow:4px 4px 8px var(--schwarz);
    opacity: 0.6;
    transition:all 0.8s;
}
#galerie figure:hover{
    opacity: 1;
    margin:15px 5px 5px 15px;
    box-shadow:0px 0px 3px var(--schwarz);
}
#galerie figure a{
    display:block;
    height:100%;
    width:100%;
}

#m_menu{
    display:block;
    height:100vH;
    width:100vW;
    background-color: var(--schwarz) !important;
    z-index:1001;
    position:fixed;
    top:0px;
    left:-110vW;
    padding-top:100px;
    transition:all 1s;
}
#m_menu.aktiv{
    left:0px;
}
#m_menu li{
    line-height:50px;
    border-bottom:1px solid #fff;
    color:#fff;
    list-style-type:none;
    padding-left:30px;
    transition:all 0.6s;
}
#m_menu li:hover{
    background-color:#fff;
    color:var(--rot);
}
#m_menu li a{
    color:inherit;
    font-size:21px;
    font-weight:bold;
    transition:all 0.2s;
    display:block;
}