*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	/* height: 100%; */
	position: relative;
	scroll-behavior: smooth;
}

html {
	--vh: 1vh;
	--window-height: calc(var(--vh) * 100);
	--quarter-unit: calc(var(--unit) * .25); /* 0.28125rem; */
	--half-unit: calc(var(--unit) * .5); /* 0.5625rem; */
	--three-quarter-unit: calc(var(--unit) * .75); /* 0.84375rem */
	--unit: 1.125rem;
	--one-half-units: calc(var(--unit) * 1.5); /* 1.6875rem; */
	--two-units: calc(var(--unit) * 2); /* 2.25rem; */
	--three-units: calc(var(--unit) * 3); /* 3.375rem; */
	--header-opened: calc(var(--three-units) + var(--two-units));
	--header-closed: var(--three-units);
	--button: 1.5rem;
	--button-margin: calc((var(--two-units) - var(--button)) / 2); /* 0.375rem */
	--color: black;
	--background: white;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-padding-top: var(--header-opened);
}

body {
	background-color: var(--background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--color);
	font-family: "Gerstner Programm", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-feature-settings: "tnum" 1;
	font-size: 1rem;
	line-height: 1.125;
	font-style: normal;
	font-weight: 500;
	text-rendering: geometricPrecision;
}

body.invert {
	--color: white;
	--background: black;
}

*::selection {
	background-color: var(--color);
	color: var(--background);
}

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

a.in::before {
	content: "\2198\00a0";
	display: inline-block;
}

a.out::after {
	content: "\00a0\02C2";
	display: inline-block;
}

a:hover {
	color: var(--accent);
}

p + p {
	margin-top: var(--unit);
}

h1,
h2 {
	font-size: inherit;
	font-weight: inherit;
}

strong {
	font-weight: normal;
}

img {
	display: block;
	object-fit: cover;
	object-position: center;
	transition: filter 0.3s, opacity 0.3s;
}

img.lazyload {
	opacity: 0;
}

img.lazyloading {
	opacity: 1;
}

img.lazyload, img.lazyloading {
	filter: blur(5px);
}

img.landscape {
	width: 100%;
	height: auto;
	max-height: 100%;
}

img.portrait {
	width: auto;
	height: 100%;
	max-width: 100%;
}

mark {
	background-color: var(--accent);
	color: var(--accent-text);
}

.filler {
	flex: 1 1 auto;
}

.times {
	font-family: "Times Std", 'Times New Roman', Times, serif;
	font-weight: normal;
}

.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.no-overflow {
	overflow: hidden;
}

.header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	padding: 0 var(--two-units);
	position: fixed;
	top: 0;
	z-index: 100;
	background-color: var(--background);
}

.header--transparent {
	background-color: transparent;
}

.header--minimal::after {
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	top: 100%;
	right: var(--three-units);
	left: var(--three-units);
	background-color: var(--color);
}

.header_part {
	display: flex;
	align-items: center;
	height: var(--three-units);
}

.header_part > * {
	margin: 0 var(--unit);
}

.header_subpart {
	display: flex;
}

.header--minimal > .header_part:first-of-type > *:not(:first-child),
.header--minimal > .header_part:last-of-type > *:not(:last-child) {
	display: none;
}

.header_open,
.header_close {
	display: none;
	position: absolute;
	left: 50%;
	right: var(--unit);
	top: 0;
	line-height: var(--three-units);
	text-align: right;
	text-transform: uppercase;
}

.header--minimal > .header_open,
.header--minimal > .header_close {
	display: none;
}

.languages {
	display: flex;
	color: rgb(127, 127, 127);
}

.language:hover {
	color: var(--accent);
}

.language--selected {
	color: var(--color);
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: calc((var(--button) - 0.75rem) / 2 - 1px) 1em;
	border: 1px solid currentColor;
	font-size: 0.75rem;
	line-height: 1;
	user-select: none;
	white-space: nowrap;
}

.button:empty {
	border: none;
	pointer-events: none;
}

.button:hover,
.button--hover,
.button--active {
	background-color: var(--color);
	border-color: var(--color);
	color: var(--background);
}

.button--active {
	cursor: default;
}

.button--transparent {
	background-color: rgba(240, 240, 240, 0.8);
	border-color: transparent;
	color: var(--color);
}

body.invert .button--transparent {
	background-color: rgba(10, 10, 10, 0.8);
}

.button--transparent:hover,
body.invert .button--transparent:hover {
	background-color: var(--background);
	border-color: transparent;
	color: var(--color);
}

.button--inactive {
	pointer-events: none;
}

main {
	/* (header + search) */
	padding: var(--header-opened) var(--three-units) var(--two-units);
	position: relative;
	z-index: 1;
	transform: translate3d(0, 0, 0);
	background-color: var(--background);
	border-bottom: 1px solid var(--color);
}

.news {
	margin: var(--unit) calc(-1 * var(--three-units)) calc(-1 * var(--unit));
	padding: var(--unit) 0;
	overflow: hidden;
	position: relative;
	z-index: 10;
	/* color: var(--accent); */
	font-family: "DMT";
	font-size: calc(1rem + 1.4vw);
	line-height: 0.75;
	text-transform: uppercase;
}

.news::before,
.news::after {
	content: "\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D\002D";
	width: 100%;
	position: absolute;
	left: 0;
	white-space: nowrap;
	letter-spacing: -0.045em;
}

.news::before {
	top: -0.3em;
}

.news::after {
	bottom: -0.3em;
}

.news_marquee {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
}

.marquee.news_marquee.is-init {
	justify-content: flex-start;
}

.marquee > div,
.marquee > span,
.marquee3k__wrapper > div,
.marquee3k__wrapper > span {
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 0.125em;
	white-space: nowrap;
}

/* .marquee3k__wrapper > div::after,
.marquee3k__wrapper > span::after {
	content: "\00a0—";
} */

.news_marquee > div,
.news_marquee > .marquee3k__wrapper > div {
	padding: 0 0.25em;
}

.slideshow {
	display: flex;
	/* height: calc(var(--window-height) - var(--header-opened) - var(--two-units) - (1rem + 1.4vw) * 0.75 * 2 - var(--two-units) * 3); */
	height: calc(var(--window-height) - var(--header-opened) - var(--two-units) * 3 - (1rem + 1.4vw) * 0.75);
	margin-top: var(--two-units);
}

.slideshow > div {
	flex: 1;
	position: relative;
}

.slideshow .event {
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
}


.slideshow_left .event {
	transform: translateY(-100%) translateY(calc((var(--header-opened) + var(--two-units) * 2 + (1rem + 1.4vw) * 0.75) * -1));
	animation: slideshow-bottom 6s cubic-bezier(0.6, 0, 0.2, 1) infinite;
}

.slideshow_right .event {
	transform: translateY(100%) translateY(calc(var(--two-units) * 2 + (1rem + 1.4vw) * 0.75));
	animation: slideshow-top 6s cubic-bezier(0.6, 0, 0.2, 1) infinite;
}

.slideshow .event_image {
	width: 100%;
	height: 100%;
}

.slideshow .event_image > picture > img {
	height: 100%;
}

.slideshow .event_informations {
	align-items: flex-end;
	position: absolute;
	bottom: 0;
	left: 0;
}

.slideshow .event_title,
.slideshow .event_year {
	position: relative;
	z-index: 1;
	white-space: normal;
}

.slideshow .event_year {
	margin-left: 1px;
}

.categories,
.subcategories {
	display: flex;
	flex-wrap: wrap;
}

.category,
.subcategory {
	margin-top: -1px;
	margin-right: -1px;
}

.category {
	font-feature-settings: "case" 1, "tnum" 1;
	text-transform: uppercase;
}

.category.button--transparent,
.subcategory.button--transparent {
	margin-top: 1px;
	margin-right: 1px;
}

.selection_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--two-units);
	margin: var(--unit) 0 calc(-1 * var(--half-unit));
	border-top: 1px solid currentColor;
	text-transform: uppercase;
}

.footer {
	display: flex;
	/* (header + search) */
	height: calc(var(--window-height) - var(--header-opened));
	max-height: 24em;
	padding: var(--two-units);
	overflow: hidden;
	position: sticky;
	bottom: 0;
}

.footer_logo {
	width: calc(50% - var(--two-units));
	margin: 0 var(--unit);
}

.footer_logo > img {
	display: block;
	width: 101%;
	height: auto;
	max-height: 102%;
	background-position: right top;
	background-repeat: no-repeat;
	background-size: auto 100%;
	object-fit: initial;
	object-position: initial;
}

body.invert .footer_logo > img {
	filter: invert(1);
}

.footer_informations {
	display: flex;
	flex-direction: column;
	width: 50%;
	overflow: hidden;
}

.footer_informations a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.footer_informations img {
	display: block;
	width: 100%;
	height: auto;
}

.footer_informations > div {
	display: flex;
	width: 100%;
	overflow: hidden;
}

.footer_informations > :first-child {
	padding-bottom: 1.1em;
	flex: 1 1 auto;
}

.footer_informations > :last-child {
	align-items: flex-end;
	flex: 1 0 auto;
}

.footer_informations > div > div {
	padding: 0 var(--unit);
}

.footer_informations > div > :first-child {
	flex: 1 1 0%;
}

.footer_informations > div > :last-child {
	width: 33.333%;
	min-width: 13em;
	max-width: 20em;
}

.footer_css > div + div {
	margin-top: var(--unit);
}

.footer_css > div > p + p {
	margin-top: 0;
}

.footer_social > a {
	text-transform: capitalize;
}

/* @media (prefers-color-scheme: dark) {
	body {
		--color: white;
		--background: #111;
	}

	.footer img {
		filter: invert(1);
	}

	.button--transparent {
		background-color: rgba(30, 30, 30, 0.8);
	}
} */

#cursor {
	display: block;
	width: 38px;
	height: 48px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	pointer-events: none;
	visibility: hidden;
	will-change: transform;
	image-rendering: -moz-crisp-edges;
	image-rendering: -webkit-crisp-edges;
	image-rendering: pixelated;
	image-rendering: crisp-edges;
}

body.no-cursor {
	overflow-x: hidden;
}

body.no-cursor,
body.no-cursor * {
	cursor: none !important;
}

@media (max-width: 1280px) {
	.header_part {
		padding: 0 var(--half-unit);
	}

	.header_part > * {
		margin: 0 var(--half-unit);
	}
}

/* @media (max-width: 1280px), (max-height: 600px) {
	body {
		--unit: 1rem;
	}
} */

@media (min-width: 1024px) and (max-width: 1280px) {
	.header_part:first-of-type {
		padding-right: 0;
	}

	.header_part:last-of-type {
		padding-left: 0;
	}
}

@media (max-width: 1023px) {
	html {
		--header-opened: var(--three-units);
	}

	.header {
		height: var(--header-opened);
		padding: 0;
		overflow: hidden;
	}

	.header--minimal {
		padding: 0 var(--unit);
	}

	.header--minimal::after {
		display: none;
	}

	.header:target {
		height: auto;
	}

	.header--transparent:target {
		background-color: var(--background);
	}

	.header_open {
		display: block;
	}

	.header:target > .header_open {
		display: none;
	}

	.header:target > .header_close {
		display: block;
	}

	.header_part {
		width: 100%;
		height: auto;
		flex-wrap: wrap;
	}

	.header--minimal > .header_part {
		flex: 1;
		width: auto;
	}

	.header_part > * {
		width: 100%;
		height: var(--two-units);
		border-bottom: 1px solid var(--color);
		line-height: var(--two-units);
	}

	.header_part:first-of-type > :first-child {
		height: var(--three-units);
		line-height: var(--three-units);
	}

	.header--minimal > .header_part > * {
		margin: 0;
	}

	.header--minimal > .header_part > .languages {
		text-align: right;
	}

	main {
		padding: var(--header-opened) var(--unit) var(--unit);
	}

	.news {
		margin: var(--three-quarter-unit) calc(-1 * var(--unit)) calc(-1 * var(--quarter-unit));
		padding: var(--three-quarter-unit);
	}

	.slideshow {
		/* height: calc(var(--window-height) - var(--header-opened) - var(--two-units) * 4 - (1rem + 1.4vw) * 0.75 * 2 - var(--two-units) * 2); */
		height: calc(var(--window-height) - var(--header-opened) - var(--two-units) * 2 - (1rem + 1.4vw) * 0.75);
		margin-top: var(--unit);
	}

	.footer {
		padding: var(--unit) var(--half-unit);
	}

	.footer_logo {
		width: calc(50% - var(--unit));
		margin: 0 var(--half-unit);
	}

	.footer_informations > :last-child {
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.footer_informations > div:last-of-type > :first-child {
		width: 100%;
		/* padding-bottom: var(--unit); */
		/* text-align: right; */
	}

	.footer_informations > div > div {
		padding: 0 var(--half-unit);
	}

	.footer_informations > div:first-of-type > :last-child {
		display: none;
	}
}

@media (max-width: 768px), (max-height: 600px) {
	html {
		font-size: 0.875em;
	}
}

@media (max-width: 768px) {
	/* .underline,
	.footer_informations a {
		text-underline-offset: 2px;
	} */

	.footer {
		flex-wrap: wrap;
		height: auto;
		max-height: none;
		position: static;
	}

	.footer_logo {
		width: 100%;
	}

	.footer_logo > img {
		max-height: calc(33.333vw - var(--unit));
	}

	.footer_informations {
		width: 100%;
		padding-top: var(--two-units);
		overflow: visible;
	}

	.footer_informations > div {
		overflow: visible;
	}

	.footer_informations > :last-child {
		flex-wrap: nowrap;
		/* justify-content: flex-end; */
	}

	.footer_informations > div:first-of-type > :last-child {
		display: block;
	}

	.footer_informations > div:last-of-type > :first-child {
		width: auto;
		padding-bottom: 0;
		text-align: left;
	}
}

@media (max-width: 600px) {
	.footer_logo > img {
		max-height: none;
	}
}

@media (max-width: 420px) {
	.footer_informations > div:first-of-type > :last-child {
		display: none;
	}

	.footer_informations > div > :last-child {
		min-width: 10em;
	}
}

@media (orientation: portrait) {
	.slideshow {
		flex-direction: column;
	}

	.slideshow_left .event {
		transform: translateX(100%) translateX(var(--three-units));
		animation: slideshow-left 6s cubic-bezier(0.6, 0, 0.2, 1) infinite;
	}

	.slideshow_right .event {
		transform: translateX(-100%) translateX(calc(var(--three-units) * -1));
		animation: slideshow-right 6s cubic-bezier(0.6, 0, 0.2, 1) infinite;
	}
}

@media (orientation: portrait) and (max-width: 1023px) {
	.slideshow_left .event {
		transform: translateX(100%) translateX(var(--unit));
	}

	.slideshow_right .event {
		transform: translateX(-100%) translateX(calc(var(--unit) * -1));
	}
}