
.header {
	position: fixed;
	top: 0;
	z-index: 10;
	min-height: 70px;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: white;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
	
	
}


.header  .brand .brand-name{
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 10px;
	
}

.header  .brand .brand-name h3{
	color: #12365E;
	font-weight: bold;
	font-size: 24px;
	
}

.header  .brand .brand-name .mobile{
	display: none;
}

.header  .brand .brand-name img{
	width: 75px;
	height: 75px;
	margin-right: 5px;
}



.header  .brand .brand-name .mobile{
	display: none;
}

.header  .brand .mobile-menu-btn{
	display: none;
}


.header  .nav .main-menu{
	display: flex;
}

.header  .nav .main-menu .main-list{
	margin: 0px 10px 0px 10px;
}

.header  .nav .main-menu .main-list .main-list-btn{
	border: 0;
	/* background-color: white;*/
	background-color: white;
	font-size: 18px;
	color: #12365E;
	font-weight: bold;
	
}


.header  .nav .main-menu .main-list .main-list-btn:hover{
	color: #ec4e4f;
}

.header  .nav .main-menu .btn-speciality{
	
}


.header  .sub-nav, #sub-nav-mobile{
	position: absolute;
	top: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	background-color: white;
	border-top: 2px #e0e0e0 solid;
	
}



.header  .sub-nav .sub-menu li button, #sub-nav-mobile .sub-menu li button{
	border: 0;
	font-size: 16px;
	color: #12365E;
	font-weight: bold;
	text-align: left;
	padding: 5px;
	width: 100%;
	/** background-color: rgba(0,0,0,0); */
	background-color: white;
}

.header  .sub-nav .sub-menu li button:hover{
	background-color: #ec4e4f;
	color: white;
}


.header  .my-account-menu button{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 0;
	border-radius: 0;
	padding: 8px;
	font-size: 16px;
	color: white;
	background-color: #ec4e4f;
}

	#sub-nav{
		display: none;
	}
	
	#sub-nav-mobile{
		display: none;
	}

@media (max-width:768px)
{

	.header {
		position: static;
		flex-direction: column;
		align-items: normal;
	}

	.header  .nav, .header  .my-account-menu{
		display: none;
	}

	.header  .my-account-menu{
		margin-bottom: 25px;
	}

	.header  .brand{
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 10px 10px 10px;
	}


	.header  .brand .brand-name{
		font-size: 18px;
	}

	.header  .brand .brand-name .lg{
		display: none;
	}
	
	.header  .brand .brand-name .mobile{
		display: inline;
	}
	
	.header  .brand .brand-name img{
		width: 60px;
		height: 60px;
	}
	
	.header  .brand .mobile-menu-btn{
		display: flex;
		background-color: white;
		padding: 5px;
		border: 0;
		border-color: #ec4e4f;
		cursor: pointer;
	}
	
	.header  .brand .mobile-menu-btn  img{
		width: 32px;
		height: 32px;
		
	}

	.header  .nav{
		border-top: 1px #c7c7c7 solid;
		padding-top: 20px;
		padding-left: 5px;
	}
	
	.header  .nav .main-menu{
		display: flex;
		flex-direction: column;
	}
	
	.header  .nav .main-menu .main-list{
		padding: 5px 0 5px 0;
	}
	

	
	
	#sub-nav-mobile{
		display: flex;
	}
	
	.header  .nav .sub-nav, #sub-nav-mobile{
		position: static;
		border-top: 0;
		margin-left: 10px;
	}
	
	
	
	
	
	.header  .my-account-menu{
		margin-top: 30px;
		padding-left: 10px;
		
	}
	
	
	#sub-nav  .sub-menu li button,{
		font-size: 14px;
	}

	#sub-nav-mobile  .sub-menu li button,{
		font-size: 14px;
	}
	
	#sub-nav  .sub-menu li button:hover{
		background-color: white;
		color: #ec4e4f;
	}
	
	#sub-nav-mobile  .sub-menu li button:hover{
		background-color: white;
		color: #ec4e4f;
	}
	

	
	
}