@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: 0;
	transition: background 300ms ease-in!important;
}
.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-flow: column wrap;
	/*align-items: flex-start;*/
	/*align-content: flex-end;*/
	justify-content: space-between;
}
.main-header{
	padding: 2rem 4rem 1.5rem 4rem;
	background-color: var(--color-blanc);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	transition: margin 200ms ease-in!important;
}
.home .main-header{
	background-color: rgba(255,255,255,0.60);
}
.main-header.scroll{
	margin-top: 0;
	transition: margin 200ms ease-in!important;
	background-color: var(--color-blanc);
}
.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.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ TOP NAV */
.header .top-nav{
	gap: 3vw;
	padding: 6px 0;
}
.header .top-socials{
	gap: 1vw;
}
.header .top-menu ul {
	display: flex;
}
.header .top-menu ul li{
	margin-left: 2vw;
}
.header .top-menu a {
	font-size: var(--font-s);
	font-weight: 600;
	position: relative;
	display: inline-block;
	padding: 0.4rem 1rem;
	border: none;
	transition: all 0.3s ease-in-out;
	border-radius: 3rem;
}
.header .top-menu a:hover{
	transition: all 0.3s ease-in-out;
	background-color: var(--color-vert);
	color: var(--color-blanc);
	text-decoration: none!important;
}
.header .wpml-ls {
	border: none;
	padding: 0;
}
.socials a:hover{
	color: var(--color-vert)!important;
}

/*~~~~~~~~~~~~~~~~~~~~~~ LANGUAGE */
.wpml-ls {
	z-index: 100;
	position: absolute;
	right: 65px;
}
.wpml-ls ul {
	flex-direction: row;
	position: relative;
}
.wpml-ls li::before {
	content: '/';
	display: inline-block;
	position: absolute;
	font-size: 1.2rem;
	line-height: 2.3rem;
	margin-left: -2px;
	color: var(--color-blanc);
}
.wpml-ls li:first-child::before {
	display: none;
}
.wpml-ls li a {
	font-size: var(--font-xs);
	border-bottom: 1px solid transparent;
	padding: 2px 10px;
}
.wpml-ls li a:hover {
	color: var(--color-blanc);
}
.wpml-ls .wpml-ls-current-language .wpml-ls-native{
	font-weight: bold;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ MAIN NAV */
.nav {
	z-index : 99;
	position: fixed;
	overflow: hidden;
	overflow-y: auto;
	width: 100%;
	height: 100%;
	left: 0;
	top: 70px;
	padding: 0 1em;
	background: var(--color-blanc);
	transform: translateX(-100%); 
	will-change: transform;
	pointer-events: none;
	-webkit-overflow-scrolling: touch;
}
.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;
	width: auto;
} 
.nav a {
	display: inline-block;
	/*padding: .35rem 1rem;*/
	font-size: var(--font-s);
	font-weight: 600;
	text-decoration: none;
	color: var(--color-bleuf);
	cursor: pointer !important;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SUB-MENUS */
.nav .sub-menu {
	overflow: hidden;
	max-height: 0;
	transition: all 300ms ease;
}
.nav .sub-menu.collapsed {
	max-height: 50vh;
	z-index: 99;
	transition: all 300ms ease-out;
}
.nav .sub-menu a {
	font-size: var(--font-s);
	text-transform:none;
	text-align: left;
	display: block;
}
.nav .menu .sub-menu li:first-child {
	padding-top: 15px;
}
.nav .menu .sub-menu li:last-child {
	padding-bottom: 15px;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~ BURGER BUTTON */
.burger {
	z-index: 101;
	position: absolute;
	right: 0;
	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: 2px;
	width: 50%;
	top: 50%;
	left: 30%;
	border-radius: 1px;
	background: var(--color-bleu);
	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: -8px;
}
.burger span:nth-child(4) {
	margin-top: 8px;
}
/* Opened */
.nav-open .burger span {
	background: var(--color-bleu);
	width: 50%;
}
.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-blanc)!important;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ RECHERCHE */
.search-wrapper{
	position: absolute;
	right: 40px;
	max-width: 85%;
	transform: translateY(-150%);
	opacity: 1;
	transition: all .3s ease-in;
}
body.search-open .search-wrapper{
	background-color: var(--color-blanc);
	transform: translateY(0);
	transition: all .1s ease-out;
}
.headerSearchFrame {
	z-index: 100;
	width: auto;
	margin: 0;
}
.search-open .headerSearchFrame {
	z-index: 99;
	transform: none;
}
.search-animate .headerSearchFrame,
.search-open .headerSearchFrame,
.search-open.search-animate .headerSearchFrame {
	transition: opacity .3s ease-out;
}
body.search-open .headerSearchButton{
	/*background-color: var(--color-blanc);*/
}
.header .icon-close,
body.search-open .icon-loupe{
	display: none;
}
.icon-loupe,
body.search-open .icon-close{
	display: block;
}
.headerSearchButton{
	position: relative;
	display: block;
	padding: 0 15px;
	border: none;
	text-decoration: none;
	outline: none!important;
	border-radius: 0;
	cursor: pointer;
	background: none;
	transition: none!important;
}
.headerSearchField{
	padding: 5px 15px;
	background: none;
	border: none;
	color: var(--color-noir)!important;
}
.headerSearchFieldset{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.headerSearchFormSubmit{
	padding: 0 15px;
	text-transform: uppercase;
	cursor: pointer;
	background: none;
	outline: none;
	border: none;
	border-radius: 0;
}
.headerSearchForm .headerSearchField::placeholder{
	font-weight: 400;
	color: var(--color-noir);
	font-size: var(--font-xs);
}
.headerSearchForm .headerSearchField:focus{
	border: none!important;
}
/*~~~~~~~~~~~~~ SMALL DEVICES  ⟾  DESKTOP.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media only screen and (min-width: 340px) and (max-width: 991px){
	.main-header {
		padding: 2rem 3rem 2rem 2rem;
	}
	.nav{
		overflow:scroll;
		padding: 1.5em 3em;
		padding-bottom: 10rem;
		background-color: var(--color-violet);
		/*background: linear-gradient(180deg, var(--color-grisc) 65%, rgb(240, 237, 237) 65%);*/
	}
	.nav .menu{
		padding-top: 1em;
		line-height: 3rem;
	}
	.nav ul.sub-menu{
		flex-wrap: nowrap;
		margin-left: 1em;
	}
	.nav ul.sub-menu a{
		color: var(--color-blanc)!important;
		padding: 0.5em 0;
		line-height: var(--font-m);
	}
	.nav a {
		font-weight: 600;
		letter-spacing: 0.05rem;
		transition: all .2s ease-in;
		color: var(--color-blanc)!important;
	}
	.nav a br{
		display: none;
	}
	.nav > ul > li {
		margin-bottom: 1rem;
	}
	.nav > ul > li > a{
		display: block;
		position: relative;
		padding-bottom: 10px;
		border-bottom: 1px solid var(--color-bleu);
	}
	.nav > ul > li.menu-item-has-children > a::after{
		font-family: 'photosol';
		content: "\e902";
		position: absolute;
		right: 0;
		color: var(--color-bleu);
		transform: rotate(0);
		transition: transform .2s ease;
	}
	.nav > ul > li.menu-item-has-children.active-parent > a::after{
		transform: rotate(180deg);
		transition: transform .2s ease;
	}
	.nav a:hover,
	.nav .current-menu-ancestor > a,
	.touchevents .nav .current-menu-item a,
	.no-touchevents .nav > ul > li:hover a {
		/*color: var(--color-bleu)!important;*/
	}
	.no-touchevents .nav > .sub-menu > li a {
		letter-spacing: normal;
	}
	.touchevents .menu-item-has-children > a,
	.touchevents .nav .sub-menu .current-menu-item a,
	.touchevents .nav .sub-menu li a:hover {
		color: var(--color-blanc)!important;
	}
	.no-touchevents .nav .sub-menu a:hover {
		color: var(--color-blanc)!important;
	}
	.menu-bottom-mobile{
		display: flex;
		flex-direction: column;
		/*align-items: center;
		text-align: center;*/
	}
	.menu-bottom-mobile .menu li a{
		display: inline-block;
		border-radius: 30px;
		padding: 0.2em 1em 0.2em 0;
		margin-bottom: 1.5em;
		background-color: var(--color-bleu);
	}
	.menu-bottom-mobile .top-socials{
		margin-top: 1em;
		gap: 4vw!important;
	}
	.menu-bottom-mobile .top-socials a{
		font-size: var(--font-m)!important;
	}
}
/*~~~~~~~~~~~~~ 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: 145px;
	}
}


/*~~~~~~~ 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: 240px;
	}
	.header-list-sites.active{
		height: 3em;
	}
}


/*~~~ 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) {
	.main-header{
		margin-top: 3rem;
		border-radius: 5rem;
	}
	.search-wrapper{
		width: 100%;
		max-width: 35%;
	}
	body.search-open .search-wrapper{
		opacity: 1;
	}
	.device {
		content: 'monitor';
	}
	body.nav-open {
		overflow-y: visible;
	}
	.topbar {
		justify-content: space-between;
	}
	.header::before {
		display: none;
	}
	.header ul {
		width: 100%;
		flex-flow: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
	}
	.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-blanc);
		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{
		font-weight: 600;
		transition: all .2s ease-in;
		width: 100%;
	}
	.top-menu-items > nav > ul.menu > li a{
		/*border-bottom: 3px solid var(--color-blanc);
		padding-bottom: 5px;*/
	}
	.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-bleuf)!important;
	}
	.nav li.active-parent > a::before,
	.nav li.current-menu-ancestor > a::before,
	.nav li.current-menu-parent > a::before,
	.top-menu-items > nav > ul.menu > li a::before {
		content: '';
		display: block;
		position: absolute;
		bottom: -10px;
		left: 0;
		height: 3px;
		width: 100%;
		background-color: var(--color-bleu)!important;
		transform-origin: right top;
		transform: scale(0,1);
		transition: color .1s,transform .2s ease-out;
	}
	/*.nav li.active-parent > a::before,
	.nav li.current-menu-ancestor > a::before,
	.nav li.current-menu-parent > a::before,
	.top-menu-items > nav > ul.menu > li a:hover::before,*/
	.no-touchevents .nav > ul > li:hover a::before{
		transform-origin: left top;
		transform: scale(1,1)!important;
	}
	.no-touchevents .nav > ul > li:hover ul li a {
		color: var(--color-cyan)!important;
	}
	.no-touchevents .nav > .sub-menu > li a {
		color: var(--color-cyan)!important;
	}
	.no-touchevents .nav .sub-menu a:hover {
		color: var(--color-bleuf)!important;
	}
	.no-touchevents .nav .sub-menu li a:hover {
		color: var(--color-bleuf)!important;
	}
	.nav ul li a.active,
	.nav ul li a:hover{
		opacity: 1;
	}
	.nav .sub-menu li a{
		border:none!important;
		padding-left: 1em;
	}
	.nav .sub-menu {
		max-height: 100vh;
		opacity: 0;
	}
	.nav .sub-menu.collapsed {
		opacity: 1;
		transition: all 300ms ease-out;
	}
	.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-bleuf);
	}
	#menu-menu-principal > li:last-child{
		position: relative;
		left: -5px;
	}
	/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SUB-MENUS */
	.nav .sub-menu {
		overflow: visible;
		flex-direction: column;
		align-items: flex-start;
		position: absolute;
		width: auto;
		max-height: none;
		left: -2em;
		padding: 3rem 0 0 0;
		pointer-events: none;
		transition: none;
		line-height: 3rem;
		min-width: 350px;
		box-shadow: 0px 18px 25px -20px #ccc;
	}
	.nav .menu-item-606 .sub-menu {
		min-width: 200px;
	}
	.nav .menu-item-121 .sub-menu {
		min-width: 320px;
	}
	.nav .sub-menu.collapsed {
		max-height: none;
		padding-top: 4rem;
	}
	.nav .sub-menu::before {
		content: '';
		z-index: -1;
		position: absolute;
		display: block;
		width: 100%;
		height: 0%;
		left: 0;
		top: 0;
		pointer-events: none;
	}

	.nav .sub-menu li {
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-.5em);
		transition: none;
		margin-left: 0;
		width: 100%;
		padding: 0.5rem 2rem;
	}
	/* 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);
		background-color: var(--color-blanc);
	}
	.nav-open .nav .sub-menu.collapsed li:first-child {
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
	}
	.nav-open .nav .sub-menu.collapsed li:last-child {
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	.nav-open .nav .sub-menu.collapsed::before {
		height: 100%;
		transition: none;
	}
	.nav-open .nav .sub-menu.collapsed {
		overflow: hidden;
	}
	.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: 1240px) {
	.device {
		content: 'monitor-laptop-narrow';
	}

}
@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';
	}
}