#header {
	width: 100%;
	background-color: var(--color-white);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	box-shadow: 0px 0px 10px var(--color-placeholder);
}

#header .header__inner_container {
	width: 100%;
	display: flex;
	align-items: center;
	padding: calc(var(--universal-gap) * 0.5) 0;
	gap: var(--universal-gap);
}

#header .header_logo {
	width: 190px;
	max-width: 50vw;
	display: inline-block;
	height: auto;
	transition: width 600ms ease;
}

#header .header_logo.header_logo--large {
	margin: 6px 0;
}

#header .header_logo.header_logo--small {
	width: 140px;
}

/*Shrink Effect*/
#header .header_logo.header_logo--small {
	display: inline-block;
}
#header .header_logo.header_logo--large {
	display: none;
}

.header--large-mode--active #header .header_logo.header_logo--small {
	display: none;
}
.header--large-mode--active #header .header_logo.header_logo--large {
	display: inline-block;
}

#main {
	margin-top: var(--header-height);
}

#header_menu--sub {
	flex-grow: 99;
	display: flex;
	justify-content: flex-end;
}

