/*
	Theme Name: WD
	Theme URI: 
	Description: 
	Version: 2.0
	Author: WD 2024
	Author URI: https://www.workdivision.paris

*/

:root {

	--color-nuit: rgba(26, 32, 52, 1);
	--color-rose: rgba(255, 0, 255, 1);
	--color-rose-alt: rgba(179, 11, 168, 1);
	
	--color-blanc: rgba(255, 255, 255, 1);
	--color-noir: rgba(0, 0, 0, 1);
	--color-gris: rgba(26, 32, 52, 0.5);

	--font-xs: 1.4rem;
	--lineh-xs: 1.8rem;

	--font-s: 1.6rem;
	--lineh-s: 2.2rem;
	
	--font-m: 1.8rem;
	--lineh-m: 2.8rem;

	--font-xm: 2rem;
	--lineh-xm: 2.5rem;

	--font-xxm: clamp(2.8rem, 2.1vw + 1.9rem, 3.2rem);
	--lineh-xxm: clamp(2.8rem, 2.1vw + 1.9rem, 3.2rem);

	--font-l: clamp(3.6rem, 6.4vw + 0.8rem, 4.8rem);
	--lineh-l: clamp(3.6rem, 6.4vw + 0.8rem, 4.8rem);

	--font-xl: clamp(3.6rem, 12.8vw - 2rem, 6.5rem);
	--lineh-xl: clamp(4.6rem, 12.8vw - 2rem, 5.5rem);

}

/*------------------------------------*\
    MAIN
\*------------------------------------*/

@font-face {
	font-family: 'asphalte';
	src:  url('fonts/asphalte.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
  }
  
  [class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'asphalte' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
  
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  .icon-dl:before {
	content: "\e905";
  }
  .icon-tiktok:before {
	content: "\e900";
  }
  .icon-x:before {
	content: "\e902";
  }
  .icon-instagram:before {
	content: "\e903";
  }
  .icon-facebook:before {
	content: "\e904";
  }
  .icon-linkedin:before {
	content: "\e901";
  }

  
/* FONTS: Whyte Inktrap */
@font-face{
	font-family: "Whyte Inktrap";
	src: url("./fonts/WhyteInktrap-Regular.woff2") format("woff2"),
		 url("./fonts/WhyteInktrap-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Whyte Inktrap";
	src: url("./fonts/WhyteInktrap-Bold.woff2") format("woff2"),
		 url("./fonts/WhyteInktrap-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body{
	position: relative;
	font-family: "Whyte Inktrap", system-ui;
	font-optical-sizing: auto;
    font-size: var(--font-xm);
    line-height: var(--lineh-xm);
    font-style: normal;
    font-weight: 400;
	color: var(--color-noir);
	letter-spacing: 0;
}
body.page-template-page-contact::before,
body.home::before{
	content: "";
	position: fixed;
	z-index: -1;
	inset: 0;
	height: 100vh;
	width: 100vw;
	background:
		url("./img/noise3.png") repeat 0 0 / 100px 100px,
		linear-gradient(180deg, var(--color-nuit) 0%, var(--color-nuit) 40%, var(--color-rose) 100%);
	/*background-blend-mode: multiply, normal;*/
	pointer-events: none;
}
main > section.section-entete-bg{
	overflow: hidden;
	padding-top: clamp(5rem, 80vw - 30rem, 20rem);
}
main section:last-child{
	padding-bottom: 5em!important;
}
.page.carrieres main{
	background-color: var(--color-blanc)!important;
}
/* clear */
.clear:before,
.clear:after{
    content:' ';
    display:table;
}

.clear:after{
    clear:both;
}
.clear{
    *zoom:1;
}
p{
	margin-bottom: 1.5rem;
}
img{
	max-width:100%;
	vertical-align:bottom;
	height: auto;
}
a{
	color: var(--color-noir);
	text-decoration:none;
	transition: background 300ms ease, color 400ms, opacity 300ms ease;
}
.content-desc p a,
.content p a{
	text-decoration: underline!important;
}
.section-img-txt a:hover,
.section-titre-img a:hover,
.section-img-txt a,
.section-titre-img a{
	text-decoration:underline;
}
a:hover,
a:active{
	text-decoration: none;
	outline:0;
}
p a:hover,
p a:active{
	text-decoration: underline;
	outline:0;
}
:hover{
	transition: color 400ms, opacity 300ms ease;
	-webkit-transition: color 400ms, opacity 300ms ease;
	-moz-transition: color 400ms, opacity 300ms ease;
	-ms-transition: color 400ms, opacity 300ms ease;
	-o-transition: color 400ms, opacity 300ms ease;
}
a.nohover{
	text-decoration: none!important;
}

input:focus{
	outline:0;
	border:1px solid var(--color-noir);
}
h1,h2,h3,h4{
	/*color: var(--color-noir);*/
}
h1{
	font-size: var(--font-xl);
	line-height: var(--lineh-xl);
	font-weight: 300;
}
h2{
	font-size: var(--font-sl);
	line-height: var(--lineh-sl);
	font-weight: 400;
}
h3{
	font-size: var(--font-xm);
	line-height: var(--lineh-xm);
    font-weight: 400;
}
h4{
	font-size: var(--font-m);
	line-height: var(--lineh-m);
	font-weight: 400;
}
.titre-sub::after{
	content: "—";
	display: block;
}
ul{
	margin: 1em 0.5em;
	padding-left: 1em;
}
ul.no-list{
	list-style: none;
	padding: 0;
	margin: 0;
}
p + ul{
	margin-top: 0.5rem;
}
p:has(+ ul) {
	margin-bottom: 0.5rem;
}
strong{
	font-weight: 600!important;
}
.article-content strong,
p strong{
	color: var(--color-noirc);
}
.js-on .fade-r,
.js-on .fade-l,
.js-on .fade-d,
.js-on .fade-o,
.js-on .fade{
	opacity: 0;
}
.fadeIn{
    animation-name: fadeIn;
}
.trans-all{
	transition: all 300ms ease;
}
.animated{
    animation-duration: 500ms;
}
.js-on .fade.in{
	transform: translateY(20px);
	/*animation-delay: .3s;*/
	animation-duration: .3s;
	animation-name: fadeIn;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
.js-on .fade-d.in{
	transform: translateY(-20px);
	animation-delay: 1s;
	animation-duration: 1s;
	animation-name: fadeInDown;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
.js-on .fade-l.in{
	transform: translateX(40px);
	animation-delay: .3s;
	animation-duration: .5s;
	animation-name: fadeInL;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
.js-on .fade-r.in{
	transform: translateX(-40px);
	animation-delay: .3s;
	animation-duration: .5s;
	animation-name: fadeInR;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
.js-on .fade-o.in{
	transform: translateX(-60px);
	animation-delay: .5s;
	animation-duration: 1s;
	animation-name: fadeInR;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out; 
}
/*
.js-on .fade.in:nth-child(1) {
  animation-delay: 0s;
}
*/
.js-on .fade-l.in:nth-child(2),
.js-on .fade-r.in:nth-child(2),
.js-on .fade.in:nth-child(2) {
	animation-delay: 0.4s;
}
.js-on .fade-l.in:nth-child(3),
.js-on .fade-r.in:nth-child(3),
.js-on .fade.in:nth-child(3) {
	animation-delay: 0.6s;
}
.js-on .fade-l.in:nth-child(4),
.js-on .fade-r.in:nth-child(4),
.js-on .fade.in:nth-child(4) {
	animation-delay: 0.7s;
}
.js-on .fade.in:nth-child(5) {
	animation-delay: 0.8s;
}
.js-on .fade.in:nth-child(6) {
	animation-delay: 0.9s;
}
.js-on .fade.in:nth-child(7) {
	animation-delay: 1s;
}
.js-on .fade.in:nth-child(8) {
	animation-delay: 1.1s;
}
.js-on .fade.in:nth-child(9) {
	animation-delay: 1.2s;
}
.js-on .fade.in:nth-child(10) {
	animation-delay: 1.3s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.fadeIn{
    -webkit-animation-name:fadeIn;
    animation-name:fadeIn
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.fadeIn{
    -webkit-animation-name:fadeIn;
    animation-name:fadeIn
}
@keyframes fadeInL {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInL {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
.fadeInL{
    -webkit-animation-name:fadeInL;
    animation-name:fadeInL;
}

@keyframes fadeInR {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInR {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

/*
.fadeInR{
    -webkit-animation-name:fadeInL;
    animation-name:fadeInL;
}
*/
.inline-btn{
	 gap: 30px;
}
.btn{
	position: relative;
	display: inline-block;
	padding: 1.3rem 3rem;
	font-size: var(--font-s);
	line-height: var(--lineh-s);
	font-weight: 600;
	border: 1px solid var(--color-noir);
	overflow: hidden;
	text-decoration: none!important;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	border-radius: 3rem;
}
.btn-small{
	padding: 0.8rem 2rem;
}
.btn:hover{
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}
.btn-transp{
	background: none;
	color: var(--color-blanc);
	border-color: var(--color-blanc);
}
.btn-transp:hover{
	background-color: var(--color-blanc);
	color: var(--color-rose);
}
.btn-rose{
	background: none;
	color: var(--color-rose);
	border-color: var(--color-rose);
}
.btn-rose:hover{
	background-color: var(--color-rose);
	color: var(--color-blanc);
}
.readm{
	position: relative;
	display: inline-block;
	border-bottom: 1px solid transparent;
	transition: border .2s ease-out;
}
.btn-dl{
	position: relative;
	padding-left: 5rem;
}
.btn-dl::before{
	font-family: 'asphalte' !important;
	position: absolute;
	content: "\e905";
	left: 3rem;
	right: auto;
	font-size: 1rem;
}

/*
.btn-arrow::before, .btn-arrow::after {
	font-family: 'photosol' !important;
	content: "\e902";
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: inherit;
	padding: inherit;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	color: #fff;
}
.btn-arrow::before {
	opacity: 1;
	transform: none;
	transition: transform .15s ease-out,opacity .3s ease-out;
}
.btn-arrow:hover::before {
	opacity: 0;
	transform: translateY(80%);
	transition: transform .1s ease-in,opacity .3s ease-in;
}

.btn-arrow::after {
	transform: translateY(-80%);
	opacity: 0;
	transition: transform .1s ease-in,opacity .3s ease-in;
	color: #fff;
}
.btn-arrow:hover::after {
	opacity: 1;
	transform: none;
	transition: transform .15s ease-in,opacity .3s ease-in;
}
*/
.full-img img{
	object-fit: cover;
}
.rounded img,
.rounded{
	border-radius: 5px;
	/*overflow: hidden;*/
}
/*------------------------------------*\
    FONTS SIZES
\*------------------------------------*/
.txt-xlight{
	font-weight: 200!important;
}
.txt-light{
	font-weight: 300!important;
}
.txt-regular{
	font-weight: 400!important;
}
.txt-sbold{
	font-weight: 600!important;
}
strong,
.txt-bold{
	font-weight: 700!important;
}
.txt-xbold{
	font-weight: 800!important;
}
.txt-ital{
	font-style: italic;
}
.txt-xs{
	font-size: var(--font-xs);
	line-height: var(--lineh-xs);
}
.txt-s{
	font-size: var(--font-s);
	line-height: var(--lineh-s);
}
.txt-sm{
	font-size: var(--font-sm);
	line-height: var(--lineh-sm);
}
.txt-m{
	font-size: var(--font-m);
	line-height: var(--lineh-m);
}
.txt-xm{
	font-size: var(--font-xm);
	line-height: var(--lineh-xm);
}
.txt-xxm{
	font-size: var(--font-xxm);
	line-height: var(--lineh-xxm);
}
.txt-l{
	font-size: var(--font-l);
	line-height: var(--lineh-l);
}
.txt-xl{
	font-size: var(--font-xl);
	line-height: var(--lineh-xl);
}
.txt-noir{
	color: var(--color-noir);
}
.txt-gris{
	color: var(--color-gris);
}
.txt-vert{
	color: var(--color-vert);
}
.content-intro h3,
.content-intro h2,
.content-desc h3,
.content-desc h2,
.txt-violet{
	color: var(--color-violet);
}
.txt-bleu{
	color: var(--color-bleu);

}
.txt-bleuf{
	color: var(--color-bleuf);
}
.txt-blanc a,
.txt-blanc{
	color: var(--color-blanc);
}
.txt-gris{
	color: var(--color-gris);
}
.txt-up{
	text-transform: uppercase!important;
}
.txt-space{
	letter-spacing: 0.05rem;
}
.txt-xspace{
	letter-spacing: 0.1rem;
}
.txt-balance{
	text-wrap:balance;
}
@media only screen and (max-width:991px){
	.txt-s-mobile{
		font-size: var(--font-s);
		line-height: var(--lineh-s);
	}
}
/*------------------------------------*\
    BACKGROUNDS
\*------------------------------------*/
.bg-blanc{
	background-color: var(--color-blanc);
}
.bg-noir{
	background-color: var(--color-noir);
}
.bg-gris{
	background-color: var(--color-gris);
}
.bg-ciel{
	background-color: var(--color-ciel);
}
.bg-bleu{
	background-color: var(--color-bleu);
}
.bg-bleuf{
	background-color: var(--color-bleuf);
}
.bg-violet{
	background-color: var(--color-violet);
}
.bg-nuit{
	background-color: var(--color-nuit);
}
.bg-vert{
	background-color: var(--color-vert);
}
.b-bottom{
	border-bottom: 1px solid var(--color-noir);
}
.b-top{
	border-top: 1px solid var(--color-noir);
}
.b-bottom-blanc{
	border-bottom: 1px solid var(--color-blanc);
}
.b-top-blanc{
	border-top: 1px solid var(--color-blanc);
}
/*------------------------------------*\
    SPACES
\*------------------------------------*/
.pt15{
    padding-top: 0.5em;
}
.pt30{
    padding-top: 1.5em;
}
.pt50{
    padding-top: 2.5em;
}
.pt100{
    padding-top: 5em;
}
.pb0{
    padding-bottom: 0;
}
.pb15{
    padding-bottom: 0.5em;
}
.pb30{
    padding-bottom: 1.5em;
}
.pb50{
    padding-bottom: 2.5em;
}
.pb100{
    padding-bottom: 5em;
}
.mt5{
    margin-top: .5em;
}
.mt15{
    margin-top: 1em;
}
.mt30{
    margin-top: 1.5em;
}
.mt50{
    margin-top: 2.5em;
}
.mt100{
    margin-top: 5em;
}
.mb0{
	margin-bottom: 0;
}
.mb5{
	margin-bottom: .5em;
}
.mb15{
    margin-bottom: 1em;
}
.mb30{
    margin-bottom: 1.5em;
}
.mb50{
    margin-bottom: 2.5em;
}
.mb100{
    margin-bottom: 5em;
}

.plr0{
	padding-left: 0!important;
	padding-right: 0!important;
}
.mlr0{
	margin-left: 0!important;
	margin-right: 0!important;
}
@media only screen and (min-width:992px){
	.pr0{
		padding-right: 0!important;
	}
	.pl0{
		padding-left: 0!important;
	}
	.mr0{
		margin-right: 0!important;
	}
	.ml0{
		margin-left: 0!important;
	}
	.pr15 {
		padding-right: 1.5em !important;
	  }
	.pl15 {
		padding-left: 1.5em !important;
	  }
	.pr30 {
		padding-right: 2.5em !important;
	  }
	.pl30 {
		padding-left: 2.5em !important;
	  }
	.pr50 {
		padding-right: 5em !important;
	  }
	.pl50 {
		padding-left: 5em !important;
	  }
	.plr5{
		padding-left: 5%!important;
		padding-right: 5%!important;
	}
	.plr6{
		padding-left: 6%!important;
		padding-right: 6%!important;
	}
	.plr8{
		padding-left: 8%!important;
		padding-right: 8%!important;
	}
	.plr10{
		padding-left: 10%! important;
		padding-right: 10%!important;
	}
	.plr12{
		padding-left: 12%! important;
		padding-right: 12%!important;
	}
	.plr15{
		padding-left: 15%! important;
		padding-right: 15%!important;
	}
	.item-decal{
		padding-left: 15%;
	}
}
@media only screen and (max-width:991px){
	.plr5-mobil{
		padding-left: 30px!important;
		padding-right: 30px!important;
	}
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.d-flex-between{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.d-flex-center{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.d-flex-h{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.wp-block-embed__wrapper,
.embed-container{ 
    position: relative;
    padding-bottom: 56.25%;
	margin: 1.5rem 0 3rem 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}
.wp-block-embed__wrapper iframe,
.embed-container iframe,
.embed-container object,
.embed-container embed{ 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.single .item-content iframe{
	width: 100%;
}
.img-fit,
.img-fit img{
	overflow: hidden;
	object-fit: cover;
	width: 100%;
	/*height: 100%;*/
}
.img-ban img{
	aspect-ratio: 3;
	object-position: center bottom;
}
.img-43 img{
	aspect-ratio: 4/3;
	object-position: center bottom;
}
@media only screen and (max-width:768px){
	.img-ban img{
		aspect-ratio: 1/1;
		object-position: 35% 50%;
	}
}
.img-fit.img-pano img{
	aspect-ratio: 16/9;
}
.img-fit.img-wide img{
	aspect-ratio: 16/7;
}
.wp-block-image figure figcaption{
	font-size: var(--font-xs);
	line-height: var(--lineh-xs);
}
.has-background{
	padding: 30px;
}
.mejs-audio{
	margin-bottom: 1em;
}
.stick{
	position: sticky;
	top: 20%;
}
.article-content img{
	margin: 1em 0;
}
.section-tabs .content ul{
	padding-left: 2em;
}
.section-tabs .content ul li{
	list-style: none;
	position: relative;
	margin-bottom: 1rem;
}
.section-tabs .content ul li::before{
	font-family: 'photosol';
	content: "";
	position: absolute;
	top: 5px;
	left: -4rem;
	color: var(--color-vert);
	font-size: var(--font-l);
}
ul.simple-list li::marker,
.simple-list ul li::marker{
	color: var(--color-vert);
	font-size: 2rem;
}
.list-split ul,
ul.list-split {
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
}
.overlay {
	position: absolute;
	z-index: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0;
	background: url(img/bg-photosol-2.svg) center center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	will-change: transform;
}
.overlay-alt::before {
	content: "";
	position: absolute;
	top:0;
	z-index: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	background: url(img/bg-photosol-bleu.svg) 100% 50% no-repeat;
	background-size: 350%;
	opacity: 0.8;
	/*transform: scaleX(-1);*/
}
@media (min-width: 991px) {
	.overlay-alt::before {
		width: calc(110vh + 30vmin);
		background-position: 110% 100%;
	}
}
/*------------------------------------*\
    SOCIAL SHARE
\*------------------------------------*/
.btn-share {
	position: relative;
	display: flex;
	padding: 0;
	align-items: baseline;
	overflow: hidden;
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	background: none;
	border: none;
	color: var(--color-grisf);
}
.btn-share:hover {
	overflow: visible;
	color: var(--color-rose);
}
.btn-share .btn-text {
	display: inline-flex;
	vertical-align: middle;
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share .btn-text {
	transition-delay: 0.05s;
}
.btn-share span{
	position: relative;
	display: inline-block;
	padding: 1.5rem 3rem 1.5rem 0;
	font-size: var(--font-xm);
	line-height: var(--lineh-xm);
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	transition: 300ms;
	overflow: hidden;
	text-decoration: none !important;
	letter-spacing: 0.05rem;
}
.btn-share span::after{
	font-family: 'photosol';
	content: "\e902";
	position: relative;
	right: -10px;
	transition: 500ms;
}
.btn-share .social-icons {
	position: absolute;
	top: 50%;
	left: 0;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	transform: translateY(-50%);
}
.btn-share .social-icons li {
	flex: 1;
}
.btn-share .social-icons li a {
	display: inline-flex;
	vertical-align: middle;
	transform: translateY(30px);
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	opacity: 0;
	margin-right: 1rem;
}
.btn-share:hover .btn-text,
.btn-share:hover .btn-icon {
	transform: translateY(-30px);
	opacity: 0;
}
.btn-share:hover .social-icons li a {
	transform: translateY(0);
	opacity: 0.7;
	text-decoration: none;
}
.btn-share .social-icons li a:hover {
	color: var(--color-tonic);
	opacity: 1;
}
.btn-share:hover .social-icons li:nth-child(1) a {
	transition-delay: 0.15s;
}
.btn-share:hover .social-icons li:nth-child(2) a {
	transition-delay: 0.2s;
}
.btn-share:hover .social-icons li:nth-child(3) a {
	transition-delay: 0.25s;
}

/*------------------------------------*\
    PAGINATION
\*------------------------------------*/
#see-more-btn {
    display: none;
}

#see-more-btn.show {
    display: inline-block;
}
.pagination{
    text-align: center;
    font-size: 1.4rem;
}
.pagination > *{
    padding: 0 10px;
}
.pagination .current{
    color: var(--color-tonic);
    font-weight: 700;
}
.post-navigation{
	display: flex;
	justify-content: space-between;
}
.post-navigation a{
	display: flex;
	align-items: center;
	/*max-width: 45%;*/
}
@media only screen and (max-width:768px){
	.post-navigation{
		flex-direction: column;
	}
	.post-navigation a{
		margin-bottom: 1em;

	}
}
.page-navigation{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.page-navigation a{
	color: var(--color-grisf);
}

/*------------------------------------*\
   FORMS
\*------------------------------------*/
::placeholder{
	opacity: 0.9!important;
	color: var(--color-gris)!important;
}
input:required{
    box-shadow:none;
}
input:invalid{
    border-bottom-color: var(--color-violet);
}
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.wpcf7-form{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
}
.wpcf7-form label{
	color: var(--color-violet);
}
.wpcf7-form .wpcf7-spinner{
	margin: 0 5px;
}
.wpcf7-form .wpcf7-spinner{
	background-color: var(--color-blanc);
 }
.wpcf7-form .wpcf7-spinner::before {
	background-color: var(--color-blanc);
 }
select,
textarea,
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="text"],
input[type="email"]{
    width: 100%;
    border: none;
	background: var(--color-blanc);
	color: var(--color-gris);
	font-size: var(--font-xs);
	font-weight: 400;
	margin: 0.5rem 0 3rem 0;
	border-bottom: 1px solid var(--color-bleu);
}
.departments-filter{
	padding: 0 1rem!important;
}
select.filter-select{
	padding: 5px;
	margin: 0;
	color: var(--color-gris);
	font-size: var(--font-s);
	font-weight: 600;
	border: none;
}
select.filter-select:hover{
	cursor: pointer;
}
select.filter-select option{
	border: none;
	color: var(--color-noir);
	font-weight: 600;
}
textarea:focus,
select.filter-select option:focus,
select.filter-select:focus{
	border: none;
	outline: none;
}
select.filter-select{
	display: inline-block;
	width: auto;
	padding: 1rem;
	color: var(--color-bleu);
}
select.filter-select option:hover,
select.filter-select option{
	color: var(--color-bleu)!important;
}
.wpcf7-form select{
	padding-bottom: 5px;
}
textarea{
	height: 50px;
	resize: none;
}
textarea:focus{
	border: none;
}
.wpcf7-acceptance{
	line-height: 1.6rem;
}
.wpcf7-acceptance label{
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--color-grisf);
	font-weight: 400;
}
.wpcf7-acceptance .wpcf7-list-item-label{
	font-weight: 700;
	font-size: var(--font-xs);
	line-height: var(--lineh-xs);
}
.wpcf7-acceptance input[type="checkbox"]{
	position: relative;
	top: 2px;
}
.wpcf7 input[type="submit"]{
	position: relative;
	display: inline-block;
	padding: 1.5rem 4rem;
	font-size: var(--font-s);
	line-height: var(--lineh-s);
	font-weight: 600;
	border: 1px solid var(--color-bleu);
	overflow: hidden;
	text-decoration: none!important;
	transition: all 0.3s ease-in-out;
	border-radius: 3rem;
	background-color: var(--color-bleu);
	color: var(--color-blanc);
}
.wpcf7 input[type="submit"]:hover{
	transition: all 0.3s ease-in-out;
	background-color: var(--color-violet);
}
.wpcf7 form .wpcf7-response-output{
    margin: .5em 0;
    padding: 0;
    border: none;
	color: var(--color-violet);
	text-align: center;
	font-weight: 400;
	font-size: var(--font-m);
}
.wpcf7-not-valid-tip{
	color: red;
	font-size: var(--font-xs);
	position: absolute;
	left: 0;
	bottom: -2.5rem;
}
div.wpcf7 .ajax-loader{
    display: none!important;
}
form.is-invalid > .acf-error-message{
	visibility: visible;
	display: block;
	position: relative;
	padding: 10px 0;
}
.wpcf7-form .row{
	opacity: 1;
	height: 100%;
}
.wpcf7-form.sent .row{
	opacity: 0;
	height: 0;
	transition: all 0.8s ease-in;
}
.wpcf7-list-item {
	margin: 0;
}
@media only screen and (min-width:992px){
	select,
	textarea,
	input[type="password"],
	input[type="email"],
	input[type="url"],
	input[type="tel"],
	input[type="text"],
	input[type="email"]{
		margin: 0.5rem 0 5rem 0;
	}
}

/*------------------------------------*\
   TABLE
\*------------------------------------*/
table{
	margin-top: 1.5em;
	font-size: var(--font-s);
	line-height: 1.5rem;
}
table thead{
	text-transform: uppercase;
	font-size: var(--font-xs);
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--color-grisf);
}
table tr{
	border-top: 1px dashed var(--color-noir);
	border-bottom: 1px dashed var(--color-noir);
}
table tr td:first-child{
	text-align: left;
}
table td{
	padding: 10px;
	text-align: right;
}

/*------------------------------------*\
    BLOCS LANDING
\*------------------------------------*/
.landing-home{
	margin-top: 110px;
	overflow: hidden;
}
.landing-home figure{
	position: relative;
}
.landing-home img{
	position: relative;
	object-fit: cover;
	height: 100%;
}
.landing-home figure::before {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	width: 100%;
	height: 100%;
	top: 0;
	mix-blend-mode: multiply;
	background: var(--color-nuit);
	opacity: 0.2;
}

/* Overlay centré (date, titre, lien) */
.landing-home .landing-overlay{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: var(--color-blanc);
	padding: 1.5rem 1.25rem 1.5rem 20%;
	width: inherit;
}
.landing-home .landing-date{
	margin-left: -7%;
}
.landing-home .landing-title{
	margin: 0 0 1rem 0;
}
.landing-overlay:hover{
	color: var(--color-rose)!important;
}
.landing-home img {
	will-change: transform;
}
@media only screen and (max-width:768px){
	.landing-home h1 *{
		text-align: center;
	}
	.landing-home::before {
	  top: 10px;
	  background-position: calc(5vw) 0;
	  background-size: 200%;
	}
	.landing-home .img-fit img,
	.landing-home .img-fit{
		aspect-ratio: 8/9;
	}
}
@media only screen and (min-width:768px){
	.scroll-down:hover{
		text-decoration: none;
	}
}
@media only screen and (min-width:992px){
/*
	.landing-home h1{
		text-align: left;
	}
	.landing-home h1 span:last-child{
		margin-left: 3vw;
	}
*/
	.landing-home h1 span:first-child{
		text-align: left;
	}
	.landing-home h1 span:last-child{
		text-align: right;
	}
}

/*------------------------------------*\
    BANDEAUX
\*------------------------------------*/
.item-bandeau-desc{
	position: absolute;
	top: 0;
	width: 50%;
	padding: 3rem 5rem;
}
.item-bandeau-titre,
.item-bandeau-lien{
	padding-left: 8%;
}
.item-bandeau a:hover{
	color: var(--color-rose);
}
/*------------------------------------*\
    AGENDA
\*------------------------------------*/
.item-event::after{
	content: "";
	display: block;
	position: absolute;
	bottom: 15px;
	left: 20px;
	right: 20px;
	width: 100%;
	border-bottom: 2px dotted var(--color-blanc);
}
.item-event-titre{
	margin: 5px 0;
}

/*------------------------------------*\
    ENTETE
\*------------------------------------*/
.section-entete-bg{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

/*------------------------------------*\
    BLOG CAT & SINGLE
\*------------------------------------*/
.single-content h2,
.single-content h3{
	font-size: var(--font-m);
	line-height: var(--lineh-m);
	font-weight: 700;
	color: var(--color-violet);
	margin-bottom: 2rem;
}

/*------------------------------------*\
    CREATIONS
\*------------------------------------*/
.creations-item{
	display: block;
	overflow: hidden;
	position: relative;
	color: var(--color-blanc);
}
.creations-item-img img{
	aspect-ratio: 15/5;
	overflow: hidden;
	width: 100%;
}
.creations-item-content{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 50%;
	padding: 4rem 5rem;
}
.creations-item-content h2,
.creations-item-content span{
	padding-left: 10%;
}
.single-pop-au-chateau .section-entete-bg,
.single-creations .section-entete-bg{
	height: 70vh;
	max-height: 720px;
}
.creation-prod p{
	margin-bottom: 0.5rem;
}

/*------------------------------------*\
    POP AU CHATEAU
\*------------------------------------*/
.tax-pop-au-chateau-category .section-entete-bg{
	height: 70vh;
	max-height: 720px;
}
.group-lien{
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
}

/*------------------------------------*\
    TXT COLS
\*------------------------------------*/
.txt-col h3{
	font-size: var(--font-xxm);
	line-height: var(--lineh-xxm);
	font-weight: 700;
	margin-bottom: 1rem;
}

/*------------------------------------*\
    PRESSE
\*------------------------------------*/
.list-cats{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 0 20px 0 0;
	list-style: none;
}
.list-cats li{
	display: inline-block;
	border-bottom: 1px solid var(--color-noir);
	padding-bottom: 1rem;
}
.list-cats li.active a{
	color: var(--color-rose);
}
.presse-content:last-child{
	border: none!important;
}
/*------------------------------------*\
    CONTACT
\*------------------------------------*/
.section-contact p{
	margin-bottom: 3rem;
}
.section-contact p a{
	color: var(--color-rose);
}
/*------------------------------------*\
    SEPARATEUR
\*------------------------------------*/
.sep{
	border-top: 1px solid var(--color-noir);
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
	position: relative;
}
.footer section{
	opacity: 0.6;
}
body:not(.home):not(.page-template-page-contact) .footer::before{
	content: "";
	position: absolute;
	bottom: 0;
	height: 150%;
	width: 100%;
	background:	linear-gradient(0deg, var(--color-rose-alt) 0%, var(--color-rose-alt) 40%, var(--color-blanc) 100%);
}
.col-footer-menus{
	flex-wrap: wrap;
	position: relative;
}
.col-footer-menu ul{
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.col-footer-menu ul li{
	margin-bottom: 0.6rem;
}
.footer .footer-socials a{
	display: inline-block;
	margin-right: 1rem;
}
.footer a{
	font-weight: 400;
	color: var(--color-blanc);
}
.footer a:hover{
	text-decoration: none;
	color: var(--color-blanc);
}
.footer .footer-social{
	display: flex;
	gap: 10px;
}
.footer-menu-bas ul{
	margin: 0;
}
.footer-menu-bas ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding-left: 0;
}
.footer-menu-bas ul li{
	position: relative;
	margin-right: 20px;
}
.footer-menu-bas ul li::after{
	content: "-";
	position: absolute;
	right: -13px;
	font-size: 1rem;
}
.footer-menu-bas ul li:last-child:after{
	content: "";
}
@media only screen and (min-width:992px){
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:480px){
}

@media only screen and (max-width:768px){
	.full-m{
		padding: 0!important;
	}
	.center-mobil{
		text-align: center!important;
	}
	.hidden-sm{
		display: none;
	}
    .mt50{
        margin-top: 1.5em;
    }
	.mb30{
		margin-bottom: 1em;
	}
    .pt30{
        padding-top: 1em;
    }
    .mb50{
        margin-bottom: 1.5em;
    }
	.mt100{
		margin-top: 2.5em;
	}
	.mb100{
		margin-bottom: 2.5em;
	}
    .pt50{
        padding-top: 1.5em;
    }
    .pb30{
        padding-bottom: 1em;
    }
    .pb50{
        padding-bottom: 1.5em;
    }
	.pb100{
		padding-bottom: 2em;
	}
    .pt100{
        padding-top: 2em;
    }
	.mt0-mobil{
		margin-top: 0;
	}
	.mb0-mobil{
		margin-bottom: 0;
	}
	.pt0-mobil{
		padding-top: 0;
	}
	.pb0-mobil{
		padding-bottom: 0;
	}
	.pb100-mobil{
		padding-bottom: 5rem;
	}
    .pt100-mobil{

        padding-top: 5rem;
    }
	.mb50-mobil{
		margin-bottom: 2.5rem;
	}
	.mt50-mobil{
		margin-top: 2.5rem;
	} 
	.mb100-mobil{
		margin-bottom: 5rem;
	}
	.mt100-mobil{
		margin-top: 5rem;
	}
}
@media only screen and (max-width:992px){
	.plr0-mobil{
		padding-left: 0!important;
		padding-right: 0!important;
	}
	.plr1-mobil{
		padding-left: 5%!important;
		padding-right: 5%!important;
	}
	.plr5-mobil{
		padding-left: 10%!important;
		padding-right: 10%!important;
	}
}
@media only screen and (min-width:320px){
	section{
		scroll-margin-top: 3em;
	}
	.scroll-margin{
		scroll-margin-top: 10em;
	}
}
@media only screen and (min-width:769px){
	.d-flex-center{
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.wp-caption,
.alignright,
.alignleft,
.alignnone{
	margin: 3rem 0;
}
.wp-caption .wp-caption-text,
.gallery-caption{
	font-size: var(--font-s);
	line-height: var(--lineh-s);
	margin: 0;
	padding: 15px 0;
}
blockquote{
	/*float: left;*/
	margin: 1em 1em 1em 0;
	/*max-width: 50%;*/
}

/*------------------------------------*\
    GALLERY & LIGHTBOX
\*------------------------------------*/

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.gallery-item {
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

/* Lightbox */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-content {
	position: relative;
	width: 800px;
	text-align: center;
	max-width: 90%;
	max-height: 90%;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.3s ease;
}

.lightbox.active .lightbox-content {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.3s ease;
}

.lightbox img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	pointer-events: none;
	transition: transform 0.2s ease;
}

.lightbox-close {
	position: absolute;
	top: -40px;
	right: -40px;
	color: var(--color-blanc);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-blanc);
	background: none;
}
.lightbox-prev {
	left: -60px;
}

.lightbox-next {
	right: -60px;
}

@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 15px;
	}
	
	.gallery-item img {
		height: 150px;
	}
	
	.lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	.lightbox-prev {
		left: 10px;
	}
	
	.lightbox-next {
		right: 10px;
	}

	.lightbox {
		cursor: grab;
	}
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print{
	*{
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited{
		text-decoration:underline;
	}
	a[href]:after{
		content:" (" attr(href) ")";
	}
	abbr[title]:after{
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after{
		content:"";
	}
	pre,blockquote{
		page-break-inside:avoid;
	}
	thead{
		display:table-header-group;
	}
	tr,img{
		page-break-inside:avoid;
	}
	img{
		max-width:100% !important;
	}
	@page{
		margin:0.5cm;
	}
	p,
	h2,
	h3{
		orphans:3;
		widows:3;
	}
	h2,
	h3{
		page-break-after:avoid;
	}
}
