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: #FAFAFA;
}

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

html {
	font-size: 18pt;
}

u {
	text-decoration: underline;
}

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

em {
	font-style: italic;
}

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

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

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

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

s {
	text-decoration: line-through;
}

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

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

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

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

unloaded-script {
	display: none;
}

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

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

.site-main > .inner {
	--padding-horizontal: 3rem;
	--padding-vertical: 3rem;
	--spacing: 0.75rem;
	--width: 85rem;
	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.instance-33 {
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 700;
}

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

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

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

.text-component.instance-34 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

.text-component.instance-31 {
	color: #6B7280;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

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

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

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

.text-component.instance-29 {
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 700;
}

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

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

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

.text-component.instance-30 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-8 {
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 700;
}

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

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

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

.text-component.instance-10 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

.text-component.instance-1 {
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 700;
}

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

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

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

.text-component.instance-3 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

.text-component.instance-32 {
	color: #6B7280;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

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

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

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

.text-component.instance-2 {
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 700;
}

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

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

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

.text-component.instance-6 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

.text-component.instance-4 {
	color: #6B7280;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 400;
}

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

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

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

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

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

.text-component.instance-15 {
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 700;
}

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

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

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

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

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

.text-component.instance-16 {
	text-align: left;
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 600;
}

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

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

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

.text-component.instance-17 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-18 {
	text-align: left;
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 600;
}

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

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

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

.text-component.instance-19 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-20 {
	text-align: left;
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 600;
}

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

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

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

.text-component.instance-21 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-22 {
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 700;
}

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

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

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

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

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

.text-component.instance-23 {
	text-align: left;
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 600;
}

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

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

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

.text-component.instance-24 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-25 {
	text-align: left;
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 600;
}

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

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

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

.text-component.instance-26 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-27 {
	text-align: left;
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 600;
}

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

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

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

.text-component.instance-28 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-9 {
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 700;
}

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

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

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

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

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

.text-component.instance-11 {
	text-align: left;
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 600;
}

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

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

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

.text-component.instance-12 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-13 {
	text-align: left;
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 600;
}

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

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

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

.text-component.instance-14 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-5 {
	text-align: left;
	color: #111111;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 600;
}

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

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

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

.text-component.instance-7 {
	color: #333333;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

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

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

.text-component.instance-37 {
	text-align: center;
	color: #9CA3AF;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 500;
}

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

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

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

.text-component.instance-36 {
	color: #6B7280;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

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

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

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

.text-component.instance-35 {
	color: #6B7280;
	font-family: 'Inter', sans-serif;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

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

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

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

.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-1 {
	text-align: center;
}

.image-component.instance-1 > .frame {
	width: 15rem;
	transition: none;
}

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

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

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

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

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

.buttons-component.instance-3 > li > a {
	display: inline-flex;
	width: auto;
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Poppins', sans-serif;
	font-size: 1em;
	font-weight: 600;
	border-radius: 0rem;
	box-shadow: 0rem 0.5rem 0.5rem 0rem #F5F7FA;
	background-color: #1A73E8;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

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

.buttons-component.instance-3 > li > a.n01 {
	cursor: pointer;
}

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

.buttons-component.instance-1 > li > a {
	display: inline-flex;
	width: auto;
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: 'Poppins', sans-serif;
	font-size: 1em;
	font-weight: 600;
	border-radius: 0rem;
	box-shadow: 0rem 0.5rem 0.5rem 0rem #F5F7FA;
	background-color: #1A73E8;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

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

.buttons-component.instance-1 > li > a.n01 {
	cursor: pointer;
}

.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-2 > .wrapper {
	display: inline-block;
	width: 75rem;
	background-color: #F5F5F5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-component.instance-1 > .wrapper {
	display: inline-block;
	width: 75rem;
	background-color: #F5F5F5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-component.instance-3 > .wrapper {
	display: inline-block;
	width: 75rem;
	background-color: #F5F5F5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-component.instance-4 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 75rem;
	background-color: #F9FAFB;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-1::before {
	width: 100%;
	background-color: #E5E7EB;
	height: 1px;
	border-radius: 0px;
}

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

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

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

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

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

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	
	
	.site-main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 3rem;
		--spacing: 0.75rem;
	}
	
	.text-component.instance-33 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	.text-component.instance-34 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-31 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.25;
	}
	
	.text-component.instance-29 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	.text-component.instance-30 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-8:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-8:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-8 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	.text-component.instance-10 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-1 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	.text-component.instance-3 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-32 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.25;
	}
	
	.text-component.instance-2 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	.text-component.instance-6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-4 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.25;
	}
	
	.text-component.instance-15:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-15:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-15 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	.text-component.instance-16:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-16:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-16 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-17 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-18:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-18:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-18 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-19 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-20:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-20:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-20 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-21 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-22:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-22:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-22 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	.text-component.instance-23:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-23:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-23 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-24 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-25:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-25:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-25 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-26 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-27:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-27:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-27 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-28 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-9:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-9:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-9 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.25;
	}
	
	.text-component.instance-11:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-11:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-11 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-12 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-13:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-13:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-13 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-14 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-5:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	.text-component.instance-5:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	.text-component.instance-5 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-7 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.25;
	}
	
	.text-component.instance-37:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-37:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-37 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.25;
	}
	
	.text-component.instance-36 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.25;
	}
	
	.text-component.instance-35 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.25;
	}
	
	.image-component.instance-1 > .frame {
		width: 15rem;
	}
	
	.buttons-component.instance-3 {
		gap: 0.75rem;
	}
	
	.buttons-component.instance-3 > li > a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons-component.instance-3 > li > a > svg {
		width: 1em;
	}
	
	.buttons-component.instance-1 {
		gap: 0.75rem;
	}
	
	.buttons-component.instance-1 > li > a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons-component.instance-1 > li > a > svg {
		width: 1em;
	}
	
	
	
	.container-component.instance-2 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-2.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-2.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-2.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-2.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-2.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-3 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-3.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.instance-4 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-4.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-4.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-4 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-4 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.divider-component.instance-1::before {
		width: 100rem;
	}
}

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

@media (max-width: 360px) {
	.site-main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.25rem;
		--spacing: 0.5625rem;
	}
	
	.text-component.instance-33 {
		font-size: 1.5em;
	}
	
	.text-component.instance-34 {
		font-size: 1.125em;
	}
	
	.text-component.instance-31 {
		font-size: 0.875em;
	}
	
	.text-component.instance-29 {
		font-size: 1.5em;
	}
	
	.text-component.instance-30 {
		font-size: 1.125em;
	}
	
	.text-component.instance-8 {
		font-size: 1.5em;
	}
	
	.text-component.instance-10 {
		font-size: 1.125em;
	}
	
	.text-component.instance-1 {
		font-size: 1.5em;
	}
	
	.text-component.instance-3 {
		font-size: 1.125em;
	}
	
	.text-component.instance-32 {
		font-size: 0.875em;
	}
	
	.text-component.instance-2 {
		font-size: 1.5em;
	}
	
	.text-component.instance-6 {
		font-size: 1.125em;
	}
	
	.text-component.instance-4 {
		font-size: 0.875em;
	}
	
	.text-component.instance-15 {
		font-size: 1.5em;
	}
	
	.text-component.instance-16 {
		font-size: 1.25em;
	}
	
	.text-component.instance-17 {
		font-size: 1.125em;
	}
	
	.text-component.instance-18 {
		font-size: 1.25em;
	}
	
	.text-component.instance-19 {
		font-size: 1.125em;
	}
	
	.text-component.instance-20 {
		font-size: 1.25em;
	}
	
	.text-component.instance-21 {
		font-size: 1.125em;
	}
	
	.text-component.instance-22 {
		font-size: 1.5em;
	}
	
	.text-component.instance-23 {
		font-size: 1.25em;
	}
	
	.text-component.instance-24 {
		font-size: 1.125em;
	}
	
	.text-component.instance-25 {
		font-size: 1.25em;
	}
	
	.text-component.instance-26 {
		font-size: 1.125em;
	}
	
	.text-component.instance-27 {
		font-size: 1.25em;
	}
	
	.text-component.instance-28 {
		font-size: 1.125em;
	}
	
	.text-component.instance-9 {
		font-size: 1.5em;
	}
	
	.text-component.instance-11 {
		font-size: 1.25em;
	}
	
	.text-component.instance-12 {
		font-size: 1.125em;
	}
	
	.text-component.instance-13 {
		font-size: 1.25em;
	}
	
	.text-component.instance-14 {
		font-size: 1.125em;
	}
	
	.text-component.instance-5 {
		font-size: 1.25em;
	}
	
	.text-component.instance-7 {
		font-size: 1.125em;
	}
	
	.text-component.instance-37 {
		font-size: 1em;
	}
	
	.text-component.instance-36 {
		font-size: 0.875em;
	}
	
	.text-component.instance-35 {
		font-size: 1em;
	}
	
	.buttons-component.instance-3 {
		gap: 0.5625rem;
	}
	
	.buttons-component.instance-1 {
		gap: 0.5625rem;
	}
	
	.container-component.instance-2 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
	
	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
	
	.container-component.instance-3 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
	
	.container-component.instance-4 > .wrapper > .inner {
		--gutters: 0.5625rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
	}
}