@charset "UTF-8";


/****************************/
/****************************/
/********** GLOBAL **********/
/****************************/
/****************************/

html,
body {
	margin: 0;
	padding: 0;
	border: 0;
	height: 100%;
	width: 100%;
}

/********** BODY **********/

body {
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	color: var(--dark-color);
	text-shadow: 0 0 0;
	background: var(--bright-color);
}

/********** WRAPPER **********/
/* flex == footer at bottom */

#wrapper {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	min-height: 100%;
	background: inherit;
	margin: 0;
	padding: 0;
}

/********** MAIN **********/

main {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0;
	margin: 0;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	   -moz-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

/****************************/
/****************************/
/********** HEADER **********/
/****************************/
/****************************/

/* background in :after for animations */

header {
	position: -webkit-sticky;
	position: sticky;
	z-index: 1200;
	top: 0;
	pointer-events: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 1em;
	margin: 0;
}
header > * {
	z-index: 10;
	pointer-events: auto;
	margin: 0;
	color: inherit;
	fill: inherit;
}
header:after {
	content:"";
	position:absolute;
	z-index: -1;
	top:0;
	left:0;
	height:100%;
	width:100%;
	-webkit-transform:translate3d(0,0,0);
	   -moz-transform:translate3d(0,0,0);
	        transform:translate3d(0,0,0);
	background: var(--bright-color);
}

/**************************/
/********** LOGO **********/
/**************************/

/* .logo == in header */

header .logo {
	z-index: 1310;
}
header .logo:hover {
	fill: var(--primary-color);
}
header .logo,
#overlay-navigation .logo {
	height: var(--logo-height);
	width: auto;
	margin: 0;
}
#overlay-navigation .logo {
	margin: 0 auto 1em auto;
}
header .logo svg {
	width: auto;
}

/*
@media (max-width: 760px) {
	header .logo.is-last {
		margin-right: auto !important;
	}
}
*/
@media (min-width: 760px) {
	/*header .logo.is-last {
		margin-left: 0 !important;
	}*/
}

/************************************************/
/********** INTRODUCED == LANDING PAGE **********/
/************************************************/

/** visible banner **/
/* visibility:hidden ==> no focusing */

body.introduced:not(.off) header {
	color:var(--bright-color);
	fill:var(--bright-color);
}
body.introduced:not(.off) header:after {
	opacity:0;
	-webkit-transform:translate3d(0,-100%,0);
	   -moz-transform:translate3d(0,-100%,0);
	        transform:translate3d(0,-100%,0);
	background: none;
}
body.introduced.expanded header {
	color:var(--dark-color);
	fill:var(--dark-color);
}
body.introduced footer {
	position:absolute;
}

/********** @MEDIA **********/

/** mobile **/
@media (max-width: 1000px) {
	header {
		padding: 0;
	}
	header .logo,
	#overlay-navigation .logo {
		padding:var(--global-spacing);
	}
}
/** desktop **/
@media (min-width: 1000px) {
	header,
	header .logo,
	#overlay-navigation .logo {
		padding:calc(var(--global-spacing) / 2);
	}
	/*header .logo {
		padding-bottom: 0 !important;
	}*/
}

/****************************/
/****************************/
/********** FOOTER **********/
/****************************/
/****************************/

footer {
	position: -webkit-sticky;
	position: sticky;
	z-index: 10;
	bottom:0;
	left:0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		   -moz-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	width: 100%;
	pointer-events: none;
	font-size:.625em;
	line-height: 1em;
	text-transform: uppercase;
	background: var(--primary-color);
	padding:0 -webkit-calc(var(--gutter-gap) / 2);
	padding:0 -moz-calc(var(--gutter-gap) / 2);
	padding:0 calc(var(--gutter-gap) / 2);
	min-height:var(--footer-height);
}
footer > * {
	text-align: center;
	pointer-events: auto;
	margin: 0 !important;
}

/********** COPYRIGHT **********/

footer .copyright {
	padding: 1em;
}

/********** NAV **********/

footer nav a:hover,
footer nav a.active {
	color:var(--bright-color);
}

/******************************/
/******************************/
/********** SECTIONS **********/
/******************************/
/******************************/

/*
[default]	== normal content max-width
.focus		== heading section
.full		== no content max-width / no padding
.large		== no content max-width
.cover		== Fullscreen (100vh) min-height

css <=> wp 
section <=> .section / .wp-block-group
section .content <=> .wp-block-group__inner-container

null		<=> short
alignwide 	<=> normal
alignfull	<=> large
*/

main > section {
	position: relative;
	z-index: 10;
	clear: both;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 100%;
	max-width:none; /* for back WP */
	padding: 0 !important;
	/*margin: 0;*/
	margin-left:0;
	margin-right: 0;
	background: var(--bright-color);
	overflow:hidden; /* for swipers */
}

/********** SECTION FULL **********/

section.full,
section.full > .content {
	margin: 0 !important;
	max-width: none;
	width:100%;
}

/********** SECTION LARGE **********/
/* like full with margin */

section.large,
section.large > .content {
	max-width: none;
}

/********** SECTION COVER **********/
/* fullscreen */

section.cover {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	min-height: var(--viewport-height);
}
section.cover .content.vertical-aligned {
	margin: auto;
}

/********** SECTION CONTENT / ASIDE **********/

section .content {
	position: relative;
	z-index: 10;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	   -moz-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
section > .content {
	-webkit-flex-basis: 0;
	    -ms-flex-preferred-size: 0;
	        flex-basis: 0;
}
section > aside {
	-webkit-box-flex: 0.5;
	-webkit-flex-grow: 0.5;
	   -moz-box-flex: 0.5;
	    -ms-flex-positive: 0.5;
	        flex-grow: 0.5;
	-webkit-flex-basis: 0;
	    -ms-flex-preferred-size: 0;
	        flex-basis: 0;
}
section .content .columns .short img {
	margin: 0 0 0 auto;
}

/********** ASIDE SIDEBAR **********/

.sidebar {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align:start;
	-webkit-align-items:flex-start;
	   -moz-box-align:start;
	    -ms-flex-align:start;
	        align-items:flex-start;
	font-size:.75em;
}
.sidebar > * + * {
	margin-top:var(--global-spacing);
}
.sidebar > .short + * {
	margin-top:0;
}
.sidebar .event-type,
.sidebar .event-dates {
	font-size:1.5em;
	line-height: 1.125em;
	text-transform: uppercase;
}
.sidebar .event-dates em {
	font-style:normal;
}
.sidebar .event-type + .event-dates,
.sidebar * + .event-partners {
	margin-top:-webkit-calc(var(--global-spacing) / 2);
	margin-top:-moz-calc(var(--global-spacing) / 2);
	margin-top:calc(var(--global-spacing) / 2);
}
.sidebar .event-duration + .event-price {
	margin-top:0;
}

/********** MARGIN **********/

section .content {
	margin: var(--gutter-gap);
	max-width:var(--content-maxwidth);
	width: -webkit-calc(100% - var(--gutter-gap) * 4);
	width: -moz-calc(100% - var(--gutter-gap) * 4);
	width: calc(100% - var(--gutter-gap) * 4);
}
section.large .content {
	margin: var(--gutter-gap);
	width: -webkit-calc(100% - var(--gutter-gap) * 2);
	width: -moz-calc(100% - var(--gutter-gap) * 2);
	width: calc(100% - var(--gutter-gap) * 2);
}
section aside {
	margin: var(--gutter-gap);
}

/************************************/
/************************************/
/********** SECTION BANNER **********/
/************************************/
/************************************/

/********** DEFAULT **********/

section.banner {
	height:var(--viewport-height);
	margin-top:-webkit-calc(var(--header-height) * -1);
	margin-top:-moz-calc(var(--header-height) * -1);
	margin-top:calc(var(--header-height) * -1);
}

/********** CONTENT **********/

section.banner .content {
	color: var(--bright-color);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	   -moz-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
	gap: 1em;
	margin:auto;
	max-width:none;
	width:100%;
}
section.banner .background:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: block;
	background: var(--dark-color);
	opacity: 0.25;
}

/********** INFOS **********/

section.banner .infos {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	   -moz-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack:start;
	-webkit-justify-content:flex-start;
	   -moz-box-pack:start;
	    -ms-flex-pack:start;
	        justify-content:flex-start;
	text-align: left;
	width:100%;
	padding:-webkit-calc(var(--gutter-gap) * 2) var(--gutter-gap);
	padding:-moz-calc(var(--gutter-gap) * 2) var(--gutter-gap);
	padding:calc(var(--gutter-gap) * 2) var(--gutter-gap);
	margin:auto var(--gutter-gap) 2.75em var(--gutter-gap);
}
section.banner .infos .event-title {
	font-size:min(max(15vw), 5rem);
	line-height:.875em;
}
section.banner .infos .event-description {
	/*
	font-size:min(max(15vw), 2rem);
	line-height:1.125em;
	*/
	line-height:1em;
}

/********** SWIPER **********/

section.banner .swiper-slide {
	height:var(--viewport-height);
}
section.banner .swiper-slide-content {
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
}
section.banner .swiper-slide .infos {
	padding:0;
}
section.banner .swiper-slide a.infos .event-description span {
	position:relative;
	display:inline;
	padding-bottom:var(--line-height);
	/*text-decoration: underline;*/
	text-shadow: none;
	-webkit-text-decoration-line: underline;
	   -moz-text-decoration-line: underline;
	        text-decoration-line: underline;
	-webkit-text-decoration-color: transparent;
	   -moz-text-decoration-color: transparent;
	        text-decoration-color: transparent;
	text-decoration-thickness: -webkit-calc(var(--line-height) / 2);
	text-decoration-thickness: -moz-calc(var(--line-height) / 2);
	text-decoration-thickness: calc(var(--line-height) / 2);
	text-underline-position: from-font;
}
section.banner .swiper-slide a.infos:hover .event-description span {
	-webkit-text-decoration-color: inherit;
	   -moz-text-decoration-color: inherit;
	        text-decoration-color: inherit;
}

/********** @MEDIA **********/

/** mobile **/
@media (max-width:760px) {
	section.banner .infos .event-description {
		font-size:min(max(15vw), 2rem);
	}
}
/** desktop **/
@media (min-width:760px) {
	section.banner .infos .event-description {
		font-size:min(max(15vw), 3.5rem);
	}
}

/***********************************/
/***********************************/
/********** SECTION FOCUS **********/
/***********************************/
/***********************************/

section.focus {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	   -moz-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	padding: 0;
}
section.focus > * {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	   -moz-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	-webkit-flex-basis: 0;
	    -ms-flex-preferred-size: 0;
	        flex-basis: 0;
}
section.focus .content {
	margin-top:0;
	margin-bottom:0;
}

/********** THUMBNAIL **********/

section.focus .thumbnail + * {
	margin-top:0;
}

/********** INFOS **********/

section.focus .infos {
	position: relative;
	z-index: 30;
	margin: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-align-self: stretch;
	    -ms-flex-item-align: stretch;
	            -ms-grid-row-align: stretch;
	        align-self: stretch;
	width: 100%;
	gap: 0;
	margin: var(--global-spacing) 0 0 0;
}
section.focus .infos > * + * {
	margin: 0;
}
section.focus .event-description {
	line-height:1em;
	padding-bottom:.125em;
}

/********** FOCUS ALT **********/

section.focus.alt .event-title {
	position:absolute;
	font-size:0 !important;
	padding:0 !important;
}

/********** @MEDIA **********/


@media (min-width: 0px) {
	section.focus .event-subtitle {
		font-size:1em;
	}
	section.focus .event-description {
		font-size:1.25em;
	}
}
@media (min-width: 760px) {
	section.focus .event-subtitle {
		font-size:1.75em;
	}
	section.focus .event-description {
		font-size:2em;
	}
}
@media (min-width: 1000px) {
	section.focus .event-subtitle {
		font-size:1.75em;
	}
	section.focus .event-description {
		font-size:2em;
	}
}

/********************************/
/********************************/
/********** WP CONTENT **********/
/********************************/
/********************************/

/* css <> wp */

/***************************/
/********** FRONT **********/
/***************************/

/** no section == directly in main == apply to content to behave like section **/
/*
ex. p
*/

main > section + *:not(section){
	margin-top:var(--global-spacing);
}
main > :not(section)[class*='-background-color'],
main > *:not(section):not(#contextual):not(.is-limited-large):not([class*='-background-color']) {
	width: -webkit-calc(100% - var(--gutter-gap) * 2);
	width: -moz-calc(100% - var(--gutter-gap) * 2);
	width: calc(100% - var(--gutter-gap) * 2);
	margin-left:var(--gutter-gap);
 	margin-right:var(--gutter-gap);
	max-width:var(--content-maxwidth);
}

/** columns ending with -background-color **/

main > :not(section)[class*='-background-color'] {
	position:relative;
	z-index: 5;
	padding:var(--gutter-gap) 0;
}
main > :not(section)[class*='-background-color']:after {
	content:"";
	position:absolute;
	z-index: -1;
	top:0;
	left:50%;
	height:100%;
	width:100vw;
	-webkit-transform:translate3d(-50%,0,0);
	   -moz-transform:translate3d(-50%,0,0);
	        transform:translate3d(-50%,0,0);
	background:inherit;
	pointer-events: none;
}
main > section:last-child .content,
main > *:not(section):last-child {
	margin-bottom: -webkit-calc(var(--gutter-gap) * 1.5);
	margin-bottom: -moz-calc(var(--gutter-gap) * 1.5);
	margin-bottom: calc(var(--gutter-gap) * 1.5);
}
body:not(.introduced) main #contextual + *:not(section.focus),
body:not(.introduced) main #contextual + h1.hidden + *:not(section.focus),
body:not(.introduced) main * + h1,
body:not(.introduced) main * + h2,
body:not(.introduced) main * + h3,
body:not(.introduced) main * + h4,
body:not(.introduced) main * + h5,
body:not(.introduced) main * + h6 {
	margin-top:var(--gutter-gap) !important;
}