header {
z-index: 1000;
position: fixed;
width: 100%;
height: 80px;
padding: 10px 5%;
box-sizing: border-box;
color: #FFFFFF;
background-color: #232A56;
border-bottom: 1px solid #F9C524;
display: grid;
-ms-grid-columns: 1fr auto auto;
grid-template-columns: 1fr auto auto;
align-items: center;
}

header > div:nth-child(1) {
-ms-grid-column: 1;
-ms-grid-row: 1;
justify-self: start;
}

header > div:nth-child(2) {
-ms-grid-column: 2;
-ms-grid-row: 1;
justify-self: end;
align-self: start;
}

header > div:nth-child(3) {
-ms-grid-column: 3;
-ms-grid-row: 1;
margin-right: 10%;
justify-self: end;
}

/**************************************************************************************/

nav {
display: inline-block;
}

input#navitoggle {
display: none;
}

.naviopen {
width: 35px;
height: 60px;
padding-top: 28px;
box-sizing: border-box;
display: block;
cursor: pointer;
}

.open {
background-color: #F9C524;
width: 35px;
height: 3px;
border-radius: 4px;
display: block;
cursor: pointer;
position: relative;
}

.open:before {
content: "";
background-color: #F9C524;
width: 35px;
height: 3px;
border-radius: 4px;
display: block;
position: relative;
top: -10px;
transform: rotate(0deg);
transition: all 0.3s ease;
}

.open:after {
content: "";
background-color: #F9C524;
width: 35px;
height: 3px;
border-radius: 4px;
display: block;
position: relative;
top: 7px;
transform: rotate(0deg);
transition: all 0.3s ease;
}

.navi {
position: fixed;
width: 100vw;
height: calc(100vh - 60px);
top: 80px;
left: 0;
background-color: rgba(35, 42, 86, 0.95);
}

.navicontent {
width: 100%;
padding: 50px 5%;
box-sizing: border-box;
max-height: calc(100vh - 80px);
overflow-y: auto;
}

.navicontent ul {
list-style-type: none;
margin: 0;
padding: 0;
margin-top: 30px;
}

.navicontent ul li {
margin-top: 5px;
}

.navicontent a {
color: #FFFFFF;
text-decoration: none;
font-weight: normal;
}

.navicontent a:hover {
color: #F9C524;
}

.navicontentstart a, .navicontentstart a:hover {
color: #232A56;
}

.navihl {
font-size: 135%;
font-weight: 700;
}

.navifx {
opacity: 0;
visibility: hidden;
transition: opacity 0.5s, visibility 0.5s;
}

.navifx .navicontent {
transform: translateY(0%);
transition: all 0.5s;
}

#navitoggle:checked ~ .navifx {
opacity: 1;
visibility: visible;
transition: opacity 0.5s;
}

#navitoggle:checked ~ .navifx .navicontent {
opacity: 1;
}

#navitoggle:checked ~ .naviopen .open {
background-color: transparent;
}

#navitoggle:checked ~ .naviopen .open:before {
content: "";
transform: rotate(45deg);
position: absolute;
top: 0;
right: 0;
z-index: 1;
}

#navitoggle:checked ~ .naviopen .open:after {
content: "";
transform: rotate(-45deg);
position: relative;
top: 0;
right: 0;
z-index: 1;
}

#navitoggle:not(:checked) ~ .navifx .navicontent {
transform: translateY(-30%);
}

/**************************************************************************************/

#headericons, #headernewsletter {
display: inline-block;
margin-right: 25px;
line-height: 60px;
}

#headericons a {
color: #F9C524;
text-decoration: none;
}

#headericons a:hover {
color: #FFFFFF;
}

#headernewsletter a {
font-weight: bold;
color: #232A56;
background-color: #F9C524;
border-radius: 5px;
padding: 2px 6px;
text-decoration: none;
}

#headernewsletter a:hover {
background-color: #FFFFFF;
}

/**************************************************************************************/

li.navisubtab {
color: #FFFFFF;
list-style: none;
margin: 0 0 4px 9px;
text-indent: -9px;
}

li.navisubtab:before {
content: "· ";
}

#navicontentmobil {
display: none;
}

.acc #footerhl {
font-size: 110%;
line-height: 1.1em;
font-weight: 400;
color: #F9C524;
margin-bottom: -15px;
padding: 0;
cursor: pointer;
}

.acc #footerhl:focus {
outline: none;
}

.acc .acc-content {
padding-bottom: 35px;
}

.acc .acc-content a {
font-weight: 300;
color: #FFFFFF;
text-decoration: none;
}

@media screen and (max-width: 700px) {
/**************************************************************************************/

#headericons {
display: none;
}

#navicontent, .navicontentstarttext {
display: none;
}

#navicontentmobil {
display: block;
margin-left: 3%;
width: 94%;
}

/**************************************************************************************/
}

@media screen and (max-width: 500px) {
/**************************************************************************************/

#headernewsletter {
display: none;
}

/**************************************************************************************/
}