/*###########################
########## Warpper ##########
############################*/


.menuHgFarbe{
    
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;


} 

.menuHgFarbeAktiv{
    background-color: #000;
    transform: translate(3px);
    -webkit-transform: translate(3px);
    -moz-transform: translate(3px);
    -ms-transform: translate(3px);
    -o-transform: translate(3px);

    transform: scaleY(60) scaleX(90);
    -webkit-transform: scaleY(60) scaleX(90);
    -moz-transform: scaleY(60) scaleX(90);
    -ms-transform: scaleY(60) scaleX(90);
    -o-transform: scaleY(60) scaleX(90);
    transition: transform 2s;
    -webkit-transition: transform 2s;
    -moz-transition: transform 2s;
    -ms-transition: transform 2s;
    -o-transition: transform 2s;
}

/*###########################
############# Icon ##########
############################*/
#hamburgermenu, #close {
    background-color: #000;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 80px;
    height: 80px;
}





/*###########################
########## Balken ###########
############################*/
.burgermenuIconBalken{
    background-color: #fff;
    width: 20px;
    height: 2px;
    margin-bottom: 3px;
    margin-left: 35%;
}

.burgermenuIconBalken:first-child{
    margin-top: 45%;
}

.close:first-child{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.close:nth-child(3){
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

.close{
    background-color:#fff;
    position: absolute;
    top: 40px;
    right: 35px;
    width: 20px;
    height: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}



/*###########################
########## Links ############
############################*/

div > ul > li {
    list-style: none;
    
}

div > ul > li >a {
    text-decoration: none;
    color: #fff;
    line-height: 4em;
}

#nav-link{
    display: none;
    position: absolute;
    top: 10%;
    left: 25%;
}


