.header .header-top{
	background-color: #2A2B49;
	padding-top: 5px;
	padding-bottom: 5px;
}
.header{
	position: sticky;
	top: 0px;
	z-index: 999;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, .4);
}
.header header{
	background-color: var(--primary-color );
	height: 96px;
}
.header header nav{
	height: 96px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.header .header-top-menu{
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.header .header-top-menu li{
	margin-right: 10px;
}
.header .header-top-menu li:last-child{
	margin-right: 0px;
}

.header .header-top-menu li a{
	color: white;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}

.header .header-nav-menu{
	margin:0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.header .header-nav-menu li{
	margin-right: 10px;
}
.header .header-nav-menu li:last-child{
	margin-right: 0px;
}
.header .header-nav-menu li a{
	font-weight: 600;
	color: white;
	font-size: var(--primary-size );
	text-decoration: none;
}
.header a:hover{
	cursor: pointer;
	text-decoration: underline;
}

.nav-content{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

.hamburger{
	display: none;
}
@media all and (max-width: 768px) {
	.nav-content,.header .header-top{
		display: none;
	}
	.hamburger{
		display: block;
	}
	body.open{
		overflow: hidden;
	}
	body.open .nav-content{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: fixed;
		bottom: 0px;
		right: 0px;
		left: 0px;
		top: 96px;
		background-color: white;
		display: flex !important;
		border-bottom: 15px solid #2A2B49;
	}
	.header .header-nav-menu{
		flex-direction: column;
	}
	.header .header-nav-menu li{
		margin-right: 0px;
		margin-bottom: 15px;
	}
	.header .header-nav-menu li a{
		color: #1A1919;
	}
}

.header .dropdown-menu{
	background-color: var(--primary-color );
}

.header .dropdown-menu .dropdown-item:hover{
	background-color: var(--accent-color);
}