*::before {
	box-sizing: border-box;
}

*::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	padding-top: calc(80px + 32px);
	background-color: rgba(248, 248, 248, 1.000);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	overflow-x: hidden;
}

body > section {
	padding: 32px calc(50% - 640px);
	position: relative;
}

body > section > * {

}

body > section .box {
	background-color: rgba(256, 256, 256, 1.000);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

body > section .image {
	background-color: rgba(256, 256, 256, 1.000);
	background-size: cover;
	background-position: center;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

h1 {
	font-size: 1.25rem;
}

h2 {
	font-size: 20px;
	color: rgb(161, 175, 88);
}

/* button */

a.button {
	display: block;
	background-color: rgb(256, 256, 256);
	background: linear-gradient(0deg, rgba(0, 32, 64, 1) 0%, rgba(0, 64, 96, 1) 100%);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.50);
	color: rgba(256, 256, 256, 0.75);
	font: 400 1.00rem / 3.00rem "Lexend";
	text-align: center;
	text-overflow: ellipsis;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	overflow: hidden;
	position: relative;
	transition: color 0.2s, font 0.2s;
	user-select: none;
}

a.button:hover {
	color: rgba(256, 256, 256, 1.00);
	font: 400 1.25rem / 3.00rem "Lexend";
}

/* input: check box */

.i-cb {
	min-height: 1.750rem;
}

.i-cb input {
	opacity: 0.00;
	position: absolute;
}

.i-cb label {
	padding-left: 3.50rem;
	font: 400 1.00rem / 3.00rem "Lexend";
	user-select: none;
}

.i-cb label:before {
	content: "";
	display: block;
	background-color: rgb(248, 248, 248);
	background: linear-gradient(0deg, rgb(240, 240, 240) 0%, rgb(248, 248, 248) 100%);
	border: 1px solid rgb(248, 248, 248);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
	font: 900 2rem / calc(3.00rem - 2px) "Font Awesome 6 Free";
	text-align: center;
	width: 3.00rem;
	height: 3.00rem;
	position: absolute;
	left: 0rem;
	top: 0rem;
}

.i-cb input:checked + label:before {
	content: "";
}

/* input: drop down list */

.i-ddl label {
	margin-bottom: 0.5rem;
	font: 400 1.00rem / 1.00rem "Lexend";
	user-select: none;
}

.i-ddl select {
	padding: 0.0rem 0.5rem;
	background-color: rgb(248, 248, 248);
	background: linear-gradient(0deg, rgb(240, 240, 240) 0%, rgb(248, 248, 248) 100%);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
	color: rgba(0, 0, 0, 0.50);
	font: 400 1.00rem / calc(3.00rem - 2px) "Lexend";
	height: 3rem;
	transition: color 0.2s;
}

.i-ddl select:focus {
	color: rgba(0, 0, 0, 0.75);
}

/* input: text box */

.i-tb label {
	margin-bottom: 0.5rem;
	font: 400 1.00rem / 1.00rem "Lexend";
	user-select: none;
}

.i-tb input {
	padding: 0rem 0.5rem;
	background-color: rgb(248, 248, 248);
	background: linear-gradient(0deg, rgb(240, 240, 240) 0%, rgb(248, 248, 248) 100%);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
	border: 1px solid rgb(248, 248, 248);
	color: rgba(0, 0, 0, 0.50);
	font: 400 1.00rem / calc(3.00rem - 2px) "Lexend";
	transition: color 0.2s;
}

.i-tb input:focus {
	color: rgba(0, 0, 0, 0.75);
}

/* input: link button */

.i-lb {
	display: block;
	background-color: rgb(256, 256, 256);
	background: linear-gradient(0deg, rgba(0, 32, 64, 1) 0%, rgba(0, 64, 96, 1) 100%);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.50);
	position: relative;
	user-select: none;
}

.i-lb > a {
	display: block;
	color: rgba(256, 256, 256, 0.75);
	font: 400 1.00rem / 3.00rem "Lexend";
	text-align: center;
	text-overflow: ellipsis;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: color 0.2s, font 0.2s;
}

.i-lb > a:hover {
	color: rgba(256, 256, 256, 1.00);
	font: 400 1.25rem / 3.00rem "Lexend";
}

/* input: submit button */

.i-sb {
	background-color: rgb(256, 256, 256);
	background: linear-gradient(0deg, rgba(0, 32, 64, 1) 0%, rgba(0, 64, 96, 1) 100%);
	border-radius: 4px;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.50);
	position: relative;
}

.i-sb input {
	display: block;
	color: rgba(256, 256, 256, 0.75);
	font: 400 1.00rem / 3.00rem "Lexend";
	text-align: center;
	text-overflow: ellipsis;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: color 0.2s, font 0.2s;
}

.i-sb input:hover {
	color: rgba(256, 256, 256, 1.00);
	font: 400 1.25rem / 3.00rem "Lexend";
}

/* desktop/mobile */

@media only screen and (max-width: 799px) {
	a\:desktop {
		display: none;
	}

	a\:mobile {
		display: block;
	}
}

@media only screen and (min-width: 800px) {
	a\:desktop {
		display: block;
	}

	a\:mobile {
		display: none;
	}
}

/* splash */

a\:splash {
	display: flex;
	flex-flow: column nowrap;
	align-content: center;
	align-items: stretch;
	justify-content: center;
	padding-bottom: calc(80px + 32px);
	width: 100%;
	height: calc(100vh - 80px - 32px);
}

a\:splash h1 {
	padding: 32px 0px 8px 0px;
	background-color: rgba(0, 0, 0, 0.50);
	color: rgba(256, 256, 256, 1.00);
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
}

a\:splash p {
	margin: 0px;
	padding: 0px 0px 32px 0px;
	background-color: rgba(0, 0, 0, 0.50);
	color: rgba(256, 256, 256, 0.75);
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
}

@media only screen and (max-width: 799px) {
	a\:splash h1 {
		font: 900 36px / 36px "Lexend";
	}

	a\:splash p {
		font: 400 24px / 24px "Lexend";
	}
}

@media only screen and (min-width: 800px) {
	a\:splash h1 {
		font: 900 48px / 48px "Lexend";
	}

	a\:splash p {
		font: 400 24px / 24px "Lexend";
	}
}

/* tiles */

a\:tiles {
	display: flex;
	flex-flow: row wrap;
}

a\:tiles > * {
	display: block;
	background-size: cover;
	background-position: center;
	transition: flex 0.2s;
}

@media only screen and (max-width: 799px) {
	a\:tiles > * {
		flex: 0 0 100%;
	}
}

@media only screen and (min-width: 800px) {
	a\:tiles > * {
		flex: 1 1 0%;
	}
}

a\:tiles > a\:image > img.ratio {
	width: 100%;
}

a\:tiles > a\:image a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

a\:tiles > a\:image a > span {
	display: block;
	padding: 16px;
	background-color: rgba(0, 0, 0, 0.75);
	color: rgba(256, 256, 256, 0.75);
	font: 900 24px / 24px "Lexend";
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	width: 100%;
	position: absolute;
	left: 0px;
	bottom: 0px;
	transition: color 0.2s;
}

a\:tiles > a\:image a > span span {
	display: block;
	color: rgba(256, 256, 256, 0.50);
	font: 400 12px / 16px "Lexend";
	transition: color 0.2s;
}

a\:tiles > a\:image a > span a\:icon {
	display: block;
	color: rgba(256, 256, 256, 0.75);
	font: 900 32px / 32px "Font Awesome 6 Free";
	text-align: center;
	width: 32px;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	transition: color 0.2s;
}

a\:tiles > a\:image a:hover > span {
	color: rgba(256, 256, 256, 1.00);
}

a\:tiles > a\:image a:hover > span span {
	color: rgba(256, 256, 256, 0.75);
}

a\:tiles > a\:image a:hover > span a\:icon {
	color: rgba(256, 256, 256, 1.00);
}

/* block */

a\:block {
	display: block;
	background-color: rgb(256, 256, 256);
	position: relative;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 1);
}

/* block header */

a\:block > a\:header {
	display: flex;
	flex-flow: row nowrap;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	width: calc(4px + 100% + 4px);
	height: 64px;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
	position: relative;
	left: -4px;
}

a\:block > a\:header::before {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

a\:block > a\:header::after {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: -4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	right: 0px;
	top: 0px;
}

a\:block > a\:header > a\:icon {
	display: block;
	flex: none;
	margin-left: 12px;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	color: rgba(256, 256, 256);
	font: 900 32px / 72px "Font Awesome 6 Free";
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	width: 64px;
	height: 72px;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
	position: relative;
	left: 0px;
	top: -4px;
}

a\:block > a\:header > a\:icon::before {
	content: '';
	display: block;
	margin: 0px 2px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 1px;
	width: calc(100% - 4px);
	height: 50%;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

a\:block > a\:header > a\:icon::after {
	content: '';
	display: block;
	margin: 0px 2px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 1px;
	width: calc(100% - 4px);
	height: 50%;
	box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

a\:block > a\:header > a\:title {
	display: block;
	flex: 1 1 0%;
	padding: 0px 16px;
	color: rgb(256, 256, 256);
	text-overflow: ellipsis;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	overflow: hidden;
	z-index: 1;
}

@media only screen and (max-width: 799px) {
	a\:block > a\:header > a\:title {
		font: 900 16px / 64px "Lexend";
	}

	a\:block > a\:header > a\:title > h1 {
		font: 900 1rem / 64px "Lexend";
	}
}

@media only screen and (min-width: 800px) {
	a\:block > a\:header > a\:title {
		font: 900 24px / 64px "Lexend";
	}

	a\:block > a\:header > a\:title > h1 {
		font: 900 1.5rem / 64px "Lexend";
	}
}

/* block text */

a\:block > a\:text {
	display: block;
}

@media only screen and (max-width: 799px) {
	a\:block > a\:text {
		padding: 16px;
	}
}

@media only screen and (min-width: 800px) {
	a\:block > a\:text {
		padding: 32px;
	}
}

/* block image */

a\:block > a\:image {
	display: block;
	background-size: cover;
	background-position: center;
}

/* block tiles */

a\:block > a\:tiles {
	display: flex;
}

@media only screen and (max-width: 799px) {
	a\:block > a\:tiles {
		flex-flow: row wrap;
	}
}

@media only screen and (min-width: 800px) {
	a\:block > a\:tiles {
		flex-flow: row nowrap;
	}
}

a\:block > a\:tiles > * {
	display: block;
	background-size: cover;
	background-position: center;
	transition: flex 0.2s;
	height: 192px;
}

@media only screen and (max-width: 799px) {
	a\:block > a\:tiles > * {
		flex: 0 0 100%;
	}
}

@media only screen and (min-width: 800px) {
	a\:block > a\:tiles > * {
		flex: 1 1 0%;
	}
}

a\:block > a\:tiles > a\:image a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

a\:block > a\:tiles > a\:image a > span {
	display: block;
	padding: 16px;
	background-color: rgba(0, 0, 0, 0.75);
	color: rgba(256, 256, 256, 0.75);
	font: 900 24px / 24px "Lexend";
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	width: 100%;
	position: absolute;
	left: 0px;
	bottom: 0px;
	transition: color 0.2s;
}

a\:block > a\:tiles > a\:image a > span span {
	display: block;
	color: rgba(256, 256, 256, 0.50);
	font: 400 12px / 16px "Lexend";
	transition: color 0.2s;
}

a\:block > a\:tiles > a\:image a > span a\:icon {
	display: block;
	color: rgba(256, 256, 256, 0.75);
	font: 900 32px / 32px "Font Awesome 6 Free";
	text-align: center;
	width: 32px;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	transition: color 0.2s;
}

a\:block > a\:tiles > a\:image a:hover > span {
	color: rgba(256, 256, 256, 1.00);
}

a\:block > a\:tiles > a\:image a:hover > span span {
	color: rgba(256, 256, 256, 0.75);
}

a\:block > a\:tiles > a\:image a:hover > span a\:icon {
	color: rgba(256, 256, 256, 1.00);
}

a\:section {
	display: block;
	padding-top: 72px;
	background-color: rgb(256, 256, 256);
	position: relative;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 1);
}

a\:section > a\:head {
	display: block;
	background-image: url(/images/section-head.png);
	width: 100%;
	height: 72px;
	position: absolute;
	left: 0px;
	top: 4px;
}

@media only screen and (min-width: 800px) {
	a\:section > a\:head::before {
		content: '';
		display: block;
		background-image: url(/images/section-head-l.png);
		width: 12px;
		height: 72px;
		position: absolute;
		left: -12px;
		top: 0px;
	}

	a\:section > a\:head::after {
		content: '';
		display: block;
		background-image: url(/images/section-head-r.png);
		width: 12px;
		height: 72px;
		position: absolute;
		right: -12px;
		top: 0px;
	}
}

a\:section > a\:head > a\:icon {
	display: block;
	padding-top: 12px;
	background-image: url(/images/section-icon.png);
	color: rgba(256, 256, 256);
	font: 900 32px / 72px "Font Awesome 6 Free";
	text-align: center;
	width: 72px;
	height: 104px;
	position: absolute;
	left: 4px;
	top: -16px;
}

a\:section > a\:head > a\:title {
	display: block;
	padding: 1rem 0rem 1rem 5.5rem;
}

@media only screen and (max-width: 799px) {
	a\:section > a\:head > a\:title {
		display: block;
		padding: 1.25rem 0rem 1.25rem 5.5rem;
	}
}

a\:section > a\:head > a\:title > h1 {
	color: rgb(256, 256, 256);
	font: 900 1.5rem / 1.5rem "Lexend";
}

@media only screen and (max-width: 799px) {
	a\:section > a\:head > a\:title > h1 {
		font: 900 1rem / 1rem "Lexend";
	}
}

a\:section > a\:head > a\:title > span {
	display: block;
	color: rgba(256, 256, 256, 0.50);
	font: 900 0.75rem / 1rem "Lexend";
}

a\:section > a\:body {
	display: block;
	padding: 2rem;
}

@media only screen and (max-width: 799px) {
	a\:section > a\:body {
		padding: 2rem 2rem 2rem 2rem;
	}
}

h3 {
	font-size: 1.125rem;
}

h4 {
	font-size: 1.0625rem;
}

.c-green {
	color: rgb(161, 175, 88);
}

.c-white {
	color: rgb(256, 256, 256);
}

.bg-green {
	background-color: rgb(161, 175, 88);
}

.bg-light-gray {
	background-color: rgb(248, 248, 248);
}

.bg-gray {
	background-color: rgb(240, 240, 240);
}

body > a\:header {
	display: block;
	width: 100%;
	position: fixed;
	left: 0rem;
	top: 0rem;
	z-index: 1000;
}

body > a\:header > a\:desktop > a\:bar {
	display: block;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 2;
}

body > a\:header > a\:desktop > a\:bar::before {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

body > a\:header > a\:desktop > a\:bar::after {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: -4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	right: 0px;
	top: 0px;
}

body > a\:header > a\:desktop > a\:bar > a\:content {
	display: block;
	margin: 0px auto;
	padding-left: calc(80px + 8px);
	padding-right: 0rem;
	max-width: 80rem;
	position: relative;
	z-index: 1;
}

body > a\:header > a\:desktop > a\:bar a\:logotype {
	display: block;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
	padding: 8px 8px 12px 8px;
	position: absolute;
	left: 0rem;
	top: 0rem;
}

body > a\:header > a\:desktop > a\:bar a\:logotype::before {
	content: '';
	display: block;
	margin: 0px 2px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 1px;
	width: calc(100% - 4px);
	height: 50%;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

body > a\:header > a\:desktop > a\:bar a\:logotype::after {
	content: '';
	display: block;
	margin: 0px 2px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 1px;
	width: calc(100% - 4px);
	height: 50%;
	box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

body > a\:header > a\:desktop > a\:bar a\:logotype img {
	width: 64px;
	height: 64px;
	position: relative;
	z-index: 1;
}

body > a\:header > a\:desktop > a\:bar a\:social_media a {
	display: block;
	color: rgb(192, 192, 192);
	line-height: 2rem;
	text-align: center;
	text-decoration: none;
	width: 2rem;
	transition: color 0.2s;
}

body > a\:header > a\:desktop > a\:bar a\:social_media a:hover {
	color: rgb(256, 256, 256);
	text-decoration: none;
}

body > a\:header > a\:desktop > a\:bar a\:contact_information a {
	display: block;
	padding: 0rem 1rem;
	color: rgb(192, 192, 192);
	line-height: 2rem;
	text-align: center;
	text-decoration: none;
	transition: color 0.2s;
}

body > a\:header > a\:desktop > a\:bar a\:contact_information a:hover {
	color: rgb(256, 256, 256);
	text-decoration: none;
}

body > a\:header > a\:desktop > a\:main_menu {
	display: block;
	background-color: rgb(0, 24, 48);
	background: linear-gradient(0deg, rgba(0, 24, 48, 1) 0%, rgba(0, 32, 64, 1) 100%);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
	position: relative;
}

body > a\:header > a\:desktop > a\:main_menu::before {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 0px 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

body > a\:header > a\:desktop > a\:main_menu::after {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 0px 0px 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: -4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	right: 0px;
	top: 0px;
}

body > a\:header > a\:desktop > a\:main_menu > a\:content {
	display: block;
	margin: 0px auto;
	max-width: 80rem;
	position: relative;
	z-index: 1;
}

body > a\:header > a\:desktop > a\:main_menu > a\:content a {
	display: block;
	padding: 1rem;
	color: rgba(256, 256, 256, 0.75);
	font: 900 16px / 16px "Lexend";
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	text-transform: uppercase;
	transition: color 0.2s, transform 0.2s;
}

body > a\:header > a\:desktop > a\:main_menu > a\:content a:hover {
	color: rgba(256, 256, 256, 1.00);
	text-decoration: none;
	transform: scale(1.1);
}

body > a\:header > a\:mobile > a\:bar {
	display: block;
	background-color: rgb(32,32,32);
	background: linear-gradient(0deg, rgba(32,32,32,1) 0%, rgba(48,48,48,1) 100%);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
	position: relative;
}

body > a\:header > a\:mobile > a\:bar::before {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	left: 0px;
	top: 0px;
}

body > a\:header > a\:mobile > a\:bar::after {
	content: '';
	display: block;
	margin: 2px 0px;
	border-color: rgb(128, 128, 128);
	border-style: dashed;
	border-width: 1px 0px;
	width: 50%;
	height: calc(100% - 4px);
	box-shadow: -4px 0px 4px 0px rgba(0, 0, 0, 0.2) inset;
	position: absolute;
	right: 0px;
	top: 0px;
}

body > a\:header > a\:mobile > a\:bar > div {
	position: relative;
	left: 0rem;
	top: 0rem;
}

body > a\:header > a\:mobile > a\:bar div.button {
	width: 4rem;
}

body > a\:header > a\:mobile > a\:bar div.button > a {
	display: block;
	color: rgba(256, 256, 256, 0.750);
	font-size: 2rem;
	line-height: 4rem;
	text-align: center;
	text-decoration: none;
}

body > a\:header > a\:mobile > a\:bar div.button > a:hover {
	color: rgba(256, 256, 256, 1.000);
}

body > a\:header > a\:mobile > a\:bar div.button > a:active {
	color: rgba(256, 256, 256, 0.500);
}

body > a\:header > a\:mobile > a\:bar div.logotype {
	text-align: center;
}

body > a\:header > a\:mobile > a\:bar div.logotype > img {
	height: 48px;
}

body > a\:header > a\:mobile > menu {
	background-color: rgba(0, 0, 0, 0.75);
}

body > a\:header > a\:mobile > menu > div {
	transition: background-color 0.2s;
}

body > a\:header > a\:mobile > menu > div:hover {
	background-color: rgba(256, 256, 256, 0.125);
}

body > a\:header > a\:mobile > menu a {
	display: block;
	padding: 1rem;
	color: rgba(256, 256, 256, 1.000);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-decoration: none;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	text-transform: uppercase;
	transition: color 0.2s;
}

body > a\:header > a\:mobile > menu a:hover {
	color: rgba(256, 256, 256, 1.000);
	text-decoration: none;
}

a\:box {
	display: block;
	background-color: rgba(256, 256, 256, 1.000);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

a\:box.youtube {
	transition: transform 0.2s;
}

a\:box.youtube:hover {
	transform: scale(1.1);
}

a\:box.photo {
	background-size: cover;
	background-position: center;
	transition: transform 0.2s;
}

a\:box.photo:hover {
	transform: scale(1.1);
}

a\:box .i-tb label {
	margin-bottom: 0.5rem;
}

a\:box .i-tb input {
	padding: 0.0rem 0.5rem;
	background-color: rgb(248, 248, 248);
	border-bottom: 1px dashed rgba(192, 192, 192, 1.000);
	color: rgba(128, 128, 128, 1.000);
	line-height: 2rem;
	transition: color 0.4s;
}

a\:box .i-tb input:focus {
	color: rgba(064, 064, 064, 1.000);
}

a\:box .i-ddl label {
	margin-bottom: 0.5rem;
}

a\:box .i-ddl select {
	padding: 0.0rem 0.25rem;
	background-color: rgb(248, 248, 248);
	border-bottom: 1px dashed rgba(192, 192, 192, 1.000);
	color: rgba(128, 128, 128, 1.000);
	height: calc(2rem + 1px);
	transition: color 0.4s;
}

a\:box .i-ddl select:focus {
	color: rgba(064, 064, 064, 1.000);
}

a\:box .i-sb input {
	background-color: rgba(255, 063, 000, 1.000);
	color: rgba(224, 224, 224, 1.000);
	font-weight: 700;
	line-height: 4rem;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
	transition: background-color 0.4s, color 0.4s, transform 0.2s, box-shadow 0.2s;
}

a\:box .i-sb input:hover {
	color: rgba(256, 256, 256, 1.000);
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
	transform: scale(1.1);
}

a\:box .i-sb input:active {
	background-color: rgba(064, 114, 019, 1.000);
}

a {
	color: rgba(128, 128, 128, 1.000);
	text-decoration: none;
}

.ea:hover {
	color: rgba(064, 064, 064, 1.000);
	text-decoration: underline;
}

h1 {
	font-family: "Lexend", sans-serif;
}

h2 {
	font-family: "Lexend", sans-serif;
}

h3 {
	font-family: "Lexend", sans-serif;
}

h4 {
	font-family: "Lexend", sans-serif;
}

.top-header-section {
	background-color: rgba(048, 048, 048, 1.000);
	color: rgba(192, 192, 192, 1.000);
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
}

.top-header-section a {
	display: inline-block;
	color: rgba(192, 192, 192, 1.000);
	text-decoration: none;
	transition: color 0.2s, transform 0.2s;
}

.top-header-section a:hover {
	color: rgba(256, 256, 256, 1.000);
	transform: scale(1.1);
}

.top-header-menu {
}

.top-header-menu a {
	display: inline-block;
	color: rgba(256, 256, 256, 1.000);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-decoration: none;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	text-transform: uppercase;
	transition: color 0.2s, transform 0.2s;
}

.top-header-menu a:hover {
	color: rgba(256, 256, 256, 1.000);
	text-decoration: underline;
	transform: scale(1.1);
}

.top-header-menu .logotype {
	color: rgba(256, 256, 256, 1.000);
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
	text-transform: uppercase;
}

.top-header-title {
	height: calc(100% - 2rem - 4rem - 8rem);
}

.top-header-title h1 {
	color: rgba(256, 256, 256, 1.000);
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
}

.top-header-title p {
	color: rgba(256, 256, 256, 1.000);
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.75);
}

.page > section {
	padding: 4rem 0rem;
}

.page > section:nth-child(odd) {
	background-color: transport;
}

.page > section:nth-child(even) {
	background-color: rgba(240, 240, 240, 1.000);
}

.table > .head > .row > div {
	padding: 0.5rem;
	font-weight: bold;
}

.table > .head > .row > div:nth-child(odd) {

}

.table > .head > .row > div:nth-child(even) {

}

.table > .body > .row > div {
	padding: 0.5rem;
}

.table > .body > .row:nth-child(odd) > div:nth-child(odd) {
	background-color: rgba(0, 0, 0, 0.015625);
}

.table > .body > .row:nth-child(odd) > div:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.03125);
}

.table > .body > .row:nth-child(even) > div:nth-child(odd) {
	background-color: rgba(0, 0, 0, 0.046875);
}

.table > .body > .row:nth-child(even) > div:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.0625);
}

section.boxes > h2 {
	margin-bottom: 2rem;
	text-align: center;
}

section.boxes .box {
	background-color: rgba(256, 256, 256, 1.000);
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
	position: relative;
}

section.boxes .box.text h2 {
	color: rgba(000, 000, 000, 1.000);
}

section.boxes .box.text p {
	color: rgba(064, 064, 064, 1.000);
}

section.boxes .box.photo {
	background-size: cover;
	background-position: center;
	height: 14rem;
	transition: transform 0.2s;
}

section.boxes .box.photo:hover {
	transform: scale(1.1);
}

section.boxes .box.youtube {
	height: 14rem;
	transition: transform 0.2s;
}

section.boxes .box.youtube:hover {
	transform: scale(1.1);
}

#n_image_placeholder {
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.8);
	opacity: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0%;
	top: 0%;
	z-index: 2000;
	transition: opacity 0.2s ease-in-out 0s;
}

#n_image_placeholder.show {
	pointer-events: auto;
	opacity: 1;
}

#n_image_placeholder > div {
	background-color: rgba(255, 255, 255, 1.0);
	padding: 2rem;
	max-width: calc(100% - 16rem);
}

#n_image {
	display: block;
	max-width: calc(100vw - 16rem);
	max-height: calc(100vh - 16rem);
}

.fa, .fa-solid, .fa-brands, .fab, .fad, .fal, .far, .fas {
	line-height: inherit;
}

@media only screen and (max-width: 799px) {
	body > section {
		margin: 0.000rem;
		padding: 2.000rem 0.000rem;
	}
}

