
#header{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  padding: 30px;
  min-height: 130px;
  margin-bottom: -130px;
  position: relative;
  z-index: 10;
}

#logo-container{
  width: 50%;
}

#logo-container img{
  width: 100%;
  max-width: 250px;
}

#menu-toggle-container{
  width: 50%;
}

#menu-toggle-container #menu-toggle{
  width: 30px;
  height: auto;
  margin-left: auto;
  display: block;
  cursor: pointer;
}

#menu-toggle-container #menu-toggle svg{
  width: 30px;
  height: auto;
}

#menu-off-canvas svg{
  width: 30px;
  height: 30px;
}

#menu-off-canvas {
  background: black;
  z-index: 11;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  color: white;
  fill: white;
  padding: 100px 50px 50px;
  height: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#menu-toggle-off{
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

#menu-off-canvas a {
  display: block;
  color: white;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 0;
  margin-bottom: 10px;
}

@media only screen and (max-width: 500px) {
  #menu-off-canvas{
    max-width: 100%;
  }
}