#header {
  width: 100%;
  height: 136px;
  background-color: #fff;
  position: fixed;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  transition: .5s ease-in-out;
	
}

nav {
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: .5s ease-in-out;
z-index: 1000;
}



.menu a {
	color: black;
}

.menu li {
  display: block;
  height: 100%;
  
  padding: 1em;
  text-decoration: none;
  font-family: 'Montserrat';
  font-size: 1.1em;
  color: #4d4959;
}

.menu li:hover {
	
	border-left: 1px solid #367dc0;
}

.menu li a:hover {
	color: #367dc0;
	
}

.menu  {
	position: fixed;
	right: -450px;
	top: 0;
	width: 300px;
	background-color: white;
	padding: 150px 0 50px 20px;
	border-left: 1px solid grey;
	border-bottom: 1px solid grey;
	transition: 1s ease-in-out;
}


.logo-holder {
  display: none;
	
	
}

.logo-holder {
   display: block;
	  position: absolute;
	  left: 20px;
	  top: 20px;
    
    width: 160px;
    height: 100px;
    margin: 0 0rem;
    
	  visibility: visible;
	  opacity: 1;
	  transition: 1s ease-in-out;
  }



#nav-open {
	width: 35px;
	height: 35px;
	position: absolute;
	top: 50px;
	right: 50px;
	visibility: visible;
	opacity: 1;
	z-index: 2000;
	transition: 1s ease-in-out;
	
}

#nav-open div:nth-child(1) {
	height: 1px;
	width: 100%;
	background-color: grey;
}

#nav-open div:nth-child(2) {
	height: 1px;
	width: 100%;
	background-color: grey;
	margin-top: 10px;
}

#nav-open div:nth-child(3) {
	height: 1px;
	width: 100%;
	background-color: grey;
	margin-top: 10px;
}

#nav-close {
	width: 35px;
	height: 35px;
	position: absolute;
	top: 50px;
	right: 50px;
	visibility: hidden;
	opacity: 0;
	z-index: 2000;
	transition: 1s ease-in-out;
	
}

#nav-close div:nth-child(1) {
	height: 1px;
	width: 100%;
	background-color: grey;
	transform: rotate(-45deg);
	position: absolute;
	top: 10px;
}

#nav-close div:nth-child(2) {
	height: 1px;
	width: 100%;
	background-color: grey;
	margin-top: 10px;
	transform: rotate(45deg);
}


@media screen and (min-width:1025px) {
  

  header {
    width: 100%;
    height: 136px;
    background-color: #fff;
    position: fixed;
    z-index: 10;
    transition: .5s ease-in-out;
  }

  nav {
    margin-top: 1.5rem;
    background-color: #fff;
    width: auto;
    height: auto;
  }

  .menu {
	  width: auto;
    margin: 0 100px 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
	padding: 65px 0 0px 0px;
	border: none;
	  left: 20%;
  }

  .menu li  {
    width: auto;
    padding: 0em 2em 0 0em;
    transition: .5s ease-in-out;
  }
	
	.menu li:hover {
	
	border-left: none;
}

	#nav-open {
		display: none;
	}
	
	#nav-close {
		display: none;
	}
	
	.logo-holder {
		left: 50px;
	}
	
}

@media screen and (max-width: 823px) and (orientation: landscape) {
	
	header {
   
    height: 90px;
		
	}
	
	#nav-open {
		top: 25px;
	}
	
	#nav-close {
		top: 25px;
	}
	
	  .menu {
	  
	padding: 50px 0 0px 0px;
	
  }
	
	.logo-holder {
		width: 50px;
		top: -5px;
		left: 50px;
	}

}