/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bold}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

* { box-sizing: border-box }
img { max-width: 100%; }

:root {
	--font-family: system-ui, sans-serif;
	--brand-font-family: "Montserrat", sans-serif;
	--site-max-width: 1080px;
	--content-side-padding: 15px;
	
	--accent-color: rgb(211, 31, 31);
	--accent-color-text: rgb(211, 31, 31);
	--primary-color: #000000;
	--secondary-color: #555555;
	--background-color: #ffffff;
	--background-secondary-color: #f2f3f5;
	
	--divider-color: rgba(0, 0, 0, 0.12);
	
	--link-hover-background: rgba(0, 0, 0, 0.1);
}

.dark {
	--accent-color: rgb(211, 31, 31);
	--accent-color-text: rgb(211, 31, 31);
	--primary-color: rgb(255, 255, 255);
	--secondary-color: #777777;
	--background-color: rgb(0, 0, 0);
	--background-secondary-color: rgb(20, 20, 24);
	
	--divider-color: rgba(255, 255, 255, 0.12);
	
	--link-hover-background: rgba(255, 255, 255, 0.1);
}

/* Breakpoints: mobile first; tablet; large */
@media (min-width: 768px) {
	
}
@media (min-width: 1024px) {
	
}

/* Base
-------------------------------------------------- */
html {
	font-family: var(--font-family);
	font-size: 16px;
	font-optical-sizing: auto;
	color: var(--primary-color);
	background-color: var(--background-color);
	line-height: 1.5;
}

body {
	
}

/* Skip to content
-------------------------------------------------- */
.skip-to-content-link {
	position: absolute;
	z-index: 50;
	left: 50%;
	font-size: 16px;
	font-weight: 600;
	color: white;
	background: var(--accent-color);
	padding: 12px 20px;
	position: absolute;
	transform: translateY(-100%);
	transition: transform 0.2s;
}
.skip-to-content-link:focus {
	transform: translateY(0%);
}

/* Typography
-------------------------------------------------- */
h1 {
	font-family: var(--brand-font-family);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
	margin-block-start: 0.8em;
	margin-block-end: 0.5em;
}
h2 {
	font-family: var(--brand-font-family);
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.25;
	margin-block-start: 2.0em;
	margin-block-end: 0;
}
h3 {
	font-size: 1.5rem;
	font-weight: 650;
	line-height: 1.25;
	margin-block-start: 2em;
	margin-block-end: 0;
}
h4 {
	font-size: 1.25rem;
	font-weight: 650;
	line-height: 1.25;
	margin-block-start: 2.0em;
	margin-block-end: 0;
}
h5 {
	font-size: 1.0rem;
	font-weight: 650;
	line-height: 1.25;
	margin-block-start: 1.25em;
	margin-block-end: 0;
}
@media screen and (min-width: 768px) {
	h1 {
		font-size: 2.85rem
	}
}

/* Text
-------------------------------------------------- */
p, ul, ol {
	font-size: 1rem;
	line-height: 1.5;
	margin-block-start: 1em;
	margin-block-end: 0;
}

a,
.link {
	color: var(--accent-color-text);
	text-underline-offset: 3px;
}
a.inherit-color {
	color: inherit;
}
a.plain-link {
	text-decoration: none;
}
a.plain-link:hover {
	text-decoration: underline;
}
a.chevron-link {
	position: relative;
	text-decoration: none;
}
a.chevron-link:after {
	display: inline-block;
	margin-left: .25ch;
	content: '›';
	font-size: 1.15em;
	color: inherit
}
a.chevron-link:hover {
	text-decoration: underline;
}

.lead {
	font-size: 1.35rem;
	font-weight: 350;
}








/* Base layout
-------------------------------------------------- */
.container {
	max-width: var(--site-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
}

/* Base images
-------------------------------------------------- */











/* Navbar
-------------------------------------------------- */
.navbar {
	position: sticky;
	z-index: 20;
	top: 0;
	height: 60px;
	background-color: rgba(240, 240, 244, 0.85);
	backdrop-filter: blur(10px);
}
.dark .navbar {
	background-color: rgba(24, 24, 28, 0.85);
}

.navbar .container {
	display: flex;
	align-items: center;
	height: 60px;
}

.navbar .spacer {
	flex: 1;
}

.navbar-icon {
	vertical-align: middle;
	width: 52px;
	height: 52px;
}
.navbar-logo {
	vertical-align: middle;
	width: 170px;
	height: auto;
}

.navbar-menu {
	display: none;
	margin-left: 15px;
}
.navbar-menu-item {
	display: block;
	font-size: 13px;
	font-weight: 400;
	text-decoration: none;
	color: var(--secondary-color);
	padding: 10px 10px;
	border-radius: 5px;
}
.navbar-menu-item:hover {
	color: var(--primary-color);
	background-color: var(--link-hover-background);
}
@media screen and (min-width: 768px) {
	.navbar-menu {
		display: flex;
	}
}

.navbar-buttons {
	display: flex;
}
.navbar-button {
	display: block;
	appearance: none;
	color: var(--primary-color);
	background: none;
	border: none;
	border-radius: 5px;
	padding: 6px 10px;
}
.navbar-button:hover {
	background-color: var(--link-hover-background);
}

/* Side nav
-------------------------------------------------- */
.sidenav {
	position: fixed;
	z-index: 9;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100lvh;
	height: calc(100vh - 50px);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background-color: var(--background-secondary-color);
	padding-top: 0;
	padding-left: 12%;
	padding-right: 12%;
	opacity: 1;
	transform: translateX(100%);
	transition: transform .34s cubic-bezier(.32, .08, .24, 1)
}

.sidenav-is-open .sidenav {
	overflow: auto;
	opacity: 1;
	transform: translateX(0);
	transition: transform .28s cubic-bezier(0.16, 1, 0.3, 1)
}

@media screen and (min-width: 768px) {
	.sidenav {
		width: 480px;
		top: 60px;
		left: auto;
		right: 0;
		padding-left: 50px;
		padding-right: 30px;
	}
	.sidenav-is-open .sidenav {
		box-shadow: 0 -20px 30px 12px rgba(0,0,0, 0.75);
	}
}

.sidenav-heading {
	display: block;
	font-size: 1.5em;
	font-weight: 800;
	margin: 1.25em 0 0
}

.sidenav-menu {
	margin: 1em 0
}

.sidenav-menu .menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .8em 4px;
	font-weight: 500;
	text-decoration: none;
	color: var(--secondary-color)
}

.sidenav-menu .menu-item:hover {
	background-color: var(--link-hover-background);
	border-radius: 6px
}

.sidenav-menu .menu-item.active {
	color: var(--accent-color-text)
}











/* Breadcrumbs
-------------------------------------------------- */
.breadcrumbs {
	margin-block-start: 0;
	margin-block-end: 0;
	margin: 5px 0 0 0;
}

.breadcrumbs ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li {
	display: inline-block;
	margin: 0;
	padding: 0;
	font-size: 0.75em;
	color: var(--secondary-color);
}

.breadcrumbs li + li:before {
	content: "›";
	font-size: 1.25em;
	padding: 0 0.5em;
	color: var(--secondary-color);
}

.breadcrumbs a {
	color: var(--primary-color);
	font-weight: normal
}














/* Buttons
-------------------------------------------------- */
.button {
	appearance: none;
	display: inline-flex;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	padding: 0.75em 1.5em;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-top-color: rgba(255,255,255, 0.28);
	border-radius: 0.75em;
	background: none;
	background-color: var(--button-background-color);
	color: var(--accent-color-text);
}

/* Colour */
.button.plain {
	background-color: transparent
}
.button.primary {
	color: white;
	background-color: var(--accent-color);
}
.button.destructive {
	color: white;
	background-color: red;
}

@media (hover: hover) {
	.button:hover {
		background-image: var(--button-hover-background);
	}
}

/* Size */
.button.sm {
	font-size: 14px;
}
.button.lg {
	font-size: 19px;
}

.button:active {
	opacity: 0.55;
}


































/* UI COMPONENTS
-------------------------------------------------- */



/* Labels
-------------------------------------------------- */
.label-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.2;
	background-color: var(--background-secondary-color);
	padding: 2px 6px;
	border-radius: 4px;
}



/* Tabs
   Horizontal menu. Scrolls on overflow.
-------------------------------------------------- */
.tabs {
	display: flex;
	flex-wrap: nowrap;
	margin-left: -15px;
	margin-right: -15px;
	padding-left: 15px;
	padding-right: 15px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
	display: none;
}
@media screen and (min-width: 768px) {
	.tabs.centered {
		justify-content: center;
	}
}

/* Tab styles
-------------------------------------------------- */
.tabs .tab {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
	text-decoration: none;
}

/* Solid */
.tabs.solid {
	gap: 4px;
}
.tabs.solid .tab {
	font-size: 12px;
	color: var(--primary-color);
	background-color: var(--button-background-color);
	padding: 0.5em 1em;
	border: 1px solid var(--border-color);
	border-radius: 0.5em;
}
.tabs.solid .tab:hover {
	background-image: var(--button-hover-background)
}
.tabs.solid .tab.active {
	color: white;
	background-color: var(--accent-color);
}

/* Underlined */
.tabs.underlined {
	border-bottom: 2px solid var(--divider-color);
}
.tabs.underlined .tab {
	font-size: 13px;
	color: var(--secondary-color);
	padding: 15px 12px 12px 12px;
	border-bottom: 3px solid transparent
}
.tabs.underlined .tab:hover {
	color: var(--primary-color);
	border-bottom-color: var(--divider-color);
}
.tabs.underlined .tab.active {
	color: var(--primary-color);
	border-bottom-color: var(--accent-color);
}





































/* Helpers
-------------------------------------------------- */
.block { display: block; }
.hidden { display: none; }