.headerLeiste {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #202945;
    color: #ffffff;
    transition: .3s;
    z-index: 99;
}
.headerLeisteInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0 24px;
}
.headerLogo {
    line-height: 0;
    padding: 24px;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.headerLeiste.headerLeisteScroll .headerLogo {
    padding: 12px 24px;
}
.headerLogo img {
    width: 320px;
    padding: 0;
    transition: .3s;
}
.headerLogo .headerLogoText {
    margin: 0 32px;
    text-transform: uppercase;
    line-height: 1;
}
.headerLeiste.headerLeisteScroll .headerLogo img {
    width: 160px;
    padding: 0;
}
/*.headerLeisteInner a {*/
/*    position: relative;*/
/*    display: inline-block;*/
/*    padding: 6px 12px;*/
/*    margin: 0 4px;*/
/*    text-decoration: none;*/
/*    color: #ffffff;*/
/*    text-transform: uppercase;*/
/*    transition: .3s;*/
/*}*/
/*.headerLeisteInner a::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 3px;*/
/*    background: #b9bf15;*/
/*    transition: .3s;*/
/*}*/
/*.headerLeisteInner a:hover {*/
/*    text-decoration: none;*/
/*    color: #ffffff;*/
/*}*/
/*.headerLeisteInner a:hover::after {*/
/*    width: 100%;*/
/*}*/

.headerContent {
    margin-top: 110px;
    background: #202945;
    color: #ffffff;
}
.headerText {
    padding: 48px 12px;
    line-height: 1.1;
}
.headerTextTop {
    text-transform: uppercase;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #b9bf15;
}
.headerTextBottom {
    font-size: 80px;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 700;
}



#sidenavBtn {
    line-height: 1;
}
#sidenavBtn span.material-icons {
    padding: 24px;
    font-size: 40px;
    cursor: pointer;
    transition: .3s;
}
.headerLeiste.headerLeisteScroll #sidenavBtn span.material-icons {
    padding: 12px 24px;
}

#sidenav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    min-width: 100px;
    background: #babe00;
    color: #202945;
    transform: translateX(100%);
    z-index: 98;
    transition: .3s;
}
.header.active #sidenav {
    transform: translateX(0);
}
.navWrap {
    margin-top: 120px;
}
.nav {
    display: flex;
    height: 100%;
    align-content: center;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: left;
}

#sidenav a {
    position: relative;
    display: inline-block;
    padding: 12px;
    margin: 0 4px;
    text-decoration: none;
    color: #202945;
    text-transform: uppercase;
    transition: .3s;
    font-size: 24px;
    text-align: center;
}
.header.active #sidenav a {
    padding: 12px 80px;
}
#sidenav a.active {
    font-weight: 700;
}
#sidenav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #202945;
    transition: .3s;
}
#sidenav a:hover {
    text-decoration: none;
    color: #ffffff;
}
#sidenav a:hover::after {
    width: 100%;
}
#sidenav a span {
    vertical-align: middle;
}
#sidenav a span.material-icons {
    margin-right: 12px;
}



@media (max-width: 1366px) {

    .headerLeiste.headerLeisteScroll .headerLogo,
    .headerLogo {
        padding: 6px;
    }
    .headerLogo img {
        width: 180px;
    }
    .headerLeiste.headerLeisteScroll .headerLogo img {
        width: 120px;
    }

    #sidenavBtn span.material-icons {
        padding: 12px;
    }
    .headerLeiste.headerLeisteScroll #sidenavBtn span.material-icons {
        padding: 6px;
        font-size: 32px;
    }

    .headerContent {
        margin-top: 64px;
    }

    .headerText {
        padding: 32px 12px;
        text-align: center;
    }
    .headerTextTop {
        font-size: 22px;
    }
    .headerTextBottom {
        font-size: 40px;
    }

    .navWrap {
        margin-top: 80px;
    }
    #sidenav a,
    .header.active #sidenav a {
        padding: 6px 32px;
    }

}

@media (max-width: 600px) {
    .headerLogo .headerLogoText {
        display: none;
    }
}