header{
	/* position: sticky; */
	top: 0;
	width: 100%;
}

header .menu {
	background-color: white;
}

header .menu a {
	display: block;
	padding: 20px;
	color: rgba(69,128,222, 1);
	text-transform: uppercase;
	font-size: 16px;
}

/*header .menu a:hover {
	font-weight: bold;
}*/

header nav {
	max-height: 0;
	transition: max-height .5s ease-out;
}

header .menu a {
	text-decoration: none;
}

header .menu a.seleccionado {
	font-weight: bold;
}

header nav ul {
	list-style: none;
}

header nav ul li {
	border: 1px solid;
	border-color: rgba(69,128,222, 0.4);
	border-style: dashed;
	background-color: white;
}

header nav {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: hidden;
	top: 50px;
	z-index: 10;
}

header .hamb {
	cursor: pointer;
	float: right;
	padding: 20px 0px;
}

header .hamb-line {
	display: block;
	height: 2px;
	position: relative;
	width: 24px;
	background: rgba(69,128,222, 1);
}

header .hamb-line::before, header .hamb-line::after {
	background: rgba(69,128,222, 1);
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
}

header .hamb-line::before {
	top: 5px;
}

header .hamb-line::after {
	top: -5px;
}

header .side-menu {
	display: none;
}

header .side-menu:checked ~ nav{
	max-height: 100%;
}

header .side-menu:checked ~ .hamb .hamb-line {
	background: transparent;
}

header .side-menu:checked ~ .hamb .hamb-line::before {
	transform: rotate(-45deg);
	top: 0;
}

header .side-menu:checked ~ .hamb .hamb-line::after {
	transform: rotate(45deg);
	top: 0;
}

header div.row {
	border-bottom: 1px solid;
	border-color: #5a798e;
}

header div.spacer {
	height: 9px;
	width: 100%;
	background-image: linear-gradient(to right, #8daced, #b285e4);
}

@media (min-width: 900px) {
	header nav {
		max-height: none;
		top: 0;
		position: relative;
		float: right;
		width: fit-content;
		background-color: transparent;
	}

	header .menu li {
		float: left;
	}

	header .hamb {
		display: none;
	}
	
	header nav ul li {
		margin-top: 20px;
		border: 0px;
	}
	
	header .menu a:last-of-type {
		padding-right: 0px;
	}
}
