@charset 'utf-8'; 

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ G E N E R A L.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body.nav-open {
	overflow: hidden;
}
.header {
	position: fixed;
	top: 0;
	z-index: 20;
	width: 100%;
	padding: 1.5rem 0;
	background: none;
}
.scroll .header{
	background-color: var(--color-nuit);
	transition: all 300ms ease-in!important;
}
.header::before{
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	width: 100%;
	height: 100%;
	/*background-blend-mode: multiply, normal;*/
}
.home .header::before{
	/*background: url("../img/noise3.png") center center repeat;*/
	/*background-blend-mode: multiply, normal;*/
}
.header::before{
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	width: 100%;
	height: 150%;
	/*background: linear-gradient(180deg,rgba(26, 32, 52, 1) 0%, rgba(26, 32, 52, 1) 60%, rgba(26, 32, 52, 0.5) 90%, rgba(26, 32, 52, 0) 100%);*/
	background: linear-gradient(180deg,rgba(26, 32, 52, 1) 0%, rgba(26, 32, 52, 1) 36%, rgba(26, 32, 52, 0.5) 65%, rgba(26, 32, 52, 0) 100%);
	transition: all 150ms ease-in!important;
}
/*
.header::before{
	height: 100%;
	background: linear-gradient(180deg,rgba(26, 32, 52, 1) 0%, rgba(26, 32, 52, 1) 60%, rgba(26, 32, 52, 0.5) 90%, rgba(26, 32, 52, 0) 100%);
	transition: all 300ms ease-in!important;
}
*/
/*
.header::after{
	content: "";
	position: absolute;
	z-index: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(179deg,rgba(26, 32, 52, 1) 0%, rgba(26, 32, 52, 0) 29%, rgba(26, 32, 52, 0) 100%);
	background-blend-mode: multiply, normal;
}
*/
.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-flow: column wrap;
	align-items: flex-start;
}
.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.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ MAIN NAV */
.nav {
	z-index : -1;
	opacity: 0;
	position: fixed;
	overflow: hidden;
	overflow-y: auto;
	width: 100%;
	/*height: 100%;*/
	left: 0;
	top: 5.5em;
	padding: 0 1em;
	/*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;
	opacity: 1;
	z-index: 99;
}
.nav-animate .nav {
	transition: all 300ms ease-in;
}
.nav-open.nav-animate .nav {
	transition: all 300ms ease-out;
}
.nav-open .header{
	transition: background 300ms ease-in;
}
.nav > ul > li {
	margin-bottom: 1.5rem;
} 
.nav a, .wpml-ls a {
	display: inline-block;
	/*padding: .35rem 1rem;*/
	font-weight: 400;
	text-transform: lowercase;
	text-decoration: none;
	color: var(--color-blanc);
	cursor: pointer !important;
}
.nav .menu > li > a {
	letter-spacing: 0.1rem;
}
.nav .current-menu-ancestor > a,
.wpml-ls .wpml-ls-current-language a {
	color: var(--color-blanc);
}
.nav a:hover{
	color: var(--color-rose);
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SUB-MENUS */
.nav .sub-menu {
	overflow: hidden;
	max-height: 0;
	/*max-height: 100vh;*/
	transition: max-height 500ms ease;
}
.nav .sub-menu.collapsed,
.nav .hovered .sub-menu.collapsed {
	max-height: 100vh;
	transition: max-height 1.25s ease;
}
.nav .sub-menu a {
	font-size: var(--font-s);
	text-transform:none;
	/*white-space: nowrap;*/
}
.nav .sub-menu.collapsed .sub-menu {
	transition: max-height 500ms ease;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~ BURGER BUTTON */
.burger {
	z-index: 101;
	position: absolute;
	right: 20px;
	top: 5px;
}
.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: 1px;
	width: 50%;
	top: 50%;
	right: 0;
	border-radius: 1px;
	background: var(--color-noir);
	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: var(--color-noir);
	width: 50%;
}
.burger span:nth-child(2) {
	width: 40%;
}
.burger span:nth-child(3) {
	width: 40%;
}
.burger span:nth-child(4) {
	width: 30%;
}
.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;
}
.nav .current-post-ancestor > a,
.nav .current-category-ancestor > a,
.nav .current-menu-parent > a,
.nav .current-menu-ancestor > a,
.nav .current-menu-item > a{
	color: var(--color-rose);
}

.nav .current-post-ancestor > a,
.nav .current-category-ancestor > a,
.nav .current-menu-parent > a,
.nav .current-menu-ancestor > a,
.nav .current-menu-item > a{
	color: var(--color-rose);
}

/*~~~~~~~~~~~~~ SMALL DEVICES  ⟾  DESKTOP.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media only screen and (min-width: 340px) and (max-width: 991px){
	.header{
		/*overflow: hidden;*/
		transition: all .3s ease-out;
	}
	.logo {
		position: relative;
		z-index: 99;
	}
	.header-right{
		width: 100%;
		opacity: 1;
		transition: all 200ms ease-in;
	}
	.nav-open .header-right {
		/*opacity: 0;*/
		transition: all 200ms ease-out;
	}
	.search-open .header{
		overflow: visible;
	}
	.top-menu-items{
		position: absolute;
	}
	.search-wrapper{
		position: relative;
		z-index: -1;
		width: 100%;
		transform: translateY(200%);
		opacity: 0;
		transition: all .3s ease-in;
	}
	.search-open .search-wrapper{
		opacity: 1;
		transform: translateY(70px);
		transition: all .3s ease-out;
	}
	.top-menu-items .headerSearchButton {
		right: 75px;
		top: 11px;
	}
	.top-menu-items .headerSearchButton i{
		font-size: 1.2em;
		color: var(--color-gris);
	}
	.nav{
		overflow: scroll;
		padding-top: 0.5em;
		background-color: var(--color-gris);
		height: 100vh;
		text-align: center;
		padding-bottom: 100px;
	}
	.nav .menu{
		padding-top: 3em;
		line-height: 3.4rem;
	}
	.header ul{
		align-content: flex-start;
	}
	.nav ul.sub-menu{
		flex-wrap: nowrap;
	}
	.nav a, .wpml-ls a {
		font-weight: 400;
		letter-spacing: 0;
		transition: all .2s ease-in;
		color: var(--color-noir);
		text-transform: none;
		font-size: var(--font-sm);
		font-weight: 400;
	}
	.wpml-ls a {
		font-size: var(--font-s);
	}
	.nav > ul > li {
		margin-bottom: 3rem;
		width: 100%;
	}
	.nav a:hover,
	.nav .current-menu-ancestor > a,
	.touchevents .nav .current-menu-item a,
	.no-touchevents .nav > ul > li:hover a {
		color: var(--color-noir);
	}
	.no-touchevents .nav > .sub-menu > li a {
		letter-spacing: normal;
	}
	.nav > ul > li > a,
	.nav > ul > li.menu-item-1495 > .sub-menu > li > a,
	.nav > ul > li.menu-item-53 > .sub-menu > li > a{
		text-transform: uppercase!important;
		letter-spacing: 0.1rem;
	}
	.nav > ul > li.menu-item-1495 > .sub-menu > li > a,
	.nav > ul > li.menu-item-53 > .sub-menu > li > a{
		color: var(--color-grisf);
		font-weight: 600;
		margin-top: 1rem;
	}
	
}
/*~~~~~~~~~~~~~ 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';
	}
	.logo {
		max-width: 100px;
	}
}


/*~~~~~~~ P H O N E  —  L A N D S C A P E  |  4 3 3  ⟾  7 3 6.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media only screen and (min-width: 433px) {
	.device {
		content: 'phone-landscape';
	}
	.header{
		/*box-shadow: 0px 3px 20px hsla(0, 0%, 0%, 0.16);*/
	}
}


/*~~~~~~~ T A B L E T  —  P O R T R A I T  |  7 3 7  ⟾  8 0 0.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media only screen and (min-width: 737px) {
	.device {
		content: 'tablet-portrait';
	}
	.logo {
		max-width: 135px;
	}
}


/*~~~ T A B L E T  —  L A N D S C A P E  |  8 0 0  ⟾  1 0 2 4.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media only screen and (min-width: 801px) {
	.device {
		content: 'tablet-landscape';
	}
}


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

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ MONITOR */
@media only screen and (min-width: 992px) {
	.device {
		content: 'monitor';
	}
	.top-menu-items{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	body.nav-open {
		overflow-y: visible;
	}
	.header{
		padding: 3rem 0;
	}
	.header ul {
		width: 100%;
		flex-direction: row;
		align-items: center;
	}
	.header .logo{
		padding: 1rem 1rem 1.5rem 1rem;
	}
	.nav {
		opacity: 1;
		z-index: 99;
		display: flex;
		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 > ul > li {
		position: relative;
		padding-right: 1vw;
	}
	.nav li:last-child {
		padding-right: 0;
	}
	.nav > ul > li {
		margin-bottom: 0;
	}
	.nav > ul > li {
		margin-bottom: 0;
	}
	.nav a, .wpml-ls a {
		font-size: var(--font-xs);
		line-height: var(--lineh-xs);
		font-weight: 500;
		transition: all .2s ease-in;
	}
	.nav .menu > li > a {
		padding: 1rem;
	}
	/*
	.no-touchevents .nav > ul > li.hovered:hover > a {
		color: var(--color-violet)!important;
	}
	*/
	.no-touchevents .nav > ul > li:hover ul li a {
		color: var(--color-rose)!important;
	}
	.no-touchevents .nav > .sub-menu > li a {
		color: var(--color-rose)!important;
	}
	.no-touchevents .nav .sub-menu a:hover,
	.no-touchevents .wpml-ls a:hover {
		color: var(--color-rose)!important;
	}
	.no-touchevents .nav .sub-menu li a:hover,
	.wpml-ls .wpml-ls-current-language a,
	.no-touchevents .wpml-ls a:hover {
		color: var(--color-rose)!important;
	}
	.nav .sub-menu li a {
		padding-bottom: 7px;
		color: var(--color-noir);
	}
	.nav ul li a.active,
	.nav ul li a:hover{
		opacity: 1;
	}
	.nav .sub-menu li a{
		border:none!important;
		/*line-height: 1.6rem;*/
	}
	.nav .current-page-ancestor a,
	.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-rose);
	}

	/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SUB-MENUS */
	.nav .sub-menu {
		overflow: visible;
		flex-direction: column;
		align-items: flex-start;
		align-content: flex-start!important;
		position: absolute;
		width: auto;
		max-height: none;
		left: 0;
		padding: 1.5em 1em 1em 0;
		margin: 0;
		pointer-events: none;
		transition: none;
	}
	.nav .sub-menu .sub-menu{
		position: relative;
		z-index: 5;
		width: auto;
		left: auto;
		padding: 0 0 1em 0;
		margin-left: 0;
	}
	.nav .hovered .sub-menu li,
	.nav .hovered .sub-menu .sub-menu{
		position: relative;
		z-index: 15;
	}
	.nav .menu > li.menu-item-1495 > .sub-menu,
	.nav .menu > li.menu-item-53 > .sub-menu{
		flex-wrap: nowrap;
		flex-direction: row;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.nav .sub-menu.collapsed {
		max-height: none;
	}
	.nav .menu  > li > ul.sub-menu::before {
		content: '';
		z-index: -1;
		position: absolute;
		display: block;
		width: 200vw;
		height: 0;
		top: 0;
		left: -100vw;
		background: transparent linear-gradient(180deg, #FFFFFF 0%, #F6F6F6 80%) 0% 0% no-repeat padding-box;
		pointer-events: none;
		transition: all .25s ease-in;
	}
	.nav .sub-menu li {
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-.5em);
		transition: transform .1s ease-in 0s, opacity .1s ease-in 0s;
	}
	/* Opened */
	.nav-open .nav .sub-menu {
		pointer-events: auto;
	}
	.nav-open .nav .hovered .sub-menu li {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		transition: transform .2s ease-in .2s, opacity .2s ease-in .2s;
	}
	.nav-open .menu  li > ul.sub-menu::before {
		height: 100%;
		transition: height .35s ease-out;
	}
	.burger {
		display: none;
	}

	/*~~~~~~~~~~~~~~~~~~~~~~ L A N G U A G E */
	.wpml-ls, .nav-open .wpml-ls {
		z-index: auto;
		position: relative;
		right: auto;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		transition: none;
	}
}

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

@media only screen and (min-width: 1340px) {
	.device {
		content: 'monitor-laptop-narrow';
	}
	.nav > ul > li {
		/*padding-right: 3vw;*/
	}
	.nav .menu > li > a {
		padding: 0.8rem 2rem;
	}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~ 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';
	}
}
