/* HEADER */
header {
	margin-bottom: 20px;
	background: #34495e;
	color: #ecf0f1;
	width: 100vw;
}

header .logo {
	height: 40px;
}

header .logo img {
	height: 100%;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu {
	align-items: center;
	display: flex;
	gap: 20px
}

.hamburger {
	display: none;
}
.hamburger svg rect {
	fill: #fff
}

.menu-mobile{
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px 0;
}
.menu-mobile.active {
	display: flex;
}
.menu-mobile a {
	flex: 1;
}
.menu a, .menu-mobile a {
	line-height: 40px;
	color: #ecf0f1;
	font-weight: 600;
}
.menu a:hover, .menu-mobile a:hover {
	color: #ecf0f1;
	text-decoration: underline;
}

.rounded {
	border-radius: 8px;
	padding: 0px 10px;
	background: rgba(255,255,255,0.1);
}

@media only screen and (max-width: 768px) {
	.menu {
		display: none;
	}
	.hamburger {
		display: flex;
	}
}

/* END HEADER */