.header {
	background-color: #333;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	padding: 0.5rem 0.75rem;
	position: fixed;
	top: 0;
	width: 100%;
}

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

#menu-toggler {
	display: none;
}

.menu-toggler-label {
	cursor: pointer;
	display: inline-flex;
	font-size: 1.75rem;
}

.menu-toggler-label .menu-toggler-label__icon {
	display: flex;
}

.header .header__logo {
	display: inline-flex;
	align-items: center;
}

.header .header__logo img {
	height: calc(var(--header-height) / 1.5);
	width: calc(var(--header-height) / 1.5);
}

.header .header__navbar {
	overflow: hidden;
}

#menu-toggler:checked ~ .header__navbar .header__nav {
	margin-top: 1rem;
}

.header .header__nav {
	list-style: none;
	margin: 0px;
	margin-top: -999px;
	padding: 0px;
	transition: margin-top 0.3s linear;
}

.header .header__nav .header__nav__link {
	border-radius: 4px;
	color: inherit;
	color: rgba(255, 255, 255, 0.75);
	display: flex;
	font-size: 1rem;
	padding: 0.5rem 0.75rem;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.header .header__nav .header__nav__link:hover {
	color: #fff;
	background-color: rgba(0, 0, 0, 0.25);
}

.header .header__nav .header__nav__icon {
	margin-right: 0.375rem;
}

.header .header__nav .header__nav__text {
	align-items: center;
	display: flex;
}

@media (min-width: 768px) {
	.header {
		align-items: center;
		flex-direction: row;
		height: var(--header-height);
	}

	.menu-toggler-label {
		display: none;
	}

	.header .header__nav {
		display: flex;
		margin-top: 0px;
	}
}
