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}

*, *::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;
}

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

: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: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.site-main {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	--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;
	transition: opacity 0.5s ease 0s,filter 0.5s ease 0s;
}

.site-main > .inner {
	--padding-horizontal: 1rem;
	--padding-vertical: 1rem;
	--spacing: 0.75rem;
	--width: 35rem;
	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);
}

.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: 0;
	margin-left: calc(var(--padding-horizontal) * -1);
	right: auto;
}

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

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

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

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

.site-main > .inner > .active {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

body.is-loading .site-main {
	filter: blur(0.10625rem);
	opacity: 0;
}

body #loader {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: block;
	height: 6rem;
	left: calc(50% - 3rem);
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: calc(50% - 3rem);
	transition: opacity 1s ease, visibility 1s;
	visibility: hidden;
	width: 6rem;
	z-index: 100000;
}

body.with-loader #loader {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUgeyBmaWxsOiB0cmFuc3BhcmVudDsgc3Ryb2tlOiAjODA4MDgwODA7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIgdmVjdG9yLWVmZmVjdD0ibm9uLXNjYWxpbmctc3Ryb2tlIiAvPjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgYXR0cmlidXRlVHlwZT0iWE1MIiB0eXBlPSJyb3RhdGUiIGZyb209IjAgNDggNDgiIHRvPSIzNjAgNDggNDgiIGR1cj0iMXMiIHJlcGVhdER1cj0iaW5kZWZpbml0ZSIgLz48L2c+PC9zdmc+');
	opacity: 1;
	transform: scale(1.0);
	visibility: visible;
}

body.is-loading {
	pointer-events: none;
}

body.is-playing.with-loader #loader {
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.25s ease, transform 0.75s ease, visibility 0.25s;
	visibility: hidden;
}

.site-main > .inner > header, .site-main > .inner > footer {
	transition: opacity 0.125s ease-in-out 0.1875s,filter 0.25s ease-in-out 0.1875s,visibility 0.125s linear 0.1875s;
}

.site-main > .inner > header.hidden, .site-main > .inner > footer.hidden {
	filter: blur(0.10625);
	opacity: 0;
	transition: opacity 0.125s ease-in-out,visibility 0.125s;
	visibility: hidden;
}

.site-main > .inner > section {
	transition: opacity 0.25s ease-in-out 0.125s,filter 0.25s ease-in-out 0.125s,min-height 0.125s ease-in-out,max-height 0.125s ease-in-out;
}

.site-main > .inner > section.inactive {
	filter: blur(0.10625rem);
	opacity: 0;
	transition: opacity 0.125s ease-in-out,filter 0.125s ease-in-out;
}

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-20 > .frame {
	width: 2rem;
	transition: none;
}

.image-component.instance-20 > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	transition: none;
}

.image-component.instance-7:not(:first-child) {
	margin-top: 1.25rem !important;
}

.image-component.instance-7:not(:last-child) {
	margin-bottom: 1.25rem !important;
}

.image-component.instance-7 > .frame {
	width: 2.5rem;
	transition: none;
}

.image-component.instance-7 > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	transition: none;
}

.image-component.style-1 > .frame {
	width: 2.25rem;
	border-color: rgba(0,0,0,0.188);
	border-style: solid;
	border-width: 1px;
	transition: none;
}

.image-component.style-1 > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	transition: none;
}

.image-component.instance-3 > .frame {
	width: 20rem;
	transition: none;
}

.image-component.instance-3 > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	transition: none;
}

.image-component.instance-2 > .frame {
	width: 20rem;
	transition: none;
}

.image-component.instance-2 > .frame > img {
	-webkit-touch-callout: none;
	user-select: none;
	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-5:not(:first-child) {
	margin-top: 0.5rem !important;
}

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

.text-component.instance-5 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-5 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-19 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-19 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-7 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1;
	font-weight: 400;
}

.text-component.instance-7 a:hover {
	color: #000000;
}

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

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

.text-component.instance-7 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-7 a {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.style-1 {
	text-align: left;
	color: #000000;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1;
	font-weight: 400;
}

.text-component.style-1 a:hover {
	color: rgba(0,0,0,0.671);
}

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

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

.text-component.instance-42 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-42 a {
	font-family: "Helvetica", arial, sans-serif;
}

.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 {
	color: #000000;
	font-family: 'Archivo', sans-serif;
	letter-spacing: 0.075rem;
	width: calc(100% + 0.075rem);
	font-size: 1em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-13 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-21 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-21 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-15 {
	text-align: left;
	color: #000000;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1;
	font-weight: 400;
}

.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-15 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.style-2 {
	text-align: left;
	color: #000000;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1;
	font-weight: 400;
}

.text-component.style-2 a:hover {
	color: rgba(0,0,0,0.671);
}

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

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

.text-component.instance-12 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-12 a {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-35 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-20 {
	font-family: "Helvetica", arial, sans-serif;
	display: block;
	width: max-content;
}

.text-component.instance-20 a {
	font-family: "Helvetica", arial, sans-serif;
	display: block;
	width: max-content;
}

.text-component.instance-6 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-6 a {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-23 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-23 a {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-24 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-24 a {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-25 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-25 a {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-26 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-26 a {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-29 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-29 a {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-30 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-30 a {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-34 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-34 a {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-1 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-18 {
	font-family: "Helvetica", arial, sans-serif;
}

.text-component.instance-18 a {
	font-family: "Helvetica", arial, sans-serif;
}

.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 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1;
	font-weight: 400;
}

.text-component.instance-9 a:hover {
	color: #000000;
}

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

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

.text-component.instance-9 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-27 {
	color: #000000;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1.375;
	font-weight: 400;
}

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

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

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

.text-component.instance-27 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-28 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.5em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-28 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-3 {
	color: #000000;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1.375;
	font-weight: 400;
}

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

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

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

.text-component.instance-3 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-33 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.5em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-33 {
	font-family: "Helvetica", arial, sans-serif;
}

.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 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-2 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-31 {
	color: #000000;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1.375;
	font-weight: 400;
}

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

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

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

.text-component.instance-31 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-4 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.5em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-4 {
	font-family: "Helvetica", arial, sans-serif;
}

.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 {
	color: #000000;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.instance-8 a:hover {
	color: rgba(0,0,0,0.671);
}

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

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

.text-component.instance-8 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-11 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.5em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-11 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-16 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.5em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-16 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-17 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.5em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-17 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-32 {
	color: #000000;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.75em;
	line-height: 1.375;
	font-weight: 400;
}

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

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

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

.text-component.instance-32 {
	font-family: "Helvetica", arial, sans-serif;
}

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

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

.text-component.instance-36 {
	color: rgba(0,0,0,0.459);
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.5em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

.text-component.instance-36 {
	font-family: "Helvetica", arial, sans-serif;
}

.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-8:not(:first-child) {
	margin-top: 0rem !important;
}

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

.container-component.instance-8 > .wrapper {
	display: inline-block;
	width: 75rem;
	background-color: transparent;
}

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

.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: flex-end;
}

.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.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);
	max-width: none !important;
	width: calc(100% + var(--gutters) + 0.4725px);
}

.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);
}

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

.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 > div:first-child, .container-component.instance-8.columns > .wrapper > .inner > div:first-child > .full:last-child {
	border-bottom-left-radius: inherit;
}

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

.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.style-1:not(:first-child) {
	margin-top: 0.5rem !important;
}

.container-component.style-1:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.style-1 > .wrapper {
	display: inline-block;
	width: 15rem;
	background-color: transparent;
}

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

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

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

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

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

.container-component.style-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.style-1.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

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

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

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

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

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

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

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

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

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

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

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

.container-component.instance-15 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-15 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-2 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-2 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-16 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-16 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-17 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-17 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-18 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-18 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-19 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-19 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-20 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-20 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-21 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-21 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-22 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-22 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

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

.container-component.instance-23:not(:last-child) {
	margin-bottom: 0.25rem !important;
}

.container-component.instance-23 > .wrapper {
	display: inline-block;
	width: 15rem;
	background-color: transparent;
	border-color: rgba(0,0,0,0.125);
	border-style: dashed;
	border-width: 1px;
}

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

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

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

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

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

.container-component.instance-23.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-23.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

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

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

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

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

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

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

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

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

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

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

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

.container-component.instance-5 > .wrapper > .inner > :nth-child(1) {
	width: 20%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-5 > .wrapper > .inner > :nth-child(2) {
	width: 80%;
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container-component.instance-12:not(:first-child) {
	margin-top: 0rem !important;
}

.container-component.instance-12:not(:last-child) {
	margin-bottom: 1.625rem !important;
}

.container-component.instance-12 > .wrapper {
	display: inline-block;
	width: 75rem;
	background-color: transparent;
}

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

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

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

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

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

.container-component.instance-12.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-12.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-component.style-2:not(:first-child) {
	margin-top: 1.875rem !important;
}

.container-component.style-2:not(:last-child) {
	margin-bottom: 0rem !important;
}

.container-component.style-2 > .wrapper {
	display: inline-block;
	width: 46rem;
	background-color: transparent;
}

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

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

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

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

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

.container-component.style-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.style-2.columns > .wrapper > .inner > * > * {
	margin-bottom: var(--spacing);
	margin-top: var(--spacing);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-component.instance-6 > .wrapper {
	display: inline-block;
	width: 75rem;
	background-color: transparent;
}

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

.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-end;
}

.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:last-child {
	border-bottom-left-radius: inherit;
}

.container-component.instance-6.columns > .wrapper > .inner > div:last-child, .container-component.instance-6.columns > .wrapper > .inner > div:last-child > .full:last-child {
	border-bottom-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%;
}

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

.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.style-1 {
	gap: 0.5rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.025rem;
	margin-right: 0.025rem;
	font-size: 0.75em;
	font-weight: 400;
}

.links-component.style-1:not(:first-child) {
	margin-top: 0rem !important;
}

.links-component.style-1:not(:last-child) {
	margin-bottom: 0rem !important;
}

.links-component.style-1 > li > a {
	color: rgba(0,0,0,0.459);
	text-decoration: none;
}

.links-component.style-1 > li > a:hover {
	color: #000000;
}

.links-component.instance-3 > li.n01 > a:hover {
	color: #000000;
}

.links-component.instance-3 > li.n02 > a:hover {
	color: #000000;
}

.links-component.instance-3 > li.n03 > a:hover {
	color: #000000;
}

.links-component.instance-3 > li.n04 > a:hover {
	color: #000000;
}

.links-component.instance-3 > li.n05 > a:hover {
	color: #000000;
}

.links-component.instance-3 > li > a {
	width: max-content;
	font-family: "Helvetica", arial, sans-serif;
}

.links-component.instance-2 > li.n01 > a:hover {
	color: #000000;
}

.links-component.instance-2 > li.n02 > a:hover {
	color: #000000;
}

.links-component.instance-2 > li.n03 > a:hover {
	color: #000000;
}

.links-component.instance-2 > li.n04 > a:hover {
	color: #000000;
}

.links-component.instance-2 > li > a {
	width: max-content;
	font-family: "Helvetica", arial, sans-serif;
}

.links-component.instance-1 > li.n01 > a:hover {
	color: #000000;
}

.links-component.instance-1 > li.n02 > a:hover {
	color: #000000;
}

.links-component.instance-1 > li > a {
	width: max-content;
	font-family: "Helvetica", arial, sans-serif;
}

.divider-component {
	align-items: center;
	border: 0;
	display: flex;
	justify-content: var(--flex-alignment);
	min-height: 1rem;
	padding: 0;
	position: relative;
	width: 100%;
}

.divider-component::before {
	content: '';
}

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

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

.divider-component.instance-6::before {
	width: 100%;
	height: 1rem;
	background-size: auto 80.1%;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%3E%3Cstyle%3Epath%20%7Bfill%3A%20transparent%3B%7D%3C%2Fstyle%3E%3Cpath%20d%3D%22M254.9%2C382.2c-3.4%2C0-5.1-0.8-7.6-3.4l-101.9-98.7c-25.3-25.3-37.9-49.8-37.9-74.2c0-24.5%2C6.7-43%2C21.1-56.5%20c13.5-13.5%2C32.8-20.2%2C57.3-20.2c6.7%2C0%2C13.5%2C0.8%2C21.1%2C3.4c7.6%2C2.5%2C13.5%2C5.9%2C20.2%2C10.1c5.9%2C4.2%2C10.9%2C7.6%2C16%2C11%20c4.1%2C3.3%2C8.2%2C7.4%2C12.3%2C10.7c4.1-3.3%2C8.2-7.4%2C12.3-10.7c5.1-3.4%2C10.1-6.7%2C16-11c6.7-4.2%2C12.6-7.6%2C20.2-10.1%20c7.6-2.5%2C14.3-3.4%2C21.1-3.4c24.4%2C0%2C43.8%2C6.7%2C57.3%2C20.2c14.3%2C13.5%2C21.1%2C32%2C21.1%2C56.5c0%2C24.5-12.6%2C48.9-37.9%2C74.2l-101.9%2C98.7%20c-2.5%2C2.5-4.2%2C3.4-7.6%2C3.4H254.9z%22%2F%3E%3Cpath%20d%3D%22M511.6%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H511.6z%22%2F%3E%3Cpath%20d%3D%22M-0.4%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H-0.4z%22%2F%3E%3C%2Fsvg%3E');
	background-position: center center;
	background-repeat: repeat-x;
}

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

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

.divider-component.instance-1::before {
	width: 100%;
	height: 1rem;
	background-size: auto 80.1%;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%3E%3Cstyle%3Epath%20%7Bfill%3A%20transparent%3B%7D%3C%2Fstyle%3E%3Cpath%20d%3D%22M254.9%2C382.2c-3.4%2C0-5.1-0.8-7.6-3.4l-101.9-98.7c-25.3-25.3-37.9-49.8-37.9-74.2c0-24.5%2C6.7-43%2C21.1-56.5%20c13.5-13.5%2C32.8-20.2%2C57.3-20.2c6.7%2C0%2C13.5%2C0.8%2C21.1%2C3.4c7.6%2C2.5%2C13.5%2C5.9%2C20.2%2C10.1c5.9%2C4.2%2C10.9%2C7.6%2C16%2C11%20c4.1%2C3.3%2C8.2%2C7.4%2C12.3%2C10.7c4.1-3.3%2C8.2-7.4%2C12.3-10.7c5.1-3.4%2C10.1-6.7%2C16-11c6.7-4.2%2C12.6-7.6%2C20.2-10.1%20c7.6-2.5%2C14.3-3.4%2C21.1-3.4c24.4%2C0%2C43.8%2C6.7%2C57.3%2C20.2c14.3%2C13.5%2C21.1%2C32%2C21.1%2C56.5c0%2C24.5-12.6%2C48.9-37.9%2C74.2l-101.9%2C98.7%20c-2.5%2C2.5-4.2%2C3.4-7.6%2C3.4H254.9z%22%2F%3E%3Cpath%20d%3D%22M511.6%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H511.6z%22%2F%3E%3Cpath%20d%3D%22M-0.4%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H-0.4z%22%2F%3E%3C%2Fsvg%3E');
	background-position: center center;
	background-repeat: repeat-x;
}

.divider-component.instance-3:not(:first-child) {
	margin-top: 0rem !important;
}

.divider-component.instance-3:not(:last-child) {
	margin-bottom: 0rem !important;
}

.divider-component.instance-3::before {
	width: 100%;
	height: 1rem;
	background-size: auto 80.1%;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%3E%3Cstyle%3Epath%20%7Bfill%3A%20transparent%3B%7D%3C%2Fstyle%3E%3Cpath%20d%3D%22M254.9%2C382.2c-3.4%2C0-5.1-0.8-7.6-3.4l-101.9-98.7c-25.3-25.3-37.9-49.8-37.9-74.2c0-24.5%2C6.7-43%2C21.1-56.5%20c13.5-13.5%2C32.8-20.2%2C57.3-20.2c6.7%2C0%2C13.5%2C0.8%2C21.1%2C3.4c7.6%2C2.5%2C13.5%2C5.9%2C20.2%2C10.1c5.9%2C4.2%2C10.9%2C7.6%2C16%2C11%20c4.1%2C3.3%2C8.2%2C7.4%2C12.3%2C10.7c4.1-3.3%2C8.2-7.4%2C12.3-10.7c5.1-3.4%2C10.1-6.7%2C16-11c6.7-4.2%2C12.6-7.6%2C20.2-10.1%20c7.6-2.5%2C14.3-3.4%2C21.1-3.4c24.4%2C0%2C43.8%2C6.7%2C57.3%2C20.2c14.3%2C13.5%2C21.1%2C32%2C21.1%2C56.5c0%2C24.5-12.6%2C48.9-37.9%2C74.2l-101.9%2C98.7%20c-2.5%2C2.5-4.2%2C3.4-7.6%2C3.4H254.9z%22%2F%3E%3Cpath%20d%3D%22M511.6%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H511.6z%22%2F%3E%3Cpath%20d%3D%22M-0.4%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H-0.4z%22%2F%3E%3C%2Fsvg%3E');
	background-position: center center;
	background-repeat: repeat-x;
}

.divider-component.instance-5:not(:first-child) {
	margin-top: 0rem !important;
}

.divider-component.instance-5:not(:last-child) {
	margin-bottom: 0rem !important;
}

.divider-component.instance-5::before {
	width: 100%;
	height: 1rem;
	background-size: auto 80.1%;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%3E%3Cstyle%3Epath%20%7Bfill%3A%20transparent%3B%7D%3C%2Fstyle%3E%3Cpath%20d%3D%22M254.9%2C382.2c-3.4%2C0-5.1-0.8-7.6-3.4l-101.9-98.7c-25.3-25.3-37.9-49.8-37.9-74.2c0-24.5%2C6.7-43%2C21.1-56.5%20c13.5-13.5%2C32.8-20.2%2C57.3-20.2c6.7%2C0%2C13.5%2C0.8%2C21.1%2C3.4c7.6%2C2.5%2C13.5%2C5.9%2C20.2%2C10.1c5.9%2C4.2%2C10.9%2C7.6%2C16%2C11%20c4.1%2C3.3%2C8.2%2C7.4%2C12.3%2C10.7c4.1-3.3%2C8.2-7.4%2C12.3-10.7c5.1-3.4%2C10.1-6.7%2C16-11c6.7-4.2%2C12.6-7.6%2C20.2-10.1%20c7.6-2.5%2C14.3-3.4%2C21.1-3.4c24.4%2C0%2C43.8%2C6.7%2C57.3%2C20.2c14.3%2C13.5%2C21.1%2C32%2C21.1%2C56.5c0%2C24.5-12.6%2C48.9-37.9%2C74.2l-101.9%2C98.7%20c-2.5%2C2.5-4.2%2C3.4-7.6%2C3.4H254.9z%22%2F%3E%3Cpath%20d%3D%22M511.6%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H511.6z%22%2F%3E%3Cpath%20d%3D%22M-0.4%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H-0.4z%22%2F%3E%3C%2Fsvg%3E');
	background-position: center center;
	background-repeat: repeat-x;
}

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

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

.divider-component.instance-4::before {
	width: 100%;
	height: 1rem;
	background-size: auto 80.1%;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%3E%3Cstyle%3Epath%20%7Bfill%3A%20transparent%3B%7D%3C%2Fstyle%3E%3Cpath%20d%3D%22M254.9%2C382.2c-3.4%2C0-5.1-0.8-7.6-3.4l-101.9-98.7c-25.3-25.3-37.9-49.8-37.9-74.2c0-24.5%2C6.7-43%2C21.1-56.5%20c13.5-13.5%2C32.8-20.2%2C57.3-20.2c6.7%2C0%2C13.5%2C0.8%2C21.1%2C3.4c7.6%2C2.5%2C13.5%2C5.9%2C20.2%2C10.1c5.9%2C4.2%2C10.9%2C7.6%2C16%2C11%20c4.1%2C3.3%2C8.2%2C7.4%2C12.3%2C10.7c4.1-3.3%2C8.2-7.4%2C12.3-10.7c5.1-3.4%2C10.1-6.7%2C16-11c6.7-4.2%2C12.6-7.6%2C20.2-10.1%20c7.6-2.5%2C14.3-3.4%2C21.1-3.4c24.4%2C0%2C43.8%2C6.7%2C57.3%2C20.2c14.3%2C13.5%2C21.1%2C32%2C21.1%2C56.5c0%2C24.5-12.6%2C48.9-37.9%2C74.2l-101.9%2C98.7%20c-2.5%2C2.5-4.2%2C3.4-7.6%2C3.4H254.9z%22%2F%3E%3Cpath%20d%3D%22M511.6%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H511.6z%22%2F%3E%3Cpath%20d%3D%22M-0.4%2C327.2c-1.9%2C0-2.8-0.5-4.2-1.9l-56.5-55c-14-14.1-21-27.7-21-41.4c0-13.6%2C3.7-24%2C11.7-31.5%20c7.5-7.5%2C18.2-11.3%2C31.8-11.3c3.7%2C0%2C7.5%2C0.5%2C11.7%2C1.9c4.2%2C1.4%2C7.5%2C3.3%2C11.2%2C5.6c3.3%2C2.3%2C6.1%2C4.2%2C8.9%2C6.1c2.3%2C1.8%2C4.5%2C4.1%2C6.8%2C6%20c2.3-1.9%2C4.5-4.1%2C6.8-6c2.8-1.9%2C5.6-3.8%2C8.9-6.1c3.7-2.4%2C7-4.2%2C11.2-5.6c4.2-1.4%2C7.9-1.9%2C11.7-1.9c13.5%2C0%2C24.3%2C3.8%2C31.8%2C11.3%20c7.9%2C7.5%2C11.7%2C17.9%2C11.7%2C31.5c0%2C13.6-7%2C27.3-21%2C41.4l-56.5%2C55c-1.4%2C1.4-2.3%2C1.9-4.2%2C1.9H-0.4z%22%2F%3E%3C%2Fsvg%3E');
	background-position: center center;
	background-repeat: repeat-x;
}

.video-component {
	position: relative;
}

.video-component > .frame {
	background-color: #000000;
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: top;
}

.video-component > .frame.with-overlay::before, .video-component > .frame.with-overlay::after {
	bottom: 0px;
	content: '';
	height: 100%;
	left: 0px;
	pointer-events: none;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 100%;
}

.video-component > .frame.with-overlay::before {
	background-color: transparent;
	background-image: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
	z-index: 1;
}

.video-component > .frame.with-overlay::after {
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22100%22%20height%3D%22100%22%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2248%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%224%22/%3E%3Cpolygon%20points%3D%2240%2C30%2070%2C50%2040%2C70%22%20fill%3D%22white%22/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: clamp(1rem, 3.5rem, 25%);
	opacity: 0.75;
	transition: opacity 0.125s ease-in-out;
	z-index: 2;
}

.video-component > .frame.with-overlay:hover::after {
	opacity: 1.0;
}

.video-component.is-active > .frame.with-overlay::before {
	background-color: #000000;
	transition: background-color 0.25s ease-in-out;
}

.video-component.is-active > .frame.with-overlay::after {
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
}

.video-component > .frame > .player {
	border-radius: inherit;
	bottom: 0px;
	height: 100%;
	left: 0px;
	object-fit: cover;
	object-position: center;
	opacity: 1;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 100%;
}

.video-component > .frame > .player.thumbnail {
	cursor: pointer;
	object-fit: cover !important;
	object-position: center !important;
	user-select: none;
}

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

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

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

.video-component.instance-2 > .frame {
	border-radius: 0rem;
	width: 20rem;
	background-color: #FFFFFF;
}

.video-component.instance-2 > .frame {
	aspect-ratio: 1.4545454545455;
}

.video-component.instance-2 > .frame > .player {
	object-fit: contain;
}

.video-component.instance-3 > .frame {
	border-radius: 0rem;
	width: 20rem;
	background-color: #FFFFFF;
}

.video-component.instance-3 > .frame {
	aspect-ratio: 1.4545454545455;
}

.video-component.instance-3 > .frame > .player {
	object-fit: contain;
}

.video-component.instance-4 > .frame {
	border-radius: 0rem;
	width: 20rem;
}

.video-component.instance-4 > .frame {
	aspect-ratio: 1.4545454545455;
}

.video-component.instance-4 > .frame > .player {
	object-fit: cover;
	object-position: center;
}

/* Social links "see more" button */
.social-more-btn {
	background: none;
	border: none;
	padding: 0;
	margin: 0 0 0 0.5rem;
	cursor: pointer;
	font-family: "Helvetica", arial, sans-serif;
	font-size: inherit;
	color: rgba(0,0,0,0.459);
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline;
}

.social-more-btn:hover {
	color: #000000;
}

.social-more-text {
	font-size: inherit;
	letter-spacing: inherit;
}

/* Blog filter buttons - reduce spacing between filters and blog posts */
#blog-filters {
	margin-bottom: 0 !important;
}

/* Remove top margin from first blog post after filters - override the :not(:first-child) rule */
#blog-section .container-component.first-blog-post.style-2 {
	margin-top: 0.75rem !important;
}

.blog-filter {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease;
	margin-right: 0.5rem;
}

.blog-filter:last-child {
	margin-right: 0;
}

.blog-filter:hover {
	color: #000000;
}

.blog-filter.active {
	color: #000000;
}

/* Hide download button in video controls */
.video-component > .frame > .player::-webkit-media-controls-enclosure {
	overflow: hidden;
}

.video-component > .frame > .player::-webkit-media-controls-panel {
	display: flex !important;
}

.video-component > .frame > .player::-internal-media-controls-download-button {
	display: none !important;
}

.video-component > .frame > .player::-webkit-media-controls-download-button {
	display: none !important;
}

/* Hide controls on videos without controls attribute */
.video-component > .frame > .player:not([controls])::-webkit-media-controls {
	display: none !important;
}

.video-component > .frame > .player:not([controls])::-webkit-media-controls-enclosure {
	display: none !important;
}

.video-component > .frame > .player:not([controls])::-webkit-media-controls-panel {
	display: none !important;
}

@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: 12pt;
	}
	
	
	
	.site-main > .inner {
		--padding-horizontal: 1rem;
		--padding-vertical: 1rem;
		--spacing: 0.75rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-1rem);
		max-width: calc(100% + 2rem + 0.4725px);
		width: calc(100% + 2rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: calc(-1rem);
	}
	
	.site-main > .inner > header > .full:first-child {
		margin-top: -1rem !important;
	}
	
	.site-main > .inner > .active > .full:last-child {
		margin-bottom: -1rem !important;
	}
	
	.image-component.instance-20 > .frame {
		width: 2rem;
	}
	
	.image-component.instance-7:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.image-component.instance-7:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.image-component.instance-7 > .frame {
		width: 2.5rem;
	}
	
	.image-component.style-1 > .frame {
		width: 2.25rem;
	}
	
	.image-component.instance-3 > .frame {
		width: 20rem;
	}
	
	.image-component.instance-2 > .frame {
		width: 20rem;
	}
	
	.text-component.instance-5:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-5:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-5 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1;
	}
	
	.text-component.instance-5 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-19:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-19:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-19 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1;
	}
	
	.text-component.instance-19 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-7:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-7:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-7 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1;
	}
	
	.text-component.instance-7 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-7 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.style-1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.text-component.style-1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.text-component.style-1 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1;
	}
	
	.text-component.instance-42 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-42 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.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 {
		letter-spacing: 0.065625rem;
		width: calc(100% + 0.065625rem);
		font-size: 1em;
		line-height: 1;
	}
	
	.text-component.instance-13 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-21:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-21:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-21 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1;
	}
	
	.text-component.instance-21 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-15:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	.text-component.instance-15:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	.text-component.instance-15 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1;
	}
	
	.text-component.instance-15 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.style-2:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.style-2:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.style-2 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1;
	}
	
	.text-component.instance-12 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-12 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-35 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-20 {
		font-family: "Helvetica", arial, sans-serif;
		display: block;
		width: max-content;
	}
	
	.text-component.instance-20 a {
		font-family: "Helvetica", arial, sans-serif;
		display: block;
		width: max-content;
	}
	
	.text-component.instance-6 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-6 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-23 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-23 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-24 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-24 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-25 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-25 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-26 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-26 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-29 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-29 u {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-30 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-30 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-34 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-34 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-1 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-18 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-18 a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.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 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1;
	}
	
	.text-component.instance-9 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-27:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-27:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-27 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.375;
	}
	
	.text-component.instance-27 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-28:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-28:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-28 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1;
	}
	
	.text-component.instance-28 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-3:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-3:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-3 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.375;
	}
	
	.text-component.instance-3 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-33:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-33:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-33 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1;
	}
	
	.text-component.instance-33 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-2:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-2:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-2 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1;
	}
	
	.text-component.instance-2 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-31:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-31:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-31 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.375;
	}
	
	.text-component.instance-31 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.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 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1;
	}
	
	.text-component.instance-4 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.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 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.375;
	}
	
	.text-component.instance-8 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.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 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1;
	}
	
	.text-component.instance-11 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-16:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-16:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-16 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1;
	}
	
	.text-component.instance-16 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-17:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-17:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-17 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1;
	}
	
	.text-component.instance-17 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-32:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-32:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-32 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.375;
	}
	
	.text-component.instance-32 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.text-component.instance-36:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.text-component.instance-36:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.text-component.instance-36 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.5em;
		line-height: 1;
	}
	
	.text-component.instance-36 {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	
	
	.container-component.instance-8:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container-component.instance-8:not(:last-child) {
		margin-bottom: 2rem !important;
	}
	
	.container-component.instance-8 > .wrapper > .inner {
		--gutters: 0.5rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.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 > *: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 > *:last-child {
		padding-bottom: 0 !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) !important;
	}
	
	.container-component.instance-8.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !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.style-1:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.container-component.style-1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.style-1 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.container-component.instance-15 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-15 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-16 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-16 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-17 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-17 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-18 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-18 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-19 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-19 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-20 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-20 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-21 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-21 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-22 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-22 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	
	
	.container-component.instance-23:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.container-component.instance-23:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	.container-component.instance-23 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
	}
	
	.container-component.instance-5 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	.container-component.instance-5 > .wrapper > .inner > :nth-child(2) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	
	
	.container-component.instance-12:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container-component.instance-12:not(:last-child) {
		margin-bottom: 1.625rem !important;
	}
	
	.container-component.instance-12 > .wrapper > .inner {
		--gutters: 0.5rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-12.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-12.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-12.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-12.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-12.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.style-2:not(:first-child) {
		margin-top: 1.875rem !important;
	}
	
	.container-component.style-2:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.style-2 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	
	
	.container-component.instance-6:not(:first-child) {
		margin-top: 2rem !important;
	}
	
	.container-component.instance-6:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container-component.instance-6 > .wrapper > .inner {
		--gutters: 0.5rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.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;
	}
	
	#header {
		margin-bottom: 2rem !important;
	}
	
	.links-component.style-1 {
		gap: 0.5rem;
		letter-spacing: -0.021875rem;
		margin-right: 0.021875rem;
		font-size: 0.875em;
	}
	
	.links-component.style-1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.links-component.style-1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.links-component.instance-3 > li > a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.links-component.instance-2 > li > a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.links-component.instance-1 > li > a {
		font-family: "Helvetica", arial, sans-serif;
	}
	
	.divider-component.instance-6:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	.divider-component.instance-6:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	.divider-component.instance-6::before {
		width: 100rem;
		height: 1rem;
		background-size: auto 80.1%;
	}
	
	.divider-component.instance-1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.divider-component.instance-1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.divider-component.instance-1::before {
		width: 100rem;
		height: 1rem;
		background-size: auto 80.1%;
	}
	
	.divider-component.instance-3:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	.divider-component.instance-3:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	.divider-component.instance-3::before {
		width: 100rem;
		height: 1rem;
		background-size: auto 80.1%;
	}
	
	.divider-component.instance-5:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	.divider-component.instance-5:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	.divider-component.instance-5::before {
		width: 100rem;
		height: 1rem;
		background-size: auto 80.1%;
	}
	
	.divider-component.instance-4:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	.divider-component.instance-4:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	.divider-component.instance-4::before {
		width: 100rem;
		height: 1rem;
		background-size: auto 80.1%;
	}
	
	.video-component.instance-2 > .frame {
		width: 20rem;
	}
	
	.video-component.instance-3 > .frame {
		width: 20rem;
	}
	
	.video-component.instance-4 > .frame {
		width: 20rem;
	}
}

@media (max-width: 480px) {
	.site-main > .inner {
		--spacing: 0.65625rem;
	}
}

@media (max-width: 360px) {
	.site-main > .inner {
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
		--spacing: 0.5625rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-0.75rem);
		max-width: calc(100% + 1.5rem + 0.4725px);
		width: calc(100% + 1.5rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: calc(-0.75rem);
	}
	
	.site-main > .inner > header > .full:first-child {
		margin-top: -0.75rem !important;
	}
	
	.site-main > .inner > .active > .full:last-child {
		margin-bottom: -0.75rem !important;
	}
	
	.text-component.instance-5 {
		font-size: 0.75em;
	}
	
	.text-component.instance-19 {
		font-size: 0.75em;
	}
	
	.text-component.instance-7 {
		font-size: 0.75em;
	}
	
	.text-component.style-1 {
		font-size: 0.75em;
	}
	
	.text-component.instance-13 {
		font-size: 1em;
	}
	
	.text-component.instance-21 {
		font-size: 0.75em;
	}
	
	.text-component.instance-15 {
		font-size: 0.75em;
	}
	
	.text-component.style-2 {
		font-size: 0.75em;
	}
	
	.text-component.instance-9 {
		font-size: 0.75em;
	}
	
	.text-component.instance-27 {
		font-size: 0.75em;
	}
	
	.text-component.instance-28 {
		font-size: 0.5em;
	}
	
	.text-component.instance-3 {
		font-size: 0.75em;
	}
	
	.text-component.instance-33 {
		font-size: 0.5em;
	}
	
	.text-component.instance-2 {
		font-size: 0.75em;
	}
	
	.text-component.instance-31 {
		font-size: 0.75em;
	}
	
	.text-component.instance-4 {
		font-size: 0.5em;
	}
	
	.text-component.instance-8 {
		font-size: 0.75em;
	}
	
	.text-component.instance-11 {
		font-size: 0.5em;
	}
	
	.text-component.instance-16 {
		font-size: 0.5em;
	}
	
	.text-component.instance-17 {
		font-size: 0.5em;
	}
	
	.text-component.instance-32 {
		font-size: 0.75em;
	}
	
	.text-component.instance-36 {
		font-size: 0.5em;
	}
	
	.container-component.instance-8 > .wrapper > .inner {
		--gutters: 0.375rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.container-component.style-1 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.container-component.instance-23 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-horizontal: 0.5625rem;
		--padding-vertical: 0.5625rem;
	}
	
	.container-component.instance-12 > .wrapper > .inner {
		--gutters: 0.375rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.container-component.style-2 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.container-component.instance-6 > .wrapper > .inner {
		--gutters: 0.375rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.links-component.style-1 {
		gap: 0.5rem;
		font-size: 0.875em;
	}

/* Lightbox/Modal Styles */
.blog-lightbox {
	display: none;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	background-color: rgba(0, 0, 0, 0);
	z-index: 99999 !important;
	opacity: 0;
	transition: opacity 0.3s ease, background-color 0.3s ease;
	cursor: pointer;
	margin: 0 !important;
	padding: 0 !important;
	align-items: center !important;
	justify-content: center !important;
}

.blog-lightbox.active {
	display: flex !important;
	background-color: rgba(0, 0, 0, 0.75) !important;
	opacity: 1 !important;
}

.blog-lightbox-content {
	position: relative;
	max-width: min(45rem, 70vw) !important;
	max-height: 70vh !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: default;
	padding: 1rem;
	padding-bottom: 3rem;
	box-sizing: border-box;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-lightbox.active .blog-lightbox-content {
	opacity: 1 !important;
	transform: scale(1) !important;
}

.blog-lightbox-content img,
.blog-lightbox-content video {
	max-width: 100% !important;
	max-height: 70vh !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
}

.blog-lightbox-content video {
	background-color: #000;
}

.blog-lightbox-close {
	position: absolute;
	bottom: -2.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	color: #ffffff !important;
	font-size: inherit;
	cursor: pointer;
	line-height: inherit;
	padding: 0;
	display: block;
	text-align: center;
	background: none !important;
	border: none !important;
	font-family: inherit;
	text-decoration: underline;
	margin: 0;
	margin-top: 1rem;
}

.blog-lightbox-close,
.blog-lightbox-close * {
	color: #ffffff !important;
}

.blog-lightbox-close:hover {
	color: #ffffff !important;
	opacity: 0.8;
}

@media (max-width: 768px) {
	.blog-lightbox-close {
		bottom: -3rem;
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}
}

	.blog-lightbox-content.clickable {
	cursor: pointer;
}