header {
	border-bottom: 3px solid #ffc425;
}

header .row {
	padding-top: 1em;
	padding-bottom: 0;
}

header .flex {
	justify-content: space-between;
}

#logo {
	display: block;
	width: 40%;
}

#logo img {
	width: 80%;
}	

header h4 {
	color: red;
	text-align: right;
}

#search {
	z-index: 2;
}

#search form {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

#search form label {
	margin: 0;
	margin-right: 0.5em;
}

#search form input {
	margin: 0;
}

#search button {
	font-size: 1em;
	margin: 0;
	border: 1px solid #ffc425;
}

#search button:hover {
	border: 1px solid #242424;
}

.container .menu {
	margin: 0;
	padding: 0;
}

.container .menu li {
	list-style-type: none;
	padding-left: 0.8em;
	padding-right: 0.8em;
	padding-bottom: 0.5em;
	padding-top: 0.6em;
	width: auto;
	display: inline-block;
	position: relative;
	margin: 0;
}

.container .menu li:hover {
	background: #242424;
}

.container .menu li a {
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1em;
	color: #242424;
}

.container .menu li:hover a {
	color: #FFC425;
}

.container .menu li.menu-item-has-children:after {
	content: '';
	background-image: url(https://s3.amazonaws.com/ba-en-us/global/header-footer/icons/dropdown.png);
	background-size: cover;
	display: inline-block;
	height: 19px;
	width: 23px;
	margin-left: 0.2em;
}

.container .sub-menu li.menu-item-has-children:after {
	content: '';
	background-image: url(https://s3.amazonaws.com/ba-en-us/global/header-footer/icons/dropdown.png);
	transform: rotate(-90deg);
	background-size: cover;
	display: inline-block;
	height: 19px;
	width: 23px;
	margin-left: 0.2em;
	position: absolute;
	right: 0.5em;
	top: 10px;
}

.container .sub-menu {
	position: absolute;
	width: 250px;
	background: #242424;
	padding: 0;
	z-index: 999999;
	top: 43px;
	border-top: 3px solid #ffc425;
	left: 0;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	display: none;
	margin: 0;
}

.container .sub-menu li {
	display: inline-block;
	padding: unset;
	width: 100%;
}

.container .sub-menu li.new:not(.menu-item-has-children):after {
	content: "NEW";
	display: inline-block;
	position: absolute;
	right: 1em;
	top: 0;
	background: #ffc425;
	color: #242424;
	font-weight: bold;
	padding: 0.3em;
	font-size: 0.7em;
	top: 10px;
}

.container .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    border: unset;
    padding: 0;
    display: none;
}

.container .menu li:hover .sub-menu a {
	color: #ffffff;
	width: 100%;
	display: block;
	padding-left: 0.6em;
	padding-right: 0.6em;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
}

.container .menu li:hover .sub-menu li:hover a{
	color: #ffc425;
	background: #191919;
}

.container .menu li:hover .sub-menu li:hover .sub-menu a, .container .menu li:hover .sub-menu li:hover .sub-menu li:hover .sub-menu li a {
	color: #ffffff;
	background: #242424;
}

.container .menu li:hover .sub-menu li:hover .sub-menu li:hover a, .container .menu li:hover .sub-menu li:hover .sub-menu li .sub-menu li:hover a {
	color: #ffc425;
	background: #191919;
}

.menu-icon, .s-icon {
	background: #242424;
	cursor: pointer;
	font-weight: bold;
	height: 41px;
	width: 41px;
	text-align: center;
	display: flex;
	display: -ms-flex;
	display: -moz-flex;
	display: -webkit-flex;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	padding: 0.7em;
}

.menu-icon {
	margin-right: 0.5em;
}

.menu-icon img, .s-icon img {
	width: 100%;
	display: block;
}

@media only screen and (max-width: 1650px) {
	header .container {
		width: 85%;
	}
}

@media only screen and (max-width: 1450px) {
	header .container {
		width: 95%;
	}
}

@media only screen and (max-width: 1350px) {
	.container .menu li a {
		font-size: 1.1em;
	}
}

@media only screen and (max-width: 1155px) {
	.container .menu li a {
		font-size: 0.9em;
	}
	
	.container .menu li.menu-item-has-children::after {
		height: 14px;
		width: 18px;
	}
	
	.container .sub-menu {
		top: 36px;
		width: 200px;
	}
	
	#search input, #search button {
		font-size: 0.8em;
	}
	
	.container .sub-menu li.new:not(.menu-item-has-children)::after {
		font-size: 0.5em;
	}
}

@media only screen and (max-width: 767px) {
	header {
		height: 100px;
		overflow: hidden;
	}
	
	header .flex {
		justify-content: space-between;
		-ms-justify-content: space-between;
		-moz-justify-content: space-between;
		-webkit-justify-content: space-between;
	}
	
	#logo {
		width: 50%;
	}
	
	#logo img {
		width: 100%;
	}
	
	#search {
		right: -100%;
		top: -3px;
		position: absolute;
		transition: 0.5s all;
		background: #242424;
		padding: 0.5em;
	}
	
	#search.show {
		right: 14%;
		background: #242424;
	}
	
	
	#mobile-nav-confidential {
		display: flex;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		justify-content: flex-end;
		-ms-justify-content: flex-end;
		-moz-justify-content: flex-end;
		-webkit-justify-content: flex-end;
	}
	
	.menu-icon {
		margin-bottom: 0.5em;
	}
	
	#menu {
		position: absolute;
		left: 0;
		z-index: 999999;
		width: 100%;
		border-top: 2px solid #ffc425;
		border-bottom: 2px solid #ffc425;
		background: #212121;
		display: none;
		top: 137px;
	}
	
	.container .menu li {
		display: block;
		padding-left: 0;
		padding-right: 0;
		padding-top: 0.8em;
		padding-bottom: 0.8em;
	}
	
	.container .menu li a {
		color: #ffffff;
		font-size: 1em;
		font-weight: bold;
	}
	
	.container .menu li.menu-item-has-children::after {
		background-image: Unset;
		margin-left: 0;
	}
	
	.sub-menu {
		display: none !important;
	}
	
	.container .menu li.current_page_item a {
		color: #ffc425;
		background: #191919;
	}
}

@media only screen and (max-width: 374px) {
	#search.show {
		right: 18%;
	}
}