@keyframes headerRight{
	from {
		left: 0;
	}
	to {
		left: 70%;
	}
}
@keyframes headerleft{
	from {
		left: 70%;
	}
	to {
		left: 0%;
	}
}
.header-toRight {
	animation: headerRight 1s;
	left: 70%;
}
.header-toLeft {
	animation: headerleft 1s;
	left: 0%;
}
@media screen and (max-width: 950px) {
	#header-userName{
		display: none;
	}
}
@media screen and (max-width: 850px) {
	.header-ulNav li  {
		margin-right: 15px !important;
	}
}
@media screen and (max-width: 760px) {
	#nav {
		display: none !important;
	}
	#navButton {
		display: initial !important;
	}
	.header-contener {
		justify-content: center;
	}
	#logo {
		margin: auto !important;
	}
	#memberSection {
		margin: auto 0 !important;
	}
	#header-profilImg, #header-profilImg-hover, #header-menuImg, #header-menuImg-hover{
		width: 25px !important;
	}
}
#header {
	top: 0;
	height: 70px;
	background-color: #fff;
	transition: .3s;
	box-shadow: 0 2px 6px 0 #00000017;
	padding: 0;
	position: fixed;
	z-index: 1000;
	width: 100%;
}
#header a {
	text-decoration: none;
	color: #b0b2be;
}
#nav a {
	transition: .2s ease-in-out;
}
#header a:hover {
	color: #3e416d
}
.header-contener {
	height: 70px;
	margin: auto;
	display: flex;
	flex-direction: row;
}
#navButton {
	display: none;
}
#logo{
	margin: auto;
}
.header-img {
	cursor: pointer;
}
.img-hover {
	display: none;
}
#header-profilImg, #header-profilImg-hover, #header-menuImg, #header-menuImg-hover{
	width: 20px;
}
#navButton:hover #header-menuImg{
	display: none;
}
#navButton:hover #header-menuImg-hover{
	display: initial;
}
#profilSpan:hover #header-profilImg{
	display: none;
}
#profilSpan:hover #header-profilImg-hover{
	display: initial;
}
#nav {
	/*width: 50%;*/
}
#memberSection {
	/*color: #b0b2be;*/
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	margin: 25px auto auto auto;
}
.header-contener ul {
	white-space:nowrap;
	margin: 25px 0 0 0;
	padding:0;
	display: flex;
	flex-direction: row;
	list-style-type: none;
	color: #b0b2be;
}
.header-ulNav li  {
	margin-right: 30px;
	text-decoration: none;
}
.header-ulNav li:hover {
	color:#3e416d;
}
.navLink {
	display: inline-block;
	/*height: 70px;*/
	/*margin: auto;*/
	color: #b0b2be;
	font-size: 17px;
	font-weight: 600;
}
#navButton {
	margin: auto 0;
}
.header-menuImg {
	margin-left: 30px;
}
.header-profilImg {
	margin-right: 30px;

}
#header-logo {
	/*width: */
	margin-left: 20px;
	margin-right: 20px;
	height: 25px;
}



/*2e MENU*/

@keyframes mobileMenuRight{
	from {
		left: -70%;
	}
	to {
		left: 0%;
	}
}
@keyframes mobileMenuLeft{
	from {
		left: 0%;
	}
	to {
		left: -70%;
	}
}
.mobileMenu-toRight {
	display: initial !important;
	animation: mobileMenuRight 1s;
	left: 0%;
}
.mobileMenu-toLeft {
	display: initial !important;
	animation: mobileMenuLeft 1s;
	left: -70%;
}
#mobile-menu {
	display: none;
	width: 70%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #2a2a2a;
	border-color: rgba(255,255,255,.1);
	color: #fff;
}
#mobile-menu-title {
	border-bottom: 1px solid #404040;
	text-align: center;
	line-height: 30px;
	height: 50px
}
#mobile-menu-title strong{
	font-family: inherit;
	font-weight: 600;
	font-size: 16px;
	padding: 10px 0;
	display: block;
}
#mobile-menu-nav {
	padding: 0;
	margin: 0;
	list-style-type: none;	
}
#mobile-menu-nav li {
	font-size: 14px;
	padding: 15px;
}
#mobile-menu-nav li:hover {
    color: white;
}
.mobile-menu-text{
	line-height: 20px;
	color: #fff;
	text-decoration: none;
}
.mobile-menu-text li{
	border-bottom: 1px solid #404040;
}


/*DIVISION POUR CACHER LE MAIN*/
.div-hide-mainAct {
	height: 100%;
	width: 30%;
	position: fixed;
	right: 0;

}