:root {
	--nav-bg:#161616;
	--submenu-bg: #fff;
	--submenu-bg-responsive:#31504b;
	--heightBar : 100px;
	--heightBarMob : 100px;
	--widthBtn : 100px;
	--widthBtnMob : 100px;
}

/*******************************************************************
* STYLE TYPOS
*******************************************************************/
.megaContainer {
	max-width: 90VW;
	width: 100%;
	margin: auto;
}
.megaRow {
	display: flex;
	flex-wrap: wrap;
	background-color: var(--bg-dark);
	padding: 0 2.5vw;
	box-shadow: 0 3px 9px rgba(0,0,0,.05);
	border-radius: 10px;
}
.v-center {
	align-items: center;
}

/*******************************************************************
* myHeader
*******************************************************************/
.myHeader {
	width: calc(100% - 5vw);
	position: fixed;
	top:30px;
	left: 2.5vw;
	padding: 0 40px;
	z-index: 100;
	margin: 0;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all ease 0.4s;
}


.myHeader .item-left {
	flex:0 0 10%;
}

.myHeader .logo a {
	font-size: 30px;
	color:#000;
	font-weight: 700;
	text-decoration: none;
}

.myHeader .item-center {
	display: flex;
	justify-content: center;
	flex:0 0 90%;
	width: 100%;
}
.myHeader .item-right {
	flex:0 0 20%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header--scrolldown {
	top: -110px;
	transition: ease 0.3s;
}

.home_header--scrolled {
	background-color: rgba(0, 0, 0, 1);
	transition: ease 0.3s;
}

/*******************************************************************
* AFFICHAGE DESKTOP
*******************************************************************/
.myHeader .menu {
	width: 100%;
	display: flex;
	align-items: center;
}

.myHeader .menu-main {
	margin: auto;
}

.myHeader .menu > ul > li {
	display: inline-block;
	line-height: var(--heightBar);
	margin-left: 15px;
}
.myHeader .menu > ul > li:first-child {
	margin-left: 0;
}
.myHeader .menu > ul > li > a {
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--white);
	letter-spacing: 1px;
	position: relative;
	transition: color 0.3s ease;
}
.myHeader .menu > ul > li .sub-menu {
	position: absolute;
	z-index: 500;
	background-color:var(--body-bg);
	/*-webkit-backdrop-filter: blur(12px) brightness(109%);
  backdrop-filter: blur(12px) brightness(109%);*/
	box-shadow: -2px 2px 60px -25px rgba(0,0,0,0.3); 
	padding: 30px;
	margin-top:25px;
	opacity:0;
	border-bottom-right-radius: 60px;
border-bottom-left-radius: 60px;
	visibility: hidden;
	transition: all 0.5s ease;
}


@media(min-width: 1025px) {
	.myHeader .menu > ul > li.menu-item-has-children:hover .sub-menu {
		margin-top:0;
		visibility: visible;
		opacity: 1;
	}
}

.myHeader .menu > ul > li .sub-menu {
	line-height: 1;
}

.myHeader .menu > ul > li .sub-menu.mega-menu { 
    left: 50%;
    transform: translateX(-50%);
	max-width: 84vw;
  	width: 100%;
  	display: flex;
  	flex-wrap: wrap;
	justify-content: center;
  	padding: 30px 10vw;
}

.myHeader .menu > ul > li .sub-menu.mega-menu li {
   display: block;
}

.myHeader .menu > ul > li .sub-menu .titreColonne {
	font-size: 2rem;
	color: green;
	margin-bottom: 15px;
}

.myHeader .menu > ul > li .sub-menu a {
	display: inline-block;
	font-size: 1.3rem;
	line-height: 1.5;
	color: var(--white);
	padding: 7px 0;
	transition: all 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}

.myHeader .menu > ul > li .single-column-menu {
	min-width: 280px;
	max-width: 350px;
}

.myHeader .menu > ul > li .sub-menu.mega-menu a:hover,
.myHeader .menu > ul > li .sub-menu a:hover,
.myHeader .item-right a:hover,
.myHeader .menu > ul > li:hover > a{
	color: #b6b6b6;
}

.mobile-menu-head,
.mobile-menu-btn,
.mobile-menu-trigger{
	display: none;
}

.btn_headerCTA {
	display: inline-block;
	color: var(--dark);
  	padding: 16px 30px;
	background-color: var(--white);
  	border-radius: 100px;
  	text-decoration: none;
  	transition: all 0.3s;
	text-transform: uppercase;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 1px;
	height: fit-content;
}
.btn_headerCTA:hover {
	color: var(--white);
  	background-color: var(--dark-2);
}
@media screen  and (device-aspect-ratio: 3/2) {
	.btn_headerCTA {
		padding: 14px 26px;
	}
}
@media only screen and (min-width: 1369px) and (max-width: 1440px) {
	.btn_headerCTA {
		padding: 12px 20px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1368px) {
	.btn_headerCTA {
		padding: 10px 20px;
	}
}
@media only screen and (min-width: 481px) and (max-width: 1023px) {
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
}

/******************************************************************
* RESPONSIVE MENU
*******************************************************************/
@media(max-width: 1024px) {
	.myHeader {
		display: block;
	  	position: absolute;
	  	left: 0;
	  	top: 0;
		width: 100%;
		height: auto;
		padding: 10px 0;
		z-index: 99;
		background: black;
	}
	.megaContainer{
		max-width: 100%;
		width: 100%;
		margin: auto;
	}
	.megaRow {
	  	padding: 5px 20px;
		background-color: transparent;
	}
	
	.myHeader .item-center {
		order:3;
		flex:0 0 100%;
		max-width: 100%;
	}
	.myHeader .item-left,
	.myHeader .item-right {
		flex:0 0 auto;
	}
	.v-center {
		justify-content: space-between;
	}
	.myHeader .mobile-menu-trigger {
		display: flex;
		height: 30px;
		width: 50px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.myHeader .mobile-menu-trigger span {
		display: block;
		height: 1px;
		background-color: #fdf8ec;
		width: 40px;
		position: relative;
	}
	.myHeader .mobile-menu-trigger span:before,
	.myHeader .mobile-menu-trigger span:after {
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #fdf8ec;
	}
	.myHeader .mobile-menu-trigger span:before {
		top:-6px;
	}
	.myHeader .mobile-menu-trigger span:after {
		top:6px;
	}
	.myHeader .item-left .logo {
		max-width: 170px;
	}
	.myHeader .item-right {
		align-items: center;
	}
	.myHeader .item-right .noMobile {
		display:none;
	}

	.myHeader .menu {
		position: fixed;
		left:0;
		top:0;
		width: calc(100vw - 15vw);
		height: 100%;
		background-color:var(--nav-bg);
		overflow: hidden;
		transform: translate(-100%);
		transition: all 750ms cubic-bezier(0.785, 0.135, 0.150, 0.860); /* easeInOutCirc */	
		transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860); /* easeInOutCirc */
		z-index: 1099;
		display: flex;
    	flex-direction: column;
    	justify-content: space-between;
    	align-items: normal;
		/*touch-action:manipulation;*/
	}
	.myHeader .menu.active {
		transform: translate(0%);	
	}
	
	.myHeader .menu-main {
		margin: inherit;
		transform: translate(-100%);
		transition: all 1450ms cubic-bezier(0.190, 1.000, 0.220, 1.000); /* easeOutExpo */
		transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000); /* easeOutExpo */
	}
	.myHeader .menu.active .menu-main {
		transform: translate(0%);
	}

	.myHeader .menu > ul > li {
		line-height: 1;
		margin:0;
		display: block;
	}
	.myHeader .menu > ul > li > a {
		color: var(--white);
		font-size: 1.6rem;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0.5px;
    height: 60px;
    padding: 0 50px 0 5px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.myHeader .menu > ul > li > a i {
		position: absolute;
		height: 60px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 70px;
		transform: rotate(-90deg);
	}
	.myHeader .menu .mobile-menu-head {
		display: flex;
		height: 70px;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		justify-content: space-between;
		align-items: center;
		/*position: relative;*/
		z-index: 501;
		position: sticky;
		/*background-color: #282110;*/
		top:0;
	}
	.myHeader .menu .mobile-menu-head .go-back {
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(255,255,255,0.2);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color: var(--white);
		font-size: 16px;
		display: none;
	}
	.myHeader .menu .mobile-menu-head.active .go-back {
		display: block;
	}
	.myHeader .menu .mobile-menu-head .current-menu-title {
		font-size: 14px;
		font-weight: 700;
		color: var(--white);
		text-transform: uppercase;
		letter-spacing: 0.1em;
	}
	.myHeader .menu .mobile-menu-head .mobile-menu-close {
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(255,255,255,0.2);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color: var(--white);	
		font-size: 25px;
		font-weight: 300;
	}
	.myHeader .menu .mobile-menu-btn {
		display: block;
	}
	.myHeader .menu .menu-main {
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0 25px;
	}
	
	.myHeader .menu > ul > li .sub-menu.mega-menu,
	.myHeader .menu > ul > li .sub-menu {
		visibility: visible;
		opacity: 1;
		position: absolute;
		margin:0;
		padding:30px 25px 150px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
		background-color: var(--submenu-bg-responsive);
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1), -2px 0 10px rgba(0, 0, 0, 0.1);
		border-bottom-right-radius: 0px;
  		border-bottom-left-radius: 0px;
	}
	.myHeader .menu > ul > li .sub-menu.active {
		display: block;
	}
	
	@keyframes slideLeft {
		0%{
			opacity:1;
			transform: translateX(100%);
		}
		100%{
			opacity:1;
			transform: translateX(0%);	
		}
	}
	@keyframes slideRight {
		0%{
			opacity:1;
			transform: translateX(0%);
		}
		100%{
			opacity:1;
			transform: translateX(100%);	
		}
	}

	
	.myHeader .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title,
	.myHeader .menu > ul > li .sub-menu.mega-menu-column-5 > .list-item .title {
		color: #fff;
		border-bottom: none;
		margin-bottom: 10px;
	}
	
	.myHeader .menu > ul > li .sub-menu.mega-menu ul {
		margin-bottom: 25px;
		margin-left: 15px;
		border-left: 1px solid rgba(255,255,255,0.4);
		padding: 0 20px 0 20px;
	}
	.myHeader .menu > ul > li .sub-menu a,
	.myHeader .menu > ul > li .sub-menu.mega-menu a {
		display: block;
		font-size: 16px;
		color: #fff;
		transition: color 0.3s ease;
		letter-spacing: 0.05em;
	}

	.myHeader .menu > ul > li .sub-menu.mega-menu li {
		margin-bottom: 18px;
	}
	.myHeader .menu > ul > li .sub-menu.mega-menu a {
		padding: 0;
		color: #fff;
	}
	.menu-overlay {
		position: fixed;
		background-color: rgba(0,0,0,0.6);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active {
		visibility: visible;
		opacity:1;	
	}
	
	.headerCTA {
		margin-bottom: 50px;
		padding: 0 25px;
	}
	.btn_headerCTA {
		width: 100%;
		text-align: center;
	}
	
	.hideMob {
		display: none !important;
	}
}

