@charset "UTF-8";

/*
 * Theme  : Neutral
 * Version: 1.0.0
 * Author : hybrid.
 */



/* ================================================================================================== */
/* ============================================= CONFIG ============================================= */
/* ================================================================================================== */

/*
 * navbar height  : based on icons heights (1em) > for --header-height
 * primary height : 1.25em + .5em x 2 padding == 2.25em > use for #navigation / for --header-height
 */

@media (min-width: 0px) {
	body {
		--navbar-height: calc(var(--font-size) * 5);
		--primary-height: 0em;
	}
}

@media (min-width: 760px) {
	body {
		--navbar-height: calc(1.5em + 1em);
		--primary-height: 2.25em;
	}
}



/* ================================================================================================= */
/* ============================================= RESET ============================================= */
/* ================================================================================================= */

nav li > a::after {
	display: none;
}



/* ============================== NAV ============================== */

nav,
nav a {
	display: inline-flex;
}

nav a {
	margin: 0;
}

nav.full {
	width: 100%;
}

nav.list {
	flex-direction: column;
}

nav.centered {
	justify-content: center;
}


/* ============================== BUTTONS ============================== */

/*
 * nav.buttons
 * a.button
 * buttons > a / span
 * nav.buttons      == short line under (text-decoration)
 * nav.buttons.large == larger line under (border-bottom)
 */


/* =============== DEFAULT =============== */

.buttons {
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2em;
}

.buttons > *,
.button {
	position: relative;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	font-size: 1em;
	line-height: 1em;
	text-transform: uppercase;
	border: 0;
	background: none;
}

.buttons a:hover,
.button:hover {
	color: var(--theme-color);
	background: none;
}

.buttons a:after,
.button:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	height: var(--logo-line-height);
	width: 100%;
	transform: translate3d(-50%, 100%, 0);
	box-shadow: inset 0 0 0 var(--logo-line-height);
}

.buttons a:hover:after,
.button:hover:after {
	width: var(--logo-line-width);
}

.buttons a > *,
.button > * {
	margin: 0;
}

.button.centered {
	margin-left: auto;
	margin-right: auto;
}


/* =============== FLAT =============== */

/* no border */

.buttons.flat a:after,
.button.flat:after {
	content: "";
	display: none;
}


/* =============== MORE-LINK =============== */

.more-link {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: none;
}

.more-link:after {
	display: none;
}


/* =============== READ-MORE =============== */

/* in grid */

.read-more {
	margin-right: .5em;
}


/* =============== LINK BUTTON =============== */

/* eg. season download button */

.link {
	position: relative;
	font-size: .875em;
	line-height: 1em;
	padding-left: 2em !important;
	text-decoration: underline;
	border: 0;
}

.link:hover {
	color: var(--theme-color);
}

.link:before {
	content: '→';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(50%, -50%, 0);
}

.link:hover:before {
	transform: translate3d(80%, -50%, 0);
}


/* ============================== SECTION-LINK / GO-BACK / GO-TOP ============================== */

/*
 * section-link == section to section button
 * go-back      == history back button
 * go-top       == scroll top button
 */

.section-link svg,
.go-back svg,
.go-top svg {
	height: 1em;
	width: 1em;
}

.section-link:hover .svg-icon-outline,
.go-back:hover .svg-icon-outline,
.go-top:hover .svg-icon-outline {
	stroke: var(--theme-color);
}


/* =============== SECTION-LINK =============== */

.section-link {
	display: flex;
	margin: auto;
}

.section-link svg {
	transform: rotate(-90deg);
}

.section-link:hover .icon-arrow-down.animated {
	transform: rotate(-90deg) translate3d(-.125em, 0, 0);
}


/* =============== ACCESSIBILITY-TOGGLE =============== */

.accessibility-toggle {
	display: inline-flex;
	font-size: 1em;
	line-height: 1em;
	padding: 1em;
	text-transform: none;
}

/* in navbar */

#navbar .accessibility-toggle {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	color: var(--dark-color);
	background: var(--bright-color);
	border-radius: 50%;
}

#navbar .accessibility-toggle:hover {
	color: var(--bright-color) !important;
	background: var(--theme-color);
}


/* =============== GO-BACK =============== */

.go-back {
	display: inline-flex;
	width: 1em !important;
	min-width: auto !important; /* for columns */
	line-height: 1em;
	margin: 0;
}

.go-back:hover {
	color: var(--theme-color);
}


/* =============== GO-TOP =============== */

.go-to-the-top {
	display: inline-flex;
	min-width: auto !important; /* for columns */
	line-height: 1em;
	padding: 1rem;
	margin: 0;
	background: var(--bright-color);
	border-radius: 50%;
}

.go-to-the-top:hover {
	color: var(--bright-color);
	background: var(--theme-color);
}

.go-to-the-top svg {
	transform: rotate(90deg);
}

/* in footer */

footer .go-to-the-top {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 100%, 0);
}

body.scrolled footer .go-to-the-top {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}


/* =============== COOKIE YES =============== */

.cky-btn-revisit-wrapper {
	position: fixed;
	height: 3em !important;
	width: 3em !important;
	font-size: 1em;
	line-height: 1;
	background: var(--theme-color);
}

.cky-revisit-bottom-left {
	bottom: 5em !important;
	left: 1em !important;
}

.cky-btn-revisit-wrapper .cky-btn-revisit img {
	height: 2em !important;
	width: 2em !important;
}

body.end .cky-btn-revisit-wrapper {
	transform: translate3d(0, calc(var(--footer-height) * -1), 0);
}


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

@media (max-width: 760px) {
	.go-back { font-size: 2em; }

	section.focus .go-back {
		margin-top: -1em !important;
		transform: translate3d(0, calc(100% + var(--gutter-gap) + .375em), 0);
	}

	.go-to-the-top { font-size: 1em; }
}

@media (min-width: 760px) {
	body.end #navbar .accessibility-toggle,
	body.end footer .go-to-the-top {
		transform: translate3d(0, calc(var(--footer-height) * -1), 0);
	}

	.go-back { font-size: 3em; }

	.go-back.large {
		margin-top: -1em !important;
		transform: translate3d(0, 100%, 0);
	}

	.go-back.large + .article {
		width: calc(100% - 8em);
	}

	section.focus .go-back {
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		margin: 0 !important;
		transform: none;
	}

	.go-to-the-top { font-size: 2em; }
}


/* ============================== MENU ============================== */

/*
 * .menu
 * .menu.collapsible (mobile only)
 * ul.menu > li > a + ul.menu > li > a
 */

.menu {
	display: flex;
	flex-wrap: wrap;
	line-height: 1em;
}

.menu .menu {
	flex-direction: column;
	gap: .75em;
	font-size: .625em;
	margin: 0;
}

.menu > * {
	position: relative;
	list-style: none;
	margin: 0;
}

.menu a {
	display: inline-flex;
	flex-direction: row;
	gap: 1em;
	color: inherit;
	border: 0 !important;
}


/* =============== COLLAPSIBLE =============== */

/*
 * menu.collapsible > li > a.collapsible + .menu
 */

.menu a.collapsible-toggle {
	display: none;
	visibility: hidden;
}


/* =============== COLORS =============== */

.menu a:hover,
.menu a.active {
	color: var(--theme-color);
}

.menu a.alt {
	color: var(--theme-color);
}

.menu a.alt:hover,
.menu a.alt.active {
	color: var(--dark-color);
}


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

@media (max-width: 760px) {
	.menu {
		flex-direction: column;
		gap: 1em;
		font-size: 1.25em;
	}

	/* collapsible */
	.menu.collapsible > li > * {
		padding-left: 3.25em;
	}

	.menu a.collapsible-toggle {
		position: absolute;
		top: 0;
		left: 0;
		height: 2em;
		width: 2em;
		padding: 0 !important;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		visibility: visible;
		color: var(--theme-color);
	}

	.menu a.collapsible-toggle > * {
		font-size: .75em;
		line-height: 1em;
		margin: auto;
	}

	/*.menu a.collapsible-toggle + .menu {
		flex-wrap: nowrap;
		opacity: 0;
		max-height: 0;
		overflow: hidden;
		margin: 0;
	}

	.menu a.collapsible-toggle + .menu.collapsed {
		opacity: 1;
		max-height: 10em;
	}
		*/
}

@media (min-width: 760px) {
	.menu {
		flex-direction: row;
		gap: 2em 1em;
		font-size: 1.5em;
	}

	.menu .menu {
		margin-left: .375em;
	}

	/* collapsible */
	.menu.collapsible {
		max-height: none !important;
	}
	.menu.collapsible > * {
		opacity: 1;
	}
}


/* ============================== NAVBAR ============================== */

#navbar {
	position: relative;
	z-index: 20;
	display: inline-flex;
	align-items: stretch;
	justify-content: space-between;
	text-transform: uppercase;
	white-space: nowrap;
	width: 100%;
	pointer-events: none;
}

#navbar > * {
	position: relative;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	margin: 0;
	pointer-events: auto;
}

#navbar a:hover,
#navbar a.active {
	color: var(--theme-color);
}

#navbar [class^="icon-"] {
	font-size: 1.5em;
	line-height: 1em;
	margin: .5em;
}

@media (max-width: 760px) {
	#navbar {
		position: absolute;
		top: 0;
		left: 0;
		padding: 1em;
	}
}


/* ============================== ALIAS / USER ============================== */

/*
 * calendar is visible as an icon in mobile NOT in alias
 * calendar is NOT visible in navbar
 */

nav.alias {
	display: inline-flex;
	flex-wrap: wrap;
	line-height: 1em;
}

/* in navbar */

#navbar nav.alias {
	margin: 0 auto 0 0;
}

#navbar nav.alias.user {
	margin: 0 0 0 auto;
}


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

@media (max-width: 760px) {
	nav.alias {
		font-size: 1em;
	}

	nav.alias a {
		padding: 1em .5em;
	}

	/* in navbar */
	#navbar nav.alias {
		display: none;
		visibility: hidden;
	}

	/* in navigation */
	#navigation nav.alias {
		justify-content: center;
		font-size: .75em;
		margin: 0 !important;
	}
}

@media (min-width: 760px) {
	nav.alias {
		font-size: .75em;
	}

	nav.alias a {
		padding: 1em;
	}

	/* in navigation */
	#navigation nav.alias {
		display: none;
		visibility: hidden;
	}
}


/* ============================== PRIMARY ============================== */

#primary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: var(--content-max-width);
	margin: 0 auto;
	text-align: center;
	white-space: nowrap;
	font-size: 1.25em;
	line-height: 1em;
}

#primary a {
	flex-grow: 1;
	flex-basis: 0;
	position: relative;
	display: inline-flex;
	justify-content: center;
	pointer-events: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}

#primary a > * {
	flex-grow: 1;
	flex-basis: 0;
	font-size: inherit;
	line-height: inherit;
	pointer-events: auto;
}

#primary a span {
	padding: .5em;
	margin: 0 1em; /* for focus-visible */
}

#primary a:hover span,
#primary a.active span {
	color: var(--theme-color);
}

#primary a.active {
	pointer-events: none;
}


/* =============== SEPARATIONS =============== */

#primary a > *,
#primary a:before,
#primary a:after {
	flex-grow: 1;
	flex-basis: 0;
}

#primary a:first-child:before,
#primary a:after {
	content: "";
	position: relative;
	display: inline-block;
	flex-grow: 1;
	flex-basis: 0;
	max-width: var(--logo-line-width);
	margin: auto;
	pointer-events: none;
}

#primary a:not(:last-child):after {
	border-top: solid var(--logo-line-height);
}

#primary a:nth-child(2):after {
	visibility: hidden;
}


/* =============== EXPANDED =============== */

body.expanded #primary {
	opacity: 0;
	visibility: hidden;
}

@media (max-width: 760px) {
	#primary {
		display: none;
		visibility: hidden;
	}
}


/* ============================== NAVIGATION ============================== */

#navigation {
	position: fixed;
	z-index: 1300;
	left: 0;
	display: flex;
	height: 0;
	width: 100%;
	overflow: hidden;
	visibility: hidden;
	top: calc(var(--header-height) - var(--primary-height));
	scroll-behavior: smooth;
}

body.expanded #navigation {
	overflow: auto;
	visibility: visible;
	height: calc(var(--viewport-height) - var(--header-height) + var(--primary-height));
}


/* =============== NAVIGATION CONTENT =============== */

#navigation .navigation-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: var(--gutter-gap) calc(var(--gutter-gap) * 2);
	background: var(--light-color);
}

#navigation .navigation-content > * {
	pointer-events: auto;
	opacity: 0;
	margin: auto;
	transform: translate3d(0, -3em, 0);
}

@media (max-width: 760px) {
	#navigation .navigation-content { gap: 0; }
}

@media (min-width: 760px) {
	#navigation .navigation-content { gap: var(--gutter-gap); }
}


/* =============== EXPANDED =============== */

body.expanded #navigation .navigation-content {
	overflow: auto;
}

body.expanded #navigation .navigation-content > * {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}


/* =============== SITEMAP =============== */

/* based on .menu */

#sitemap {
	width: 100%;
}

#sitemap .menu {
	gap: 0;
}

#sitemap .menu a {
	padding: .5em; /* for focus-visible */
	visibility: hidden;
}

#sitemap .menu a em {
	font-style: normal;
}

body.expanded #sitemap .menu a {
	visibility: visible;
}

@media (max-width: 760px) {
	#sitemap > .menu a {
		margin-left: 2em;
	}

	#sitemap > .menu a.collapsible-toggle,
	#sitemap > .menu .menu a {
		margin-left: 0;
	}
}

@media (min-width: 760px) {
	#sitemap > .menu {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-gap: .5em 1em;
		grid-auto-flow: row;
	}
}


/* =============== NAVIGATION-EXPAND =============== */

#navigation-expand {
	position: relative;
	z-index: 2100;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}


/* =============== BODY EXPANDED =============== */

body.expanded {
	overflow: hidden;
}


/* ============================== SECONDARY ============================== */

.secondary {
	position: relative;
	flex-wrap: wrap; /* for mobile */
	line-height: 1em;
	text-align: center;
}

.secondary a {
	margin: 0;
}

.secondary a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 1em;
	height: var(--logo-line-height);
	width: 0;
	box-shadow: inset 0 0 0 1em;
}

.secondary a:hover:after {
	width: calc(100% - 2em);
}

@media (max-width: 760px) {
	.secondary a { padding: 1em .5em; }
	footer .secondary { display: none; }
}

@media (min-width: 760px) {
	.secondary a { padding: 1em; }
	header .secondary { display: none; }
}


/* ============================== SOCIAL ============================== */

/* socialbar > in #navigation / footer */

nav.socialbar,
nav.sharebar {
	display: flex;
	flex-wrap: wrap; /* for mobile */
	align-items: center;
	white-space: nowrap;
	line-height: 1;
}

nav.socialbar > *,
nav.sharebar > * {
	display: inline-block;
	vertical-align: middle;
	padding: 1em;
}

nav.socialbar > *:not(a),
nav.sharebar > *:not(a) {
	font-size: .75em;
}

nav.socialbar a [class^="icon-"],
nav.sharebar a [class^="icon-"] {
	/*display: block;*/
	height: 1em;
	width: 1em;
}

@media (max-width: 760px) {
	.socialbar a span { display: none; }
	.socialbar a [class^="icon-"] { display: block; }
}

@media (min-width: 760px) {
	.socialbar a [class^="icon-"] { display: none; }
}


/* ============================== CONTEXTUAL ============================== */

/* 1em == anchor padding */

nav.contextual,
#contextual {
	position: sticky;
	z-index: 1210;
	top: var(--header-height);
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	font-size: var(--font-size);
	line-height: 1em;
	text-transform: lowercase;
	white-space: nowrap;
	color: var(--dark-color);
	background: var(--bright-color);
	width: 100%;
	max-width: none;
	margin: 0;
}

nav.grid-filters + nav.contextual {
	top: 0;
	margin-top: 0 !important;
}


/* =============== FX =============== */

nav.contextual.swiperable,
#contextual.swiperable {
	padding: 0 calc(var(--gutter-gap) * 2);
	margin-inline: auto;
}

nav.contextual.swiperable:before,
#contextual.swiperable:before {
	content: "";
	position: absolute;
	z-index: 20;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 0) calc(var(--gutter-gap) * 2),
		rgba(255, 255, 255, 0) calc(100% - var(--gutter-gap) * 2),
		rgba(255, 255, 255, 1) 100%
	);
}


/* =============== SWIPERABLE =============== */

nav.contextual.swiperable .swiper-slide,
nav.contextual.swiperable a,
#contextual.swiperable .swiper-slide,
#contextual.swiperable a {
	width: auto;
}


/* =============== NAV =============== */

nav.contextual,
nav.contextual.swiperable,
#contextual,
#contextual.swiperable {
	overflow: hidden;
}

nav.contextual nav,
#contextual nav,
#contextual.swiper-container .swiper-wrapper,
nav.contextual.swiper-container .swiper-wrapper {
	margin: 0 auto;
	width: auto;
}


/* =============== ANCHORS =============== */

nav.contextual a:first-child,
nav.contextual nav a:first-child,
#contextual a:first-child,
#contextual nav a:first-child {
	margin-left: auto;
}

nav.contextual a:last-child,
nav.contextual nav a:last-child,
#contextual a:last-child,
#contextual nav a:last-child {
	margin-right: auto;
}

nav.contextual a,
#contextual a {
	color: inherit;
}

nav.contextual a:hover,
nav.contextual a.active,
#contextual a:hover,
#contextual a.active {
	color: var(--theme-color);
	opacity: 1;
}


/* =============== IN MAIN =============== */

main > section nav.contextual,
main > section #contextual {
	margin-top: calc(var(--gutter-gap) * -1) !important;
	transform: translateX(calc(var(--gutter-gap) * -2));
	width: calc(100% + var(--gutter-gap) * 4);
}

@media (min-width: 0px) {
	nav.contextual a,
	#contextual a { padding: 1em .5em; }
}

@media (min-width: 760px) {
	nav.contextual a,
	#contextual a { padding: 1em; }
}

@media (min-width: 1000px) {
	nav.contextual a,
	#contextual a { padding: 1em 1.5em; }
}


/* ============================== GRID FILTERS ============================== */

/*
 * .grid-filters
 * .grid-mode
 */


/* =============== GRID FILTERS =============== */

nav.grid-filters {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	margin: 0;
	line-height: 1em;
}

nav.grid-filters > * {
	margin: 0;
}

nav.grid-filters .title {
	white-space: nowrap;
}

nav.grid-filters .title:hover,
nav.grid-filters .title.active {
	color: var(--theme-color);
}

nav.grid-filters .link {
	margin-left: auto;
}


/* =============== GRID MODE =============== */

nav.grid-mode {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	font-size: 1.5em;
}

nav.grid-mode a:hover,
nav.grid-mode a.active {
	color: var(--theme-color);
}

@media (min-width: 0px) {
	nav.grid-filters {
		font-size: 1em;
		gap: 1em;
	}
	nav.grid-filters .title { font-size: 1em; }
}

@media (min-width: 1000px) {
	nav.grid-filters { gap: 2em; }
	nav.grid-filters .title { font-size: 1.5em; }
}



/* ============================== PAGINATION ============================== */

nav.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	width: 100%;
	font-size: .875em;
	line-height: 1em;
	text-transform: uppercase;
}

nav.pagination a,
nav.pagination .page-numbers {
	display: inline-flex;
	font-size: inherit;
	font-weight: inherit;
	text-transform: inherit;
	text-align: center;
	padding: .5em;
	margin: 0;
}

nav.pagination .active,
nav.pagination a:hover {
	color: var(--theme-color);
}


/* =============== PREVIOUS / NEXT =============== */

nav.pagination .page-previous,
nav.pagination .page-next {
	display: inline-flex;
	align-items: center;
	gap: 1em;
}

@media (hover: hover) {
	nav.pagination .page-previous:hover svg {
		transform: translateX(-.25em);
	}

	nav.pagination .page-next:hover svg {
		transform: translateX(.25em);
	}
}


/* ============================== PAGINATION ============================== */
/*
nav.pagination,
nav.pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	width: 100%;
	font-size: .875em;
	line-height: 1em;
	text-transform: uppercase;
}

nav.pagination a,
nav.pagination .page-numbers {
	display: inline-flex;
	font-size: inherit;
	font-weight: inherit;
	text-transform: inherit;
	text-align: center;
	padding: .5em;
	margin: 0;
}

nav.pagination .current,
nav.pagination a.active,
nav.pagination a:hover {
	color: var(--theme-color);
}
*/


/* =============== PREVIOUS / NEXT =============== */
/*
nav.pagination .prev,
nav.pagination .next {
	display: inline-flex;
	align-items: center;
	gap: 1em;
}
*/
/* cf. fonts.css */
/*
nav.pagination .prev:before,
nav.pagination .next:after {
	font-family: 'icomoon';
}

nav.pagination .prev:hover:before {
	transform: translateX(-.25em);
}

nav.pagination .next:hover:after {
	transform: translateX(.25em);
}*/


/* =============== DOTS =============== */

/* conflict with .dots fx */

nav.pagination .page-numbers.dots {
	position: relative;
	top: auto;
	left: auto;
	height: auto;
	width: auto;
}


/* ============================== TABS ============================== */

/*
 * .nav-tabs > span
 * .nav-tabs.large
 * ul.tabs > .tab
 * data-tabs == #tabs
 */


/* =============== NAV-TABS =============== */

.nav-tabs {
	display: flex;
	align-items: center;
	gap: .5em;
}

.nav-tabs a {
	text-transform: uppercase;
	white-space: nowrap;
}

.nav-tabs.section-title:before {
	padding-right: 0;
}


/* =============== TABS =============== */

.tabs {
	display: block;
	overflow: hidden;
}

.tabs:after {
	content: "";
	display: block;
	clear: both;
}

.tabs > * {
	display: block;
	float: left;
	width: 100%;
	margin-left: -9999rem;
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.tabs > .active {
	margin-left: 0;
	height: 100%;
	opacity: 1;
	visibility: visible;
}

.tabs > li + li {
	margin: 0;
}


/* =============== ANIMATIONS =============== */

.tabs.is-loading:before {
	position: fixed;
	z-index: 100;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}

.tabs.is-loading .tab {
	opacity: 0;
}