#header {
    width: 100%;
    position: fixed;
    height: 10vh;
    top: 0;
    min-height: 70px;
    display: flex;
    flex-basis: 100%;
    align-items: center;
    margin-bottom: 100px;
    z-index: 1000;
}

#header:before {
	content: "";
    position: fixed;
    background: linear-gradient(180deg, rgb(66 66 66), rgb(32 32 32 / 90%));
    opacity: 0;
    width: 100%;
    height: 10vh;
    display: block;
    z-index: 0;
    transition: opacity 0.25s linear;
}

#header:hover:before {
	opacity: 1; 
	transition: opacity 0.25s linear;
}

#header .inside {
    padding: 0 1em;
    max-width: 1700px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
    align-items: center;
}

#headerLogo {
	/*padding-top: 16px;*/
}

#headerLogo a {
	font-family: "Hurricane";
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    word-spacing: 5px;
}

#headerLogo p {
	margin: 0;
}

#headerNavigation {
    display: flex;
    align-items: center;
}

.headerButton {
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	margin-right: 4em;
}

.headerButton p {
	margin-bottom: 0;
}

.headerButton a {
	color: inherit;
	text-decoration: none;
}

.headerButton i {
	margin-right: .5em;
}

@media (max-width: 850px) {
	.headerButton {
		display: none;
	}
}