/* Hamburger Icon*/

#nav-icon-container {
  width:50px;
  height:50px;
  position:fixed;
  top:15px;
  right:15px;
  border-radius:5px;
  background: rgba(153,0,0,0.8);
  z-index:11;
}


#nav-icon {
  width: 30px;
  height: 23px;
  position: absolute;
  top:50%;
  left:50%;
  margin-left:-15px;
  margin-top:-11px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  background-image: url("../img/hamburger.svg");
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 0px;
  width: 100%;
  background: rgb(255,255,255);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}



/* Unser Icon */

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 9px;
}

#nav-icon span:nth-child(4) {
  top: 18px;
}

#nav-icon.open {
  background-image: none;
}

#nav-icon.open span {
  height: 3px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}



@media screen and (min-width: 750px) {

#nav-icon-container {
top:30px;
right:30px;
}

}

