@charset 'utf-8'; 

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ G E N E R A L.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body.nav-open {
	overflow: hidden;
}
.header {
	position: sticky;
	z-index: 10;
	top: 0;
	width: 100%;
	background-color: var(--color-blanc);
	padding: 1em 0;
	/*box-shadow: 0px 10px 10px hsla(0,0%,0%,.02);*/
}
.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	justify-content: flex-end;
}
.device {
	z-index: -1000;
	display: block;
	visibility: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ LOGO */
.logo {
	align-self: flex-start;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ N A V I G A T I O N.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.nav {
	z-index : 99;
	position: fixed;
	overflow: hidden;
	overflow-y: auto;
	width: 100%;
	height: 100%;
	left: 0;
	top: 4em;
	/*padding: 6rem calc(10px + 2vw) 2rem;*/
	background: #FFF;
	transform: translateX(-100%); 
	will-change: transform;
	pointer-events: none;
	-webkit-overflow-scrolling: touch;
}
.nav, .wpml-ls {
	color: hsla(0, 0%, 100%, 1);
}
.nav-open .nav {
	transform: none;
	pointer-events: auto;
}
.nav-animate .nav {
	transition: transform 130ms ease-in;
}
.nav-open.nav-animate .nav {
	transition: transform 330ms ease-out;
}
.nav > ul > li {
	margin-bottom: 1.5rem;
} 
.nav a {
	display: inline-block;
	font-size: var(--font-s);
	line-height: var(--lineh-s);
	padding: .5rem 1rem;
	text-align: center;
	text-decoration: none;
	color: inherit;
	cursor: pointer !important;
	text-wrap: balance;
}
.nav a:last-child{
	padding-right: 0;
}
.main-nav.nav li{
	margin-left: 3vw;
	font-size: var(--font-m);
}
.main-nav.nav li a{
	padding-bottom: 0;
}
.nav .current-menu-item a,
.nav .current-menu-ancestor a,
.wpml-ls .wpml-ls-current-language a {
	color: var(--color-rouge);
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SUB-MENUS */
.nav .sub-menu {
	overflow: hidden;
	max-height: 0px;
	transition: max-height .6s ease;
}
.nav .sub-menu.collapsed {
	max-height: 100vh;
	transition: max-height .6s ease;
	-webkit-transition: max-height .6s ease;
	-moz-transition: max-height .6s ease;
	-ms-transition: max-height .6s ease;
	-o-transition: max-height .6s ease;
}
.nav .sub-menu a {
	font-weight: 400;
	text-transform:none;
	white-space: nowrap;
}
/*
.nav a.inactive::after{
	font-family: accn;
	content: "\e906";
	position: absolute;
	transform: rotate(0deg);
	transition: transform .1s ease-in 0s;
	font-size: 1rem;
	line-height: 1rem;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}
.nav a.active::after{
	transform: rotate(180deg);
	transition: transform .1s ease-in 0s;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}
*/
/*~~~~~~~~~~~~~~~~~~~~~~~~ BURGER BUTTON */
.burger {
	z-index: 101;
	position: absolute;
	right: 10px;
}
.burger button {
	position: relative;
	display: block;
	width: 3em;
	height: 3rem;
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	cursor: pointer;
	background: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	pointer-events: auto;
}
.burger span {
	display: block;
	position: absolute;
	height: 2px;
	width: 60%;
	top: 50%;
	left: 30%;
	border-radius: 1px;
	background: #000;
	transform: rotate(0deg);
	transition: all .25s ease-in-out;
}
html:not(.no-touchevents) .burger span:not(:nth-child(3)) {
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
}
.burger span:nth-child(1) {
	margin-top: -7px;
}
.burger span:nth-child(4) {
	margin-top: 7px;
}
/* Opened */
.nav-open .burger span {
	background: #000;
	width: 60%;
}
.nav-open .burger span:nth-child(1), .nav-open .burger span:nth-child(4)  {
	width: 0;
	margin-top: 0;
	left: 50%;
	transition: all .25s ease-in-out;
}
.nav-open .burger span:nth-child(2) {
	transform: rotate(45deg);
	transition: all .25s ease-in-out;
}
.nav-open .burger span:nth-child(3) {
	transform: rotate(-45deg);
	transition: all .25s ease-in-out;
}

/*~~~~~~~~~~~~~~~~~~~~~~ L A N G U A G E */
.wpml-ls {
	z-index: 100;
	position: absolute;
	right: 15px;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-.5em);
	transition: transform .1s ease-in 0s, opacity .1s ease-in 0s;
}
.nav-open .wpml-ls {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
	transition: transform .1s ease-in .17s, opacity .1s ease-in .17s;
}
.wpml-ls ul {
	flex-direction: row;
}
.wpml-ls li::before {
	content: '';
	display: inline-block;
	width: 1px;
	height: .65em;
	margin-right: -.25em;
	background-color: hsla(33, 48%, 75%, 1);
}
.wpml-ls li:first-child::before {
	display: none;
}

/*~~~~~~~~~~~~~ SMALL DEVICES  ⟾  DESKTOP.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media only screen and (min-width: 340px) and (max-width: 989px){
	.nav {
		padding: 5rem 2rem;
	}
	.nav a, .wpml-ls a {
		display: inline;
		position: relative;
		font-size: 2rem;
		line-height: 2rem;
		font-weight: 400;
		color: var(--color-noir);
		transition: all .2s ease-in;
		text-align: left;
		width: 100%!important;
	}
	.nav > ul > li {
		margin-bottom: 4rem;
		width: 100%;
	}
	.sub-menu li{
		position: relative;
		padding-top: 15px;
		width: 100%;
	}
	.no-touchevents .nav > .sub-menu > li a {
		letter-spacing: normal;
		color: var(--color-noir);
		font-size: 1.8rem;
	}
	.no-touchevents .nav .sub-menu a:hover {
		color: var(--color-noir)!important;
	}
	.touchevents .nav .sub-menu .current-menu-item a,
	.touchevents .nav .sub-menu li a:hover{
		color: var(--color-noir)!important;
		text-decoration: underline!important;
	}
	.nav .active-parent > a{
		color: var(--color-noir)
	}
	.nav a.inactive::after{
		top: 35%;
		right: -25px;
		font-size: 2rem;
	}
	.nav .current-menu-item a, .nav .current-menu-ancestor a{
		color: var(--color-noir);
	  }
	.nav .current-menu-ancestor ul li.current-menu-item a,
	.nav .current-menu-item ul li.current-menu-item a {
		text-decoration: underline !important;
		color: var(--color-rouge)!important;
	}
	.scroll-margin{
		scroll-margin-top: 4em;
	}
}
/*~~~~~~~~~~~~~ P H O N E  —  P O R T R A I T  |  1  ⟾  7 3 6.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media only screen and (max-width: 736px) {
	.device {
		content: 'phone-portrait';
	}
	.nav-open .nav a + ul.sub-menu.collapsed {
		color:var(--color-blanc);
	}
	.header{
		padding: 1rem 0;
	}
	.logo {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100%;
		max-width: 80px;
	}
}

/*~~~~~~~ T A B L E T   |  7 3 7  ⟾  9 9 1.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media only screen and (min-width: 737px) {
	.device {
		content: 'tablet-portrait';
	}
	.header{
		padding: 2rem 0;
	}
	.logo {
		max-width: 135px;
	}
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~ M O N I T O R  |  1 0 2 5  ⟾  ∞.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ MONITOR */
@media only screen and (min-width: 992px) {
	.device {
		content: 'monitor';
	}
	body.nav-open {
		overflow-y: visible;
	}
	.nav.top-nav {
		padding: 10px 0;
	}
	.top-nav form,
	.top-nav ul li{
		margin-left: 2vw;
	}
	.top-nav a{
		font-size: var(--font-xs);
		line-height: var(--lineh-xs);
	}
	.header ul {
		width: 100%;
		flex-direction: row;
		align-items: center;
	}
	.nav {
		display: flex;
		z-index: auto;
		overflow: visible;
		position: relative;
		width: auto;
		left: auto;
		top: auto;
		flex-grow: 1;
		padding: 0;
		margin: 0;
		color: var(--color-noir);
		background: none;
		transform: none;
		will-change: auto;
		pointer-events: auto;
	}
	.nav li {
		position: relative;
	}
	.nav > ul > li {
		margin-bottom: 0;
	}
	.nav > ul > li {
		margin-bottom: 0;
	}
	.nav a, .wpml-ls a {
		transition: all .1s ease-in;
	}
	.nav .current-category-ancestor a,
	.nav .current-menu-ancestor a,
	.no-touchevents .nav > ul > li:hover a {
		color: var(--color-roouge);
	}
	.no-touchevents .nav > .sub-menu > li a {
		color: var(--color-noir)!important;
	}
	.no-touchevents .nav .sub-menu a:hover,
	.no-touchevents .wpml-ls a:hover {
		color: var(--color-rouge)!important;
		text-shadow: -.015em 0 var(--color-rose),.015em 0 var(--color-rose);
	}
	.no-touchevents .nav .sub-menu li a:hover,
	.wpml-ls .wpml-ls-current-language a,
	.no-touchevents .wpml-ls a:hover {
		color: var(--color-rouge)!important;
		text-shadow: -.015em 0 var(--color-rose),.015em 0 var(--color-rose);
	}
	.nav .sub-menu li a {
		color: var(--color-noir)!important;
	}
	.nav .current-menu-parent > a,
	.nav .current-menu-ancestor > a,
	.nav .current-menu-item > a{
		color: var(--color-rouge);
	}
	.nav ul li a.active,
	.nav ul li a:hover{
		opacity: 1;
	}
	.nav .sub-menu li a{
		border:none!important;
	}
	.nav .current-menu-ancestor ul li.current-menu-item a,
	.nav .current-menu-item ul li.current-menu-item a,
	.wpml-ls .wpml-ls-current-language a {
		text-decoration: underline !important;
		color: var(--color-rouge)!important;
	}
	/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SUB-MENUS */
	.nav a.inactive::after{
		top: 35%;
		right: -7px;
	}
	.nav .sub-menu {
		overflow: visible;
		flex-direction: column;
		align-items: flex-start;
		position: absolute;
		width: auto;
		max-height: none;
		left: -1em;
		padding: 0.5em 1em;
		pointer-events: none;
		transition: none;
		line-height: 3rem;		
	}
	.nav .sub-menu.collapsed {
		max-height: none;
		background-color: #FFF;
	}

	.nav .sub-menu::before {
		content: '';
		z-index: -1;
		position: absolute;
		display: block;
		width: 100%;
		height: 0%;
		left: 0;
		top: 0;
		background-color: #FFF;
		pointer-events: none;
		transition: height .1s ease-in;
	}

	.nav .sub-menu li {
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-.5em);
		transition: none;
		margin-left: 0;
	}
	/* Opened */
	.nav-open .nav .sub-menu {
		pointer-events: auto;
	}
	.nav-open .nav .sub-menu.collapsed li {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		transition: none;
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
}
	.nav-open .nav .sub-menu.collapsed::before {
		height: 100%;
		transition: none;
	}
	.nav-open .nav .sub-menu.collapsed {
		padding-top: 1em;
		border-bottom: 2px solid var(--color-noir);
	}
	.burger {
		display: none;
	}
	/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SEARCH */
	.header form {
		display: flex;
		position: relative;
		max-width: 30rem;
	}
	.header input, .header button {
		border: 1px solid #000;
		color: #000;
	}
	.header input[type=search] {
		outline: 0;
		width: 100%;
		background: #fff;
		padding: 0 1.6rem 0 3rem;
		-webkit-appearance: none;
		 -moz-appearance: none;
			  appearance: none;
		transition: all 300ms ease;
		transition-property: width, 1rem;
		z-index: 1;
		position: relative;
		font-size: var(--font-xs);
		height: 30px;
	}
	.header form i {
		position: absolute;
		z-index: 15;
		top: 8px;
		left: 8px;
		font-size: 1.5rem;
	}
	.header button {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		width: 4rem;
		height: 30px;
		background: #fff;
		font-size: var(--font-xs);
	}
	.header input:not(:-moz-placeholder-shown) {
	  width: calc(100% - 4rem);
	}
	.header input:not(:-ms-input-placeholder) {
	  width: calc(100% - 4rem);
	}
	.header input:not(:placeholder-shown) {
	  width: calc(100% - 4rem);
	}
	.header input:not(:-moz-placeholder-shown) + button {
	  display: block;
	}
	.header input:not(:-ms-input-placeholder) + button {
	  display: block;
	}
	.header input:not(:placeholder-shown) + button {
	  display: block;
	}
	.scroll-margin{
		scroll-margin-top: 200px!important;
	}
}

/*~~~~~~~~~~~~~~~~~~~~~~~ MONITOR LAPTOP */

@media only screen and (min-width: 1240px) {
	.device {
		content: 'monitor-laptop-narrow';
	}
	.nav ul li#menu-item-23 a{
		margin-left: 15px;
	}
	.nav ul li#menu-item-23 a::before{
		position: absolute;
		top: 0px;
		left: -20px;
		width: 1px;
		height: 100%;
		content: "";
		background-color: var(--color-gris);
	}

}
@media only screen and (min-width: 1340px) {
	.device {
		content: 'monitor-laptop';
	}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~ MONITOR LARGE */
@media only screen and (min-width: 1540px) {
	.device {
		content: 'monitor-large';
	}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~ MONITOR WIDE */
@media only screen and (min-width: 1860px) {
	.device {
		content: 'monitor-wide';
	}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~ MONITOR GIANT */
@media only screen and (min-width: 2440px) {
	.device {
		content: 'monitor-giant';
	}
}
