html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote::before,blockquote::after,q::before,q::after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input[type="text"],input[type="email"],select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}@media (prefers-reduced-motion) { *, *::before, *::after { transform: none !important; } }

*, *::before, *::after {
	box-sizing: border-box;
}

@keyframes loading-spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.deferred::before {
	content: '';
	display: block;
	width: 4rem;
	height: 4rem;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2rem 0 0 -2rem;
	animation: loading-spinner 1s infinite linear;
	transition: opacity 0.25s ease;
	transition-delay: 0.5s;
	opacity: 0;
	z-index: -1;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNmZmY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 3rem;
}

.deferred.loading::before {
	opacity: 0.35;
	z-index: 0;
}

@keyframes clipboard-dialog-content-copied {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

dialog.clipboard {
	--color-background: #FFFFFF;
	--color-content-background: #F5F5F5;
	--color-content-border: #D3D3D3;
	--color-content-text: #000000;
	--color-text: #808080;
	--border-radius: 9px;
	align-items: center;
	background: transparent;
	border: 0;
	display: flex;
	height: 100%;
	justify-content: center;
	max-height: 100%;
	max-width: 100%;
	min-height: 0;
	min-width: 0;
	padding: 0;
	width: 100%;
}

@media (prefers-color-scheme: dark) {
	dialog.clipboard {
		--color-background: #000000;
		--color-content-background: #222222;
		--color-content-border: #444444;
		--color-content-text: #FFFFFF;
		--color-text: #666666;
	}
}

dialog.clipboard:not([open]) {
	display: none;
}

dialog.clipboard:focus {
	outline: none;
}

dialog.clipboard .wrapper {
	background: var(--color-background);
	border-radius: var(--border-radius);
	box-shadow: 0 1em 3em 0 rgba(0,0,0,0.35);
	cursor: pointer;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 21pt;
	max-width: calc(100% - 4em);
	min-width: 20em;
	opacity: 0;
	padding: 1.5em;
	text-align: center;
	transform: translateY(0.75em);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

dialog.clipboard .wrapper::after {
	color: var(--color-text);
	content: 'Click to copy';
	display: block;
	font-size: 0.8em;
	margin-top: 1.5em;
}

body.touch dialog.clipboard .wrapper::after {
	content: 'Tap to copy';
}

dialog.clipboard .wrapper .content {
	background-color: var(--color-content-background);
	border-radius: calc(var(--border-radius) / 3);
	border: dashed 2px var(--color-content-border);
	color: var(--color-content-text);
	overflow-x: auto;
	overflow-y: hidden;
	padding: 1.5em;
	position: relative;
	user-select: none;
	white-space: nowrap;
	width: 100%;
}

dialog.clipboard .wrapper .content::before {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICM4MDgwODA7c3Ryb2tlLXdpZHRoOiAycHg7c3Ryb2tlLWxpbmVjYXA6IHNxdWFyZTt9cmVjdCB7ZmlsbDogbm9uZTtzdHJva2U6ICM4MDgwODA7c3Ryb2tlLXdpZHRoOiAycHg7c3Ryb2tlLWxpbmVjYXA6IHNxdWFyZTt9PC9zdHlsZT48bGluZSB4MT0iMiIgeTE9IjIiIHgyPSI0OCIgeTI9IjIiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48bGluZSB4MT0iNDYiIHkxPSIyIiB4Mj0iNDgiIHkyPSIxNiIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxsaW5lIHgxPSIyIiB5MT0iMiIgeDI9IjIiIHkyPSI0OCIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxsaW5lIHgxPSIyIiB5MT0iNDgiIHgyPSIxNiIgeTI9IjQ4IiB2ZWN0b3ItZWZmZWN0PSJub24tc2NhbGluZy1zdHJva2UiIC8+PHJlY3QgeD0iMTYiIHk9IjE2IiB3aWR0aD0iNDYiIGhlaWdodD0iNDYiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	color: var(--color-content-border);
	content: '\00a0';
	display: inline-block;
	margin-left: -0.5em;
	margin-right: 0.5em;
	opacity: 0.35;
	width: 1.25em;
}

dialog.clipboard .wrapper .content::after {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICM4MDgwODA7c3Ryb2tlLXdpZHRoOiA1cHg7c3Ryb2tlLWxpbmVjYXA6IHNxdWFyZTt9PC9zdHlsZT48bGluZSB4MT0iNyIgeTE9IjM2IiB4Mj0iMjYiIHkyPSI1NSIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxsaW5lIHgxPSI1OSIgeTE9IjEzIiB4Mj0iMjYiIHkyPSI1NSIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.25em;
	color: var(--color-content-border);
	content: '';
	font-size: 2em;
	height: 2em;
	left: calc(50% - 1em);
	line-height: 2em;
	opacity: 0;
	position: absolute;
	top: calc(50% - 1em);
	width: 2em;
}

dialog.clipboard .wrapper.copied::after {
	content: 'Copied!' !important;
}

dialog.clipboard .wrapper.copied .content {
	animation: clipboard-dialog-content-copied 0.125s ease;
	color: transparent;
}

dialog.clipboard .wrapper.copied .content::before {
	display: none;
}

dialog.clipboard .wrapper.copied .content::after {
	animation: clipboard-dialog-content-copied 0.125s ease;
	opacity: 0.35;
}

dialog.clipboard::backdrop {
	background-color: rgba(10,10,10,0.85);
	opacity: 0;
	transition: opacity 0.25s ease;
}

dialog.clipboard .close {
	-webkit-tap-highlight-color: transparent;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNmZmZmZmY7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48bGluZSB4MT0iMjAiIHkxPSI0NCIgeDI9IjQ0IiB5Mj0iMjAiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48L3N2Zz4=');
	background-position: top 1rem right 1rem;
	background-repeat: no-repeat;
	background-size: 3rem;
	cursor: pointer;
	display: block;
	height: 6rem;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.25s ease, transform 0.5s ease;
	width: 6rem;
}

dialog.clipboard.active .wrapper {
	opacity: 1;
	transform: none;
}

dialog.clipboard.active .close {
	opacity: 0.25;
}

dialog.clipboard.active .close:hover {
	opacity: 1;
}

dialog.clipboard.active::backdrop {
	opacity: 1;
	transition-delay: 0s;
}

@media (max-width: 736px) {

	dialog.clipboard .wrapper {
		border-radius: 0;
		font-size: 18pt;
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	dialog.clipboard .wrapper .content {
		padding: 1.5em 1.25em;
	}

	dialog.clipboard .close {
		background-position: top 0.5rem right 0.5rem;
	}

}

body {
	line-height: 1.0;
	min-height: var(--viewport-height);
	min-width: 320px;
	overflow-x: hidden;
	word-wrap: break-word;
	background-color: #D1D1D1;
}

body::before {
	background-attachment: scroll;
	content: '';
	display: block;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: 100vw;
	z-index: 0;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cpath%20fill%3D%22rgba(0,0,0,0.502)%22%20d%3D%22M502.2%2C316l-11.3-0.2c-1%2C0-1.8-0.9-1.8-1.9s0.9-1.8%2C1.9-1.8l11.3%2C0.2c1%2C0%2C1.8%2C0.9%2C1.8%2C1.9%20C504%2C315.3%2C503.2%2C316.1%2C502.2%2C316z%20M487.3%2C285.7c-0.8%2C0.9-2.2%2C0.9-3%2C0.1c-0.9-0.8-0.9-2.2-0.1-3l9.2-9.6c0.8-0.9%2C2.2-0.9%2C3-0.1%20c0.9%2C0.8%2C0.9%2C2.2%2C0.1%2C3L487.3%2C285.7z%20M483.9%2C119.7l-17.2-10.2c-1.5-0.9-2.1-2.9-1.1-4.4c0.9-1.5%2C2.9-2.1%2C4.4-1.1l17.2%2C10.2%20c1.5%2C0.9%2C2.1%2C2.9%2C1.1%2C4.4C487.5%2C120.1%2C485.5%2C120.6%2C483.9%2C119.7z%20M479.7%2C26.8c-0.9%2C0.6-2%2C0.3-2.6-0.6l-6.3-9.7%20c-0.6-0.9-0.3-2%2C0.6-2.6s2-0.3%2C2.6%2C0.6l6.3%2C9.7C480.8%2C25%2C480.5%2C26.2%2C479.7%2C26.8z%20M465.1%2C59.1l-13.2-7.4c-1.2-0.7-1.6-2.1-0.9-3.3%20s2.1-1.6%2C3.3-0.9l13.2%2C7.4c1.2%2C0.7%2C1.6%2C2.1%2C0.9%2C3.3C467.7%2C59.4%2C466.2%2C59.8%2C465.1%2C59.1z%20M468.2%2C237.5c0.1%2C1.4-1%2C2.6-2.4%2C2.7%20l-15.7%2C0.7c-1.4%2C0.1-2.6-1-2.7-2.4s1-2.6%2C2.4-2.7l15.7-0.7C467%2C235%2C468.2%2C236.1%2C468.2%2C237.5z%20M443.2%2C419.8l-9.1-10.8%20c-0.8-1-0.7-2.4%2C0.3-3.2c1-0.8%2C2.4-0.7%2C3.2%2C0.3l9.1%2C10.8c0.8%2C1%2C0.7%2C2.4-0.3%2C3.2C445.4%2C420.9%2C444%2C420.7%2C443.2%2C419.8z%20M432.9%2C281.9%20c-0.7%2C0.5-1.6%2C0.4-2.2-0.2c-0.5-0.7-0.4-1.6%2C0.2-2.2l7.4-5.9c0.7-0.5%2C1.6-0.4%2C2.2%2C0.2c0.5%2C0.7%2C0.4%2C1.6-0.2%2C2.2L432.9%2C281.9z%20M436.4%2C97.4c-0.7-0.1-1.2-0.8-1.1-1.5l1.2-8.2c0.1-0.7%2C0.8-1.2%2C1.5-1.1s1.2%2C0.8%2C1.1%2C1.5l-1.2%2C8.2C437.8%2C97%2C437.2%2C97.5%2C436.4%2C97.4z%20M436.5%2C150.5c-1.4%2C0.8-3.1%2C0.4-3.9-1l-9-15.2c-0.8-1.4-0.4-3.1%2C1-3.9c1.4-0.8%2C3.1-0.4%2C3.9%2C1l9%2C15.2%20C438.3%2C147.9%2C437.8%2C149.6%2C436.5%2C150.5z%20M430.7%2C371.6c0.4%2C1%2C0%2C2.1-1%2C2.5l-10.9%2C4.6c-1%2C0.4-2.1%2C0-2.5-1s0-2.1%2C1-2.5l10.9-4.6%20C429.2%2C370.2%2C430.3%2C370.7%2C430.7%2C371.6z%20M413.2%2C322l-11.3-0.2c-1%2C0-1.8-0.9-1.8-1.9s0.9-1.8%2C1.9-1.8l11.3%2C0.2c1%2C0%2C1.8%2C0.9%2C1.8%2C1.9%20C415%2C321.3%2C414.2%2C322.1%2C413.2%2C322z%20M406.8%2C235.1c-1.1-0.1-1.8-1-1.8-2l0.8-11.8c0.1-1.1%2C1-1.8%2C2-1.8c1.1%2C0.1%2C1.8%2C1%2C1.8%2C2l-0.8%2C11.8%20C408.7%2C234.4%2C407.8%2C235.2%2C406.8%2C235.1z%20M406.3%2C192.1c-1.6%2C0.6-3.4-0.3-4-1.9l-6.5-18.1c-0.6-1.6%2C0.3-3.4%2C1.9-4s3.4%2C0.3%2C4%2C1.9%20l6.5%2C18.1C408.7%2C189.7%2C407.9%2C191.5%2C406.3%2C192.1z%20M404%2C25.5c-0.7%2C0-1.4-0.5-1.4-1.3l-0.4-8.3c0-0.7%2C0.5-1.4%2C1.3-1.4%20c0.7%2C0%2C1.4%2C0.5%2C1.4%2C1.3l0.4%2C8.3C405.3%2C24.8%2C404.7%2C25.5%2C404%2C25.5z%20M390.8%2C427.6l-10.2-5.9c-0.9-0.5-1.2-1.7-0.7-2.6s1.7-1.2%2C2.6-0.7%20l10.2%2C5.9c0.9%2C0.5%2C1.2%2C1.7%2C0.7%2C2.6C392.8%2C427.9%2C391.7%2C428.2%2C390.8%2C427.6z%20M387.9%2C249.2l-11-5.4c-1-0.5-1.4-1.7-0.9-2.6%20c0.5-1%2C1.7-1.4%2C2.6-0.9l11%2C5.4c1%2C0.5%2C1.4%2C1.7%2C0.9%2C2.6C390%2C249.3%2C388.9%2C249.7%2C387.9%2C249.2z%20M379%2C69.7c-1.1%2C0.6-2.6%2C0.2-3.2-0.9%20L368.7%2C56c-0.6-1.1-0.2-2.6%2C0.9-3.2c1.1-0.6%2C2.6-0.2%2C3.2%2C0.9l7.1%2C12.8C380.6%2C67.7%2C380.1%2C69.1%2C379%2C69.7z%20M375.5%2C129.4%20c0%2C1.5-1.2%2C2.7-2.7%2C2.7l-16.6-0.2c-1.5%2C0-2.7-1.2-2.7-2.7s1.2-2.7%2C2.7-2.7l16.6%2C0.2C374.4%2C126.7%2C375.5%2C127.9%2C375.5%2C129.4z%20M350.6%2C32.8c-1.5%2C0.7-3.4%2C0-4.1-1.5L338.6%2C14c-0.7-1.5%2C0-3.4%2C1.5-4.1c1.5-0.7%2C3.4%2C0%2C4.1%2C1.5l7.9%2C17.3%20C352.8%2C30.3%2C352.2%2C32.1%2C350.6%2C32.8z%20M341%2C194.9c-0.2%2C0.7-0.9%2C1-1.6%2C0.8l-7.4-2.5c-0.7-0.2-1-0.9-0.8-1.6c0.2-0.7%2C0.9-1%2C1.6-0.8%20l7.4%2C2.5C340.9%2C193.5%2C341.2%2C194.2%2C341%2C194.9z%20M348.3%2C222.6c0.3%2C1.5-0.7%2C2.9-2.1%2C3.2l-16.3%2C3.2c-1.5%2C0.3-2.9-0.7-3.2-2.1%20c-0.3-1.5%2C0.7-2.9%2C2.1-3.2l16.3-3.2C346.6%2C220.2%2C348%2C221.1%2C348.3%2C222.6z%20M339.2%2C259.9c1.1-0.9%2C2.7-0.8%2C3.6%2C0.3%20c0.9%2C1.1%2C0.8%2C2.7-0.3%2C3.6l-12%2C10.2c-1.1%2C0.9-2.7%2C0.8-3.6-0.3c-0.9-1.1-0.8-2.7%2C0.3-3.6L339.2%2C259.9z%20M321.6%2C397.8l-10.2%2C4.2%20c-0.9%2C0.4-2-0.1-2.3-1c-0.4-0.9%2C0.1-2%2C1-2.3l10.2-4.2c0.9-0.4%2C2%2C0.1%2C2.3%2C1C323%2C396.4%2C322.5%2C397.4%2C321.6%2C397.8z%20M319.3%2C52.3l-7.8-1%20c-0.7-0.1-1.2-0.7-1.1-1.4s0.7-1.2%2C1.4-1.1l7.8%2C1c0.7%2C0.1%2C1.2%2C0.7%2C1.1%2C1.4C320.7%2C51.9%2C320%2C52.4%2C319.3%2C52.3z%20M313.6%2C140.8%20c-1.5%2C0.7-3.4%2C0-4.1-1.5l-7.9-17.3c-0.7-1.5%2C0-3.4%2C1.5-4.1s3.4%2C0%2C4.1%2C1.5l7.9%2C17.3C315.8%2C138.3%2C315.2%2C140.1%2C313.6%2C140.8z%20M301%2C85.4%20l-16.2%2C13c-1.4%2C1.2-3.6%2C0.9-4.7-0.5c-1.2-1.4-0.9-3.6%2C0.5-4.7l16.2-13c1.4-1.2%2C3.6-0.9%2C4.7%2C0.5C302.7%2C82.1%2C302.5%2C84.2%2C301%2C85.4z%20M280.7%2C24.8c-0.9%2C0.6-2%2C0.3-2.6-0.6l-6.3-9.7c-0.6-0.9-0.3-2%2C0.6-2.6s2-0.3%2C2.6%2C0.6l6.3%2C9.7C281.8%2C23%2C281.5%2C24.2%2C280.7%2C24.8z%20M273.6%2C245.9c-0.9%2C0.4-2%2C0-2.4-0.9l-4.6-10.2c-0.4-0.9%2C0-2%2C0.9-2.4s2%2C0%2C2.4%2C0.9l4.6%2C10.2C274.9%2C244.4%2C274.5%2C245.5%2C273.6%2C245.9z%20M268.5%2C450.4c0%2C1.5-1.2%2C2.7-2.7%2C2.7l-16.6-0.2c-1.5%2C0-2.7-1.2-2.7-2.7s1.2-2.7%2C2.7-2.7l16.6%2C0.2%20C267.4%2C447.7%2C268.5%2C448.9%2C268.5%2C450.4z%20M251.5%2C398.3c-1.1%2C1.3-3%2C1.5-4.3%2C0.4s-1.5-3-0.4-4.3l12.3-14.5c1.1-1.3%2C3-1.5%2C4.3-0.4%20s1.5%2C3%2C0.4%2C4.3L251.5%2C398.3z%20M253%2C115.4l-6.9-4.7c-0.6-0.4-0.8-1.3-0.4-1.9c0.4-0.6%2C1.3-0.8%2C1.9-0.4l6.9%2C4.7%20c0.6%2C0.4%2C0.8%2C1.3%2C0.4%2C1.9C254.4%2C115.7%2C253.6%2C115.9%2C253%2C115.4z%20M249.8%2C193.2c-0.1%2C0.7-0.7%2C1.2-1.4%2C1.1l-7.8-1%20c-0.7-0.1-1.2-0.7-1.1-1.4c0.1-0.7%2C0.7-1.2%2C1.4-1.1l7.8%2C1C249.4%2C191.9%2C249.8%2C192.5%2C249.8%2C193.2z%20M236.5%2C45.7l-15-1.4%20c-1.3-0.1-2.3-1.3-2.2-2.7c0.1-1.3%2C1.3-2.3%2C2.7-2.2l15%2C1.4c1.3%2C0.1%2C2.3%2C1.3%2C2.2%2C2.7C239%2C44.8%2C237.8%2C45.8%2C236.5%2C45.7z%20M219.9%2C206.4%20l6.3%2C9.7c0.6%2C0.9%2C0.3%2C2-0.6%2C2.6c-0.9%2C0.6-2%2C0.3-2.6-0.6l-6.3-9.7c-0.6-0.9-0.3-2%2C0.6-2.6C218.1%2C205.3%2C219.3%2C205.5%2C219.9%2C206.4z%20M219.8%2C259.5c0.5%2C0.5%2C0.5%2C1.3%2C0%2C1.8l-5.5%2C5.7c-0.5%2C0.5-1.3%2C0.5-1.8%2C0s-0.5-1.3%2C0-1.8l5.5-5.7C218.5%2C259%2C219.3%2C259%2C219.8%2C259.5z%20M209.8%2C114.6c-1.1%2C0-1.9-0.9-1.8-2l0.5-11.9c0-1.1%2C0.9-1.9%2C2-1.8c1.1%2C0%2C1.9%2C0.9%2C1.8%2C2l-0.5%2C11.9%20C211.8%2C113.8%2C210.9%2C114.6%2C209.8%2C114.6z%20M194.9%2C309.5c-1.6%2C1.2-3.9%2C0.9-5.2-0.8l-13.6-18.3c-1.2-1.6-0.9-3.9%2C0.8-5.2%20c1.6-1.2%2C3.9-0.9%2C5.2%2C0.8l13.6%2C18.3C196.8%2C306%2C196.5%2C308.3%2C194.9%2C309.5z%20M194.7%2C171.1c-0.7%2C0.3-1.5-0.1-1.7-0.8l-2.9-7.7%20c-0.3-0.7%2C0.1-1.5%2C0.8-1.7c0.7-0.3%2C1.5%2C0.1%2C1.7%2C0.8l2.9%2C7.7C195.7%2C170.1%2C195.4%2C170.9%2C194.7%2C171.1z%20M172.3%2C25.1l-10-9.9%20c-0.9-0.9-0.9-2.3%2C0-3.2s2.3-0.9%2C3.2%2C0l10%2C9.9c0.9%2C0.9%2C0.9%2C2.3%2C0%2C3.2C174.6%2C25.9%2C173.2%2C26%2C172.3%2C25.1z%20M175.6%2C62.4%20c0.3%2C1.6-0.7%2C3.2-2.4%2C3.6l-18.3%2C3.7c-1.6%2C0.3-3.2-0.7-3.6-2.4c-0.3-1.6%2C0.7-3.2%2C2.4-3.6L172%2C60C173.7%2C59.7%2C175.3%2C60.7%2C175.6%2C62.4z%20M165.6%2C131.4c0.3%2C1.6-0.7%2C3.2-2.4%2C3.6l-18.3%2C3.7c-1.6%2C0.3-3.2-0.7-3.6-2.4c-0.3-1.6%2C0.7-3.2%2C2.4-3.6L162%2C129%20C163.7%2C128.7%2C165.3%2C129.7%2C165.6%2C131.4z%20M149.3%2C187c0.8%2C1.1%2C0.6%2C2.7-0.5%2C3.6l-12.6%2C9.5c-1.1%2C0.8-2.7%2C0.6-3.6-0.5%20c-0.8-1.1-0.6-2.7%2C0.5-3.6l12.6-9.5C146.8%2C185.7%2C148.4%2C185.9%2C149.3%2C187z%20M133.4%2C328.3l-7.2%2C8.5c-0.6%2C0.8-1.8%2C0.9-2.5%2C0.2%20c-0.8-0.6-0.9-1.8-0.2-2.5l7.2-8.5c0.6-0.8%2C1.8-0.9%2C2.5-0.2C133.9%2C326.4%2C134%2C327.5%2C133.4%2C328.3z%20M128.1%2C249l-10.8%2C4.7%20c-1%2C0.4-2.1%2C0-2.5-1s0-2.1%2C1-2.5l10.8-4.7c1-0.4%2C2.1%2C0%2C2.5%2C1C129.5%2C247.4%2C129.1%2C248.5%2C128.1%2C249z%20M114.9%2C118.6%20c-0.8%2C1.5-2.6%2C2.1-4.1%2C1.3c-1.5-0.8-2.1-2.6-1.3-4.1l8.7-16.9c0.8-1.5%2C2.6-2.1%2C4.1-1.3c1.5%2C0.8%2C2.1%2C2.6%2C1.3%2C4.1L114.9%2C118.6z%20M114.2%2C38.9l-18.3%2C3.7c-1.6%2C0.3-3.2-0.7-3.6-2.4C92%2C38.6%2C93%2C37%2C94.7%2C36.7L113%2C33c1.6-0.3%2C3.2%2C0.7%2C3.6%2C2.4%20C116.9%2C37%2C115.9%2C38.6%2C114.2%2C38.9z%20M98.3%2C197.6c1.3%2C0.3%2C2.1%2C1.6%2C1.7%2C2.9l-3.4%2C14.2c-0.3%2C1.3-1.6%2C2.1-2.9%2C1.7%20c-1.3-0.3-2.1-1.6-1.7-2.9l3.4-14.2C95.7%2C198%2C97%2C197.2%2C98.3%2C197.6z%20M77.8%2C457.9c-0.5%2C0.9-1.6%2C1.2-2.5%2C0.7s-1.2-1.6-0.7-2.5l5.4-9.8%20c0.5-0.9%2C1.6-1.2%2C2.5-0.7s1.2%2C1.6%2C0.7%2C2.5L77.8%2C457.9z%20M77.3%2C394.2c-1.2%2C0.9-2.9%2C0.6-3.7-0.6l-9.7-13.4c-0.9-1.2-0.6-2.9%2C0.6-3.7%20c1.2-0.9%2C2.9-0.6%2C3.7%2C0.6l9.7%2C13.4C78.8%2C391.6%2C78.5%2C393.3%2C77.3%2C394.2z%20M74.7%2C183.8c-0.2%2C0.7-1%2C1.1-1.7%2C0.8c-0.7-0.2-1.1-1-0.8-1.7%20l2.8-7.8c0.2-0.7%2C1-1.1%2C1.7-0.8c0.7%2C0.2%2C1.1%2C1%2C0.8%2C1.7L74.7%2C183.8z%20M73%2C270.5c0.7%2C0.1%2C1.2%2C0.8%2C1.1%2C1.5l-1.2%2C8.2%20c-0.1%2C0.7-0.8%2C1.2-1.5%2C1.1s-1.2-0.8-1.1-1.5l1.2-8.2C71.6%2C270.9%2C72.3%2C270.4%2C73%2C270.5z%20M68.7%2C125.1c-1.2-0.1-2.2-1.2-2.1-2.4%20l1.1-13.9c0.1-1.2%2C1.2-2.2%2C2.4-2.1c1.2%2C0.1%2C2.2%2C1.2%2C2.1%2C2.4L71.1%2C123C71%2C124.2%2C69.9%2C125.2%2C68.7%2C125.1z%20M45.9%2C335.3%20c-1.6%2C0.3-3.1-0.8-3.4-2.4l-3.2-17.8c-0.3-1.6%2C0.8-3.1%2C2.4-3.4c1.6-0.3%2C3.1%2C0.8%2C3.4%2C2.4l3.2%2C17.8C48.6%2C333.5%2C47.5%2C335%2C45.9%2C335.3z%20M40.2%2C40.1l-10.3-5.7c-0.9-0.5-1.3-1.7-0.7-2.6c0.5-0.9%2C1.7-1.3%2C2.6-0.7L42%2C36.7c0.9%2C0.5%2C1.3%2C1.7%2C0.7%2C2.6%20C42.3%2C40.3%2C41.1%2C40.6%2C40.2%2C40.1z%20M43.3%2C80c-0.4%2C1.3-1.8%2C2-3.1%2C1.5L26%2C76.8c-1.3-0.4-2-1.8-1.5-3c0.4-1.3%2C1.8-2%2C3-1.5L41.8%2C77%20C43.1%2C77.4%2C43.7%2C78.8%2C43.3%2C80z%20M28%2C136.5l4.8%2C13.2c0.4%2C1.2-0.2%2C2.5-1.4%2C2.9c-1.2%2C0.4-2.5-0.2-2.9-1.4L23.8%2C138%20c-0.4-1.2%2C0.2-2.5%2C1.4-2.9C26.3%2C134.7%2C27.6%2C135.3%2C28%2C136.5z%20M38.3%2C448.8c-0.4%2C1.4-1.8%2C2.3-3.2%2C1.9l-15.8-4.1%20c-1.4-0.4-2.3-1.8-1.9-3.2c0.4-1.4%2C1.8-2.3%2C3.2-1.9l15.8%2C4.1C37.8%2C446%2C38.7%2C447.4%2C38.3%2C448.8z%20M9.8%2C299.6c-1.1%2C0-1.9-0.9-1.8-2%20l0.5-11.9c0-1.1%2C0.9-1.9%2C2-1.8c1.1%2C0%2C1.9%2C0.9%2C1.8%2C2l-0.5%2C11.9C11.8%2C298.8%2C10.9%2C299.6%2C9.8%2C299.6z%20M30.1%2C490.1l8.8%2C7.8%20c0.8%2C0.7%2C0.9%2C1.9%2C0.2%2C2.7c-0.7%2C0.8-1.9%2C0.9-2.7%2C0.2l-8.8-7.8c-0.8-0.7-0.9-1.9-0.2-2.7S29.3%2C489.4%2C30.1%2C490.1z%20M39.2%2C385.2l-9.1%2C6.2%20c-0.8%2C0.6-1.9%2C0.3-2.5-0.5s-0.3-1.9%2C0.5-2.5l9.1-6.2c0.8-0.6%2C1.9-0.3%2C2.5%2C0.5S40.1%2C384.6%2C39.2%2C385.2z%20M31.2%2C200.3l-5.9-5.9%20c-0.5-0.5-0.5-1.4%2C0-1.9s1.4-0.5%2C1.9%2C0l5.9%2C5.9c0.5%2C0.5%2C0.5%2C1.4%2C0%2C1.9C32.6%2C200.8%2C31.7%2C200.8%2C31.2%2C200.3z%20M43.6%2C237.2%20c0.5%2C1.1%2C0%2C2.4-1.2%2C2.9l-12.7%2C5.5c-1.1%2C0.5-2.4%2C0-2.9-1.2c-0.5-1.1%2C0-2.4%2C1.2-2.9l12.7-5.5C41.8%2C235.5%2C43.1%2C236.1%2C43.6%2C237.2z%20M98%2C338.6l6.8%2C8.9c0.6%2C0.8%2C0.4%2C1.9-0.3%2C2.5c-0.8%2C0.6-1.9%2C0.4-2.5-0.3l-6.8-8.9c-0.6-0.8-0.4-1.9%2C0.3-2.5%20C96.3%2C337.7%2C97.4%2C337.8%2C98%2C338.6z%20M100.6%2C289.8c1.1-0.9%2C2.8-0.8%2C3.8%2C0.4l10.5%2C12.8c0.9%2C1.1%2C0.8%2C2.8-0.4%2C3.8s-2.8%2C0.8-3.8-0.4%20l-10.5-12.8C99.3%2C292.4%2C99.4%2C290.8%2C100.6%2C289.8z%20M114.7%2C463.7L133%2C460c1.6-0.3%2C3.2%2C0.7%2C3.6%2C2.4c0.3%2C1.6-0.7%2C3.2-2.4%2C3.6l-18.3%2C3.7%20c-1.6%2C0.3-3.2-0.7-3.6-2.4C112%2C465.6%2C113%2C464%2C114.7%2C463.7z%20M148.2%2C311.3l-5.9-5.9c-0.5-0.5-0.5-1.4%2C0-1.9s1.4-0.5%2C1.9%2C0l5.9%2C5.9%20c0.5%2C0.5%2C0.5%2C1.4%2C0%2C1.9C149.6%2C311.8%2C148.7%2C311.8%2C148.2%2C311.3z%20M144.9%2C409.1l14.3%2C6.4c1.3%2C0.6%2C1.9%2C2.1%2C1.3%2C3.4%20c-0.6%2C1.3-2.1%2C1.9-3.4%2C1.3l-14.3-6.4c-1.3-0.6-1.9-2.1-1.3-3.4C142.1%2C409.1%2C143.6%2C408.5%2C144.9%2C409.1z%20M166.8%2C224.4l-10.5-12.8%20c-0.9-1.1-0.8-2.8%2C0.4-3.8c1.1-0.9%2C2.8-0.8%2C3.8%2C0.4L171%2C221c0.9%2C1.1%2C0.8%2C2.8-0.4%2C3.8S167.7%2C225.5%2C166.8%2C224.4z%20M155.6%2C360%20c-0.8-1.1-0.5-2.7%2C0.6-3.5l12.6-9c1.1-0.8%2C2.7-0.5%2C3.5%2C0.6s0.5%2C2.7-0.6%2C3.5l-12.6%2C9C158%2C361.4%2C156.4%2C361.1%2C155.6%2C360z%20M189.4%2C448.7%20l-8.8-7.8c-0.8-0.7-0.9-1.9-0.2-2.7c0.7-0.8%2C1.9-0.9%2C2.7-0.2l8.8%2C7.8c0.8%2C0.7%2C0.9%2C1.9%2C0.2%2C2.7C191.4%2C449.4%2C190.2%2C449.4%2C189.4%2C448.7z%20M181.8%2C481.2l11.1%2C0.7c1%2C0.1%2C1.7%2C0.9%2C1.7%2C1.9s-0.9%2C1.8-1.9%2C1.7l-11.1-0.7c-1-0.1-1.8-0.9-1.7-1.9%20C179.9%2C481.9%2C180.8%2C481.1%2C181.8%2C481.2z%20M213.1%2C396.1l8.8%2C7.8c0.8%2C0.7%2C0.9%2C1.9%2C0.2%2C2.7c-0.7%2C0.8-1.9%2C0.9-2.7%2C0.2l-8.8-7.8%20c-0.8-0.7-0.9-1.9-0.2-2.7S212.3%2C395.4%2C213.1%2C396.1z%20M224.4%2C484.6c1.2%2C0%2C2.1%2C1%2C2.1%2C2.2l-0.2%2C13.4c0%2C1.2-1%2C2.1-2.2%2C2.1%20s-2.1-1-2.1-2.2l0.2-13.4C222.2%2C485.5%2C223.2%2C484.5%2C224.4%2C484.6z%20M235.5%2C149.3l-11.5%2C1.9c-1%2C0.2-2-0.5-2.2-1.6c-0.2-1%2C0.5-2%2C1.6-2.2%20l11.5-1.9c1-0.2%2C2%2C0.5%2C2.2%2C1.6C237.2%2C148.1%2C236.5%2C149.1%2C235.5%2C149.3z%20M238.7%2C298l10.3%2C5.7c0.9%2C0.5%2C1.3%2C1.7%2C0.7%2C2.6%20c-0.5%2C0.9-1.7%2C1.3-2.6%2C0.7l-10.3-5.7c-0.9-0.5-1.3-1.7-0.7-2.6C236.6%2C297.9%2C237.8%2C297.5%2C238.7%2C298z%20M218.3%2C348.2%20c-0.7-1.9%2C0.2-4%2C2.1-4.7l21.1-8.1c1.9-0.7%2C4%2C0.2%2C4.7%2C2.1s-0.2%2C4-2.1%2C4.7l-21.1%2C8.1C221.1%2C351%2C219%2C350.1%2C218.3%2C348.2z%20M269.9%2C308.9%20c1-0.4%2C2.1%2C0.1%2C2.4%2C1.1l4.2%2C10.8c0.4%2C1-0.1%2C2.1-1.1%2C2.4c-1%2C0.4-2.1-0.1-2.4-1.1l-4.2-10.8C268.4%2C310.3%2C268.9%2C309.3%2C269.9%2C308.9z%20M298.9%2C434.8l3.4%2C15.4c0.3%2C1.4-0.6%2C2.7-1.9%2C3c-1.4%2C0.3-2.7-0.6-3-1.9l-3.4-15.4c-0.3-1.4%2C0.6-2.7%2C1.9-3%20C297.2%2C432.5%2C298.6%2C433.4%2C298.9%2C434.8z%20M287.9%2C197.9c1-0.4%2C2.1%2C0.1%2C2.4%2C1.1l4.2%2C10.8c0.4%2C1-0.1%2C2.1-1.1%2C2.4c-1%2C0.4-2.1-0.1-2.4-1.1%20l-4.2-10.8C286.4%2C199.3%2C286.9%2C198.3%2C287.9%2C197.9z%20M273.6%2C162.2l-0.4-8.3c0-0.7%2C0.5-1.4%2C1.3-1.4c0.7%2C0%2C1.4%2C0.5%2C1.4%2C1.3l0.4%2C8.3%20c0%2C0.7-0.5%2C1.4-1.3%2C1.4C274.3%2C163.5%2C273.6%2C163%2C273.6%2C162.2z%20M289.7%2C277.6c-1.2%2C1.3-3.2%2C1.5-4.6%2C0.3l-15-13.2%20c-1.3-1.2-1.5-3.2-0.3-4.6c1.2-1.3%2C3.2-1.5%2C4.6-0.3l15%2C13.2C290.7%2C274.2%2C290.9%2C276.2%2C289.7%2C277.6z%20M301.7%2C336.9%20c-0.6-0.8-0.3-1.9%2C0.5-2.5l9.1-6.2c0.8-0.6%2C1.9-0.3%2C2.5%2C0.5s0.3%2C1.9-0.5%2C2.5l-9.1%2C6.2C303.3%2C337.9%2C302.2%2C337.7%2C301.7%2C336.9z%20M303.4%2C387.9c-0.6%2C1.3-2.2%2C1.9-3.6%2C1.3c-1.3-0.6-1.9-2.2-1.3-3.6l7.1-15c0.6-1.3%2C2.2-1.9%2C3.6-1.3c1.3%2C0.6%2C1.9%2C2.2%2C1.3%2C3.6%20L303.4%2C387.9z%20M281.7%2C490.7L300%2C487c1.6-0.3%2C3.2%2C0.7%2C3.6%2C2.4c0.3%2C1.6-0.7%2C3.2-2.4%2C3.6l-18.3%2C3.7c-1.6%2C0.3-3.2-0.7-3.6-2.4%20C279%2C492.6%2C280%2C491%2C281.7%2C490.7z%20M346.6%2C453.1c0.4-0.6%2C1.2-0.8%2C1.8-0.4c0.6%2C0.4%2C0.8%2C1.2%2C0.4%2C1.8l-4.3%2C6.6c-0.4%2C0.6-1.2%2C0.8-1.8%2C0.4%20c-0.6-0.4-0.8-1.2-0.4-1.8L346.6%2C453.1z%20M348.8%2C171.9c0.4-0.6%2C1.3-0.8%2C1.9-0.4l6.9%2C4.7c0.6%2C0.4%2C0.8%2C1.3%2C0.4%2C1.9%20c-0.4%2C0.6-1.3%2C0.8-1.9%2C0.4l-6.9-4.7C348.5%2C173.3%2C348.3%2C172.5%2C348.8%2C171.9z%20M356.7%2C293.9l18.5%2C0.7c1.7%2C0.1%2C3%2C1.4%2C2.9%2C3.1%20s-1.4%2C3-3.1%2C2.9l-18.5-0.7c-1.7-0.1-3-1.4-2.9-3.1C353.7%2C295.1%2C355.1%2C293.9%2C356.7%2C293.9z%20M356.1%2C381.3l7.8-0.5%20c0.7%2C0%2C1.3%2C0.5%2C1.3%2C1.2s-0.5%2C1.3-1.2%2C1.3l-7.8%2C0.5c-0.7%2C0-1.3-0.5-1.3-1.2C354.9%2C381.9%2C355.4%2C381.3%2C356.1%2C381.3z%20M364.3%2C487.9%20c0.9-0.6%2C2-0.3%2C2.6%2C0.6l6.3%2C9.7c0.6%2C0.9%2C0.3%2C2-0.6%2C2.6s-2%2C0.3-2.6-0.6l-6.3-9.7C363.2%2C489.6%2C363.4%2C488.4%2C364.3%2C487.9z%20M378.5%2C334.7%20c1%2C0.1%2C1.8%2C1%2C1.7%2C2.1l-1%2C11.7c-0.1%2C1-1%2C1.8-2.1%2C1.7c-1-0.1-1.8-1-1.7-2.1l1-11.7C376.5%2C335.4%2C377.4%2C334.6%2C378.5%2C334.7z%20M389%2C456.4%20c1.4%2C0%2C2.6%2C1.1%2C2.6%2C2.5l0.1%2C15.7c0%2C1.4-1.1%2C2.6-2.5%2C2.6s-2.6-1.1-2.6-2.5l-0.1-15.7C386.4%2C457.6%2C387.5%2C456.5%2C389%2C456.4z%20M427.9%2C454.9c0.5-0.7%2C1.6-0.9%2C2.3-0.4c0.7%2C0.5%2C0.9%2C1.6%2C0.4%2C2.3l-6%2C8.3c-0.5%2C0.7-1.6%2C0.9-2.3%2C0.4c-0.7-0.5-0.9-1.6-0.4-2.3%20L427.9%2C454.9z%20M466.1%2C327.6c1.2%2C0.1%2C2.2%2C1.2%2C2.1%2C2.4l-1.1%2C13.9c-0.1%2C1.2-1.2%2C2.2-2.4%2C2.1c-1.2-0.1-2.2-1.2-2.1-2.4l1.1-13.9%20C463.7%2C328.5%2C464.8%2C327.5%2C466.1%2C327.6z%20M464.6%2C165c-0.9-0.5-1.2-1.6-0.8-2.4l5.2-9.9c0.5-0.9%2C1.6-1.2%2C2.4-0.8%20c0.9%2C0.5%2C1.2%2C1.6%2C0.8%2C2.4l-5.2%2C9.9C466.6%2C165.2%2C465.5%2C165.5%2C464.6%2C165z%20M472.5%2C203.8c0-1%2C0.9-1.8%2C1.9-1.7l11.2%2C0.5%20c1%2C0%2C1.8%2C0.9%2C1.7%2C1.9c0%2C1-0.9%2C1.8-1.9%2C1.7l-11.2-0.5C473.2%2C205.7%2C472.5%2C204.8%2C472.5%2C203.8z%20M466.8%2C394.7l16.3-3.2%20c1.5-0.3%2C2.9%2C0.7%2C3.2%2C2.1c0.3%2C1.5-0.7%2C2.9-2.1%2C3.2l-16.3%2C3.2c-1.5%2C0.3-2.9-0.7-3.2-2.1C464.4%2C396.4%2C465.4%2C395%2C466.8%2C394.7z%20M470.2%2C456.7l11.6-6.7c1-0.6%2C2.4-0.2%2C3%2C0.8s0.2%2C2.4-0.8%2C3l-11.6%2C6.7c-1%2C0.6-2.4%2C0.2-3-0.8S469.2%2C457.3%2C470.2%2C456.7z%20M475.8%2C492.1%20l10.8-4.7c1-0.4%2C2.1%2C0%2C2.5%2C1s0%2C2.1-1%2C2.5l-10.8%2C4.7c-1%2C0.4-2.1%2C0-2.5-1C474.4%2C493.7%2C474.8%2C492.6%2C475.8%2C492.1z%20M60.9%2C6.8%20c1-0.9%2C2.5-0.8%2C3.4%2C0.3L74%2C18.4c0.9%2C1%2C0.8%2C2.5-0.3%2C3.4c-1%2C0.9-2.5%2C0.8-3.4-0.3l-9.8-11.3C59.7%2C9.2%2C59.9%2C7.7%2C60.9%2C6.8z%22%20%2F%3E%3C%2Fsvg%3E');
	background-size: 748px;
	background-position: center;
	background-repeat: repeat;
}

:root {
	--background-height: 100vh;
	--site-language-alignment: left;
	--site-language-direction: ltr;
	--site-language-flex-alignment: flex-start;
	--site-language-indent-left: 1;
	--site-language-indent-right: 0;
	--site-language-margin-left: 0;
	--site-language-margin-right: auto;
	--viewport-height: 100vh;
}

html {
	font-size: 18pt;
}

u {
	text-decoration: underline;
}

strong {
	color: inherit;
	font-weight: bolder;
}

em {
	font-style: italic;
}

code {
	background-color: rgba(144,144,144,0.25);
	border-radius: 0.25em;
	font-family: 'Lucida Console', 'Courier New', monospace;
	font-size: 0.9em;
	font-weight: normal;
	letter-spacing: 0;
	margin: 0 0.25em;
	padding: 0.25em 0.5em;
	text-indent: 0;
}

mark {
	background-color: rgba(144,144,144,0.25);
}

spoiler-text {
	-webkit-text-stroke: 0;
	background-color: rgba(32,32,32,0.75);
	text-shadow: none;
	text-stroke: 0;
	color: transparent;
	cursor: pointer;
	transition: color 0.1s ease-in-out;
}

spoiler-text.active {
	color: #FFFFFF;
	cursor: text;
}

s {
	text-decoration: line-through;
}

sub {
	font-size: smaller;
	vertical-align: sub;
}

sup {
	font-size: smaller;
	vertical-align: super;
}

a {
	color: inherit;
	text-decoration: underline;
	transition: color 0.25s ease;
}

a[onclick]:not([href]) {
	cursor: pointer;
}

unloaded-script {
	display: none;
}

.site-wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.site-main {
	--alignment: var(--site-language-alignment);
	--flex-alignment: var(--site-language-flex-alignment);
	--indent-left: var(--site-language-indent-left);
	--indent-right: var(--site-language-indent-right);
	--margin-left: var(--site-language-margin-left);
	--margin-right: var(--site-language-margin-right);
	--border-radius-tl: 0;
	--border-radius-tr: 0;
	--border-radius-br: 0;
	--border-radius-bl: 0;
	align-items: center;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	max-width: 100%;
	position: relative;
	text-align: var(--alignment);
	z-index: 1;
	background-color: #FFFFFF;
}

.site-main > .inner {
	--padding-horizontal: 3rem;
	--padding-vertical: 3rem;
	--spacing: 0rem;
	--width: 40rem;
	border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
	max-width: 100%;
	position: relative;
	width: var(--width);
	z-index: 1;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.site-main > .inner > header {
	margin-bottom: var(--spacing);
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.site-main > .inner > footer {
	margin-top: var(--spacing);
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.site-main > .inner > * > * {
	margin-top: var(--spacing);
	margin-bottom: var(--spacing);
}

.site-main > .inner > * > :first-child {
	margin-top: 0 !important;
}

.site-main > .inner > * > :last-child {
	margin-bottom: 0 !important;
}

.site-main > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
	width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

.site-main > .inner > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.site-main > .inner > .full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.site-main > .inner > .full.screen {
	border-radius: 0 !important;
	max-width: 100vw;
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	right: auto;
}

.site-main > .inner > * > .full {
	margin-left: calc(-3rem);
	max-width: calc(100% + 6rem + 0.4725px);
	width: calc(100% + 6rem + 0.4725px);
}

.site-main > .inner > * > .full.screen {
	border-radius: 0 !important;
	max-width: 100vw;
	position: relative;
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
	right: auto;
}

.site-main > .inner > header > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: -3rem !important;
}

.site-main > .inner > footer > .full:last-child {
	margin-bottom: -3rem !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

body.is-instant .site-main, body.is-instant .site-main > .inner > *,body.is-instant .site-main > .inner > section > *  {
	transition: none !important;
}

body.is-instant::after {
	display: none !important;
	transition: none !important;
}

.image-component {
	display: block;
	line-height: 0;
	max-width: 100%;
	position: relative;
}

.image-component > .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	vertical-align: top;
	width: 100%;
}

.image-component > .frame > img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image-component.full > .frame {
	display: block;
}

.image-component.full:first-child > .frame {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.image-component.full:last-child > .frame {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.image-component.instance-2 {
	text-align: center;
}

.image-component.instance-2 > .frame {
	max-width: 100%;
	width: 68px;
	transition: none;
}

.image-component.instance-2 > .frame > img {
	transition: none;
}

.image-component.instance-1 {
	text-align: center;
}

.image-component.instance-1 > .frame {
	max-width: 100%;
	width: 179px;
	transition: none;
}

.image-component.instance-1 > .frame > img {
	transition: none;
}

.image-component.instance-3 {
	text-align: center;
}

.image-component.instance-3 > .frame {
	max-width: 100%;
	width: 712px;
	transition: none;
}

.image-component.instance-3 > .frame > img {
	transition: none;
}

.text-component {
	direction: var(--site-language-direction);
	position: relative;
}

.text-component span.p {
	display: block;
	position: relative;
}

.text-component span[style], .text-component strong, .text-component a, .text-component code, .text-component mark, .text-component spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

.text-component.instance-3 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Space Mono', monospace;
	font-size: 2em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-3 a {
	text-decoration: underline;
}

.text-component.instance-3 a:hover {
	text-decoration: none;
}

.text-component.instance-3 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-6:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-6:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-6 {
	text-align: center;
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 2em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-6 a {
	text-decoration: underline;
}

.text-component.instance-6 a:hover {
	text-decoration: none;
}

.text-component.instance-6 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-11:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-11:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-11 {
	text-align: center;
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-11 a {
	text-decoration: underline;
}

.text-component.instance-11 a:hover {
	text-decoration: none;
}

.text-component.instance-11 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-12 {
	text-align: justify;
	color: #363636;
	font-family: 'Space Mono', monospace;
	text-indent: 3rem;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-12 a {
	text-decoration: underline;
}

.text-component.instance-12 a:hover {
	text-decoration: none;
}

.text-component.instance-12 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-13:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-13:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-13 {
	text-align: center;
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-13 a {
	text-decoration: underline;
}

.text-component.instance-13 a:hover {
	text-decoration: none;
}

.text-component.instance-13 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-14 {
	text-align: justify;
	color: #363636;
	font-family: 'Space Mono', monospace;
	text-indent: 3rem;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-14 a {
	text-decoration: underline;
}

.text-component.instance-14 a:hover {
	text-decoration: none;
}

.text-component.instance-14 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-4:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-4:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-4 {
	text-align: center;
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-4 a {
	text-decoration: underline;
}

.text-component.instance-4 a:hover {
	text-decoration: none;
}

.text-component.instance-4 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-8:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-8:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-8 {
	text-align: center;
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-8 a {
	text-decoration: underline;
}

.text-component.instance-8 a:hover {
	text-decoration: none;
}

.text-component.instance-8 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-5 {
	text-align: justify;
	color: #363636;
	font-family: 'Space Mono', monospace;
	text-indent: 3rem;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-5 a {
	text-decoration: underline;
}

.text-component.instance-5 a:hover {
	text-decoration: none;
}

.text-component.instance-5 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-7 {
	text-align: justify;
	color: #363636;
	font-family: 'Space Mono', monospace;
	text-indent: 3rem;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-7 a {
	text-decoration: underline;
}

.text-component.instance-7 a:hover {
	text-decoration: none;
}

.text-component.instance-7 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-18:not(:first-child) {
	margin-top: 0.625rem !important;
}

.text-component.instance-18:not(:last-child) {
	margin-bottom: 0.625rem !important;
}

.text-component.instance-18 {
	text-align: justify;
	color: #363636;
	font-family: 'Space Mono', monospace;
	text-indent: 3rem;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-18 a {
	text-decoration: underline;
}

.text-component.instance-18 a:hover {
	text-decoration: none;
}

.text-component.instance-18 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-10:not(:first-child) {
	margin-top: 0.625rem !important;
}

.text-component.instance-10:not(:last-child) {
	margin-bottom: 0.625rem !important;
}

.text-component.instance-10 {
	text-align: justify;
	color: #363636;
	font-family: 'Space Mono', monospace;
	text-indent: 3rem;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-10 a {
	text-decoration: underline;
}

.text-component.instance-10 a:hover {
	text-decoration: none;
}

.text-component.instance-10 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-9:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-9:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-9 {
	text-align: center;
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-9 a {
	text-decoration: underline;
}

.text-component.instance-9 a:hover {
	text-decoration: none;
}

.text-component.instance-9 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-15:not(:first-child) {
	margin-top: 0.75rem !important;
}

.text-component.instance-15:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

.text-component.instance-15 {
	text-align: center;
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-15 a {
	text-decoration: underline;
}

.text-component.instance-15 a:hover {
	text-decoration: none;
}

.text-component.instance-15 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-17:not(:first-child) {
	margin-top: 1.875rem !important;
}

.text-component.instance-17:not(:last-child) {
	margin-bottom: 1.875rem !important;
}

.text-component.instance-17 {
	text-align: justify;
	color: #363636;
	font-family: 'Space Mono', monospace;
	text-indent: 3rem;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-17 a {
	text-decoration: underline;
}

.text-component.instance-17 a:hover {
	text-decoration: none;
}

.text-component.instance-17 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-19:not(:first-child) {
	margin-top: 1.875rem !important;
}

.text-component.instance-19:not(:last-child) {
	margin-bottom: 1.875rem !important;
}

.text-component.instance-19 {
	text-align: justify;
	color: #363636;
	font-family: 'Space Mono', monospace;
	text-indent: 3rem;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-19 a {
	text-decoration: underline;
}

.text-component.instance-19 a:hover {
	text-decoration: none;
}

.text-component.instance-19 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-16:not(:first-child) {
	margin-top: 1.875rem !important;
}

.text-component.instance-16:not(:last-child) {
	margin-bottom: 1.875rem !important;
}

.text-component.instance-16 {
	text-align: justify;
	color: #363636;
	font-family: 'Space Mono', monospace;
	text-indent: 3rem;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.instance-16 a {
	text-decoration: underline;
}

.text-component.instance-16 a:hover {
	text-decoration: none;
}

.text-component.instance-16 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-1:not(:first-child) {
	margin-top: 0.5rem !important;
}

.text-component.instance-1:not(:last-child) {
	margin-bottom: 0.5rem !important;
}

.text-component.instance-1 {
	text-align: center;
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 2em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-1 a {
	text-decoration: underline;
}

.text-component.instance-1 a:hover {
	text-decoration: none;
}

.text-component.instance-1 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.instance-2:not(:first-child) {
	margin-top: 1rem !important;
}

.text-component.instance-2:not(:last-child) {
	margin-bottom: 1rem !important;
}

.text-component.instance-2 {
	text-align: center;
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 0.75em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-2 a {
	text-decoration: underline;
}

.text-component.instance-2 a:hover {
	text-decoration: none;
}

.text-component.instance-2 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.links-component {
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	line-height: 1.5;
	padding: 0;
}

.links-component > li {
	position: relative;
	text-align: var(--alignment);
}

.links-component > li > a {
	direction: var(--site-language-direction);
	display: block;
}

.links-component.instance-1 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.5rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Space Mono', monospace;
	font-size: 0.75em;
	font-weight: 400;
}

.links-component.instance-1 > li > a {
	color: #FFFFFF;
	text-decoration: underline;
}

.links-component.instance-1 > li > a:hover {
	text-decoration: none;
}

.container-component {
	position: relative;
}

.container-component > .wrapper {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
}

.container-component > .wrapper > .inner {
	vertical-align: top;
	position: relative;
	max-width: 100%;
	border-radius: inherit;
	text-align: var(--alignment);
}

.container-component.full:first-child > .wrapper {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.full:last-child > .wrapper {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.full:first-child > .wrapper > .inner {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.full:last-child > .wrapper > .inner {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-7 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #212121;
}

.container-component.instance-7 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-7 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

.container-component.instance-7.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-7.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-7.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-7.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

.container-component.instance-7.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-7.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-7.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-7.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-7.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-7.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-7.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-7.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-7.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-7.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-7.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-7.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-7.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-7.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-7.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-7.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-7.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-7.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-7 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 2));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-7 > .wrapper > .inner > :nth-child(2) {
	width: calc(80% + (var(--gutters) / 2));
}

.container-component.instance-2 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border-color: #212121;
	border-style: solid;
	border-left-width: 3px;
	border-right-width: 3px;
}

.container-component.instance-2 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 0.625rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-2 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

.container-component.instance-2.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-2.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-2.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-2.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-2.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-2.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-2.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-2.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-2.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-2.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-2.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-2.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-2.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-2.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-2.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-2.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-2.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-2.columns > .wrapper > .inner > div:first-child, .container-component.instance-2.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-2.columns > .wrapper > .inner > div:last-child, .container-component.instance-2.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-2.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-2.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-2.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-2.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-2.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-6 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border-color: #212121;
	border-style: solid;
	border-top-width: 3px;
	border-left-width: 3px;
	border-right-width: 3px;
}

.container-component.instance-6 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-6 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

.container-component.instance-6.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-6.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-6.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-6.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-6.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-6.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-6.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-6.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-6.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-6.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-6.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-6.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-6.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-6.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-6.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-6.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-6.columns > .wrapper > .inner > div:first-child, .container-component.instance-6.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > div:last-child, .container-component.instance-6.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-6.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-6.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-4 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border-color: #212121;
	border-style: solid;
	border-top-width: 3px;
	border-left-width: 3px;
	border-right-width: 3px;
}

.container-component.instance-4 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-4 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

.container-component.instance-4.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-4.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-4.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-4.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-4.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-4.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-4.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-4.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-4.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-4.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-4.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-4.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-4.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-4.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-4.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-4.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-4.columns > .wrapper > .inner > div:first-child, .container-component.instance-4.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > div:last-child, .container-component.instance-4.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-4.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-1 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border-color: #212121;
	border-style: solid;
	border-top-width: 3px;
	border-left-width: 3px;
	border-right-width: 3px;
}

.container-component.instance-1 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-1 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

.container-component.instance-1.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-1.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-1.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-1.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-1.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-1.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-1.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-1.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-1.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-1.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-1.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-1.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-1.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-1.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-1.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-1.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-1.columns > .wrapper > .inner > div:first-child, .container-component.instance-1.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > div:last-child, .container-component.instance-1.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-1.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-9 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border-color: #212121;
	border-style: solid;
	border-width: 3px;
}

.container-component.instance-9 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-9 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

.container-component.instance-9.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-9.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-9.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-9.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

.container-component.instance-9.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-9.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-9.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-9.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-9.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-9.columns > .wrapper > .inner > *::before {
	border-left: solid 3px #212121;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 1.5px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

.container-component.instance-9.columns > .wrapper > .inner > *:first-child::before {
	display: none;
}

.container-component.instance-9.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-9.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-9.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-9.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 1.5px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 3px);
}

.container-component.instance-9.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 1.5px);
}

.container-component.instance-9.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 1.5px);
}

.container-component.instance-9.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-9.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-9.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-9.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-9.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-9.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-9.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-9 > .wrapper > .inner > :nth-child(1) {
	width: calc(20% + (var(--gutters) / 3));
}

.container-component.instance-9 > .wrapper > .inner > :nth-child(2) {
	width: calc(20% + (var(--gutters) / 3));
}

.container-component.instance-9 > .wrapper > .inner > :nth-child(3) {
	width: calc(60% + (var(--gutters) / 3));
}

.container-component.instance-3 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border-color: #212121;
	border-style: solid;
	border-top-width: 3px;
	border-left-width: 3px;
	border-right-width: 3px;
}

.container-component.instance-3 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 2rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-3 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

.container-component.instance-3.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-3.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-3.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-3.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
}

.container-component.instance-3.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-3.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-3.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-3.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-3.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-3.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-3.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-3.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.container-component.instance-3.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-3.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
}

.container-component.instance-3.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-3.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-3.columns > .wrapper > .inner > div:first-child, .container-component.instance-3.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > div:last-child, .container-component.instance-3.columns > .wrapper > .inner > div:last-child > .full:first-child {
	border-top-right-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-3.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-8 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border-color: #212121;
	border-style: solid;
	border-width: 3px;
}

.container-component.instance-8 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 2rem;
	--padding-vertical: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.instance-8 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

.container-component.instance-8.default > .wrapper > .inner > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-8.default > .wrapper > .inner > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-8.default > .wrapper > .inner > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-8.columns > .wrapper > .inner {
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}

.container-component.instance-8.columns > .wrapper > .inner > * {
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 100%;
	text-align: var(--alignment);
	padding: 0 0 0 var(--gutters);
}

.container-component.instance-8.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

.container-component.instance-8.columns > .wrapper > .inner > * > *:first-child {
	margin-top: 0 !important;
}

.container-component.instance-8.columns > .wrapper > .inner > * > *:last-child {
	margin-bottom: 0 !important;
}

.container-component.instance-8.columns > .wrapper > .inner > *:first-child {
	margin-left: calc(var(--gutters) * -1);
}

.container-component.instance-8.columns > .wrapper > .inner > *::before {
	border-left: solid 3px #212121;
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 1.5px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

.container-component.instance-8.columns > .wrapper > .inner > *:first-child::before {
	display: none;
}

.container-component.instance-8.default > .wrapper > .inner > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	max-width: none !important;
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
}

.container-component.instance-8.default > .wrapper > .inner > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-8.default > .wrapper > .inner > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.container-component.instance-8.columns > .wrapper > .inner > div > .full {
	margin-left: calc((var(--gutters) * -0.5) + 1.5px);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px - 3px);
}

.container-component.instance-8.columns > .wrapper > .inner > div:first-child > .full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 1.5px);
}

.container-component.instance-8.columns > .wrapper > .inner > div:last-child > .full {
	width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px - 1.5px);
}

.container-component.instance-8.columns > .wrapper > .inner > div > .full:first-child {
	margin-top: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-8.columns > .wrapper > .inner > div > .full:last-child {
	margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.container-component.instance-8.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

.container-component.instance-8.columns > .wrapper > .inner > .full:first-child {
	border-bottom-left-radius: inherit;
	border-top-left-radius: inherit;
}

.container-component.instance-8.columns > .wrapper > .inner > .full:last-child {
	border-bottom-right-radius: inherit;
	border-top-right-radius: inherit;
}

.container-component.instance-8.columns > .wrapper > .inner > .full > .full:first-child:last-child {
	border-radius: inherit;
	height: calc(100% + (var(--padding-vertical) * 2));
}

.container-component.instance-8.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
	border-radius: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
}

.container-component.instance-8 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
}

.container-component.instance-8 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
}

#header {
	margin-bottom: 0rem !important;
}

#footer {
	margin-top: 0rem !important;
}

.buttons-component {
	cursor: default;
	display: flex;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.buttons-component > li {
	max-width: 100%;
	text-align: var(--alignment);
}

.buttons-component > li > a {
	align-items: center;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}

.buttons-component.instance-5 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-5 > li > a {
	display: inline-flex;
	width: auto;
	height: 2.5rem;
	line-height: calc(2.5rem - 4px);
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Space Mono', monospace;
	font-size: 1em;
	font-weight: 400;
	border-radius: 0rem;
	border-color: #000000;
	border-style: solid;
	border-width: 2px;
	box-shadow: 0.287rem 0.41rem 0rem 0rem #262626;
	flex-direction: row-reverse;
	background-color: #B100F0;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-5 > li > a > svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	pointer-events: none;
	width: 1.5em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.25s ease;
}

.buttons-component.instance-5 > li > a > .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

.buttons-component.instance-5 > li > a:hover {
	background-color: #9B02D1 !important;
}

.buttons-component.instance-6 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-6 > li > a {
	display: inline-flex;
	width: auto;
	height: 2.5rem;
	line-height: calc(2.5rem - 4px);
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Space Mono', monospace;
	font-size: 1em;
	font-weight: 400;
	border-radius: 0rem;
	border-color: #000000;
	border-style: solid;
	border-width: 2px;
	box-shadow: 0.287rem 0.41rem 0rem 0rem #262626;
	background-color: #DEAD00;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-6 > li > a > svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	pointer-events: none;
	width: 1.5em;
	margin-left: -0.125em;
	margin-right: calc(0.5em + 0rem);
	transition: fill 0.25s ease;
}

.buttons-component.instance-6 > li > a > .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

.buttons-component.instance-6 > li > a:hover {
	background-color: #C49900 !important;
}

.buttons-component.instance-1 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-1 > li > a {
	display: inline-flex;
	width: auto;
	height: 2.5rem;
	line-height: calc(2.5rem - 4px);
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Space Mono', monospace;
	font-size: 1em;
	font-weight: 400;
	border-radius: 0rem;
	border-color: #000000;
	border-style: solid;
	border-width: 2px;
	box-shadow: 0.287rem 0.41rem 0rem 0rem #262626;
	background-color: #0060F0;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-1 > li > a > svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	pointer-events: none;
	width: 1.5em;
	margin-left: -0.125em;
	margin-right: calc(0.5em + 0rem);
	transition: fill 0.25s ease;
}

.buttons-component.instance-1 > li > a > .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

.buttons-component.instance-1 > li > a:hover {
	background-color: #004ABA !important;
}

.buttons-component.instance-4 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-4 > li > a {
	display: inline-flex;
	width: auto;
	height: 2.5rem;
	line-height: calc(2.5rem - 4px);
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Space Mono', monospace;
	font-size: 1em;
	font-weight: 400;
	border-radius: 0rem;
	border-color: #000000;
	border-style: solid;
	border-width: 2px;
	box-shadow: 0.287rem 0.41rem 0rem 0rem #262626;
	background-color: #696969;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-4 > li > a > svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	pointer-events: none;
	width: 1.5em;
	margin-left: -0.125em;
	margin-right: calc(0.5em + 0rem);
	transition: fill 0.25s ease;
}

.buttons-component.instance-4 > li > a > .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

.buttons-component.instance-4 > li > a:hover {
	background-color: #A6A6A6 !important;
}

.buttons-component.instance-3 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-3 > li > a {
	display: inline-flex;
	width: auto;
	height: 2.5rem;
	line-height: calc(2.5rem - 4px);
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Space Mono', monospace;
	font-size: 1em;
	font-weight: 400;
	border-radius: 0rem;
	border-color: #000000;
	border-style: solid;
	border-width: 2px;
	box-shadow: 0.287rem 0.41rem 0rem 0rem #262626;
	flex-direction: row-reverse;
	background-color: #FF007A;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.instance-3 > li > a > svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	pointer-events: none;
	width: 1.5em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0rem);
	transition: fill 0.25s ease;
}

.buttons-component.instance-3 > li > a > .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

.buttons-component.instance-3 > li > a:hover {
	background-color: #E6026F !important;
}

.buttons-component.instance-2 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.instance-2 > li > a {
	display: inline-flex;
	width: auto;
	height: 1.5rem;
	line-height: calc(1.5rem - 4px);
	padding: 0 0.75rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Space Mono', monospace;
	font-size: 0.75em;
	font-weight: 700;
	border-radius: 0rem;
	border-color: #000000;
	border-style: solid;
	border-width: 2px;
	box-shadow: 0.287rem 0.41rem 0rem 0rem #262626;
	background-color: #616161;
	color: #FFFFFF;
	transition: transform 0.5s ease, color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}

.buttons-component.instance-2 > li > a > svg {
	display: block;
	fill: #1CC700;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	pointer-events: none;
	width: 1em;
	margin-left: -0.125em;
	margin-right: calc(0.5em + 0rem);
	transition: fill 0.5s ease;
}

.buttons-component.instance-2 > li > a > .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

.buttons-component.instance-2 > li > a:hover {
	transform: scale(1.2);
}

.icons-component {
	display: flex;
	flex-wrap: wrap;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
}

.icons-component > li {
	position: relative;
	z-index: 1;
}

.icons-component > li > a {
	align-items: center;
	display: flex;
	justify-content: center;
}

.icons-component > li > a > svg {
	display: block;
	pointer-events: none;
	position: relative;
}

.icons-component > li > a + svg {
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.icons-component > li > a > .label {
	display: none;
}

.icons-component.instance-2 {
	justify-content: flex-start;
	font-size: 2.375em;
	gap: 0rem;
}

.icons-component.instance-2 > li > a {
	height: 1em;
	width: 1em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.icons-component.instance-2 > li > a > svg {
	height: 100%;
	width: 100%;
	fill: #000000;
	transition: fill 0.25s ease;
}

.icons-component.instance-2 > li > a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

.icons-component.instance-3 {
	justify-content: center;
	font-size: 2.375em;
	gap: 0rem;
}

.icons-component.instance-3 > li > a {
	height: 1em;
	width: 1em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.icons-component.instance-3 > li > a > svg {
	height: 100%;
	width: 100%;
	fill: #000000;
	transition: fill 0.25s ease;
}

.icons-component.instance-3 > li > a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

.list-component {
	display: block;
}

.list-component > ul, .list-component > ol {
	display: inline-block;
	max-width: 100%;
	text-align: var(--site-language-alignment);
	vertical-align: middle;
}

.list-component > ul > li, .list-component > ol > li {
	direction: var(--site-language-direction);
	display: flex;
	position: relative;
}

.list-component > ul > li::before, .list-component > ol > li::before {
	background-repeat: no-repeat;
	content: '';
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	font-variant: normal !important;
	letter-spacing: 0 !important;
	order: 1;
	position: relative;
}

.list-component > ul > li::after, .list-component > ol > li::after {
	content: '';
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	order: 2;
	pointer-events: none;
}

.list-component > ul > li > p, .list-component > ol > li > p {
	flex-grow: 1;
	flex-shrink: 1;
	order: 3;
}

.list-component > ul > li:first-child, .list-component > ol > li:first-child {
	margin-top: 0 !important;
}

.list-component.instance-1 {
	color: #000000;
	font-family: 'Space Mono', monospace;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

.list-component.instance-1 a {
	color: #FFFFFF;
	text-decoration: underline;
}

.list-component.instance-1 a:hover {
	text-decoration: none;
}

.list-component.instance-1 ol {
	width: 100%;
}

.list-component.instance-1 ol > li {
	margin-top: 0.5rem;
	counter-increment: item;
}

.list-component.instance-1 ol > li::after {
	width: 0.625rem;
}

.list-component.instance-1 ol > li::before {
	color: #363636;
	font-family: 'Space Mono', monospace;
	font-size: 1rem;
	font-weight: 400;
	content: counter(item) ".";
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.5rem;
	line-height: 1.5rem;
	min-width: 0.75rem;
}

.list-component.instance-1 ol > li:first-child {
	counter-reset: item 0;
}

.form-component {
	display: flex;
	justify-content: var(--flex-alignment);
}

.form-component > .inner {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-width: 100%;
}

.form-component label {
	direction: var(--site-language-direction);
	display: block;
}

.form-component .field[data-type="label"] + div {
	margin-top: 0 !important;
}

.form-component .field button {
	align-items: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	position: absolute;
}

.form-component .field button > svg {
	height: 50%;
	min-width: 100%;
}

.form-component input[type="text"], .form-component input[type="email"], .form-component input[type="tel"], .form-component input[type="number"], .form-component textarea, .form-component select, .form-component .file, .form-component .date {
	background-color: transparent;
	border: 0;
	direction: var(--site-language-direction);
	display: block;
	outline: 0;
	text-align: var(--site-language-alignment);
	width: 100%;
}

.form-component input[type="tel"] {
	-webkit-appearance: none;
}

.form-component textarea {
	height: 10rem;
	line-height: normal;
}

.form-component select {
	background-repeat: no-repeat;
	background-size: 1rem;
	text-overflow: ellipsis;
	-webkit-appearance: none;
}

.form-component select option {
	background-color: white;
	color: black;
}

.form-component select::-ms-expand {
	display: none;
}

.form-component p {
	display: block;
}

.form-component input[type="checkbox"] {
	-webkit-appearance: none;
	display: block;
	float: left;
	margin-right: -2rem;
	opacity: 0;
	width: 1rem;
	z-index: -1;
}

.form-component input[type="checkbox"] + label {
	align-items: center;
	display: inline-flex;
	line-height: 1.6;
	text-align: var(--site-language-alignment);
}

.form-component input[type="checkbox"] + label::before {
	background-position: center;
	background-repeat: no-repeat;
	content: '';
	cursor: pointer;
	display: inline-block;
	flex-grow: 0;
	flex-shrink: 0;
	vertical-align: middle;
}

.form-component input[type="number"] {
	-webkit-appearance: none;
	-moz-appearance: textfield;
}

.form-component input[type="number"]::-webkit-inner-spin-button, .form-component input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

.form-component .number {
	position: relative;
}

.form-component .number > input[type="number"] {
	text-align: center;
}

.form-component .field .number > button > svg {
	height: 40%;
}

.form-component .file {
	position: relative;
}

.form-component .file > input[type="file"] {
	cursor: pointer;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.form-component .file[data-filename]::before {
	background-repeat: no-repeat;
	content: attr(data-filename);
	display: block;
	height: 100%;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

.form-component .file[data-filename=""]::before {
	background-image: none !important;
	content: attr(data-placeholder);
	padding-left: 0 !important;
}

.form-component .field .file > button > svg {
	height: 53%;
}

.form-component .date {
	overflow: hidden;
	position: relative;
}

.form-component .date input[type="date"] {
	cursor: pointer;
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100vw;
}

.form-component .date[data-value]::before {
	background-repeat: no-repeat;
	display: block;
	height: 100%;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

.form-component .date:not([data-value=""])::before {
	content: attr(data-value);
}

.form-component .date[data-value=""]::before {
	content: attr(data-placeholder);
}

.form-component .field .date > button > svg {
	height: 60%;
}

.form-component .actions {
	max-width: 100%;
}

.form-component .actions button {
	align-items: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

.form-component .actions button:disabled {
	cursor: default;
	opacity: 0.35;
	pointer-events: none;
}

@keyframes button-spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.form-component.instance-1:not(:first-child) {
	margin-top: 1rem !important;
}

.form-component.instance-1:not(:last-child) {
	margin-bottom: 1rem !important;
}

.form-component.instance-1 > .inner > * {
	margin: 0 0 0 1rem;
}

.form-component.instance-1 > .inner > :first-child {
	margin: 0;
}

.form-component.instance-1 > .inner {
	width: 19rem;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: var(--flex-alignment);
}

.form-component.instance-1 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Space Mono', monospace;
	font-weight: 700;
	color: #FFFFFF;
}

.form-component.instance-1 .field button {
	background-size: 1rem;
	height: calc(2rem - 4px);
	width: calc(2rem - 4px);
	border-radius: 0rem;
	border-color: #212121;
	border-style: solid;
	border-width: 1px;
	background-color: #00BF6F;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.form-component.instance-1 .field button:hover {
	background-color: #009657;
}

.form-component.instance-1 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.form-component.instance-1 input[type="text"], .form-component.instance-1 input[type="email"], .form-component.instance-1 input[type="tel"], .form-component.instance-1 input[type="number"], .form-component.instance-1 textarea, .form-component.instance-1 select, .form-component.instance-1 .file, .form-component.instance-1 .date {
	font-size: 0.75em;
	font-family: 'Space Mono', monospace;
	font-weight: 400;
	border-radius: 0rem;
	color: #000000;
	background-color: #FFFFFF;
	border-color: #212121;
	border-style: solid;
	border-width: 2px;
	box-shadow: 0.287rem 0.41rem 0rem 0rem #242424;
}

.form-component.instance-1 input[type="text"], .form-component.instance-1 input[type="email"], .form-component.instance-1 input[type="tel"], .form-component.instance-1 input[type="number"], .form-component.instance-1 select, .form-component.instance-1 .file, .form-component.instance-1 .date {
	height: 2.5rem;
	padding: 0 0.875rem;
	line-height: calc(2.5rem - 4px);
}

.form-component.instance-1 textarea {
	padding: 0.875rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.6125rem;
}

.form-component.instance-1 select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='504' height='552' preserveAspectRatio='none' viewBox='0 0 504 552'%3E%3Cpath d='M483.9,210.9L252,442.9L20.1,210.9l67.9-67.9L252,307.1l164.1-164.1L483.9,210.9z' fill='%23000000' /%3E%3C/svg%3E");
	background-position: calc(100% - 0.875rem) center;
	padding-right: 2.625rem;
}

.form-component.instance-1 input[type="checkbox"] + label::before {
	border-radius: 0rem;
	color: #000000;
	background-color: #FFFFFF;
	border-color: #212121;
	border-style: solid;
	border-width: 2px;
	box-shadow: 0.287rem 0.41rem 0rem 0rem #242424;
	background-size: calc(1.0625rem - 4px);
	height: 1.875rem;
	width: 1.875rem;
	margin-right: 0.9375rem;
}

.form-component.instance-1 input[type="checkbox"]:checked + label::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' preserveAspectRatio='none' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%23000000' /%3E%3C/svg%3E");
}

.form-component.instance-1 .number > input[type="number"] {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.form-component.instance-1 .number > button.decrement {
	bottom: calc(0.25rem + 2px);
	left: calc(0.25rem + 2px);
}

.form-component.instance-1 .number > button.increment {
	bottom: calc(0.25rem + 2px);
	right: calc(0.25rem + 2px);
}

.form-component.instance-1 .file::before {
	width: calc(100% - 3.375rem);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M27.4,4.5c-0.4-0.4-0.8-0.7-1.5-0.9c-0.6-0.3-1.2-0.4-1.7-0.4H7.1c-0.5,0-0.9,0.2-1.3,0.5S5.3,4.5,5.3,5.1v30.7 c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h25.8c0.5,0,0.9-0.2,1.3-0.5c0.4-0.4,0.5-0.8,0.5-1.3V13.7c0-0.5-0.1-1.1-0.4-1.7 c-0.3-0.6-0.6-1.1-0.9-1.5L27.4,4.5z M25.7,6.2l6,6c0.2,0.2,0.3,0.4,0.4,0.8h-7.2V5.8C25.3,5.9,25.5,6.1,25.7,6.2z M7.7,35.2V5.7 h14.7v8c0,0.5,0.2,0.9,0.5,1.3c0.4,0.4,0.8,0.5,1.3,0.5h8v19.7H7.7z' style='opacity: 0.375' fill='%23000000' /%3E%3C/svg%3E");
	background-size: 0.75rem;
	background-position: left;
	padding-left: 1.05rem;
}

.form-component.instance-1 .file > button {
	bottom: 0.25rem;
	right: 0.25rem;
}

.form-component.instance-1 .date::before {
	width: calc(100% - 3.375rem);
}

.form-component.instance-1 .date > button {
	bottom: 0.25rem;
	right: 0.25rem;
}

.form-component.instance-1 input[type="checkbox"] + label, .form-component.instance-1 p {
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Space Mono', monospace;
	font-weight: 400;
	color: #000000;
}

.form-component.instance-1 .actions button {
	display: inline-block;
	width: auto;
	height: 2.5rem;
	line-height: calc(2.5rem - 2px);
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Space Mono', monospace;
	font-size: 0.75em;
	font-weight: 700;
	border-radius: 0rem;
	border-color: #212121;
	border-style: solid;
	border-width: 1px;
	box-shadow: 0.287rem 0.41rem 0rem 0rem #242424;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #00BF6F;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

.form-component.instance-1 .actions button:hover {
	background-color: #009657;
}

.form-component.instance-1 > .inner .field {
	flex-grow: 1;
	flex-shrink: 1;
	width: 100%;
}

.form-component.instance-1 > .inner .actions {
	flex-grow: 0;
	flex-shrink: 0;
}

.form-component.instance-1 .actions button::before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.875rem;
	content: '';
	display: block;
	height: 1.875rem;
	left: 50%;
	margin: -0.9375rem 0 0 -0.9375rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 1.875rem;
}

.form-component.instance-1 .actions button.waiting {
	color: transparent;
}

.form-component.instance-1 .actions button.waiting svg {
	fill: transparent;
}

.form-component.instance-1 .actions button.waiting::before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

.form-component.instance-1 ::-webkit-input-placeholder {
	color: #000000;
	opacity: 0.55;
}

.form-component.instance-1 :-moz-placeholder {
	color: #000000;
	opacity: 0.55;
}

.form-component.instance-1 ::-moz-placeholder {
	color: #000000;
	opacity: 0.55;
}

.form-component.instance-1 :-ms-input-placeholder {
	color: #000000;
	opacity: 0.55;
}

.form-component.instance-1 .file[data-filename=""]::before {
	color: #000000;
	opacity: 0.55;
}

.form-component.instance-1 .date[data-value=""]::before {
	color: #000000;
	opacity: 0.55;
}

@media (max-width: 1920px) {
	
}

@media (max-width: 1680px) {
	html {
		font-size: 13pt;
	}
}

@media (max-width: 1280px) {
	html {
		font-size: 13pt;
	}
}

@media (max-width: 1024px) {
	
}

@media (max-width: 980px) {
	html {
		font-size: 11pt;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	
	
	.site-main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 3rem;
		--spacing: 0rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-2rem);
		max-width: calc(100% + 4rem + 0.4725px);
		width: calc(100% + 4rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > header > .full:first-child {
		margin-top: -3rem !important;
	}
	
	.site-main > .inner > footer > .full:last-child {
		margin-bottom: -3rem !important;
	}
	
	.text-component.instance-3 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-6:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.instance-6:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.instance-6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	.text-component.instance-11:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.instance-11:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.instance-11 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	.text-component.instance-12 {
		text-indent: 3rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-13:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.instance-13:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.instance-13 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	.text-component.instance-14 {
		text-indent: 2.25rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-4:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.instance-4:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.instance-4 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	.text-component.instance-8:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.instance-8:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.instance-8 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	.text-component.instance-5 {
		text-indent: 2.25rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-7 {
		text-indent: 2.25rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-18:not(:first-child) {
		margin-top: 0.46875rem !important;
	}
	
	.text-component.instance-18:not(:last-child) {
		margin-bottom: 0.46875rem !important;
	}
	
	.text-component.instance-18 {
		text-indent: 2.25rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-10:not(:first-child) {
		margin-top: 0.46875rem !important;
	}
	
	.text-component.instance-10:not(:last-child) {
		margin-bottom: 0.46875rem !important;
	}
	
	.text-component.instance-10 {
		text-indent: 2.25rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-9:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.instance-9:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.instance-9 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	.text-component.instance-15:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.instance-15:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.instance-15 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	.text-component.instance-17:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	.text-component.instance-17:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	.text-component.instance-17 {
		text-indent: 2.25rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-19:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	.text-component.instance-19:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	.text-component.instance-19 {
		text-indent: 2.25rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-16:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	.text-component.instance-16:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	.text-component.instance-16 {
		text-indent: 2.25rem;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-1:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.instance-1:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.instance-1 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	.text-component.instance-2:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-2:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-2 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.5;
	}
	
	.links-component.instance-1 {
		gap: 0.5rem;
		font-size: 0.75em;
	}
	
	
	
	.container-component.instance-7 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
	}
	
	.container-component.instance-7 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	
	
	
	
	.container-component.instance-2 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1.25rem;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-2.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-2.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-2.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-2.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-6 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-6.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-6.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-6.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-6.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-6.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-4 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-9 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > span:first-child + div::before {
		display: none !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > *::before {
		border-top: solid 3px #212121 !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 1.5px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > *:first-child::before {
		display: none !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > *:last-child::before {
		display: block !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 1.5px) !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 1.5px) !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-9.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-9.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-9.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-9.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-9.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-9 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-9 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-9 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.instance-3 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-8 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1rem;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > span:first-child + div::before {
		display: none !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > *::before {
		border-top: solid 3px #212121 !important;
		height: 0 !important;
		margin-left: 0 !important;
		top: auto !important;
		margin-top: calc((var(--gutters) * -0.5) - 1.5px) !important;
		left: 0 !important;
		width: 100% !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > *:first-child::before {
		display: none !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > *:last-child::before {
		display: block !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc((var(--gutters) * -0.5) + 1.5px) !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc((var(--gutters) * -0.5) + 1.5px) !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-8.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-8.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-8.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-8.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-8 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-8 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#header {
		margin-bottom: 0rem !important;
	}
	
	#footer {
		margin-top: 0rem !important;
	}
	
	.buttons-component.instance-5 {
		gap: 0.75rem;
	}
	
	.buttons-component.instance-5 > li > a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons-component.instance-5 > li > a > svg {
		width: 1.5em;
	}
	
	.buttons-component.instance-6 {
		gap: 0.75rem;
	}
	
	.buttons-component.instance-6 > li > a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons-component.instance-6 > li > a > svg {
		width: 1.5em;
	}
	
	.buttons-component.instance-1 {
		gap: 0.75rem;
	}
	
	.buttons-component.instance-1 > li > a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons-component.instance-1 > li > a > svg {
		width: 1.5em;
	}
	
	.buttons-component.instance-4 {
		gap: 0.75rem;
	}
	
	.buttons-component.instance-4 > li > a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons-component.instance-4 > li > a > svg {
		width: 1.5em;
	}
	
	.buttons-component.instance-3 {
		gap: 0.75rem;
	}
	
	.buttons-component.instance-3 > li > a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons-component.instance-3 > li > a > svg {
		width: 1.5em;
	}
	
	.buttons-component.instance-2 {
		gap: 0.75rem;
	}
	
	.buttons-component.instance-2 > li > a {
		letter-spacing: 0rem;
		font-size: 0.75em;
	}
	
	.buttons-component.instance-2 > li > a > svg {
		width: 1em;
	}
	
	.icons-component.instance-2 {
		font-size: 2.375em;
		gap: 0rem;
	}
	
	.icons-component.instance-3 {
		font-size: 2.375em;
		gap: 0rem;
	}
	
	.list-component.instance-1 {
		letter-spacing: 0rem;
		font-size: 1em;
		line-height: 1.5;
	}
	
	.list-component.instance-1 ol > li::after {
		width: 0.625rem;
	}
	
	.list-component.instance-1 ol > li::before {
		height: 1.5rem;
		line-height: 1.5rem;
		min-width: 0.75rem;
	}
	
	.form-component.instance-1:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.form-component.instance-1:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.form-component.instance-1 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-1 input[type="text"], .form-component.instance-1 input[type="email"], .form-component.instance-1 input[type="tel"], .form-component.instance-1 input[type="number"], .form-component.instance-1 textarea, .form-component.instance-1 select, .form-component.instance-1 .file, .form-component.instance-1 .date {
		font-size: 0.75em;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-1 textarea {
		line-height: 1.5;
		padding-top: 0.6125rem;
	}
	
	.form-component.instance-1 input[type="checkbox"] + label, .form-component.instance-1 p {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	.form-component.instance-1 .actions button {
		letter-spacing: 0rem;
		font-size: 0.75em;
	}
}

@media (max-width: 480px) {
	.site-main > .inner {
		--spacing: 0rem;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	.buttons-component.instance-5 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-5 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-6 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-6 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-1 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-1 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-4 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-4 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.instance-3 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.instance-3 > li > a {
		max-width: 32rem;
		width: 100%;
	}
}

@media (max-width: 360px) {
	.site-main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.25rem;
		--spacing: 0rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-1.5rem);
		max-width: calc(100% + 3rem + 0.4725px);
		width: calc(100% + 3rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > header > .full:first-child {
		margin-top: -2.25rem !important;
	}
	
	.site-main > .inner > footer > .full:last-child {
		margin-bottom: -2.25rem !important;
	}
	
	.text-component.instance-3 {
		font-size: 1em;
	}
	
	.text-component.instance-6 {
		font-size: 1.5em;
	}
	
	.text-component.instance-11 {
		font-size: 1.5em;
	}
	
	.text-component.instance-12 {
		font-size: 1em;
	}
	
	.text-component.instance-13 {
		font-size: 1.5em;
	}
	
	.text-component.instance-14 {
		font-size: 1em;
	}
	
	.text-component.instance-4 {
		font-size: 1.5em;
	}
	
	.text-component.instance-8 {
		font-size: 1.5em;
	}
	
	.text-component.instance-5 {
		font-size: 1em;
	}
	
	.text-component.instance-7 {
		font-size: 1em;
	}
	
	.text-component.instance-18 {
		font-size: 1em;
	}
	
	.text-component.instance-10 {
		font-size: 1em;
	}
	
	.text-component.instance-9 {
		font-size: 1.5em;
	}
	
	.text-component.instance-15 {
		font-size: 1.5em;
	}
	
	.text-component.instance-17 {
		font-size: 1em;
	}
	
	.text-component.instance-19 {
		font-size: 1em;
	}
	
	.text-component.instance-16 {
		font-size: 1em;
	}
	
	.text-component.instance-1 {
		font-size: 1.5em;
	}
	
	.text-component.instance-2 {
		font-size: 0.75em;
	}
	
	.links-component.instance-1 {
		gap: 0.375rem;
		font-size: 0.75em;
	}
	
	.container-component.instance-7 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
	}
	
	.container-component.instance-2 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.9375rem;
	}
	
	.container-component.instance-6 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
	
	.container-component.instance-4 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
	
	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
	
	.container-component.instance-9 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
	}
	
	.container-component.instance-3 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
	
	.container-component.instance-8 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.75rem;
	}
	
	.buttons-component.instance-5 {
		gap: 0.5625rem;
	}
	
	.buttons-component.instance-6 {
		gap: 0.5625rem;
	}
	
	.buttons-component.instance-1 {
		gap: 0.5625rem;
	}
	
	.buttons-component.instance-4 {
		gap: 0.5625rem;
	}
	
	.buttons-component.instance-3 {
		gap: 0.5625rem;
	}
	
	.buttons-component.instance-2 {
		gap: 0.5625rem;
	}
	
	.icons-component.instance-2 {
		gap: 0rem;
	}
	
	.icons-component.instance-3 {
		gap: 0rem;
	}
	
	.list-component.instance-1 {
		font-size: 1em;
	}
	
	.list-component.instance-1 ol > li::after {
		width: 0.625rem;
	}
	
	.list-component.instance-1 ol > li::before {
		height: 1.5rem;
		line-height: 1.5rem;
		min-width: 0.75rem;
	}
}