
/* header */

.header {
	
/*	box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);*/
	display: flex;
	position: absolute;
	width: 100%;
	z-index: 3;
	/*color: #fff;*/
	/*border: 2px cyan solid;*/
}
.menu-logo {
	width: 60%;
}

.menu-bar {
	width: 40%;
	float: right;
}

.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	width: 500px;
}

.header li a {
	display: block;
	padding: 1em 1em;
	font-size: 1rem;
	text-decoration: none;
	/*color: #fff;*/
	/*box-shadow: inset rgba(255, 255, 255, 1);*/
	position: relative;
	z-index: 0;
	/*background: rgba(211, 211, 211, 1);*/
	/*opacity: 100%;*/
	/*border-right: 1px solid #f4f4f4;*/
	
}

.header li a:hover,
.header .menu-btn:hover {
	color: #b552da;
}

/*.header .logo {
	display: block;
	float: left;
	font-size: 2em;
	padding: 10px 20px;
	text-decoration: none;
}*/

.menu li a{
	color: #fff;
	background-color: #000;
	margin: 0 0.5em;
	/*border: 2px yellow solid;*/
	/*width: auto;*/
}

.menu .current-page {
    color: #adadad; 
    font-style: italic;
	position: relative;
	z-index: 4;
	/* font-weight: bold;*/
    /*font-size: 120%;*/
	/*text-decoration: none;*/
	
	/*border-bottom: 1px solid #000;*/
}

/* menu */

.header .menu {
	clear: both;
	max-height: 0;
	transition: max-height .2s ease-out;
	background-color: #000;
	/*height: 300px;*/
	height: auto;
/*	background: rgba(211, 211, 211, .4); */
	width: auto;	
	/*border: 2px cyan solid;*/
	float: right;
	
}

/* menu icon */

.header .menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 28px 20px;
	position: relative;
	user-select: none;
	
}

.header .menu-icon .navicon {
	background: black;
	display: block;
	height: 3px;
	position: relative;
	transition: background .2s ease-out;
	width: 24px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
	background: black;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
	
}

.header .menu-icon .navicon:before {
  	top: 7px;
}

.header .menu-icon .navicon:after {
  	top: -7px;
}

/* menu btn */

.header .menu-btn {
  	display: none;
}

.header .menu-btn:checked ~ .menu {
  	max-height: 400px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  	background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  	transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
	top: 0;
}

/* 48em = 768px */

/*@media (min-width: 48em) {
	.header {
		/*
		display: flex;*/
	/*}
	.header .menu {
		background-color: transparent;
		width: auto;
		text-align: right;
		
	}
	.header li {
		float: left;*/
/*		border: 2px solid white;*/
	/*}
	.header li a {
		padding: 20px 30px;
	}
	.header .menu {
		clear: none;
		float: right;
		max-height: none;
		
	}
	.header .menu-icon {
		display: none;
	}
}*/

/* Tablet menu */
@media all and (min-width: 750px) {
	
	.header {
		
		/*border: 2px solid red;*/
	}
	.menu-logo {
		width: 40%;
	}
	.menu-bar {
		width: 60%;
		float: right;
		min-width: 600px;
	}

	/*.header .menu {
		background-color: transparent;
		min-width: 500px;
		text-align: right;
		/*border: 2px solid white;*/
		
	/*}*/
	.header li {
		float: left;
		/*border: 2px solid green;*/
		min-width: 100px;
		width: auto;
	}
	.header li a {
		font-size: 0.9rem;
		padding: 0.8em 0.8em;
	}
	.header .menu {
		background-color: transparent;	
		clear: none;
		float: right;
		max-height: none;
		
	}
	.header .menu-icon {
		display: none;
	}

}
/* Desktop menu */
@media all and (min-width: 960px) {
	
	.header {
		/*border: 2px solid yellow;*/
	}
	.menu-logo {
		width: 30%;
	}
	.menu-bar {
		width: 70%;
		float: right;
		min-width: 600px;
	}
	.header li {
		float: left;
		/*border: 2px solid red;*/
	}
	.header li a {
		font-size: 1.1rem;
		padding: 0.8em 0.8em;
	}
	.header .menu {
		background-color: transparent;
		clear: none;
		float: right;
		max-height: none;
		min-width: 500px;
		
	}
	.header .menu-icon {
		display: none;
	}

  
}
