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

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

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

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

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

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

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

body::before {
	background-attachment: scroll;
	content: '';
	display: block;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: 100vw;
	z-index: 0;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cfilter%20id%3D%22noise%22%3E%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%20%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220.09765625%200%200%200%200%200%200.09765625%200%200%200%200%200%200.09765625%200%200%200%200%200%200.19921875%200%22%20%2F%3E%20%3C%2Ffilter%3E%20%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E');
	background-size: 512px;
	background-position: center;
	background-repeat: repeat;
}

body::after {
	background-color: #1D1B24;
	content: '';
	display: block;
	pointer-events: none;
	position: fixed;
	transform: scale(1);
	z-index: 1;
	height: 0%;
	left: 0;
	top: 0;
	transition: height 1s ease 0s, visibility 1s 0s;
	visibility: hidden;
	width: 100%;
}

body.is-loading::after {
	height: 100%;
	visibility: visible;
}

: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;
	padding: 1rem 1rem 1rem 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#footer {
	margin-top: 5rem !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-3:not(:first-child) {
	margin-top: 5.25rem !important;
}

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

.text-component.style-3 {
	text-align: center;
	color: #D1833B;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 2.125em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.style-3 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.style-3 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.style-3 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.style-3 spoiler-text.active {
	color: #541CCC;
}

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

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

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

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

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

.text-component.style-2 {
	text-align: center;
	max-width: 58rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.225rem;
	width: calc(100% + 0.225rem);
	font-size: 3.25em;
	line-height: 1.875;
	font-weight: 700;
	background-image: linear-gradient(45deg, #B89C82 0%, #E6CBB3 20%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-component.style-2 u {
	text-decoration-color: #C0FF72;
}

.text-component.style-2 mark {
	color: #A761FF;
	background-color: transparent;
}

.text-component.style-2 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.style-2 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.style-2 span.p {
	background-image: linear-gradient(45deg, #B89C82 0%, #E6CBB3 20%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent !important;
}

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

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

.text-component.style-1 {
	text-align: center;
	max-width: 99.625rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	text-indent: 1.25rem;
	letter-spacing: 0.425rem;
	width: calc(100% + 0.425rem);
	font-size: 3.5em;
	line-height: 2;
	font-weight: 700;
}

.text-component.style-1 u {
	text-decoration-color: #C0FF72;
}

.text-component.style-1 mark {
	color: #A761FF;
	background-color: transparent;
}

.text-component.style-1 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.style-1 spoiler-text.active {
	color: #541CCC;
}

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

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

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

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

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

.text-component.instance-1 {
	max-width: 99.625rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	padding-left: calc(1.25rem * var(--indent-left));
	padding-right: calc(1.25rem * var(--indent-right));
	text-indent: 0.875rem;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 700;
}

.text-component.instance-1 u {
	text-decoration-color: #C0FF72;
}

.text-component.instance-1 mark {
	color: #A761FF;
	background-color: transparent;
}

.text-component.instance-1 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-1 spoiler-text.active {
	color: #541CCC;
}

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

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

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

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

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

.text-component.instance-71 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.125rem;
	width: calc(100% + 0.125rem);
	font-size: 0.875em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.instance-71 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-71 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-71 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-71 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-71 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-69 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.125rem;
	width: calc(100% + 0.125rem);
	font-size: 1.125em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.instance-69 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-69 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-69 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-69 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-69 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-70 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.125rem;
	width: calc(100% + 0.125rem);
	font-size: 1.125em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.instance-70 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-70 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-70 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-70 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-70 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-38 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-38 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-38 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-38 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-38 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-38 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-10 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-10 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-10 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-10 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-10 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-30 {
	color: #E6CBB3;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-30 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-30 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-30 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-30 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-29 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-29 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-29 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-29 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-29 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-27 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-27 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-27 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-27 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-27 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-14 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-14 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-14 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-14 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-14 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-12 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-12 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-12 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-12 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-12 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-13 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-13 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-13 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-13 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-13 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-31 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-31 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-31 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-31 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-31 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-32 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-32 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-32 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-32 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-32 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-21 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-21 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-21 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-21 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-21 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-33 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-33 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-33 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-33 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-33 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-39 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-39 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-39 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-39 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-39 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-39 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-52 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.15rem;
	width: calc(100% + 0.15rem);
	font-size: 0.75em;
	line-height: 1.125;
	font-weight: 400;
}

.text-component.instance-52 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-52 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-52 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-52 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-52 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-36 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 0.625em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-36 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-36 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-36 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-36 spoiler-text.active {
	color: #541CCC;
}

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

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

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

.text-component.instance-44 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 0.625em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-44 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-44 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-44 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-44 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-44 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-46 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 0.625em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-46 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-46 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-46 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-46 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-46 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-47 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 0.625em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-47 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-47 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-47 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-47 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-47 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-45 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 0.625em;
	line-height: 2.5;
	font-weight: 400;
}

.text-component.instance-45 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-45 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-45 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-45 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-45 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-50 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.05rem;
	width: calc(100% + 0.05rem);
	font-size: 0.875em;
	line-height: 1.25;
	font-weight: 400;
}

.text-component.instance-50 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-50 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-50 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-50 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-50 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-51 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.15rem;
	width: calc(100% + 0.15rem);
	font-size: 0.75em;
	line-height: 1.125;
	font-weight: 400;
}

.text-component.instance-51 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-51 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-51 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-51 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-51 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.text-component.instance-54 {
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.15rem;
	width: calc(100% + 0.15rem);
	font-size: 0.875em;
	line-height: 1.125;
	font-weight: 400;
}

.text-component.instance-54 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-54 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-54 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-54 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-54 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-60 {
	max-width: 99.625rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	padding-left: calc(1.25rem * var(--indent-left));
	padding-right: calc(1.25rem * var(--indent-right));
	text-indent: 1.25rem;
	letter-spacing: 0.1rem;
	width: calc(100% + 0.1rem);
	font-size: 0.875em;
	line-height: 2;
	font-weight: 700;
}

.text-component.instance-60 u {
	text-decoration-color: #C0FF72;
}

.text-component.instance-60 mark {
	color: #A761FF;
	background-color: transparent;
}

.text-component.instance-60 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-60 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-60 a {
	color: #F07701;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-62 {
	max-width: 99.625rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	padding-left: calc(1.25rem * var(--indent-left));
	padding-right: calc(1.25rem * var(--indent-right));
	text-indent: 1.25rem;
	letter-spacing: 0.1rem;
	width: calc(100% + 0.1rem);
	font-size: 0.875em;
	line-height: 2;
	font-weight: 700;
}

.text-component.instance-62 u {
	text-decoration-color: #C0FF72;
}

.text-component.instance-62 mark {
	color: #A761FF;
	background-color: transparent;
}

.text-component.instance-62 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-62 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-62 a {
	color: #F07701;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-63 {
	max-width: 99.625rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	padding-left: calc(1.25rem * var(--indent-left));
	padding-right: calc(1.25rem * var(--indent-right));
	text-indent: 1.25rem;
	letter-spacing: 0.1rem;
	width: calc(100% + 0.1rem);
	font-size: 0.875em;
	line-height: 2;
	font-weight: 700;
}

.text-component.instance-63 u {
	text-decoration-color: #C0FF72;
}

.text-component.instance-63 mark {
	color: #A761FF;
	background-color: transparent;
}

.text-component.instance-63 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-63 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-63 a {
	color: #F07701;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-66 {
	text-align: center;
	max-width: 99.625rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	text-indent: 1.25rem;
	letter-spacing: 0.1rem;
	width: calc(100% + 0.1rem);
	font-size: 0.875em;
	line-height: 2;
	font-weight: 400;
}

.text-component.instance-66 u {
	text-decoration-color: #C0FF72;
}

.text-component.instance-66 mark {
	color: #A761FF;
	background-color: transparent;
}

.text-component.instance-66 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-66 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-66 a {
	color: #F07701;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-65 {
	text-align: center;
	max-width: 99.625rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	text-indent: 1.25rem;
	letter-spacing: 0.425rem;
	width: calc(100% + 0.425rem);
	font-size: 0.875em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.instance-65 u {
	text-decoration-color: #C0FF72;
}

.text-component.instance-65 mark {
	color: #A761FF;
	background-color: transparent;
}

.text-component.instance-65 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-65 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-65 a {
	color: #F07701;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-72 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.125rem;
	width: calc(100% + 0.125rem);
	font-size: 0.875em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.instance-72 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-72 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-72 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-72 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-72 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-73 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.125rem;
	width: calc(100% + 0.125rem);
	font-size: 0.875em;
	line-height: 1.375;
	font-weight: 400;
}

.text-component.instance-73 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-73 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-73 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-73 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-73 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-4 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-4 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-4 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-4 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-4 spoiler-text.active {
	color: #541CCC;
}

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

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

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

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

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

.text-component.instance-84 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-84 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-84 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-84 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-84 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-84 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-82 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-82 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-82 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-82 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-82 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-82 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-80 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-80 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-80 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-80 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-80 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-80 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-78 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-78 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-78 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-78 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-78 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-78 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-58 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-58 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-58 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-58 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-58 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-58 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-28 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-28 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-28 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-28 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-28 spoiler-text.active {
	color: #541CCC;
}

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

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

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

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

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

.text-component.instance-25 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-25 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-25 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-25 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-25 spoiler-text.active {
	color: #541CCC;
}

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

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

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

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

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

.text-component.instance-23 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-23 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-23 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-23 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-23 spoiler-text.active {
	color: #541CCC;
}

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

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

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

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

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

.text-component.instance-85 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-85 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-85 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-85 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-85 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-85 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-35 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-35 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-35 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-35 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-35 spoiler-text.active {
	color: #541CCC;
}

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

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

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

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

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

.text-component.instance-89 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-89 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-89 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-89 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-89 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-89 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-90 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-90 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-90 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-90 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-90 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-90 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-96 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-96 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-96 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-96 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-96 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-96 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-98 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-98 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-98 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-98 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-98 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-98 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-100 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-100 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-100 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-100 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-100 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-100 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-102 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-102 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-102 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-102 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-102 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-102 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-92 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-92 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-92 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-92 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-92 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-92 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

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

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

.text-component.instance-93 {
	text-align: center;
	color: #E6CBB3;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.instance-93 u {
	text-decoration: none;
	box-shadow: 0 0.125em 0 0 #36A0B7;
}

.text-component.instance-93 mark {
	color: #F07701;
	background-color: transparent;
}

.text-component.instance-93 spoiler-text {
	color: transparent;
	background-color: #FAFF00;
}

.text-component.instance-93 spoiler-text.active {
	color: #541CCC;
}

.text-component.instance-93 a {
	color: #C0FF72;
	text-decoration: underline;
}

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

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

.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-3 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

.buttons-component.style-3 > li > a {
	display: inline-flex;
	width: auto;
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0 1.25rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.225rem;
	padding-left: calc(0.225rem + 1.25rem);
	font-size: 1.25em;
	font-weight: 400;
	border-radius: 3rem;
	justify-content: flex-start;
	color: #FFFFFF;
	border: solid 1px rgba(255,255,255,0.169);
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.buttons-component.style-3 > li > a > .label {
	direction: var(--site-language-direction);
	overflow: hidden;
	flex-grow: 1;
	flex-shrink: 1;
	text-align: right;
	width: 100%;
}

.buttons-component.style-3 > li > a:hover {
	border-color: #FFFFFF !important;
	color: #FFFFFF !important;
	transform: scale(0.975);
}

.buttons-component.style-3 > li > a:hover > svg {
	fill: #FFFFFF !important;
}

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

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

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

.buttons-component.style-2 > li > a {
	display: inline-flex;
	width: 7.75rem;
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.175rem;
	padding-left: calc(0.175rem + 0.5rem);
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 3rem;
	flex-direction: row-reverse;
	color: #FFFFFF;
	border: solid 2px rgba(255,255,255,0.169);
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

.buttons-component.style-2 > li > a:hover {
	border-color: #FFFFFF !important;
	color: #FFFFFF !important;
	transform: scale(0.975);
}

.buttons-component.style-2 > li > a:hover > svg {
	fill: #FFFFFF !important;
}

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

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

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

.buttons-component.style-1 > li > a {
	display: inline-block;
	width: 18.625rem;
	height: auto;
	line-height: 2.375rem;
	padding: 0 1.5625rem;
	vertical-align: middle;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.3rem;
	padding-left: calc(0.3rem + 1.5625rem);
	font-size: 1.75em;
	font-weight: 400;
	border-radius: 2rem;
	border-color: #1E1E1E;
	border-style: solid;
	border-width: 4px;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: calc(0.9765625rem - 4px);
	padding-top: calc(0.9765625rem - 4px);
	white-space: normal;
	text-align: center;
	background-color: #B89C82;
	color: #1E1E1E;
	background-image: linear-gradient(46deg, #E6CBB3 0%, rgba(184,156,130,0.012) 62%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	transition: none;
}

.buttons-component.style-1 > li > a:hover {
	background-color: #C4AB93 !important;
}

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

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

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

.links-component.style-1 {
	--flex-alignment: center;
	--alignment: center;
	gap: 2.75rem;
	flex-direction: row;
	flex-wrap: wrap;
	text-transform: uppercase;
	font-family: 'Arial', sans-serif;
	letter-spacing: 0.275rem;
	margin-right: -0.275rem;
	font-size: 1.375em;
	font-weight: 400;
	text-shadow: 0rem 0rem 0.125rem #3F965D;
}

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

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

.links-component.style-1 > li::before {
	background: rgba(255,255,255,0.169);
	content: '';
	display: block;
	height: 100%;
	left: calc(-1.375rem - 2.5px);
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 5px;
}

.links-component.style-1 > li:first-child::before {
	display: none;
}

.links-component.style-1 > li > a {
	color: rgba(69,255,143,0.89);
	text-decoration: none;
}

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

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

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

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

.links-component.instance-1 > li.n03 > a:hover {
	color: #8BDE59;
}

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

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

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

.container-component.style-1 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 82rem;
	background-color: #211D1D;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-component.style-1 > .frame {
	width: 12.5rem;
	height: 12.5rem;
	border-radius: 0.625rem;
	border-color: #FFFFFF;
	border-style: solid;
	border-width: 3px;
	transition: none;
}

.image-component.style-1 > .frame > img:first-child {
	border-radius: calc(0.625rem - 3px) !important;
}

.image-component.style-1 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

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

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

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

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

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

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

.icons-component.style-1 {
	font-size: 1.5em;
	gap: 1.25rem;
}

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

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

.icons-component.style-1 > li > a {
	border-radius: 100%;
	height: 2em;
	width: 2em;
	border: solid 2px rgba(255,255,255,0.169);
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.icons-component.style-1 > li > a > svg {
	height: 60%;
	width: 60%;
	fill: #FFFFFF;
	transition: fill 0.25s ease;
}

.icons-component.style-1 > li > a:hover {
	border-color: #FFFFFF !important;
	transform: scale(0.94);
}

.icons-component.style-1 > li > a:hover > svg {
	fill: #FFFFFF !important;
}

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

.icons-component.style-1 > li > a:hover + svg {
	transform: scale(0.94);
}

.icons-component.instance-1 > li > a.n01 > svg {
	fill: #1877F2;
}

.icons-component.instance-1 > li > a.n01 {
	border: solid 2px #FCFAFA;
}

.icons-component.instance-1 > li > a.n01:hover {
	border-color: #1877F2 !important;
}

.icons-component.instance-1 > li > a.n01:hover > svg {
	fill: #1877F2 !important;
}

@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: 9pt;
	}
	
	
	
	.site-wrapper {
		padding: 1rem 1rem 1rem 1rem;
	}
	
	.site-main > .inner {
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 2.25rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(0rem);
		max-width: calc(100% + 0rem + 0.4725px);
		width: calc(100% + 0rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > header > .full:first-child {
		margin-top: 0rem !important;
	}
	
	.site-main > .inner > footer > .full:last-child {
		margin-bottom: 0rem !important;
	}
	
	#header {
		margin-bottom: 0rem !important;
	}
	
	#footer {
		margin-top: 5rem !important;
	}
	
	.text-component.style-3:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.style-3:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.style-3 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 2.125em;
		line-height: 1.5;
	}
	
	.text-component.style-2:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	.text-component.style-2:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	.text-component.style-2 {
		letter-spacing: 0.196875rem;
		width: calc(100% + 0.196875rem);
		font-size: 3em;
		line-height: 1.875;
	}
	
	.text-component.style-1:not(:first-child) {
		margin-top: 1.59375rem !important;
	}
	
	.text-component.style-1:not(:last-child) {
		margin-bottom: 1.59375rem !important;
	}
	
	.text-component.style-1 {
		padding-left: 0.9375rem;
		padding-right: 0.9375rem;
		text-indent: 0.9375rem;
		letter-spacing: 0.371875rem;
		width: calc(100% + 0.371875rem);
		font-size: 3em;
		line-height: 2;
	}
	
	.text-component.instance-1:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.text-component.instance-1:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.text-component.instance-1 {
		padding-left: calc(0.9375rem * var(--indent-left));
		padding-right: calc(0.9375rem * var(--indent-right));
		text-indent: 0.65625rem;
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	.text-component.instance-71:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-71:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-71 {
		letter-spacing: 0.109375rem;
		width: calc(100% + 0.109375rem);
		font-size: 0.875em;
		line-height: 1.375;
	}
	
	.text-component.instance-69:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-69:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-69 {
		letter-spacing: 0.109375rem;
		width: calc(100% + 0.109375rem);
		font-size: 1.125em;
		line-height: 1.375;
	}
	
	.text-component.instance-70:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-70:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-70 {
		letter-spacing: 0.109375rem;
		width: calc(100% + 0.109375rem);
		font-size: 1.125em;
		line-height: 1.375;
	}
	
	.text-component.instance-38 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-10 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-30 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-29 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-27 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-14 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-12 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-13 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-31 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-32 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-21 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-33 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-39 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 2.5;
	}
	
	.text-component.instance-52 {
		letter-spacing: 0.13125rem;
		width: calc(100% + 0.13125rem);
		font-size: 0.75em;
		line-height: 1.125;
	}
	
	.text-component.instance-36 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 0.625em;
		line-height: 2.5;
	}
	
	.text-component.instance-44 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 0.625em;
		line-height: 2.5;
	}
	
	.text-component.instance-46 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 0.625em;
		line-height: 2.5;
	}
	
	.text-component.instance-47 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 0.625em;
		line-height: 2.5;
	}
	
	.text-component.instance-45 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 0.625em;
		line-height: 2.5;
	}
	
	.text-component.instance-50 {
		letter-spacing: 0.04375rem;
		width: calc(100% + 0.04375rem);
		font-size: 0.875em;
		line-height: 1.25;
	}
	
	.text-component.instance-51 {
		letter-spacing: 0.13125rem;
		width: calc(100% + 0.13125rem);
		font-size: 0.75em;
		line-height: 1.125;
	}
	
	.text-component.instance-54 {
		letter-spacing: 0.13125rem;
		width: calc(100% + 0.13125rem);
		font-size: 0.875em;
		line-height: 1.125;
	}
	
	.text-component.instance-60:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-60:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-60 {
		padding-left: calc(0.9375rem * var(--indent-left));
		padding-right: calc(0.9375rem * var(--indent-right));
		text-indent: 0.9375rem;
		letter-spacing: 0.0875rem;
		width: calc(100% + 0.0875rem);
		font-size: 0.875em;
		line-height: 2;
	}
	
	.text-component.instance-62:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-62:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-62 {
		padding-left: calc(0.9375rem * var(--indent-left));
		padding-right: calc(0.9375rem * var(--indent-right));
		text-indent: 0.9375rem;
		letter-spacing: 0.0875rem;
		width: calc(100% + 0.0875rem);
		font-size: 0.875em;
		line-height: 2;
	}
	
	.text-component.instance-63:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-63:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-63 {
		padding-left: calc(0.9375rem * var(--indent-left));
		padding-right: calc(0.9375rem * var(--indent-right));
		text-indent: 0.9375rem;
		letter-spacing: 0.0875rem;
		width: calc(100% + 0.0875rem);
		font-size: 0.875em;
		line-height: 2;
	}
	
	.text-component.instance-66:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-66:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-66 {
		padding-left: 0.9375rem;
		padding-right: 0.9375rem;
		text-indent: 0.9375rem;
		letter-spacing: 0.0875rem;
		width: calc(100% + 0.0875rem);
		font-size: 0.875em;
		line-height: 2;
	}
	
	.text-component.instance-65:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-65:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-65 {
		padding-left: 0.9375rem;
		padding-right: 0.9375rem;
		text-indent: 0.9375rem;
		letter-spacing: 0.371875rem;
		width: calc(100% + 0.371875rem);
		font-size: 0.875em;
		line-height: 1.375;
	}
	
	.text-component.instance-72:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-72:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-72 {
		letter-spacing: 0.109375rem;
		width: calc(100% + 0.109375rem);
		font-size: 0.875em;
		line-height: 1.375;
	}
	
	.text-component.instance-73:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-73:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-73 {
		letter-spacing: 0.109375rem;
		width: calc(100% + 0.109375rem);
		font-size: 0.875em;
		line-height: 1.375;
	}
	
	.text-component.instance-4:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-4:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-4 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-84:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-84:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-84 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-82:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-82:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-82 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-80:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-80:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-80 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-78:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-78:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-78 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-58:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-58:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-58 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-28:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-28:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-28 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-25:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-25:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-25 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.text-component.instance-23:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-23:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-23 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-85:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-85:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-85 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-35:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-35:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-35 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-89:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-89:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-89 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-90:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-90:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-90 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-96:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-96:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-96 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-98:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-98:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-98 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-100:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-100:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-100 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-102:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-102:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-102 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-92:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-92:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-92 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.text-component.instance-93:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.text-component.instance-93:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.text-component.instance-93 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	.buttons-component.style-3 {
		gap: 1rem;
	}
	
	.buttons-component.style-3:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	.buttons-component.style-3:not(:last-child) {
		margin-bottom: 2.25rem !important;
	}
	
	.buttons-component.style-3 > li > a {
		letter-spacing: 0.225rem;
		padding-left: calc(0.225rem + 1.25rem);
		font-size: 1.25em;
	}
	
	.buttons-component.style-3 > li > a > svg {
		width: 2.8125em;
	}
	
	.buttons-component.style-2 {
		gap: 0.5rem;
	}
	
	.buttons-component.style-2:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	.buttons-component.style-2:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.buttons-component.style-2 > li > a {
		letter-spacing: 0.375rem;
		padding-left: calc(0.375rem + 0.5rem);
		font-size: 1.375em;
	}
	
	.buttons-component.style-2 > li > a > svg {
		width: 1em;
	}
	
	.buttons-component.style-1 {
		gap: 0rem;
	}
	
	.buttons-component.style-1:not(:first-child) {
		margin-top: 2.5rem !important;
	}
	
	.buttons-component.style-1:not(:last-child) {
		margin-bottom: 2.5rem !important;
	}
	
	.buttons-component.style-1 > li > a {
		letter-spacing: 0.3rem;
		padding-left: calc(0.3rem + 1.5625rem);
		font-size: 1.75em;
	}
	
	.links-component.style-1 {
		gap: 2.5rem;
		letter-spacing: 0.240625rem;
		margin-right: -0.240625rem;
		font-size: 1.375em;
	}
	
	.links-component.style-1:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.links-component.style-1:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.links-component.style-1 > li::before {
		left: calc(-1.25rem - 2.5px);
	}
	
	
	
	.container-component.style-1:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	.container-component.style-1 > .wrapper > .inner {
		--gutters: 0.25rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 3.25rem;
	}
	
	.container-component.style-1.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-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.style-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.style-1.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:first-of-type, .container-component.style-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:last-of-type, .container-component.style-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:first-of-type, .container-component.style-1.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > div:last-of-type, .container-component.style-1.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.style-1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-13 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-13 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-20 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-20 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-12 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-12 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-1 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-1 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-1 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-1 > .wrapper > .inner > :nth-child(4) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(4) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-2 > .wrapper > .inner > :nth-child(5) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-33 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-33 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-34 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-34 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-35 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-35 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-36 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-36 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.image-component.style-1:not(:first-child) {
		margin-top: 1.59375rem !important;
	}
	
	.image-component.style-1:not(:last-child) {
		margin-bottom: 1.59375rem !important;
	}
	
	.image-component.style-1 > .frame {
		width: 12.5rem;
		height: 15.625rem !important;
	}
	
	.image-component.style-1 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.icons-component.style-1 {
		font-size: 1.5em;
		gap: 1.125rem;
	}
	
	.icons-component.style-1:not(:first-child) {
		margin-top: 2.5rem !important;
	}
	
	.icons-component.style-1:not(:last-child) {
		margin-bottom: 2.5rem !important;
	}
}

@media (max-width: 480px) {
	.site-wrapper {
		padding: 0.75rem 0.75rem 0.75rem 0.75rem;
	}
	
	.site-main > .inner {
		--spacing: 1.96875rem;
	}
	
	.buttons-component.style-3 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.style-3 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.style-2 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.style-2 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.style-1 > li > a {
		width: 18.625rem;
	}
	
	
	
	.image-component.style-1 > .frame {
		height: 12.5rem !important;
	}
}

@media (max-width: 360px) {
	.site-wrapper {
		padding: 0.75rem 0.75rem 0.75rem 0.75rem;
	}
	
	.site-main > .inner {
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 1.6875rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-0rem);
		max-width: calc(100% + 0rem + 0.4725px);
		width: calc(100% + 0rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > header > .full:first-child {
		margin-top: -0rem !important;
	}
	
	.site-main > .inner > footer > .full:last-child {
		margin-bottom: -0rem !important;
	}
	
	.text-component.style-3 {
		font-size: 2em;
	}
	
	.text-component.style-2 {
		font-size: 3em;
	}
	
	.text-component.style-1 {
		font-size: 3em;
	}
	
	.text-component.instance-1 {
		font-size: 1.25em;
	}
	
	.text-component.instance-71 {
		font-size: 0.875em;
	}
	
	.text-component.instance-69 {
		font-size: 1.125em;
	}
	
	.text-component.instance-70 {
		font-size: 1.125em;
	}
	
	.text-component.instance-38 {
		font-size: 1.5em;
	}
	
	.text-component.instance-10 {
		font-size: 1.5em;
	}
	
	.text-component.instance-30 {
		font-size: 1.5em;
	}
	
	.text-component.instance-29 {
		font-size: 1.5em;
	}
	
	.text-component.instance-27 {
		font-size: 1.5em;
	}
	
	.text-component.instance-14 {
		font-size: 1.5em;
	}
	
	.text-component.instance-12 {
		font-size: 1.5em;
	}
	
	.text-component.instance-13 {
		font-size: 1.5em;
	}
	
	.text-component.instance-31 {
		font-size: 1.5em;
	}
	
	.text-component.instance-32 {
		font-size: 1.5em;
	}
	
	.text-component.instance-21 {
		font-size: 1.5em;
	}
	
	.text-component.instance-33 {
		font-size: 1.5em;
	}
	
	.text-component.instance-39 {
		font-size: 1.5em;
	}
	
	.text-component.instance-52 {
		font-size: 0.75em;
	}
	
	.text-component.instance-36 {
		font-size: 0.625em;
	}
	
	.text-component.instance-44 {
		font-size: 0.625em;
	}
	
	.text-component.instance-46 {
		font-size: 0.625em;
	}
	
	.text-component.instance-47 {
		font-size: 0.625em;
	}
	
	.text-component.instance-45 {
		font-size: 0.625em;
	}
	
	.text-component.instance-50 {
		font-size: 0.875em;
	}
	
	.text-component.instance-51 {
		font-size: 0.75em;
	}
	
	.text-component.instance-54 {
		font-size: 0.875em;
	}
	
	.text-component.instance-60 {
		font-size: 0.875em;
	}
	
	.text-component.instance-62 {
		font-size: 0.875em;
	}
	
	.text-component.instance-63 {
		font-size: 0.875em;
	}
	
	.text-component.instance-66 {
		font-size: 0.875em;
	}
	
	.text-component.instance-65 {
		font-size: 0.875em;
	}
	
	.text-component.instance-72 {
		font-size: 0.875em;
	}
	
	.text-component.instance-73 {
		font-size: 0.875em;
	}
	
	.text-component.instance-4 {
		font-size: 1em;
	}
	
	.text-component.instance-84 {
		font-size: 1em;
	}
	
	.text-component.instance-82 {
		font-size: 1em;
	}
	
	.text-component.instance-80 {
		font-size: 1em;
	}
	
	.text-component.instance-78 {
		font-size: 1em;
	}
	
	.text-component.instance-58 {
		font-size: 1em;
	}
	
	.text-component.instance-28 {
		font-size: 1em;
	}
	
	.text-component.instance-25 {
		font-size: 1.125em;
	}
	
	.text-component.instance-23 {
		font-size: 1em;
	}
	
	.text-component.instance-85 {
		font-size: 1em;
	}
	
	.text-component.instance-35 {
		font-size: 1em;
	}
	
	.text-component.instance-89 {
		font-size: 1em;
	}
	
	.text-component.instance-90 {
		font-size: 1em;
	}
	
	.text-component.instance-96 {
		font-size: 1em;
	}
	
	.text-component.instance-98 {
		font-size: 1em;
	}
	
	.text-component.instance-100 {
		font-size: 1em;
	}
	
	.text-component.instance-102 {
		font-size: 1em;
	}
	
	.text-component.instance-92 {
		font-size: 1em;
	}
	
	.text-component.instance-93 {
		font-size: 1em;
	}
	
	.buttons-component.style-3 {
		gap: 0.75rem;
	}
	
	.buttons-component.style-2 {
		gap: 0.375rem;
	}
	
	.buttons-component.style-1 {
		gap: 0rem;
	}
	
	.links-component.style-1 {
		gap: 2.5rem;
		font-size: 1.375em;
	}
	
	.links-component.style-1 > li::before {
		left: calc(-1.25rem - 2.5px);
	}
	
	.container-component.style-1 > .wrapper > .inner {
		--gutters: 0.1875rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.4375rem;
	}
	
	.image-component.style-1 > .frame {
		height: 10.9375rem !important;
	}
	
	.icons-component.style-1 {
		gap: 0.84375rem;
	}
}