#responsive-button {
	display: none;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 160px;
	background-color: #fff;
	z-index: 1000;
	transition: .35s;
}

#header.minimized {
	height: 100px;
	transition: .35s;
	border-bottom: 1.5px solid #000;
}

#header .container #header-logo img {
	width: 322px;
	height: 125px;
}

#header .container {
	display: grid;
	margin: auto;
	grid-template-columns: 1fr;
	grid-template-areas: 'header-logo header-nav' 
                         'header-logo header-menu';
	width: 100%;
	z-index: 150;
}

#header-logo {
	grid-area: header-logo;
}

#header-nav {
	grid-area: header-nav;
}

#header #header-logo img {
	position: absolute;
	top: 19px;
	left: 67px;
	transition: .35s;
}

#header.minimized #header-logo img {
	top: 0;
	height: 80px;
	object-fit: cover;
	object-position: left top;
	transition: .35s;
}

#header-nav {
	position: relative;
	top: 19px;
	right: 67px;
	transition: .35s;
}

#header.minimized #header-nav {
	top: 5px;
	transition: .35s;
}

#header #header-nav ul {
	margin: 0 0 30px 0;
	float: right;
	transition: .35s;
}

#header.minimized #header-nav ul {
	margin: 0 0 15px 0;
	transition: .35s;
}

#header-nav ul, #header-menu ul {
	list-style: none;
}

#header-nav ul li, #header-menu ul li {
	display: inline-block;
}

#header-nav ul li {
	margin-left: 10px;
}

#header-nav ul li a {
	font-size: 1.2rem;
	color: #000;
	font-family: barlow, Arial, Serif;
	font-size: 1.25rem;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
}

#header-nav ul li a:hover {
	color: #dc0023;
}
	
#header-menu {
	grid-area: header-menu;
	position: relative;
	top: 19px;
	right: 67px;
}

#header.minimized #header-menu {
	top: 0;
}

/*
#header .intro #header-menu {
	margin-top: 15px;
}
*/
#header-menu ul {
	display: flex;
	flex-direction: row;
	justify-content: space-between !important;
	padding: 0;
	margin: 0;
}

/*
#header-menu ul li:first-child:before {
	content: '';
}
*/

#header-menu ul li {
	display: inline-block;
	padding: 0 2rem;
	height: 40px;
	/*border-right: 3px solid #000;*/
	/*
	border-image: linear-gradient(to bottom, rgba(255,255,255,0) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 75%);
	border-image-slice: 1;
	*/
}

#header-menu ul li:after {
  content: '';
  display: block;
  position: relative;
  right: 30px;
  top: -29px;
  width: 2px;
  height: 25px;
  border-left: 2px solid #000;
}

#header-menu ul li:first-child:after {
  border: none;
}

#header-menu ul li:last-child {
	padding-right: 0;
	border: none;
}

#header-menu ul li a {
	display: inline-block;
	height: 30px;
	color: #000;
	font-family: barlow, Arial, Serif;
	font-size: 2.2rem;
	font-weight: normal;
	text-decoration: none;
	text-transform: uppercase;
}

#header-menu ul li a:hover {
	color: #dc0023;
}

#header-menu ul li ul {
	position: absolute;
	padding: 0;
	width: auto;
	/*max-width: 280px;*/
	/*box-shadow: 2px 2px 5px #666;*/
	background-color: #fff;
	z-index: 10000;
}

#header-menu ul li ul {
	display: none;
}

#header-menu ul li:hover ul {
    display: block;
}

#header-menu ul li ul li, #header-menu ul li ul li:last-child {
	display: block;
	padding: 0 15px;
	height: inherit;
}

#header-menu ul li ul li:after {
  display: none;
}

#header-menu ul li ul li a {
	display: block;
	padding: 10px 0;
	height: inherit;
	border-bottom: 2px solid #000;
}

#header-menu ul li ul li:last-child a {
	border-bottom: none;
}

@media only screen and (max-width: 1750px) {
	#header-menu ul li a {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 1650px) {
	#header-menu ul li a {
		font-size: 1.9rem;
	}
}

@media only screen and (max-width: 1550px) {
	#header-menu ul li a {
		font-size: 1.6rem;
	}
}

@media only screen and (max-width: 1450px) {
	#header-menu ul li a {
		font-size: 1.4rem;
	}
}
