/******************************************
    Header
******************************************/

#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    transition: all 0.5s ease 0s;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 0;
    background: var(--darkgrey);
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
}

#header-inner {
	position: relative;
	z-index: 1;
	max-width: 1600px;
	margin: 0 auto;
}

#header .logo { display: inline-block; }

#header .logo img {
    height: 20px;
    width: auto;
    max-width: none !important;
}

#header.fixed { transform: translate(0, -100%); }
#header.fixed.in {transform: translate(0, 0); }

@media only screen and (min-width: 667px) {
    #header {  padding: 20px 0; }
    #header-inner {
        padding-left: 30px; 
        padding-right: 30px;        
    }
}

@media only screen and (min-width: 1200px) {
    #header .logo img { height: 30px; }
}


