#header {
	position: fixed;
    height: 60px;
    width: auto;
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.1);
    top: 30px;
    left: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    padding-left: 20px;
    justify-content: space-between;
}

#header .cls-1,
#header .cls-3 {
	fill: #fff;
}

#header svg {
	height: 25px;
}

#header ul {
	margin: 0;
	padding: 0;
	display: flex;
	height: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
}

#header li,
#header li a,
#header li .button {
	display: flex;
	height: 100%;
    align-items: center;
}

#header li a,
#header li .button {
	color: #fff;
	text-decoration: none;
	padding: 0 43px;
}

#header li:last-child .button {
    background-color: #000;
    font-size: 15px;
    --shadow-spacing: 13.7px;
    --line-height: 16.4px;
    --text: #fff;
    --background: #000;
    font-family: 'abc-whyte';
}


#header li:last-child .button:hover {
	--shadow-spacing: 12.49px;
}

@media
only screen and (-webkit-min-device-pixel-ratio: 1.2),
only screen and (   min--moz-device-pixel-ratio: 1.2),
only screen and (     -o-min-device-pixel-ratio: 1.2/1),
only screen and (        min-device-pixel-ratio: 1.2) {
	#header li:last-child .button {
		--shadow-spacing: 14.5px;
	}

	#header li:last-child .button:hover {
		--shadow-spacing: 12px;
	}
}

#header,
#header .cls-1,
#header .cls-3,
#header li a,
#header li .button {
	transition: 400ms ease-in-out;
}

#header.dark {
	/*background: rgba(0,0,0,0.1);*/
}

#header.dark li:not(:last-child) a {
	color: #000;
}

#header.dark .cls-1,
#header.dark .cls-3 {
	fill: #000;
}

@media screen and (max-width: 700px) {
	#header {
    	backdrop-filter: none;
    	background: #000;

	    top: 0px;
    	left: 0px;
    	right: 0px;
    }

    #header svg {
		height: 20px;
	}

    #header.dark .cls-1,
	#header.dark .cls-3 {
		fill: #fff !important;
	}

    #header li:last-child .button {
    	display: none;
    	color: #000;
    	background-color: #fff;
    	--background: #fff;
    	--text: #000;

    	padding: 0 20px;
    }
}