:root {
	--page-background: #faf8fc;
	--surface-1: #ffffff;
	--surface-2: #f4eef8;
	--surface-3: #e7ddf1;

	--text-strong: #2d1f42;
	--text-main: #3b2b54;
	--text-soft: #5b4a73;
	--text-muted: #7e6f95;

	--border-light: #e1d7ec;
	--border-mid: #cdbfe0;

	--accent-soft: #f1eaf8;
	--accent-mid: #e2d6f0;
	--accent-strong: #cab7e0;

	--shadow-soft: 0 4px 14px rgba(45, 31, 66, 0.08);
	--shadow-mid: 0 8px 24px rgba(45, 31, 66, 0.12);
}

@font-face {
	font-family: 'Arsenal-Bold';
	src: url('fonts/Arsenal-Bold.ttf.woff') format('woff'),
		 url('fonts/Arsenal-Bold.ttf.svg#Arsenal-Bold') format('svg'),
		 url('fonts/Arsenal-Bold.ttf.eot'),
		 url('fonts/Arsenal-Bold.ttf.eot?#iefix') format('embedded-opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'OpenSans';
	src: url('fonts/OpenSans-Regular.ttf') format('truetype');
}

* {
	box-sizing: border-box;
}

html,
body {
	padding: 0;
	margin: 0;
	border: 0;
	word-wrap: break-word;
}

html {
	min-height: 100%;
	overflow-y: auto;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	background-color: var(--page-background);
	color: var(--text-main);
	font-family: 'OpenSans', Helvetica, Arial, sans-serif;
	font-size: 1em;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
}

div.language {
	display: none;
}

div.logo {
	position	: sticky;
	top			: 0;
	order: 1;
	width: 100%;
	margin: 0;
	height: 0;
	z-index: 20;
	pointer-events: none;
}

div.logo a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none;
	position: absolute;
	left: max(5%, calc(50% - 500px));
	top: 1rem;
	pointer-events: auto;
}

div.logo img.logo {
	position	: sticky;
	top			: 0;
	z-index		: 1000;
	height: clamp(70px, 7vw, 90px);
	max-width: min(24vw, 340px);
	padding: 0;
	border: 0;
	display: block;
	background: transparent;
	transition: opacity 300ms ease;
}

div.logo img.logo:hover {
	opacity: 0.88;
}

div.logo h1,
div.logo h2 {
	display: none;
}

div.navigation {
	position	: sticky;
	top			: 0;
	z-index		: 10;
	background	: transparent;
	order: 2;
	width: 100%;
	padding: 0.8em 5% 0 5%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Arsenal-Bold', "Britannic Bold", sans-serif;
	text-transform: uppercase;
}

div.navigation ul {
	background: linear-gradient(180deg, #FFFFFFE5, #F4EEF840);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0.65em 0.85em;
	list-style-type: none;
	margin: 0;
	padding: 0.9em 1em 0.9em clamp(185px, 22vw, 300px);
	width: 100%;
	max-width: 1180px;
	min-height: 100px;
	border-radius: 26px;
}

div.navigation li {
	list-style-type: none;
	flex: 0 0 auto;
	min-width: 10.25em;
	margin: 0;
	padding: 0;
	font-size: 1.05rem;
	line-height: 1.2;
	text-align: center;
	color: var(--text-strong);
	position: relative;
}

div.navigation li a,
div.navigation li span {
	display: block;
	padding: 0.95em 1.25em 1.1em 1.25em;
	border-radius: 16px;
	background-color: transparent;
	border: 1px solid transparent;
	color: var(--text-strong);
	text-decoration: none;
	text-shadow: none;
	letter-spacing: 0.02em;
	position: relative;
	transition: all 300ms ease;
}

div.navigation li a:after,
div.navigation li span:after {
	content: "";
	position: absolute;
	left: 1.1em;
	right: 1.1em;
	bottom: 0.55em;
	height: 3px;
	border-radius: 999px;
	background: var(--accent-strong);
	transform: scaleX(0);
	transform-origin: center;
	opacity: 0.85;
	transition: transform 300ms ease, opacity 300ms ease;
}

div.navigation li a:hover,
div.navigation li span:hover {
	background-color: var(--accent-soft);
	border-color: var(--border-light);
	color: var(--text-strong);
	transform: translateY(-2px);
	text-shadow: none;
}

div.navigation li a:hover:after,
div.navigation li span:hover:after {
	transform: scaleX(1);
}

div.navigation li.currentpage a {
	background-color: var(--surface-1);
	border-color: var(--border-mid);
	box-shadow: 0 6px 16px rgba(45, 31, 66, 0.08);
	color: var(--text-strong);
	text-shadow: none;
}

div.navigation li.currentpage a:after {
	transform: scaleX(1);
	background: var(--text-soft);
	opacity: 1;
}

div.navigation span.separator {
	display: none;
}

div.body {
	order: 3;
	width: 100%;
	flex: 1 1 auto;
	padding: 0;
}

div.breadcrumbs {
	display: none;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Arsenal-Bold', "Britannic Bold", sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--text-strong);
	margin-top: 0;
}

h1 {
	font-size: 2.2rem;
	line-height: 1.2;
}

h2 {
	font-size: 1.65rem;
	line-height: 1.25;
	margin-bottom: 0.75em;
}

h3 {
	font-size: 1.2rem;
	line-height: 1.3;
	margin-bottom: 0.75em;
	color: var(--text-main);
}

h4 {
	font-size: 1.35rem;
	line-height: 1.3;
	color: var(--text-main);
}

h5 {
	font-size: 1.05rem;
	line-height: 1.4;
	color: var(--text-main);
	margin-bottom: 0.5em;
}

h1.page-title,
div.index-container > h1:first-child,
div.container > h1:first-child {
	font-size: clamp(2.1rem, 4.3vw, 3.25rem);
	line-height: 1.1;
	text-transform: none;
	text-align: center;
	max-width: 30ch;
	margin: 0 auto 1.25rem auto;
	padding: 0.15em 0 0;
	color: var(--text-strong);
	position: relative;
}

h1.page-title:after,
div.index-container > h1:first-child:after,
div.container > h1:first-child:after {
	content: "";
	display: block;
	width: 90px;
	height: 4px;
	margin: 0.55em auto 0 auto;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent-strong), var(--text-soft));
}

p,
li,
blockquote,
em,
label,
form,
input,
textarea,
button {
	color: var(--text-main);
}

p {
	font-family: 'OpenSans', Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 30px;
	margin: 0 0 1em 0;
	padding: 0;
}

p.black {
	color: var(--text-strong);
	margin: 0;
}

em {
	font-family: 'OpenSans', Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 28px;
	color: var(--text-soft);
}

li {
	font-family: 'OpenSans', Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 30px;
}

a {
	color: var(--text-main);
	text-decoration: none;
	transition: all 300ms ease;
}

a:hover {
	color: var(--text-strong);
	text-decoration: none;
}

blockquote {
	margin: 1.5rem auto;
	padding: 1.2rem 1.4rem;
	max-width: 900px;
	border-left: 4px solid var(--accent-strong);
	border-radius: 12px;
	background-color: var(--surface-2);
	text-align: left;
	color: var(--text-main);
}

blockquote#middle {
	font-size: 40px;
	max-width: 17em;
	margin-left: auto;
	margin-right: auto;
	line-height: 1em;
}

div.container,
div.index-container,
div.blog-container,
div.blog_toc {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 5%;
	padding-right: 5%;
}

div.container {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

div.index-container {
	padding-top: 2.25rem;
	padding-bottom: 4rem;
	display: flex;
	flex-direction: column;
	gap: 0;
}

p.intro,
div.inleiding,
div.main {
	background-color: transparent;
	padding: 0;
}

p.intro {
	max-width: 900px;
	margin: 0 auto 2.5rem auto;
	font-size: 1.25rem;
	line-height: 1.7;
	text-align: center;
	color: var(--text-main);
}

div.inleiding p {
	max-width: 900px;
	margin: 0 auto 1.25rem auto;
	font-size: 1.2rem;
	line-height: 1.7;
	color: var(--text-main);
}

h1.subject,
h1.more {
	font-size: clamp(1.55rem, 2.8vw, 2.1rem);
	line-height: 1.2;
	text-align: center;
	color: var(--text-strong);
	margin: 0;
	padding: 0;
	background: none;
	text-transform: none;
}

h1.more:hover {
	background: none;
	padding-left: 0;
}

.index-container > label {
	display: block;
	width: 100%;
	max-width: 1100px;
	margin: 2.25rem auto 1rem auto;
	padding: 0;
	cursor: default;
}

.index-container > input[type=checkbox] {
	display: none;
}

div.content,
div.columns {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 1.5rem auto;
	background-color: var(--surface-1);
	border: 1px solid var(--border-light);
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
}

div.content {
	padding: 2rem 2.2rem;
	display: block;
	clear: both;
}

div.columns {
	display: flex;
	flex-flow: row wrap;
	gap: 2rem;
	justify-content: space-between;
	padding: 2rem 2.2rem;
	clear: both;
}

div.columns > .column {
	flex: 1 1 320px;
	width: auto;
	min-width: 0;
	margin-bottom: 0;
}

div.column {
	flex: 1 1 320px;
	min-width: 0;
}

div.column h3 {
	font-family: 'Arsenal-Bold', "Britannic Bold", sans-serif;
	font-size: 1.3rem;
	color: var(--text-strong);
	margin-bottom: 0.6em;
}

div.column a {
	color: var(--text-main);
	text-decoration: none;
	transition: all 300ms ease;
}

div.column a:hover {
	color: var(--text-strong);
	text-shadow: none;
}

div.praktisch > .column {
	flex: 1 1 44%;
	min-width: 280px;
}

div.praktisch > .column:first-child {
	margin-right: 0;
}

div.content ul,
div.columns ul {
	margin: 0 0 1em 0;
	padding-inline-start: 1.25em;
}

div.columns > .column img,
div.column img,
img.left,
img.right,
img.partners {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(45, 31, 66, 0.14);
}

img.left,
img.right {
	width: 100%;
	margin: 0;
}

div.columns > .column img.right1 {
	width: 48%;
	float: left;
	margin-right: 1em;
}

div.columns > .column img.right2 {
	width: 48%;
	float: left;
}

div.column img.partners {
	float: none;
	margin: 1em auto 0 auto;
	width: 250px;
}

div.logos {
	padding: 1em 0;
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
	gap: 1rem;
}

div.logos > .logo {
	width: 32%;
	min-width: 15em;
}

div.buttons,
div.buttons-left {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	clear: both;
	margin: 1rem 0 0 0 !important;
	padding: 0;
	justify-content: flex-start;
}

div.buttons > .space {
	display: flex;
	margin: 0 !important;
	padding: 0;
}

.grey-button,
form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	background: none;
	text-align: center;
	text-decoration: none;
	color: var(--text-strong);
}

.grey-button-inner,
form button.mail,
form button.reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85em 1.3em !important;
	background: var(--text-strong);
	color: var(--surface-1);
	border: 2px solid var(--text-strong);
	border-radius: 999px;
	letter-spacing: 0.04em;
	transition: all 300ms ease;
	text-transform: uppercase;
	font-family: 'Arsenal-Bold', "Britannic Bold", sans-serif;
	font-size: 0.95rem;
}

.grey-button:hover .grey-button-inner,
form button.mail:hover,
form button.reset:hover {
	background: transparent;
	color: var(--text-strong);
	border-color: var(--text-strong);
	box-shadow: 0 0 10px rgba(45, 31, 66, 0.14);
	text-shadow: none;
}

.social-button {
	padding: 0;
}

.social-button img {
	opacity: 0.8;
	transition: all 300ms ease;
}

.social-button img:hover {
	opacity: 1;
	box-shadow: 0 0 14px rgba(45, 31, 66, 0.12);
}

iframe,
.maps-iframe {
	width: 100%;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(45, 31, 66, 0.13);
	padding: 3px;
	border-radius: 10px;
}

iframe {
	max-height: 20em;
}

.maps-iframe {
	height: 12em;
	max-height: 12em;
}

hr {
	display: block;
	box-sizing: content-box;
	border: 0;
	height: 1px;
	background-color: var(--border-mid);
	clear: both;
}

ul,
ol {
	font-family: 'OpenSans', Helvetica, Arial, sans-serif;
	padding-inline-start: 20px;
}

.home-left {
	max-width: 47%;
	margin: 1em;
	float: left;
}

.home-left:nth-child(2),
.home-left:nth-child(3) {
	max-width: 23%;
	margin-right: 1em;
	margin-left: 0;
	float: right;
}

div.slideshow {
	position: relative;
	box-sizing: border-box;
	width: 500px;
	max-width: 100%;
	margin: auto;
	padding: 0;
	text-align: center;
}

div.slideshow * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	display: block;
	transition: all 300ms ease;
}

div.slideshow img {
	border: none;
	width: 500px;
	max-width: 100%;
	float: none;
	clear: none;
	transition: all 300ms ease;
}

div.slideshow p {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 48px;
	max-width: 10%;
	background: transparent;
	background-repeat: no-repeat;
	display: none;
	transition: all 300ms ease;
}

div.slideshow p#button-previous {
	left: 0;
	background-image: url('images/Slideshow_arrow_left.png');
	background-position: center center;
	border-radius: 0.5em;
}

div.slideshow p#button-next {
	right: 0;
	background-image: url('images/Slideshow_arrow_right.png');
	background-position: center center;
	border-radius: 0.5em;
}

div.slideshow:hover p {
	display: block;
}

div.blog_toc h1,
div.blog_toc a {
	color: var(--text-main);
	text-align: center;
}

div.blog_post h3 {
	margin: 2em 0 0 0;
}

div.footer {
	order: 4;
	display: flex;
	flex-flow: wrap;
	flex-basis: 100%;
	clear: both;
	background-color: var(--surface-2);
	padding: 2.5rem 5% 4rem 5%;
	overflow: visible;
	min-height: 10em;
	box-shadow: 0 0 10px rgba(45, 31, 66, 0.06);
	border-top: 1px solid var(--border-light);
	position: relative;
}

div.footer * {
	font-family: 'OpenSans', Helvetica, Arial, sans-serif;
	font-size: medium;
	font-weight: normal;
	padding: 0;
	text-align: left;
	color: var(--text-main);
}

div.footer span {
	color: var(--text-main);
}

div.footer img {
	max-width: 60px;
	border-radius: 30px;
}

div.footer img.lazyloaded {
	height: auto;
	max-width: 100%;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

div.footer p {
	color: var(--text-main);
	font-weight: normal;
	line-height: 24px;
	margin: 0.5em 0;
}

div.footer p.copyright {
	position: absolute;
	bottom: 0.6em;
	left: 50%;
	transform: translateX(-50%);
	font-size: 80%;
	margin: auto;
	color: var(--text-soft);
}

div.footer div.category {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 0.25em 0 0 3em;
	margin: 0;
	min-width: 30%;
	max-width: 31%;
}

div.footer div.category h2 {
	font-size: 1.35rem;
	font-style: normal;
	font-weight: bold;
	text-shadow: none;
	color: var(--text-strong);
}

div.footer div.category h4 {
	font-size: 1.15rem;
	color: var(--text-main);
	margin-bottom: 0;
	text-shadow: none;
	line-height: 28px;
	margin-block-start: 0;
	margin-block-end: 0;
}

div.footer div.category ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

div.footer div.category li {
	display: block;
	list-style-type: none;
	margin-top: 0.5em;
}

div.footer div.category li.separator {
	height: 1em;
}

div.footer div.category li.separator hr {
	display: none;
}

div.footer div.category li a,
div.footer div.category p a {
	text-decoration: none;
	color: var(--text-main);
	transition: all 300ms ease;
	margin: 0;
}

div.footer div.category li a {
	text-transform: uppercase;
}

div.footer div.category li a:hover,
div.footer div.category p a:hover {
	color: var(--text-strong);
	text-shadow: none;
}

div.footer div.category p.newsection {
	margin-top: 0.5em;
}

div.footer div.referers {
	position: absolute;
	border: 0;
	bottom: 0.75em;
	right: 1em;
}

div.footer div.referers span.separator {
	display: none;
}

div.footer div.referers a {
	position: relative;
	display: block;
	float: left;
	padding: 3px;
	z-index: 100;
}

div.footer div.referers a:nth-child(3) {
	margin-left: 8px;
}

div.footer div.referers a:nth-child(5) {
	margin-left: 24px;
}

div.footer div.referers img {
	display: block;
	width: 48px;
	height: 48px;
	clear: both;
	border-radius: inherit;
	opacity: 0.75;
	transition: opacity 300ms ease;
}

div.footer div.referers img:hover {
	opacity: 1;
}

div.footer-content {
	display: flex;
	flex-direction: column;
}

div.footer .bubble,
div.footer a .bubble:hover {
	color: var(--text-main);
	text-shadow: none;
}

div.footer-buttons {
	clear: both;
	float: right;
	padding: 0;
}

form {
	color: var(--text-strong);
	margin: 1em 0;
	width: 100%;
	box-sizing: border-box;
}

form p {
	margin: 0;
	padding: 0;
	clear: right;
}

form p + p {
	padding-top: 1em;
}

form p.controls {
	text-align: right;
}

form p.controls a {
	margin-right: 1em;
}

form input,
button,
textarea {
	font-family: 'OpenSans', Helvetica, Arial, sans-serif;
	font-size: medium;
	background: var(--surface-1);
	color: var(--text-strong);
	border: 1px solid var(--border-mid);
	border-radius: 0.4em;
	box-sizing: border-box;
	margin: 0;
	padding: 0.5em 0.65em;
}

form input,
textarea {
	float: right;
	width: 66%;
}

input[readonly] {
	border-color: #b66565;
	background: #efe8f7;
}

form button {
	min-width: 8em;
}

form.compactForm {
	background: transparent;
	color: var(--text-strong);
	border: none;
	margin: 0;
	padding: 1em 0 0 1em;
}

form.compactForm p + p {
	padding-top: 0.1em;
}

form.compactForm p.controls {
	text-align: left;
}

form.compactForm p.controls a {
	margin-right: 1em;
}

form.compactForm input,
form.compactForm textarea {
	border-color: var(--border-mid);
	border-radius: 0.4em;
	width: 80%;
}

pre {
	color: var(--surface-1);
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 16px;
	font-weight: bold;
	width: auto;
	background: #415161;
	border-radius: 0.5em;
	white-space: pre-wrap;
	padding: 0.5em 0.75em;
	margin: 1em 0;
	overflow: visible;
	display: block;
	clear: both;
}

p.info,
p.ok,
p.warning,
p.error {
	border: 1px solid var(--border-mid);
	border-radius: 0.4em;
	padding: 1em;
	background-repeat: no-repeat;
	background-position: left center;
	box-sizing: border-box;
	min-height: 16px;
	overflow: hidden;
	margin-bottom: 0.5em;
}

p.error {
	background: #f5c8cf;
	color: var(--text-strong);
}

div.dark:hover {
	box-shadow: 0 0 15px rgba(45, 31, 66, 0.16);
}

@media only screen and (max-width: 1250px) {
	div.footer div.category {
		padding: 0.25em 0 0 2em;
	}
}

@media only screen and (max-width: 975px) {
	form input,
	textarea {
		float: none;
		width: 100%;
	}

	body {
		padding: 0;
		margin: 0;
		display: flex;
		flex-flow: column nowrap;
	}

	body > * {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: auto;
	}

	div.logo {
		position: relative;
		height: auto;
		margin: 0.5em 0 0 0;
		z-index: 5;
		pointer-events: auto;
	}

	div.logo a {
		position: static;
		justify-content: center;
	}

	div.logo img.logo {
		height: 12vw;
		min-height: 74px;
		max-width: min(82vw, 420px);
	}

	div.navigation {
		padding: 0 1rem 1rem 1rem;
		justify-content: center;
		background: transparent;
		width: 10em;
		position: absolute;
		height: 10em;
	}

	div.navigation:before {
		content: "☰";
		font-size: 2rem;
		font-weight: bold;
		line-height: 1;
		color: var(--text-strong);
		position: absolute;
		left: 0.35em;
		top: 0.2em;
		min-width: 2.2em;
		z-index: 30;
	}

	div.navigation:hover:before {
		content: "✕";
	}

	div.navigation ul {
		display: none;
		flex-direction: column;
		flex-wrap: nowrap;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: min(320px, 85vw);
		min-height: auto;
		background-color: var(--text-strong);
		background-image: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
		padding: 5rem 1rem 1rem 1rem;
		margin: 0;
		box-shadow: 0 0 25px rgba(0, 0, 0, 0.22);
		border-radius: 0;
		border: none;
		overflow-y: auto;
		z-index: 25;
	}

	div.navigation:hover ul {
		display: flex;
	}

	div.navigation li {
		min-width: 100%;
		font-size: 1rem;
	}

	div.navigation li a,
	div.navigation li span {
		padding: 0.95em 1em;
		text-align: left;
		border-radius: 14px;
		background-color: rgba(255,255,255,0.08);
		border: 1px solid rgba(255,255,255,0.1);
		box-shadow: none;
		color: var(--surface-1);
		transform: none;
	}

	div.navigation li a:after,
	div.navigation li span:after {
		left: 1em;
		right: 1em;
		bottom: 0.55em;
		background: rgba(255,255,255,0.65);
	}

	div.navigation li a:hover,
	div.navigation li span:hover {
		background-color: rgba(255,255,255,0.14);
		border-color: rgba(255,255,255,0.18);
		color: var(--surface-1);
	}

	div.navigation li.currentpage a {
		background-color: rgba(255,255,255,0.18);
		border-color: rgba(255,255,255,0.22);
		color: var(--surface-1);
	}

	p.intro,
	div.inleiding,
	div.main {
		padding: 0;
		text-align: center;
		width: auto;
	}

	h1.page-title,
	div.index-container > h1:first-child,
	div.container > h1:first-child {
		font-size: 2rem;
		max-width: 30ch;
	}

	div.index-container {
		padding-top: 1.75rem;
		padding-bottom: 3rem;
	}

	.index-container > label {
		margin: 1.75rem auto 0.85rem auto;
	}

	div.content,
	div.columns {
		padding: 1.35rem;
		gap: 1.35rem;
		border-radius: 14px;
	}

	div.columns > .column,
	div.column,
	div.content {
		min-width: 100%;
	}

	div.buttons,
	div.buttons-left {
		justify-content: center;
	}

	.grey-button {
		margin-right: 0;
	}

	div.footer {
		min-height: 20em;
		padding: 2rem 1rem 4rem 1rem;
	}

	div.footer * {
		margin: auto;
		text-align: center;
	}

	div.footer-content {
		padding: 0;
		width: 96%;
		flex-direction: column;
	}

	div.footer-buttons {
		margin: auto;
		padding: 0;
	}

	div.footer div.referers {
		bottom: 0.75em;
		right: 1em;
	}

	div.footer p {
		margin: 0 0 1.5em 0;
		text-align: center;
	}

	div.footer div.category {
		padding: 0;
		margin: auto;
		flex-flow: column;
		min-width: 96%;
		max-width: 96%;
	}
}

@media only screen and (max-width: 700px) {
	h1.page-title,
	div.index-container > h1:first-child,
	div.container > h1:first-child {
		font-size: 1.7rem;
	}

	div.logo img.logo {
		min-height: 19vw;
	}

	div.columns {
		padding: 1rem;
	}

	div.columns > .column,
	div.content {
		padding: 0;
	}

	div.column img.partners {
		display: block;
		float: none;
		margin: auto;
		width: 225px;
	}

	h1.subject,
	h1.more {
		font-size: 1.35rem;
	}

	div.footer {
		min-height: 28em;
	}

	div.footer-content {
		flex-direction: column;
	}

	div.footer div.category p {
		text-align: center;
	}

	div.footer div.category p a {
		float: inherit;
	}

	div.footer p.copyright {
		position: relative;
		bottom: 0;
		left: auto;
		transform: none;
		font-size: 12px;
		margin: 1rem auto 0 auto;
	}
}

@media only screen and (min-width: 1440px) {
	.index-container,
	div.container,
	div.blog-container,
	div.blog_toc {
		max-width: 1280px;
	}
}