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

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

: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: 15pt;
}

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: none;
}

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

unloaded-script {
	display: none;
}

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

.site-main {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--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;
}

.site-main > .inner {
	--padding-horizontal: 6rem;
	--padding-vertical: 5rem;
	--spacing: 0.125rem;
	--width: 56rem;
	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 > * {
	margin-top: var(--spacing);
	margin-bottom: var(--spacing);
}

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

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

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

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

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

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

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

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

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

.text-component.style-5 {
	color: #141414;
	font-family: 'Hedvig Letters Serif', serif;
	padding-left: calc(6rem * var(--indent-left));
	padding-right: calc(6rem * var(--indent-right));
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 400;
}

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

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

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

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

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

.text-component.style-6 {
	text-align: center;
	max-width: 50rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: #1F1F1F;
	font-family: 'Hedvig Letters Serif', serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

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

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

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

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

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

.text-component.style-17 {
	text-align: left;
	color: #858281;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.875em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.style-17 a:hover {
	color: #E85627;
}

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

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

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

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

.text-component.style-3 {
	text-align: left;
	color: #141414;
	font-family: 'Hedvig Letters Serif', serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.75em;
	line-height: 1;
	font-weight: 400;
}

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

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

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

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

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

.text-component.style-4 {
	text-align: left;
	color: #1F1F1F;
	font-family: 'Hedvig Letters Serif', serif;
	font-size: 1em;
	line-height: 1.625;
	font-weight: 400;
}

.text-component.style-4 a:hover {
	color: #E85627;
}

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

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

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

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

.text-component.style-20 {
	text-align: center;
	max-width: 50rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: #1F1F1F;
	font-family: 'Hedvig Letters Serif', serif;
	font-size: 0.875em;
	line-height: 1.25;
	font-weight: 400;
}

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

.text-component.style-20 a:hover {
	text-decoration: none;
}

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

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

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

.text-component.style-14 {
	text-align: center;
	max-width: 68rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: #1F1F1F;
	font-family: 'Figtree', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.style-14 a:hover {
	color: #E85627;
}

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

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

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

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

.text-component.style-19 {
	text-align: center;
	color: #827E7E;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.style-19 a:hover {
	color: #E85627;
}

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

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

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

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

.text-component.style-21 {
	text-align: left;
	max-width: 68rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #827E7E;
	font-family: 'Source Sans 3', sans-serif;
	padding-left: 6rem;
	padding-right: 0;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.style-21 a:hover {
	color: #E85627;
}

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

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

.text-component.style-7 {
	text-align: left;
	max-width: 50rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #2B2B2B;
	font-family: 'Source Sans 3', sans-serif;
	padding-left: 4.25rem;
	padding-right: 0;
	font-size: 1em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.style-7 a:hover {
	color: #E85627;
}

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

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

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

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

.text-component.style-16 {
	text-align: left;
	color: #141414;
	font-family: 'Hedvig Letters Serif', serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.375em;
	line-height: 1.25;
	font-weight: 400;
}

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

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

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

.text-component.style-9 {
	text-align: left;
	max-width: 50rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #1F1F1F;
	font-family: 'Hedvig Letters Serif', serif;
	font-size: 0.875em;
	line-height: 1.5;
	font-weight: 400;
}

.text-component.style-9 a:hover {
	color: #E85627;
}

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

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

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

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

.text-component.style-13 {
	text-align: left;
	max-width: 50rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #141414;
	font-family: 'Source Sans 3', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1em;
	line-height: 1.375;
	font-weight: 600;
}

.text-component.style-13 a:hover {
	color: #E85627;
}

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

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

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

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

.text-component.style-10 {
	text-align: left;
	color: #141414;
	font-family: 'Source Sans 3', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 0.875em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.style-10 a:hover {
	color: #E85627;
}

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

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

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

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

.text-component.style-12 {
	text-align: left;
	max-width: 50rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #141414;
	font-family: 'Source Sans 3', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.style-12 a:hover {
	color: #E85627;
}

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

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

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

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

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

.buttons-component.style-1 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

.buttons-component.style-1 > li > a {
	display: inline-block;
	width: auto;
	height: 2.625rem;
	line-height: 2.625rem;
	padding: 0 1.3125rem;
	vertical-align: middle;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.875em;
	font-weight: 600;
	border-radius: 0.25rem;
	box-shadow: 0rem 0rem 0.5rem 0rem #EBEBEB;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #FFFFFF;
	color: #141414;
	transition: none;
}

.list-component {
	display: block;
}

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

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

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

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

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

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

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

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

.list-component.style-1 {
	color: #1F1F1F;
	font-family: 'Hedvig Letters Serif', serif;
	font-size: 1em;
	line-height: 1.625;
	font-weight: 400;
	padding-left: calc(1rem * var(--indent-left));
	padding-right: calc(1rem * var(--indent-right));
}

.list-component.style-1 a:hover {
	color: #E85627;
}

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

.list-component.style-1 ul {
	width: 100%;
}

.list-component.style-1 ul > li {
	margin-top: 1.5rem;
}

.list-component.style-1 ul > li::after {
	width: 0.375rem;
}

.list-component.style-1 ul > li::before {
	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%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%231F1F1F%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.625rem;
	line-height: 1.625rem;
	min-width: 0.65625rem;
}

.list-component.style-5:not(:first-child) {
	margin-top: 1.75rem !important;
}

.list-component.style-5:not(:last-child) {
	margin-bottom: 1.75rem !important;
}

.list-component.style-5 {
	color: #1F1F1F;
	font-family: 'Hedvig Letters Serif', serif;
	font-size: 1em;
	line-height: 1;
	font-weight: 400;
	padding-left: calc(4rem * var(--indent-left));
	padding-right: calc(4rem * var(--indent-right));
}

.list-component.style-5 a:hover {
	color: #E85627;
}

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

.list-component.style-5 ul {
	width: 100%;
}

.list-component.style-5 ul > li {
	margin-top: 1rem;
}

.list-component.style-5 ul > li::after {
	width: 0.5rem;
}

.list-component.style-5 ul > li::before {
	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%2040%2040%22%3E%3Cpath%20d%3D%22M20%2C5C11.7%2C5%2C5%2C11.7%2C5%2C20c0%2C8.3%2C6.7%2C15%2C15%2C15c8.3%2C0%2C15-6.7%2C15-15C35%2C11.7%2C28.3%2C5%2C20%2C5z%20M20%2C31c-6.1%2C0-11-4.9-11-11%20S13.9%2C9%2C20%2C9s11%2C4.9%2C11%2C11S26.1%2C31%2C20%2C31z%22%20fill%3D%22%231F1F1F%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1rem;
	line-height: 1rem;
	min-width: 0.46875rem;
}

.list-component.style-4:not(:first-child) {
	margin-top: 1.5rem !important;
}

.list-component.style-4:not(:last-child) {
	margin-bottom: 1.5rem !important;
}

.list-component.style-4 {
	color: #1F1F1F;
	font-family: 'Hedvig Letters Serif', serif;
	font-size: 1em;
	line-height: 0.875;
	font-weight: 400;
	padding-left: calc(1.25rem * var(--indent-left));
	padding-right: calc(1.25rem * var(--indent-right));
}

.list-component.style-4 a:hover {
	color: #E85627;
}

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

.list-component.style-4 ul {
	width: 100%;
}

.list-component.style-4 ul > li {
	margin-top: 1rem;
}

.list-component.style-4 ul > li::after {
	width: 0.625rem;
}

.list-component.style-4 ul > li::before {
	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%2040%2040%22%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%23242424%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 0.25rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.875rem;
	line-height: 0.875rem;
	min-width: 0.65625rem;
}

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

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

.divider-component.instance-2 {
	justify-content: center;
}

.divider-component.instance-2::before {
	width: 100%;
	background-color: #2B2B2B;
	height: 1px;
	border-radius: 0px;
}

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

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

.divider-component.instance-1 {
	justify-content: center;
}

.divider-component.instance-1::before {
	width: 100%;
	background-color: #2B2B2B;
	height: 1px;
	border-radius: 0px;
}

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

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

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

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

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

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

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

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

.image-component.instance-2 > .frame {
	width: 100vw;
	transition: none;
}

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

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

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

.image-component.instance-1 > .frame {
	width: 100vw;
	transition: none;
}

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

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

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

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

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

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

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	
	
	.site-main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.5rem;
		--spacing: 0.125rem;
	}
	
	.text-component.style-5:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.text-component.style-5:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.text-component.style-5 {
		padding-left: calc(0.75rem * var(--indent-left));
		padding-right: calc(0.75rem * var(--indent-right));
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1.125;
	}
	
	.text-component.style-6:not(:first-child) {
		margin-top: 2.5rem !important;
	}
	
	.text-component.style-6:not(:last-child) {
		margin-bottom: 2.5rem !important;
	}
	
	.text-component.style-6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.375;
	}
	
	.text-component.style-17:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.style-17:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.style-17 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.375;
	}
	
	.text-component.style-3:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.style-3:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.style-3 {
		letter-spacing: -0.075rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.125;
	}
	
	.text-component.style-4:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.style-4:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.style-4 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.375;
	}
	
	.text-component.style-20:not(:first-child) {
		margin-top: 2.5rem !important;
	}
	
	.text-component.style-20:not(:last-child) {
		margin-bottom: 2.5rem !important;
	}
	
	.text-component.style-20 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.375;
	}
	
	.text-component.style-14:not(:first-child) {
		margin-top: 0.09375rem !important;
	}
	
	.text-component.style-14:not(:last-child) {
		margin-bottom: 0.09375rem !important;
	}
	
	.text-component.style-14 {
		padding-left: 0.25rem;
		padding-right: 0.25rem;
		letter-spacing: -0.025rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.625;
	}
	
	.text-component.style-19:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.text-component.style-19:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.text-component.style-19 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.style-21:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	.text-component.style-21:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	.text-component.style-21 {
		padding-left: 1.5rem;
		padding-right: 0;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.style-7:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.text-component.style-7:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.text-component.style-7 {
		padding-left: 3rem;
		padding-right: 0;
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.style-16:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.text-component.style-16:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.text-component.style-16 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 1.625em;
		line-height: 1.25;
	}
	
	.text-component.style-9 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.style-13:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.style-13:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.style-13 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.375;
	}
	
	.text-component.style-10:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.style-10:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.style-10 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.375;
	}
	
	.text-component.style-12:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.text-component.style-12:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.text-component.style-12 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.375;
	}
	
	.buttons-component.style-1 {
		gap: 1rem;
	}
	
	.buttons-component.style-1:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.buttons-component.style-1:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.buttons-component.style-1 > li > a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.list-component.style-1:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	.list-component.style-1:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	.list-component.style-1 {
		letter-spacing: 0rem;
		font-size: 1.25em;
		line-height: 1.375;
		padding-left: calc(0rem * var(--indent-left));
		padding-right: calc(0rem * var(--indent-right));
	}
	
	.list-component.style-1 ul > li {
		margin-top: 2rem;
	}
	
	.list-component.style-1 ul > li::before {
		height: 1.71875rem;
		line-height: 1.71875rem;
		min-width: 0.75rem;
	}
	
	.list-component.style-5:not(:first-child) {
		margin-top: 1.3125rem !important;
	}
	
	.list-component.style-5:not(:last-child) {
		margin-bottom: 1.3125rem !important;
	}
	
	.list-component.style-5 {
		letter-spacing: 0rem;
		font-size: 1.25em;
		line-height: 1.375;
		padding-left: calc(2rem * var(--indent-left));
		padding-right: calc(2rem * var(--indent-right));
	}
	
	.list-component.style-5 ul > li::before {
		height: 1.71875rem;
		line-height: 1.71875rem;
		min-width: 0.5625rem;
	}
	
	.list-component.style-4:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	.list-component.style-4:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	.list-component.style-4 {
		letter-spacing: 0rem;
		font-size: 1.25em;
		line-height: 1.375;
		padding-left: calc(0rem * var(--indent-left));
		padding-right: calc(0rem * var(--indent-right));
	}
	
	.list-component.style-4 ul > li::after {
		width: 0.78125rem;
	}
	
	.list-component.style-4 ul > li::before {
		height: 1.71875rem;
		line-height: 1.71875rem;
		min-width: 0.75rem;
	}
	
	.divider-component.instance-2:not(:first-child) {
		margin-top: 2rem !important;
	}
	
	.divider-component.instance-2:not(:last-child) {
		margin-bottom: 2rem !important;
	}
	
	.divider-component.instance-2::before {
		width: 100rem;
	}
	
	.divider-component.instance-1:not(:first-child) {
		margin-top: 2rem !important;
	}
	
	.divider-component.instance-1:not(:last-child) {
		margin-bottom: 2rem !important;
	}
	
	.divider-component.instance-1::before {
		width: 100rem;
	}
	
	.image-component.instance-2:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-2:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-2 > .frame {
		width: 100vw;
	}
	
	.image-component.instance-1:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.image-component.instance-1:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.image-component.instance-1 > .frame {
		width: 100vw;
	}
}

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

@media (max-width: 360px) {
	.site-main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		--spacing: 0.09375rem;
	}
	
	.text-component.style-5 {
		font-size: 2.5em;
	}
	
	.text-component.style-6 {
		font-size: 1.125em;
	}
	
	.text-component.style-17 {
		font-size: 1em;
	}
	
	.text-component.style-3 {
		font-size: 2em;
	}
	
	.text-component.style-4 {
		font-size: 1.25em;
	}
	
	.text-component.style-20 {
		font-size: 1.125em;
	}
	
	.text-component.style-14 {
		font-size: 1.375em;
	}
	
	.text-component.style-19 {
		font-size: 1.125em;
	}
	
	.text-component.style-21 {
		font-size: 1.125em;
	}
	
	.text-component.style-7 {
		font-size: 1.25em;
	}
	
	.text-component.style-16 {
		font-size: 1.625em;
	}
	
	.text-component.style-9 {
		font-size: 1.125em;
	}
	
	.text-component.style-13 {
		font-size: 1em;
	}
	
	.text-component.style-10 {
		font-size: 0.875em;
	}
	
	.text-component.style-12 {
		font-size: 1em;
	}
	
	.buttons-component.style-1 {
		gap: 0.75rem;
	}
	
	.list-component.style-1 {
		font-size: 1.25em;
	}
	
	.list-component.style-1 ul > li::before {
		height: 1.71875rem;
		line-height: 1.71875rem;
		min-width: 0.75rem;
	}
	
	.list-component.style-5 {
		font-size: 1.25em;
	}
	
	.list-component.style-5 ul > li::before {
		height: 1.71875rem;
		line-height: 1.71875rem;
		min-width: 0.5625rem;
	}
	
	.list-component.style-4 {
		font-size: 1.25em;
	}
	
	.list-component.style-4 ul > li::after {
		width: 0.78125rem;
	}
	
	.list-component.style-4 ul > li::before {
		height: 1.71875rem;
		line-height: 1.71875rem;
		min-width: 0.75rem;
	}
}