/*
Theme Name: VLAU2026
Theme URI: https://XXX.XXX
Author: Maxime Bichon
Author URI: https://maximebichon.net
Description: VLAU2026
*/

/* @import url('main.css'); */

/* RESET */

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

:focus:not([data-focusvisible-polyfill]){outline: none;}

/* FONTS */

@font-face {
	font-family: 'Fracktif';
	src: url('f/Fracktif-RegularItalic.woff2') format('woff2'),
		url('f/Fracktif-RegularItalic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'Fracktif';
	src: url('f/Fracktif-Light.woff2') format('woff2'),
		url('f/Fracktif-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Fracktif';
	src: url('f/Fracktif-Medium.woff2') format('woff2'),
		url('f/Fracktif-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Fracktif';
	src: url('f/Fracktif-Regular.woff2') format('woff2'),
		url('f/Fracktif-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Fracktif';
	src: url('f/Fracktif-MediumItalic.woff2') format('woff2'),
		url('f/Fracktif-MediumItalic.woff') format('woff');
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: 'Fracktif';
	src: url('f/Fracktif-LightItalic.woff2') format('woff2'),
		url('f/Fracktif-LightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
}

.light{
	font-weight: 300;
}

.medium{
	font-weight: 500;
}

/*/////////*/
/* GENERAL */
/*/////////*/

body{
	font-family: 'Fracktif';
	/* -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden; */
	overflow-x: hidden;
}

a{
	text-decoration: none;
	color: black;
}

p{
	margin-bottom: 1em;
}

p:last-of-type{
	margin-bottom: 0;
}

img{
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.left{
	float: left;
}

.right{
	float: right;
}

.clear{
	clear: both;
}

.alignright{
	text-align: right;
}

.center{
	text-align: center;
}

.upper{
	text-transform: uppercase;
}

.lower{
	text-transform: lowercase
}

.capi{
	text-transform: capitalize;
}

.borderbox{
	box-sizing: border-box;
}

.inline{
	display: inline;
}

.inline-block{
	display: inline-block;
}

.block{
	display: block;
}

.relative{
	position: relative;
}

.absolute{
	position: absolute;
}

.fixed{
	position: fixed;
}

.flex{
	display: flex;
}

.flex-wrap{
	flex-wrap: wrap;
}

.flex-column{
	flex-direction: column;
}

.space-between{
	justify-content: space-between;
}

.flex-center{
	align-items: center;
	justify-content: center;
}

.flex-end{
	justify-content: flex-end;
}

.cover{
	object-fit: cover;
}

.contain{
	object-fit: contain;
	max-height: 100%;
	max-width: 100%;
}

i,
em,
.italic{
	font-style: italic;
}

.bold,
strong{
	font-weight: bold;
}

.hyphens{
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

.overflow{
	overflow: auto;
}

.width10{
	width: 10%;
}

.width15{
	width: 15%;
}

.width20{
	width: 20%;
}

.width25{
	width: 25%;
}

.width30{
	width: 30%;
}

.width40{
	width: 40%;
}

.width33{
	width: 33.33%;
}

.width40{
	width: 40%;
}

.width50{
	width: 50%;
}

.width60{
	width: 60%;
}

.width66{
	width: 66.66%;
}

.width75{
	width: 75%;
}

.width80{
	width: 80%;
}

.width100{
	width: 100%;
}

.height100{
	height: 100%;
}

.pointer{
	cursor: pointer;
}

.marg1em{
	margin-bottom: 1em;
}

.responsive-video{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	width: 100%;
}

.responsive-video iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*////////*/
/* LAYOUT */
/*////////*/

.wrapper{
	box-sizing: border-box;
	padding-left: 24px;
	padding-right: 24px;
	margin-top: 220px;
	margin-bottom: 24px;
}

.border{
	border-bottom: 1px solid black;
}

.size15{
	font-size: 12px;
}

.size16{
	font-size: 13px;
	line-height: 1.2em;
}

.size18{
	font-size: 14px;
	line-height: 1.2em;
}

.size20{
	font-size: 16px;
	line-height: 1.2em;
}

.size23{
	font-size: 18px;
	line-height: 1.4em;
}

.size26{
	font-size: 21px;
	line-height: 1.33em;
}

.size30{
	font-size: 24px;
	line-height: 1.33em;
}

.size32{
	font-size: 26px;
	line-height: 1.2em;
}

.size38{
	font-size: 38px;
	line-height: 1.2em;
}

.size58{
	font-size: 46px;
	line-height: 1.2em;
}

.size65{
	font-size: 52px;
	line-height: 1.2em;
}

.marg5{
	margin-bottom: 5px;
}

.marg10{
	margin-bottom: 10px;
}

.marg20{
	margin-bottom: 16px;
}

.marg25{
	margin-bottom: 20px;
}

.marg30{
	margin-bottom: 30px;
}

.marg50{
	margin-bottom: 40px;
}

.marg75{
	margin-bottom: 60px;
}

.marg100{
	margin-bottom: 80px;
}

.marg200{
	margin-bottom: 200px;
}

.padd_r_1vw{
	padding-right: 12px;
	box-sizing: border-box;
}

.padd_l_1vw{
	padding-left: 12px;
	box-sizing: border-box;
}

.max_width{
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1200px;
}

.underline{
	text-decoration: underline;
}

/* PROJETS */

.projet_txt{
	box-sizing: border-box;
	padding-right: 104px;
}

#diapo_wrap{
	position: fixed;
	top: 160px;
	right: 24px;
	bottom: 0;
	width: calc(75vw - 24px);
	overflow: hidden;
}

#arrows_diapo{
	height: 48px;
	background: white;
	line-height: 40px;
}

#diapo_projet{
	height: calc(100vh - 160px - 48px);
	clip-path: inset(0 1px);
}

#diapo_projet .slick-list,
#diapo_projet .slick-track,
#diapo_projet .one-slide{
	height: 100%;
	width: 100%;
}

#diapo_projet .one_slide{
	display: flex!important;
	overflow: hidden;
}

.slick-track {
	transform: translate3d(0, 0, 0);
}
.slick-slide {
	transform: translateZ(0);
	backface-visibility: hidden;
}

#diapo_projet .one_slide iframe{
	width: 100%;
	height: 100%;
}

#diapo_projet img{
	object-position: top right;
}

/* HOME */

#homepage_txt{
	padding-top: 92px;
	position: fixed;
}

.item_home_title{
	bottom: 0;
	right: 100%;
	position: absolute;
	text-align: right;
	width: 20%;
	padding-right: 16px;
}

/* INDEX */

.one_row_index{
	padding-top: 16px;
	padding-bottom: 20px;
	border-bottom: 1px solid black;
}

.one_col_row{
	padding-right: 60px;
	box-sizing: border-box;
}

.filter_term:hover,
.filter_term.active{
	text-decoration: underline;
}

.dt-search { display: none; }

#filtres_index{
	padding-top: 35px;
}

#cursor_vignette{
	display: none;
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	width: 375px;
}
#cursor_vignette img {
	width: 100%;
	display: block;
}

.grid_5 .grid_item.item-articles{
	/* border-bottom: 1px solid black;	
	border-right: 1px solid black; */
	box-sizing: border-box;
	padding: 24px 24px 48px 24px;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 0;
	width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.grid_5 .grid_item.item-articles:nth-child(4n){
	border-right: none;
}

/* INDEX */
#projets_table {
	border-collapse: collapse;
}

#projets_table thead tr th {
	text-align: left;
	padding-right: 60px;
	padding-bottom: 16px;
	border-bottom: 1px solid black;
	box-sizing: border-box;
	padding-left: 0;
	text-transform: uppercase;
	font-weight: 500;
}

#projets_table tbody tr td {
	text-align: left;
	padding-top: 16px;
	padding-bottom: 20px;
	padding-right: 60px;
	border-bottom: 1px solid black;
	box-sizing: border-box;
	padding-left: 0;
}
#projets_table thead tr th.width15,
#projets_table tbody tr td.width15 { width: 15%; }
#projets_table thead tr th.width20,
#projets_table tbody tr td.width20 { width: 20%; }
#projets_table thead tr th.width10,
#projets_table tbody tr td.width10 { width: 10%; }
#projets_table thead tr th.width30,
#projets_table tbody tr td.width30 { width: 30%; }

.dt-column-order{
	display: none;
}

/* IDENTITE */

.side_identite{
	box-sizing: border-box;
	padding-right: 30px;
}

.side_identite_sticky{
	top: 220px;
	position: sticky;
}

.one_territoire_img{
	padding: 50px 50px 0 50px;
}

.side_identite strong{
	font-weight: 500;
}

.territoires{
	margin-left: -20px;
	margin-right: -20px;
}

.one_territoire{
	border-right: 1px solid black;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.one_territoire:nth-child(3n){
	border: none;
}

/* CONTACT */

.underline_links{
	border-bottom: 3px solid black;
	padding-bottom: 2px;
}

.contact .underline_links{
	margin-right: 40px;
}

.side_contact{
	padding-left: 40px;
	box-sizing: border-box;
}

/* EQUIPE */

.portrait_equipe{
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 130%;
	width: 100%;
}

.portrait_equipe_wrap{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;	
	display: flex;
}

.portrait_equipe_wrap img{
	object-fit: cover;
}

/* MENU */

#menu{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 16px 24px;
	box-sizing: border-box;
	z-index: 666;
}

#logo{
	box-sizing: border-box;
	min-width: 650px;
	margin-top: -8px;
}

#main_menu{
	flex: 1;
}

.sub_menu{
	margin-top: 40px;
	position: absolute;
	z-index: 2;
}

.sub_menu_item{
	margin-right: 40px;
}

.sub_menu_item a:hover{
	text-decoration: underline;
	text-underline-offset: 5px;
}

.sub_menu_item .underline{
	text-underline-offset: 5px;
	font-weight: 500;
}

.menu_item{
	width: 100%;
	position: relative;
}

.one_term{
	border: 1px solid black;
	text-transform: uppercase;
	font-size: 9px;
	display: inline-block;
	margin: 0 5px 3px 0;
	box-sizing: border-box;
	padding: 0 9px;
	height: 18px;
	line-height: 17px;
	text-align: center;
}

.one_term.one_term_big{
	font-size: 13px;
	height: 24px;
	line-height: 22px;
	padding: 0 12px;
	margin: 0 8px 6px 0;
}

.one_term.one_term_big.active,
.one_term.one_term_big:hover{
	background: black;
	color: white;
}

.filters_title{
	padding-right: 52px;
	box-sizing: border-box;
}

.sub_menu{
	display: none;
}

.sub_menu{
	display: none;
	margin-top: 40px;
	position: absolute;
	white-space: nowrap;
}

.menu_item.open .sub_menu{
	display: flex;
}

#main_menu:hover .menu_item.open .sub_menu{
	display: none;
}

.menu_item:hover .sub_menu{
	display: flex;
}

#main_menu .menu_item.open:hover .sub_menu{
	display: flex;
}

#search_toggle{
	height: 25px;
	width: 25px;
	margin-right:25px; 
}

#lang{
	position: relative;
	top: 3px;
}

#lang ul{
	display: flex;
}

#lang li:after{
	content: ', ';
	margin-right: 5px;
}

#lang li:last-of-type:after{
	content: '';
	margin: 0;
}

/* GRIDS */

.grid{
	display: flex;
	flex-wrap: wrap;
}

.grid_2{
	margin-left: -12px;
	margin-right: -12px;
}

.grid_5{
	margin-left: -24px;
	margin-right: -24px;
}

.grid_5 .grid_item{
	width: calc(25% - 48px);
	margin-left: 24px;
	margin-right: 24px;
}

.grid_2 .grid_item{
	width: calc(50% - 24px);
	margin-left: 12px;
	margin-right: 12px;
}

.grid_2 .img_ratio_projet{
	aspect-ratio: 15/10;
	display: flex;
	overflow: hidden;
}

.grid_2 .img_ratio_projet img{
	object-fit: cover;
}

.padd_titles_actu_item{
	padding: 48px 60px;
	box-sizing: border-box;
	min-height: 228px;
	display: block;
	align-items: center;
}

.item-articles{
	margin-bottom: 100px;
}

.dates_actu_item{
	letter-spacing: -0.01em;
}

/* LEGACY */

.col_5{
	column-count: 5;
	column-gap: 60px;
}

.col_nobreak{
	break-inside: avoid;
}

/* SEARCH */

#search_bar{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: none;
}

#cross_search{
	top: 5px;
	margin-left: 3px;
}

main.open_search #search_bar{
	display: flex;
	justify-content: space-between;
}

main.open_search .menu_item{
	display: none;
}

#search_bar input{
	width: 100%;
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
	border-bottom: 2px solid black;
	height: 40px;
	font-size: 26px;
}

input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

.cross{
	width: 24px;
	height: 24px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	z-index: 100;
}

.cross::before, 
.cross::after {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	top: 50%;
	right: 0;
	margin-top: -1px;
	background: black;
}

.cross::before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.cross::after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*////////////*/
/* RESPONSIVE */
/*////////////*/

@media screen and (max-width: 1500px) {
	
	.projet_txt.width25{
		width: 33.33%;
	}
	
	#diapo_wrap{
		width: calc(66.66vw - 24px);
	}
	
}

@media screen and (max-width: 1440px) {
	
	#logo{
		min-width: 500px;
	}
	
	.menu_item{
		width: auto;
	}
	
}

@media screen and (max-width: 1240px) {
	
	#logo{
		min-width: 400px;
	}

	.size38{
		font-size: 30px;
	}
	
	.sub_menu{
		margin-top: 20px;
	}
	
}

@media screen and (max-width: 1140px) {
	
	#logo{
		min-width: 350px;
	}

	.size38{
		font-size: 26px;
	}	
	
}

.mobile,
.mobile_flex,
.mobile_inline{
	display: none;
}

@media screen and (max-width: 1050px) {
	
	.block_mob,
	.mobile{
		display: block;
	}
	
	.mobile_flex{
		display: flex;
	}
	
	.mobile_inline{
		display: inline;
	}
	
	.desktop{
		display: none;
	}
	
	.width100_mob{
		width: 100%;
	}
	
	.marg10_mob{
		margin-bottom: 10px;
	}
	
	.marg20_mob{
		margin-bottom: 20px;
	}
	
	.marg40_mob{
		margin-bottom: 40px;
	}
	
	.wrapper{
		padding-left: 10px;
		padding-right: 10px;
		margin-top: 100px;
	}
	
	.bold_mob{
		font-weight: 500;
	}
	
	.size15{
		font-size: 10px;
	}
	
	.size30,
	.size20{
		font-size: 14px;
	}
	
	.size23,
	.size26{
		font-size: 16px;
	}
	
	.size32{
		font-size: 18px;
	}
	
	.size26_mob,
	.size65{
		font-size: 26px;
	}
	
	.one_term.one_term_big{
		font-size: 11px;
		height: 16px;
		line-height: 16px;
		padding: 0 8px;
		margin: 0 6px 4px 0;
	}
	
	.filters_title{
		padding-right: 0;
	}	
	
	.filters{
		display: block;
	}
	
	/* PROJETS */
	
	#diapo_wrap{
		position: initial;
		top: auto;
		right: auto;
		width: 100%;
	}
	
	#diapo_projet{
		height: auto;
	}
	
	.projet_txt{
		padding-right: 0;
	}
	
	.padd_l_1vw{
		padding-left: 0;
	}
	
	.padd_r_1vw{
		padding-right: 0;
	}
	
	#diapo_projet .one_slide.vid{
		display: block!important;	
	}
	
	#diapo_projet .one_slide.vid{
		aspect-ratio: 16/9;	
	}
	
	/* INDEX */
	
	#filtres_index{
		padding-top: 0;
	}
	
	.filters_col_mob{
		column-count: 2;
	}
	
	.one_row_index{
		display: block!important;
		padding: 0!important;
		margin-bottom: 30px;
		border-top: 1px solid black;
	}
	
	.one_col_row{
		padding: 5px 5px 5px 0!important;
		border: none;
	}
	
	.one_col_row.width10,
	.one_col_row.width20,
	.one_col_row.width30{
		width: 100%!important;
		display: block;
		padding: 5px 5px 5px 0!important;
		border-bottom: none!important;
	}
	
	.vignette_index_img_mob img{
		height: 200px;
		width: auto;
		margin: 10px 0;
	}
	
	/* GRIDS */
	
	.col_5{
		column-count: 1;
		column-gap: 0;
	}
	
	.grid_5,
	.grid_2{
		margin-left: 0;
		margin-right: 0;
	}
	
	.grid_5 .grid_item,
	.grid_2 .grid_item{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	
	.grid_5 .grid_item.item-articles{
		width: 100%;
		padding: 10px;
		margin-bottom: 60px;
		display: block;
	}
	
	/* CONTACT */
	
	.side_contact{
		padding-left: 0;
	}
	
	/* ARTICLES */
	
	.padd_titles_actu_item{
		padding: 0;
		min-height: auto;
	}
	
	/* HOME */
	
	#homepage_txt{
		position: initial;
		padding: 0;
	}
	
	.item_home_title{
		position: initial;
		width: auto;
		padding-right: 0;
		margin-top: 10px;
		margin-bottom: 0px;
		right: auto;
		bottom: auto;
	}
	
	/* MENU */
	
	main.open_search #search_bar{
		background: white;
		z-index: 6666;
		left: 10px;
		right: 10px;
	}
	
	#logo.size38{
		font-size: 20px;
		min-width: auto;
	}
	
	#menu{
		padding: 10px 10px;
	}
	
	#cross_menu_mob{
		right: 10px;
		top: 5px;
		position: absolute;
		cursor: pointer;
	}
	
	.sub_menu{
		display: block!important;
		margin-left: 40px;
		margin-top: 10px;
	}
	
	#main_menu{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: white;
		padding: 10px;
		box-sizing: border-box;
		flex-direction: column;
		height: auto;
		z-index: 666;
		display: none;
	}
	
	body.open_menu_mob #main_menu{
		display: flex;
	}
	
	#hamburger{
		display: block;
		height: 12px;
		width: 24px;
		border-top: 2px solid black;
		border-bottom: 2px solid black;
		position: absolute;
		cursor: pointer;
		top: 6px;
		right: 12px;
	}
	
	#hamburger .line{
		padding: 0;
		margin: 0;
		margin-top: 2px;
		position: absolute;
		top: 0;
		border-bottom: 2px solid;
		padding-bottom: 3px;
		margin-bottom: 4px;
		width: 100%;
		height: 0px;
	}
	
	#cursor_vignette{
		display: none!important;
	}
	
}