header {
	grid-area: header;
	display: -ms-grid;
	display: grid;
	width: 100%;
	position: fixed;
	/*grid-template-columns: repeat(auto-fill, 100px);*/
	top: 0px;
	padding-top: 1em;
	padding-bottom: 1em;
	/*margin-top: 0px;*/
/* 
	box-shadow: 0px -10px 20px 2px black; */
}

header ul{
	list-style-type: none;
}

.header{
	height: 64px;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	z-index: 1;
}

.header-logo {
	display: flex;
	font-size: 14px;
	-ms-grid-row: 1;
	-ms-grid-column: 2;
	grid-row: 1;
	grid-column: 2;
	float: right;
	justify-self: right;
}

.header-menu{
	margin-right: 3.5em;
	grid-column: 2;
	grid-row: 1;
	-ms-grid-column: 2;
	-ms-grid-row: 1;
	justify-self: right;
	margin-top: auto;
	margin-bottom: auto;
}

.header-menu > * a{
	text-decoration: none;
	/* font-weight: bold; */
	display: block;
	font-size: 1.0em;
	padding-bottom: 10px;
	color: white;
}

.header-menu > * li{
    margin-left: 1em;
	float: left;
}

.header-visible{
	background-color: #00000080;
	/* transform: translateY(-100%); */
	/* transition: transform 0.7s ease; */
}

.header-hidden{
	background-color: #00000080;
	/* transform: translateY(-100%); */
	/* transition: transform 0.8s ease; */
}

.header-top a {
	color: gray;
}

.header-scroll a {
	color: gray;
}

.header-language{
	color: white;
	font-size: 1.4em;
}

#viscandoLogo{
	background-color: white;
}

@media (min-width: 1240px) {
	nav {
		visibility: hidden;
   	}

	.header-menu{
		visibility: visible;
	}

	.header-logo{
		grid-column: 1;
		-ms-grid-column: 1;
		float: left;
		justify-self: left;
	}

	.header-visible{
		transform: translateY(0%);
		background-color: #00000080;
	}

	.header-hidden{
		background-color: #00000080;
	}
}

