@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url(https://cdn.airikr.me/fonts/inter-300.woff2);
	unicode-range: U+000-5FF;
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(https://cdn.airikr.me/fonts/inter-700.woff2);
	unicode-range: U+000-5FF;
}

@font-face {
	font-family: 'Parisienne';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/parisienne-400.ttf);
	unicode-range: U+000-5FF;
}



:root {
	--text: #373737;
	--link: #183a64;
	--line: #4c566a;
	--note: #3b4252;
	--note_text: #eceff4;

	--field_bg: #fffae9;
	--field_border: #6f664e;
	--field_border_focused: #516f23;
	--field_text: var(--text);
	--submit_bg: #5e81ac;
	--submit_text: #eceff4;

	--red: #5f291e;
	--green: #1c5f21;
	--blue: #1d2c5f;
	--white: #ffffff;
	--beige: #cdbe9d;
	--black: #000000;

	--information: #121417;
	--checked: #151a21;
	--checked_str: #fff9a6;
	--checked_focus: #838796;
	--form: #2e3440;
	--image: #21262d;
	--checked: #a3be8c;

	--font: 'Inter', 'Helvetica', 'Arial', sans-serif;
	--font_mono: 'Victor Mono', 'Roboto Mono', monospace;
	--fontsize: 1.010rem;
}



/* Required assets */
html, body {
	background-color: var(--beige);
	color: var(--text);
	font-family: var(--font);
	font-size: var(--fontsize);
	font-weight: 300;
	line-height: 1.6rem;
	margin: 0;
	height: 100%;
	padding: 0;
}

a {
	color: var(--link);
	text-decoration: underline;
}

b {
	font-weight: 700;
}

p {
	hyphens: auto;
	margin: 0;
	padding: 5px 0;
	text-align: justify;
	word-wrap: break-word;

	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-o-hyphens: auto;
}

ul {
	margin: 0 0 0 30px;
	padding: 5px 0;
}

ul > li {
	padding: 5px 0;
}

ul > li > a > svg {
	height: 20px;
	width: 20px;
}

ul > li > a > svg > path:last-child {
	fill: var(--text);
}

ul > li > ul {
	margin: 0 0 0 20px;
}

ol {
	list-style-type: none;
	counter-reset: item;
	margin: 0 0 0 30px;
	padding: 5px 0;
}

ol > li {
	display: table;
	counter-increment: item;
	padding: 5px 0;
}

ol > li > div {
	padding: 5px 0;
}

ol > li:before {
	content: counters(item, ".");
	display: table-cell;
	font-weight: 700;
	width: 25px;
}

ol > li > ol {
	margin: 0;
}

ol > li > ol > li:before {
	content: counters(item, ".");
	width: 40px;
}

ol > li > ol.second > li > ol.third > li:before {
	width: 50px;
}

ol.third {
	margin-bottom: -5px;
}

input:not([type="checkbox"]),
textarea,
select {
	background-color: var(--field_bg);
	border: 1px solid var(--field_border);
	border-radius: 3px;
	color: var(--text);
	font-family: var(--font);
	font-size: var(--fontsize);
	outline: none;
	resize: none;
	padding: 5px;
	width: calc(400px - (6px * 2));
}

input:not([type="checkbox"]):focus,
textarea:focus,
select:focus {
	border: 1px solid var(--field_border_focused);
}

input[disabled],
textarea[disabled],
select[disabled] {
	background-color: var(--main);
	border: 1px dashed var(--field_border);
	cursor: not-allowed;
}

input[type="submit"] {
	background-color: var(--submit_bg);
	border: 1px solid var(--submit_bg);
	color: var(--submit_text);
	cursor: pointer;
	font-weight: 700;
	padding: 5px 10px;
	width: auto;
}

input[type="radio"] {
	cursor: pointer;
	line-height: 100%;
	opacity: 0;
	position: absolute;
	width: auto;
}

input[type="radio"] + label {
	border: 1px solid transparent;
	cursor: pointer;
	margin: 0 3px;
	opacity: .7;
	padding: 1px 3px;
}

input[type="radio"]:checked + label {
	background-color: var(--checked);
	backdrop-filter: blur(3px);
	border-radius: 2px;
	color: var(--checked_str);
	opacity: 1;
}

input[type="radio"]:checked:focus + label {
	border: 1px solid var(--checked_focus);
}

textarea {
	height: 100px;
	width: calc(100% - 12px);
}

select {
	cursor: pointer;
	padding: 5px 2px;
	width: 400px;
}

select[multiple] {
	height: 200px;
	width: 400px;
}

h1 {
	/*font-family: 'Parisienne', var(--font), sans-serif;*/
	font-size: 148%;
	font-weight: 400;
	margin: 0 0 10px 0;
	line-height: 130%;
	padding: 0;
}

h2 {
	font-size: 140%;
	font-weight: 700;
	margin: 0 0 10px 0;
	padding: 0;
}

h3 {
	font-size: 120%;
	font-weight: 700;
	margin: 30px 0 0 0;
	padding: 0;
}

h3:first-child {
	margin-top: 0;
}

hr {
	border: 0;
	border-top: 1px solid var(--line);
	margin: 30px -50px;
	padding: 0;
}

sup {
	vertical-align: top;
}

figure {
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
	margin: 0;
	width: 100%;
}

figure,
figure > img {
	object-fit: cover;
	vertical-align: top;
	width: 100%;
}

svg {
	vertical-align: top;
}







/* The website */
#h-main {
	background-color: rgba(205, 190, 157, .8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--white);
	padding: 30px 0;
	position: relative;
	text-align: center;
	z-index: 10;
}

#h-main > a {
	display: inline-block;
	padding: 20px 50px;
}

#h-main > a > img {
	object-fit: cover;
	width: 100%;
}

#h-main > nav {
	font-size: 110%;
	margin-top: 15px;
}

#h-main > nav > a {
	color: var(--text);
	display: inline-block;
	padding: 15px 20px;
	text-decoration: none;
}

#h-main > nav > .icons > a > svg > path:last-child {
	fill: var(--text);
}

#website {
	background-color: var(--beige);
}

#website > main {
	margin: 50px auto;
	width: 1000px;
}

footer {
	background-color: var(--beige);
	border-top: 1px solid var(--white);
	color: var(--text);
}

footer > div {
	margin: 0 auto;
	width: 1000px;
}

footer > div > .location {
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer > div > .location > .map {
	margin: 10px 30px 10px 0;
}

footer > div > .location > .map > a > .image {
	border-radius: 5px;
	height: 190px;
	object-fit: cover;
	width: 500px;
}

footer > div > .location > .info > div > a {
	color: var(--text);
	text-decoration: none;
}

footer > div > .location > .info > div {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	line-height: 140%;
	padding: 8px 0;
}

footer > div > .location > .info > div > svg {
	height: auto;
	flex-shrink: 0;
	margin-right: 10px;
	width: 24px;
}

footer > div > .location > .info > div > svg > path:last-child {
	fill: var(--black);
	opacity: .2;
}

footer > div > .location > .icons > a {
	display: block;
	padding: 5px 10px;
}

footer > div > .location > .icons > a > svg {
	height: 32px;
	opacity: .7;
	width: 32px;
}

footer > .created-by {
	font-size: 90%;
	padding: 20px 0;
	text-align: center;
}



/* Colours */
.color-grey {
	opacity: .6;
}

.color-red {
	color: var(--red) !important;
}

.color-green {
	color: var(--green) !important;
}

.color-blue {
	color: var(--blue);
}



/* Various */
form > .item {
	padding: 3px 0;
}

form > .item > .label {
	margin-bottom: 5px;
	margin-left: 5px;
}

form > .button {
	margin-top: 5px;
}

.message {
	display: none;
	font-size: 126%;
	font-weight: 400;
	opacity: .7;
	padding: 20px 10px;
	text-align: center;
}

.message.form {
	font-size: 100%;
	margin-bottom: 10px;
	opacity: 1;
	padding: 0;
	text-align: left;
}

.mono {
	font-family: var(--font_mono) !important;
	font-size: 100%;
}

.no-select {
	cursor: default;

	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
}

.side-by-side {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
}