header {
	 width: 100%;
	/* height: 55px; */
	background: #2c2c2c;
	background-size: auto 100%;
	z-index: 999999999999;
	background-position-x: 33%;
	position: sticky;
	top: 0;
	/* box-shadow: 0 3px 8px rgba(0,0,0,.24);  */
}


.borderBottom{
	width: 100%;
	height: 5px;
	background: url(../images/bg.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}


.headerTop {
	width: 100%;
	max-width: 1110px;
	margin: auto;
	height:55px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px;
	background-color: #2c2c2c;
	padding: 5px 0;
}

.headerBottom{
	/* background: url(../images/xmas_head2.png) no-repeat center; */
	background-color:#eeeeee;
    background-size: cover;
    z-index: 99;
    height: 50px;
    width: 100%;
    /* box-shadow: 0 0 4px 0 #0a2873; */
	display: flex;
	justify-content: center;
	/* border-bottom: 2px solid rgba(160,160,160,1.0); */
}

.left {
	width: auto;
	height: 100%;
	display: flex;
	align-items: center;
}



.center {
	width: 100%;
	max-width: 90%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex: 1;
	position: relative;
	bottom: -2px;
	overflow-x: auto;
	/* padding: 0px 30px; */
}

.center::-webkit-scrollbar {
	width: 10px;
	height: 5px;
}

.center::-webkit-scrollbar-thumb {
	background: #dcd5ea;
}

.center::-webkit-scrollbar-track {
	background: #ffffff;
	-webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
}




.centerLi {
	width: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-transform: capitalize;
	/* font-weight: 600; */
	font-size: 14px;
	padding: 0px 20px;
	cursor: pointer;
	/* height: 50px; */
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #ccc;
	font-weight: 600;
    /* padding: 6px 21px; */
    /* border-radius: 16px; */
    /* background: rgba(0,0,0,.14); */
    /* border: 3px solid rgba(0,0,0,.14); */
    transition: all .3s;
	/* margin-right: 10px; */
}

.centerLi img{
	height: 60%;
	margin-right: 10px;
}

.right {
	width: 100%;
	height: 100%;
	display: none;
	justify-content: flex-end;
	align-items: center;
}

.search,
.menu {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding: 8px;
	/* border: 2px solid #fff; */
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}


.menu {
	margin-right: 20px;
	display: none;
	position: absolute;
	left: 8px;
	top: 10px;
}

.search{
	position: absolute;
	right: 8px;
	top: 10px;
}

.menu img {
	width: 30px;
	height: 30px;
}

.search img {
	width: 28px;
	height: 28px;
}

.left img {
	width: auto;
	height: 40px;
}

@media screen and (max-width:960px) {
    header{
		height: 60px;
		position: inherit;
		overflow: hidden;
	}
	.headerTop{
		height: 100%;
	}

	.left img {
		position: absolute;
		width: auto;
		height: 30px;
		left: 0px;
		right: 0px;
		margin: auto;
	}

	.header {
		width: 100%;
	}

	.right {
		display: flex;
	}

	.menu {
		display: flex;
	}

	.center {
		width: 100%;
		max-width: 100%;
		position: absolute;
		top: 60px;
		left: -100vw;
		height: 100vh;
		flex-wrap: wrap;
		align-content: flex-start;
		background-color: #2c2c2c;
		z-index: 99999;
		transition: all 0.5s;
		padding: 0px;
	}

	.centerLi {
		width: 90%;
		margin: 10px auto 0;
		height: 50px;
		border-bottom: 1px dashed;
		color: #fff;
	}
}