/*! BuildToolsCookbook v2.0.0 | (c) 2026 Your Name | MIT License | http://github.com/cferdinandi/build-tools-boilerplate */
:root {
	--backgroundColour: #F8F4EA;
	--copyColour: #272727;
	--highlightColour: #FF958A;
	--sectionColour: #FFF18C;
	--sectionShade: #debb29;
	--greyAccent: #ededed;
	--thirdAccent: #2AC2FE;
	--darkest: #272727;
}
:root .toggles label:hover,
:root .toggles input:focus + label {
	box-shadow: 0 0 8px 5px rgba(255, 114, 98, 0.7);
}
:root .toggles .light-switch {
	display: none;
}
:root .toggles .dark-switch {
	display: flex;
}
:root *:focus-visible {
	outline: 2px solid var(--highlightColour);
	outline-offset: 5px;
	border-radius: 5px;
}
:root *:focus-visible.cta.on-colour {
	outline: 2px solid var(--sectionShade);
}

@media (prefers-color-scheme: dark) {
	:root:not([data-prefers-theme=light]) {
		--backgroundColour: #272727;
		--copyColour: #F8F4EA;
		--highlightColour: #2AC2FE;
		--sectionColour: #2AC2FE;
		--thirdAccent: #FFF18C;
		--sectionShade: #2455d2;
		--greyAccent: #111111;
		--darkest: #111111;
	}
	:root:not([data-prefers-theme=light]) .toggles label:hover,
:root:not([data-prefers-theme=light]) .toggles input:focus + label {
		box-shadow: 0 0 8px 5px rgba(42, 194, 254, 0.7);
	}
	:root:not([data-prefers-theme=light]) .toggles .light-switch {
		display: flex;
	}
	:root:not([data-prefers-theme=light]) .toggles .dark-switch {
		display: none;
	}
}
:root[data-prefers-theme=dark] {
	--backgroundColour: #272727;
	--copyColour: #F8F4EA;
	--highlightColour: #2AC2FE;
	--sectionColour: #2AC2FE;
	--sectionShade: #2455d2;
	--greyAccent: #111111;
	--thirdAccent: #FFF18C;
	--darkest: #111111;
}
:root[data-prefers-theme=dark] .toggles label:hover,
:root[data-prefers-theme=dark] .toggles input:focus + label {
	box-shadow: 0 0 8px 5px rgba(42, 194, 254, 0.7);
}
:root[data-prefers-theme=dark] .toggles .light-switch {
	display: flex;
}
:root[data-prefers-theme=dark] .toggles .dark-switch {
	display: none;
}

/* ============================= */
/* FUNCTIONS                     */
/* ============================= */
/* ============================= */
/* MIXINS                        */
/* ============================= */
/* ============================= */
/* Typography                    */
/* ============================= */
/* ============================= */
/* Layout                        */
/* ============================= */
/*
 * Fonts & typography
 */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
	line-height: 1.15;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
	margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
	/* 1 */
	display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
	margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
	background-color: transparent;
	/* 1 */
	-webkit-text-decoration-skip: objects;
	/* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
	font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
	font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
	background-color: #F8F4EA;
	color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
	display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
	border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
	overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
	/* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	display: inline-block;
	/* 1 */
	vertical-align: baseline;
	/* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
	display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
	display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
	display: none;
}

/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
	color: #222222;
	font-size: 1em;
	line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}

::selection {
	background: #b3d4fc;
	text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
	resize: vertical;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap;
	/* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	clip: auto;
	-webkit-clip-path: none;
	clip-path: none;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
	white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
	visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
	content: " ";
	/* 1 */
	display: table;
	/* 2 */
}

.clearfix:after {
	clear: both;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
	*,
*:before,
*:after {
		background: transparent !important;
		color: #000000 !important;
		/* Black prints faster:
		http://www.sanbeiji.com/archives/953 */
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	/*
	 * Don't show links that are fragment identifiers,
	 * or use the `javascript:` pseudo protocol
	 */
	a[href^="#"]:after,
a[href^="javascript:"]:after {
		content: "";
	}

	pre {
		white-space: pre-wrap !important;
	}

	pre,
blockquote {
		border: 1px solid #999999;
		page-break-inside: avoid;
	}

	/*
	 * Printing Tables:
	 * http://css-discuss.incutio.com/wiki/Printing_Tables
	 */
	thead {
		display: table-header-group;
	}

	tr,
img {
		page-break-inside: avoid;
	}

	p,
h2,
h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
h3 {
		page-break-after: avoid;
	}
}
* {
	box-sizing: border-box;
}

::-moz-selection {
	/* Code for Firefox */
	background-color: var(--copyColour);
	color: var(--backgroundColour);
}

::selection {
	background-color: var(--copyColour);
	color: var(--backgroundColour);
}

html {
	font-family: "Outfit", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	--height: 100px;
}

body {
	background-color: var(--backgroundColour);
	color: var(--copyColour);
	transition: opacity 0.25s ease-in-out;
	opacity: 1;
	width: 100%;
	position: relative;
	min-height: 100vh;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 1rem;
	font-family: "Outfit", sans-serif;
}

.page-size-limit {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
}

.standard-page-gutter {
	padding: 0 24px;
}

h1 {
	font-size: 3rem;
	line-height: 1.2em;
	margin: 1.2em auto;
	text-align: center;
	font-weight: 500;
}
@media (min-width: 40rem) {
	h1 {
		font-size: 4rem;
		line-height: 1.2em;
	}
}
@media (min-width: 50rem) {
	h1 {
		font-size: 6rem;
		line-height: 1.2em;
	}
}
h1.site-title {
	font-weight: 600;
	margin: 0 0 2rem;
}
@media (min-width: 50rem) {
	h1.site-title {
		font-size: 7.2vw;
		line-height: 1.2em;
		white-space: nowrap;
	}
}
@media (min-width: 90rem) {
	h1.site-title {
		font-size: 6.61rem;
	}
}
h1.has-nav {
	margin-bottom: 2rem;
}

h2 {
	font-weight: 500;
	margin: 1.2em auto;
	text-align: center;
}
h2:not(.small) {
	font-size: 4rem;
	line-height: 1.2em;
}
@media (min-width: 50rem) {
	h2:not(.small) {
		font-size: 5rem;
		line-height: 1.2em;
	}
}
h2.small {
	font-size: 2rem;
	line-height: 1.2em;
}
@media (min-width: 60rem) {
	h2.small {
		margin: 2.4em auto;
	}
}
h2.red {
	color: #FF958A;
}
h2.blue {
	color: #2AC2FE;
}
h2.yellow {
	color: #FFF18C;
}

h3 {
	font-size: 2rem;
	line-height: 1.2em;
	margin: 1.2em auto;
	font-weight: 500;
}
@media (min-width: 50rem) {
	h3:not(.small) {
		font-size: 3rem;
		line-height: 1.2em;
	}
}

h4 {
	font-size: 2rem;
	line-height: 1.2em;
	margin: 1.2em auto;
	font-weight: 500;
}

p {
	margin: 1em auto;
}

b, strong {
	font-weight: 600;
}

.tagline {
	font-size: 2rem;
	line-height: 1.2em;
	text-align: center;
	font-weight: 500;
}

a, a:visited {
	color: var(--copyColour);
	font-weight: 500;
	text-decoration: none;
	padding: 2px;
}
.background--dark a, .background--dark a:visited {
	color: #F8F4EA;
}
a:not(.cta):not(.home-link), a:visited:not(.cta):not(.home-link) {
	border-bottom: 2px solid var(--highlightColour);
}
a:not(.cta):not(.home-link):hover, a:not(.cta):not(.home-link):focus, a:not(.cta):not(.home-link):active, a:not(.cta):not(.home-link):focus-visible, a:visited:not(.cta):not(.home-link):hover, a:visited:not(.cta):not(.home-link):focus, a:visited:not(.cta):not(.home-link):active, a:visited:not(.cta):not(.home-link):focus-visible {
	background: var(--highlightColour);
	color: #272727;
}

a.cta,
a.cta:visited {
	cursor: pointer;
	border: 1px solid var(--copyColour);
	border-radius: 10px;
	display: flex;
	align-items: flex-start;
	margin: 0.5rem 0px;
	text-decoration: none;
	padding: 1rem 20px 1rem 20px;
	transition: background-color 0.3s cubic-bezier(0, 0, 0.3, 1), color 0.3s cubic-bezier(0, 0, 0.3, 1);
}
@media (min-width: 50rem) {
	a.cta,
a.cta:visited {
		margin: 1rem 20px 20px;
	}
}
a.cta svg,
a.cta:visited svg {
	fill: currentColor;
}
a.cta:not(.small),
a.cta:visited:not(.small) {
	font-size: 2rem;
	line-height: 1em;
	padding-right: 60px;
	padding-bottom: 1.2rem;
}
@media (min-width: 50rem) {
	a.cta:not(.small),
a.cta:visited:not(.small) {
		font-size: 3rem;
	}
}
a.cta:not(.small) svg,
a.cta:visited:not(.small) svg {
	width: 2rem;
	height: 1.1em;
	margin-right: 20px;
}
a.cta.small,
a.cta:visited.small {
	white-space: nowrap;
	align-items: center;
}
a.cta.small svg,
a.cta:visited.small svg {
	width: 1rem;
	height: 1rem;
}
a.cta.small.icon-left svg,
a.cta:visited.small.icon-left svg {
	margin-right: 20px;
}
a.cta.small.icon-right svg,
a.cta:visited.small.icon-right svg {
	margin-left: 20px;
}
a.cta.invert,
a.cta:visited.invert {
	background-color: var(--copyColour);
	color: var(--backgroundColour);
}
a.cta:hover, a.cta:focus, a.cta:active,
a.cta:visited:hover,
a.cta:visited:focus,
a.cta:visited:active {
	background-color: var(--highlightColour);
	border-color: var(--highlightColour);
	color: #272727;
}
a.cta.on-colour:not(.invert),
a.cta:visited.on-colour:not(.invert) {
	border-color: #272727;
	color: #272727;
}
a.cta.on-colour:hover, a.cta.on-colour:focus, a.cta.on-colour:active,
a.cta:visited.on-colour:hover,
a.cta:visited.on-colour:focus,
a.cta:visited.on-colour:active {
	background-color: var(--sectionShade);
	border-color: var(--sectionShade);
	color: var(--copyColour);
}
.cta-group {
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (min-width: 50rem) {
	.cta-group {
		flex-direction: row;
		justify-content: center;
	}
}
.cta-group .cta-tag {
	font-size: 1.5rem;
	line-height: 1.2em;
	margin: 1rem 30px;
	font-weight: 500;
}
@media (min-width: 50rem) {
	.cta-group .cta-tag {
		font-size: 2rem;
		line-height: 1.2em;
	}
}

header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
}
@media (min-width: 50rem) {
	header {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
header .home-link {
	margin: 1rem 0;
	height: 3rem;
	display: flex;
	align-items: center;
}
header .home-link svg {
	height: 1.5rem;
	fill: currentColor;
}
@media (min-width: 50rem) {
	header .home-link {
		margin-right: 60px;
	}
}
header .home-link:hover, header .home-link:focus, header .home-link:active, header .home-link:focus-visible {
	background: var(--highlightColour);
	color: #272727;
}
header nav {
	width: 100%;
}
@media (min-width: 50rem) {
	header nav {
		margin: 2rem 0;
	}
}
header nav .skip-link {
	position: absolute;
	left: -1000px;
}
header nav .skip-link:focus {
	left: 10px;
	top: 10px;
	background: #fff;
	color: #000;
	padding: 8px 16px;
	z-index: 1000;
}
header nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: none;
	flex-direction: column;
	align-items: center;
	border-bottom: 1px solid;
	border-top: 1px solid;
	padding: 1rem 0;
	font-size: 2rem;
	line-height: 1.2em;
}
header nav ul.show {
	display: flex;
}
@media (min-width: 50rem) {
	header nav ul {
		display: flex;
		padding: 0;
		border-bottom: none;
		border-top: none;
		flex-direction: row;
		font-size: 1rem;
		line-height: 1.2em;
		margin: 0 -10px;
	}
}
header nav ul li {
	margin: 1rem 0;
}
@media (min-width: 50rem) {
	header nav ul li {
		margin: 0 10px;
	}
}
header nav ul li.home-link a {
	font-weight: 800;
}
@media (min-width: 50rem) {
	header nav ul li.home-link a {
		margin-right: 20px;
		font-size: 1.5em;
		line-height: 1.8rem;
	}
}
header nav ul li a, header nav ul li a:visited {
	text-decoration: none;
}
header .menu-toggle {
	margin: 0 5px;
	background: none;
	border: none;
	transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
	color: var(--copyColour);
	cursor: pointer;
	justify-content: center;
}
@media (min-width: 50rem) {
	header .menu-toggle {
		display: none;
	}
}
header .toggles {
	display: flex;
	margin: 1rem -5px;
	align-items: center;
	position: absolute;
	right: 20px;
}
@media (min-width: 50rem) {
	header .toggles {
		position: relative;
	}
}
header .toggles label {
	margin: 0 5px;
	background-color: rgba(0, 0, 0, 0.05);
	transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
	border-radius: 50%;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	justify-content: center;
}
header .toggles label:hover {
	background-color: rgba(0, 0, 0, 0.2);
}
header .toggles label svg {
	width: 1rem;
	fill: currentColor;
}
header .toggles input[type=radio] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}
header .toggles input:focus + label {
	background-color: rgba(0, 0, 0, 0.2);
}

nav.breadcrumbs {
	font-size: 1.5rem;
	line-height: 1.2em;
}
nav.breadcrumbs ol {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
@media (min-width: 40rem) {
	nav.breadcrumbs ol {
		flex-direction: row;
		flex-flow: row wrap;
		margin: 2rem -30px;
	}
}
nav.breadcrumbs ol li {
	margin: 0.5rem 30px;
}
@media (min-width: 40rem) {
	nav.breadcrumbs ol li {
		margin: 1rem 30px;
	}
}
nav.breadcrumbs ol li a, nav.breadcrumbs ol li a:visited {
	font-weight: 400;
}

footer {
	font-size: 2rem;
	line-height: 1.2em;
	text-align: center;
}
footer h4 {
	margin-top: 0;
	font-weight: 1000;
}
footer .footer__contact {
	display: flex;
	flex-flow: row wrap;
	margin: 0;
	justify-content: center;
}
footer .footer__contact .contact-item {
	margin: 1rem 60px;
}
footer .footer__contact .contact-label {
	margin: 0 30px;
	font-weight: 600;
}

.page-section:not(.background) {
	margin-top: 8rem;
	margin-bottom: 8rem;
}
.page-section:not(.background):first-child {
	margin-top: 2rem;
}
.page-section.background {
	padding-top: 8rem;
	padding-bottom: 8rem;
}
.page-section.background h2 {
	margin-top: 0;
}
.page-section .wide-image {
	width: 100%;
	height: auto;
}
.page-section .wide-image__container {
	border: 1px solid var(--thirdAccent);
	padding: 2vw;
	border-radius: 10px;
}
@media (min-width: 75rem) {
	.page-section .wide-image__container {
		padding: 1.8rem;
	}
}
.page-section__text.background--yellow {
	background-color: var(--sectionColour);
	color: #272727;
}
.page-section__text.background--dark {
	background-color: var(--darkest);
	color: #F8F4EA;
}
.page-section__featured {
	margin: 5rem auto;
}
.page-section__featured .article-feed {
	display: flex;
	flex-direction: column;
}
@media (min-width: 60rem) {
	.page-section__featured .article-feed {
		flex-direction: row;
		justify-content: space-between;
	}
	.page-section__featured .article-feed.single-line-display {
		flex-flow: row wrap;
	}
}
.page-section__featured:nth-of-type(3n+0) article h3 {
	border-top-color: #2AC2FE;
}
.page-section__featured:nth-of-type(3n+1) article h3 {
	border-top-color: #FF958A;
}
.page-section__featured:nth-of-type(3n+2) article h3 {
	border-top-color: #FFF18C;
}
.page-section__featured article {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--copyColour);
	display: flex;
	flex-direction: column;
	margin: 0 auto 2rem;
	max-width: 600px;
}
.page-section__featured article h3, .page-section__featured article p {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}
.page-section__featured article h3 {
	border-top: 1rem solid;
	margin: 0 auto;
	padding-bottom: 0.5em;
	padding-top: 1em;
}
@media (min-width: 60rem) {
	.page-section__featured article:not(.horizontal) {
		width: calc((100% - 40px) / 3);
	}
	.page-section__featured article:not(.horizontal) h3 {
		border-bottom: 1px solid var(--copyColour);
		padding-top: 0.5em;
	}
	.page-section__featured article:not(.horizontal):nth-child(1) h3 {
		border-top-color: #FF958A;
	}
	.page-section__featured article:not(.horizontal):nth-child(2) h3 {
		border-top-color: #FFF18C;
	}
	.page-section__featured article:not(.horizontal):nth-child(3) h3 {
		border-top-color: #2AC2FE;
	}
	.page-section__featured article.horizontal {
		flex-direction: row;
		max-width: 1000px;
	}
	.page-section__featured article.horizontal:nth-child(2n) {
		flex-direction: row-reverse;
	}
	.page-section__featured article.horizontal h3, .page-section__featured article.horizontal p {
		padding-left: 40px;
		padding-right: 40px;
	}
	.page-section__featured article.horizontal h3 {
		padding-top: 1em;
		font-weight: 400;
	}
	.page-section__featured article.horizontal .link {
		margin: 0 -20px;
		padding: 0 40px;
	}
}
.page-section__featured article .text-container {
	flex: 1;
	padding-bottom: 4rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.page-section__featured article .cta-spacer {
	width: 100%;
	flex: 1;
	margin: 2rem 0 0.5rem;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
@media (min-width: 60rem) {
	.page-section__featured article .cta-spacer {
		padding: 0;
		margin-bottom: 0;
	}
}
.page-section__featured article .cta-spacer .cta {
	padding: 1rem 20px 1.2rem;
	border-radius: 5px;
}
.page-section__featured article .img-container {
	width: 100%;
	height: 0;
	padding-bottom: 50%;
	position: relative;
}
@media (min-width: 60rem) {
	.page-section__featured article .img-container:not(.horizontal) {
		padding-bottom: 80%;
	}
	.page-section__featured article .img-container.horizontal {
		width: 40%;
		padding-bottom: 0;
		height: auto;
	}
}
.page-section__featured article .img-container img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-section__featured + .page-section__featured:before {
	content: "";
	display: block;
	width: 100%;
	max-width: 500px;
	height: 1px;
	background: var(--copyColour);
	margin: 0 auto 5rem;
}
.page-section__events-list article {
	border-top: 1px solid var(--greyAccent);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 2rem 0;
	max-width: 30rem;
	margin: 0 auto;
}
@media (min-width: 60rem) {
	.page-section__events-list article {
		flex-direction: row;
		max-width: 60rem;
	}
}
.page-section__events-list article div :first-child {
	margin-top: 0;
}
.page-section__events-list article div :last-child {
	margin-bottom: 0;
}
.page-section__events-list article .date {
	min-width: 10rem;
	text-align: center;
}
.page-section__events-list article .date .highlight {
	padding: 1rem 20px;
	border-radius: 10px;
	white-space: nowrap;
	font-weight: 500;
}
.page-section__events-list article .date .highlight.blue {
	background-color: rgba(42, 194, 254, 0.25);
}
.page-section__events-list article .date .highlight.yellow {
	background-color: rgba(255, 241, 140, 0.25);
}
.page-section__events-list article .date .highlight.red {
	background-color: rgba(255, 149, 138, 0.25);
}
.page-section__events-list article .key-info {
	margin: 1rem 0;
}
@media (min-width: 60rem) {
	.page-section__events-list article .key-info {
		margin: 0 40px;
	}
}
.page-section__events-list article .key-info h4 {
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.2em;
}
@media (min-width: 60rem) {
	.page-section__events-list article .more-info {
		width: 25%;
	}
}
.page-section__events-list article .link {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}
.page-section__events-list article .link a.cta {
	margin: 0;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus, :focus-within) {
	border: 0 !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.visually-hidden:not(caption),
.visually-hidden-focusable:not(caption):not(:focus, :focus-within) {
	position: absolute !important;
}

.visually-hidden *,
.visually-hidden-focusable:not(:focus, :focus-within) * {
	overflow: hidden !important;
}