@media (max-width: 767px) {

	.navigation-wrapper li a {
		font-size: 18px !important;
		line-height: 1.5em;
	}

}

@media (max-width: 1199px) {

	/*
	--------------------------------------
	Container
	--------------------------------------
	*/

	.navigation-wrapper {
		position: fixed;
		z-index: 5;
		top: 0;
		bottom: 0;
		width: 100%;
		right: 0;
		pointer-events: none;
	}

	.navigation-wrapper .navigation-container {
		position: relative;
		background-color: var( --e-global-color-primary );
		transform: translate3d(-100%, 0, 0);
		transition: all 0.3s ease-in-out;
		width: 100%;
		max-width: 320px;
		height: 100%;
		margin: 0;
		list-style-type: none;
	}

	.navigation-wrapper.--is-active .navigation-container {
		transform: translate3d(0, 0, 0);
		pointer-events: all;
	}
	#primary-menu > li:last-of-type{
		background: var( --e-global-color-primary );
	}

	/*
	--------------------------------------
	Burger
	--------------------------------------
	*/

	.burger {
		width: 40px;
		margin: auto;
	}
	.burger svg *{
		stroke: white !important;
	}
	
	.home .burger {
		color: #fff;
	}

	.home .main-header__container--is-fixed .burger {
		color: #fff;
	}

	/*
	--------------------------------------
	Close
	--------------------------------------
	*/

	.close {
		display: flex;
		justify-content: flex-end;
		color: white;
		padding: 1em 1em 2em 2em;
	}

	/*
	--------------------------------------
	Overlay
	--------------------------------------
	*/

	.overlay {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		height: 100%;
		width: 0;
		background: rgba(13, 15, 24, .3);
		transition: all 0.3s ease-in-out;
	}

	.navigation-wrapper.--is-active .overlay {
		width: 100%;
		pointer-events: all;
	}

	/*
	--------------------------------------
	Menu
	--------------------------------------
	*/

	/*Parent*/

	.navigation-container .menu {
		flex-direction: column;
	}

	.navigation-wrapper li {
		position: relative;
		padding-left: 2em;
		padding-bottom: 1.5em;
	}

	.navigation-wrapper li a {
		display: inline-block;
		text-decoration: none;
	}

	.navigation-wrapper .menu-link {
		font-weight: 600;
		color: white;
	}

	.navigation-container li.menu-item-has-children:after {
		position: absolute;
		z-index: 10;
		right: 20px;
		top: 0.5em;
		border-bottom: 2px solid var(--e-global-color-primary);
		border-right: 2px solid var(--e-global-color-primary);
	}

	.navigation-container li.menu-item-has-children--active:after {
		transform: rotate(225deg);
	}

	.navigation-actions-list li a {
		display: flex;
		align-items: center;
	}

	.navigation-container li.menu-item-has-children a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

	.navigation-actions-list li:nth-child(n+5) a span {
		margin-left: 0.5em;
	}

	.main-header__container--is-fixed .navigation-container li.menu-item-has-children > .menu-link:after {
		border-bottom: 2px solid #fff;
		border-right: 2px solid #fff;
	}

	/*Submenu*/

	.ast-header-break-point .dropdown-menu-toggle {
		display: block;
		margin-right: 20px;
	}

	.sub-menu {
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		height: 0;
		pointer-events: none;
		transition: all 350ms ease-in-out;
	}

	.sub-menu--active {
		opacity: 1;
		visibility: visible;
		height: 100%;
		pointer-events: all;
		padding-top: .55em;
		font-size: 16px !important;

	}
	.sub-menu--active li a{
		font-size: 16px !important;

	}

	.navigation-wrapper .sub-menu li {
		padding: 0;
	}

	.navigation-container .sub-menu .menu-link {
		color: white;
	}

}

@media (min-width: 1200px) {

	/*
	--------------------------------------
	Menu
	--------------------------------------
	*/

	/*Parent*/

	/*commenter le position: relative si on souhaite que le sous-menu ne prenne pas toute la largeur du parent*/
	.navigation-wrapper ul {
		position: relative;
		display: flex;
		justify-content: center;
	}

	/*décommenter le position: relative si on souhaite que le sous-menu s'affiche en dessous du menu parent*/
	.navigation-container li {
		/*position: relative;*/
		display: flex;
		align-items: center;
		text-transform: uppercase;
	}

	.navigation-container .menu > .menu-item {
		justify-content: center;
	}

	.navigation-container .menu-item-has-children {
		padding: 0 1em;
	}

	/*body:not(.home) .navigation-wrapper .menu-item--parent > .menu-link,*/
	/*.main-header__container--is-fixed .navigation-wrapper .menu-link {*/
	/*	color: #000;*/
	/*}*/

	.navigation-wrapper .menu-link:hover {
		border-bottom: 1px solid currentColor;
	}

	/*Submenu*/

	.navigation-container li .sub-menu {
		position: absolute;
		z-index: 10;
		gap:0;
		top: 100%;
		flex-direction: column;
		opacity: 0;
		background: transparent;
		pointer-events: none;
		border-top: 2px solid var(--e-global-color-primary);
		line-height: 2.25em;
		transition: all 0.35s ease-in-out;
		max-width: 30%;
		margin-left: 0;
		padding: 1em 0 1em .5em;
	}

	.navigation-container li .sub-menu:after {
		content: "";
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 1);
		backdrop-filter: blur(30px);
		-webkit-backdrop-filter: blur(30px);
	}

	.navigation-container li:hover .sub-menu {
		opacity: 1;
		pointer-events: all;
	}

	.navigation-container .sub-menu .menu-item--all-products {
		display: none;
	}

	/*
	--------------------------------------
	Elements
	--------------------------------------
	*/

	.navigation-actions-container,
	.close,
	.burger-container,
	.navigation-actions-container {
		display: none;
	}

}



/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	#primary-menu li:last-of-type{
		border-radius: 0px;
		position: relative;
		width: 100%;
		height: auto;
	}
	#primary-menu > li:last-of-type a{
		margin-top:50px;
		margin-right: 0;
		padding: 5%;
		background-color:var( --e-global-color-secondary );
		border-radius: 50px;
	}
	#primary-menu li:last-of-type::after{
		display: none;
	}

	.hide-mobile{
		display: none !important;
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {



	.hide-tablet{
		display: none !important;
	}

}

@media (min-width: 1024px) and (max-width: 1025px) {



}


/*mobile and tablet*/
@media (max-width: 1024px) {



}


/*desktop*/
@media (min-width: 1025px) {

	.hide-desktop{
		display: none !important;
	}
}

/*laptop 1 aka 150%*/
@media (min-width: 1024px) and (max-width: 1439px) {



}

/*laptop 2 aka 125%*/
@media (min-width: 1440px) and (max-width: 1700px) {



}

/*RESPONSIVE*/



