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

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

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

body:before {
	content: '';
	display: block;
	background-attachment: scroll;
	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.0078125%200%200%200%200%200%200.0078125%200%200%200%200%200%200.01171875%200%200%200%200%200%200.875%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'), linear-gradient(to top, rgba(8,6,10,0.388), rgba(8,6,10,0.388)), url('images/bg.jpg');
	background-size: 512px, auto, cover;
	background-position: center, 0% 0%, center;
	background-repeat: repeat, repeat, repeat;
	background-color: #242222;
}

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

body.is-loading:after {
	opacity: 1;
	visibility: visible;
}

:root {
	--background-height: 100vh;
	--site-language-alignment: left;
	--site-language-direction: ltr;
	--site-language-flex-alignment: flex-start;
	--viewport-height: 100vh;
}

html {
	font-size: 14pt;
}

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

s {
	text-decoration: line-through;
}

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

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

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

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

#main {
	--alignment: center;
	--flex-alignment: center;
	--border-radius-tl: 0;
	--border-radius-tr: 0;
	--border-radius-br: 0;
	--border-radius-bl: 0;
	align-items: center;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	max-width: 100%;
	position: relative;
	text-align: var(--alignment);
	z-index: 1;
	transition: opacity 0.75s ease 0.25s,transform 0.75s ease 0.25s;
}

#main > .inner {
	--padding-horizontal: 4rem;
	--padding-vertical: 2.875rem;
	--spacing: 0rem;
	--width: 86rem;
	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);
}

#main > .inner > header {
	margin-bottom: var(--spacing);
}

#main > .inner > footer {
	margin-top: var(--spacing);
}

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

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

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

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

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

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

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

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

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

#main > .inner > .active > .full:first-child {
	margin-top: -2.875rem !important;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

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

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

body.is-loading #main {
	opacity: 0;
	transform: translateY(1.6875rem);
}

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

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

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

.slideshow-background:after {
	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: 1s;
	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;
}

.slideshow-background.is-loading:after {
	opacity: 0.35;
	z-index: 0;
}

.slideshow-background > div {
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	opacity: 0;
	z-index: -2;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.slideshow-background > .initial {
	transition: none;
}

.slideshow-background > .visible {
	opacity: 1;
}

.slideshow-background > .top {
	z-index: -1;
}

.slideshow-background.instant > div {
	visibility: hidden;
}

.slideshow-background.instant > .visible {
	visibility: visible;
}

.slideshow-background.crossfade > div {
	transition: opacity 2s ease-in-out;
	visibility: hidden;
}

.slideshow-background.crossfade > .visible {
	visibility: visible;
}

.slideshow-background.fade > div {
	transition: opacity 2s ease-in-out;
	visibility: visible;
}

.slideshow-background.fade > .visible {
	visibility: visible;
}

.slideshow-background > .left, .slideshow-background > .right {
	width: 150% !important;
}

.slideshow-background > .up, .slideshow-background > .down {
	height: 150% !important;
}

.slideshow-background > .in, .slideshow-background > .out {
	transform-origin: 50% 50%;
}

.slideshow-background > .left.is-playing {
	animation-name: slideshow-background-left;
}

.slideshow-background > .right.is-playing {
	animation-name: slideshow-background-right;
}

.slideshow-background > .up.is-playing {
	animation-name: slideshow-background-up;
}

.slideshow-background > .down.is-playing {
	animation-name: slideshow-background-down;
}

.slideshow-background > .in.is-playing {
	animation-name: slideshow-background-in;
}

.slideshow-background > .out.is-playing {
	animation-name: slideshow-background-out;
}

.slideshow-background > .slow {
	animation-duration: 60s;
}

.slideshow-background > .normal {
	animation-duration: 45s;
}

.slideshow-background > .fast {
	animation-duration: 30s;
}

@keyframes slideshow-background-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-25%);
	}
}

@keyframes slideshow-background-right {
	from {
		transform: translateX(-25%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes slideshow-background-up {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-25%);
	}
}

@keyframes slideshow-background-down {
	from {
		transform: translateY(-25%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes slideshow-background-in {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(2);
	}
}

@keyframes slideshow-background-out {
	from {
		transform: scale(2);
	}
	to {
		transform: scale(1);
	}
}

h1, h2, h3, p {
	direction: var(--site-language-direction);
	position: relative;
}

h1 span.p, h2 span.p, h3 span.p, p span.p {
	display: block;
	position: relative;
}

h1 span[style], h2 span[style], h3 span[style], p span[style], h1 strong, h2 strong, h3 strong, p strong, h1 a, h2 a, h3 a, p a, h1 code, h2 code, h3 code, p code, h1 mark, h2 mark, h3 mark, p mark {
	-webkit-text-fill-color: currentcolor;
}

h1.style1, h2.style1, h3.style1, p.style1 {
	text-align: center;
	color: rgba(255,255,255,0.78);
	font-family: 'Tenor Sans', sans-serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 2.75em;
	line-height: 1.125;
	font-weight: 400;
	text-shadow: 0.179rem 0.055rem 0.0625rem #262424;
}

h1.style1 a, h2.style1 a, h3.style1 a, p.style1 a {
	text-decoration: underline;
}

h1.style1 a:hover, h2.style1 a:hover, h3.style1 a:hover, p.style1 a:hover {
	text-decoration: none;
}

h1.style1, h2.style1, h3.style1, p.style1 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text01 {
	color: rgba(255,255,255,0.42);
	font-family: 'Inter', sans-serif;
	font-size: 0.75em;
	line-height: 1.875;
	font-weight: 300;
}

#text01 a {
	text-decoration: underline;
}

#text01 a:hover {
	text-decoration: none;
}

#text01 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text23 {
	color: rgba(255,255,255,0.651);
	font-family: 'Poppins', sans-serif;
	font-size: 2.25em;
	line-height: 1.875;
	font-weight: 300;
}

#text23 a {
	text-decoration: underline;
}

#text23 a:hover {
	text-decoration: none;
}

#text23 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style18:not(:first-child), h2.style18:not(:first-child), h3.style18:not(:first-child), p.style18:not(:first-child) {
	margin-top: 0.625rem !important;
}

h1.style18:not(:last-child), h2.style18:not(:last-child), h3.style18:not(:last-child), p.style18:not(:last-child) {
	margin-bottom: 0.625rem !important;
}

h1.style18, h2.style18, h3.style18, p.style18 {
	text-align: center;
	color: rgba(250,247,227,0.69);
	font-family: 'Comfortaa', sans-serif;
	font-size: 6.5em;
	line-height: 1.875;
	font-weight: 500;
	text-shadow: 0.096rem 0.08rem 0.625rem rgba(9,9,10,0.941);
}

h1.style18 a, h2.style18 a, h3.style18 a, p.style18 a {
	text-decoration: underline;
}

h1.style18 a:hover, h2.style18 a:hover, h3.style18 a:hover, p.style18 a:hover {
	text-decoration: none;
}

h1.style18, h2.style18, h3.style18, p.style18 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text21 {
	text-align: center;
	color: rgba(209,203,203,0.741);
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.75em;
	line-height: 1.875;
	font-weight: 300;
	text-shadow: 0.088rem 0.088rem 0.625rem rgba(9,9,10,0.941);
}

#text21 a {
	text-decoration: underline;
}

#text21 a:hover {
	text-decoration: none;
}

#text21 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text40 {
	color: rgba(255,255,255,0.651);
	font-family: 'Cabin', sans-serif;
	font-size: 2.25em;
	line-height: 1.875;
	font-weight: 400;
}

#text40 a {
	text-decoration: underline;
}

#text40 a:hover {
	text-decoration: none;
}

#text40 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

#text07 {
	color: rgba(255,255,255,0.651);
	font-family: 'Cabin', sans-serif;
	font-size: 2.25em;
	line-height: 1.875;
	font-weight: 400;
}

#text07 a {
	text-decoration: underline;
}

#text07 a:hover {
	text-decoration: none;
}

#text07 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style8:not(:first-child), h2.style8:not(:first-child), h3.style8:not(:first-child), p.style8:not(:first-child) {
	margin-top: 0.75rem !important;
}

h1.style8:not(:last-child), h2.style8:not(:last-child), h3.style8:not(:last-child), p.style8:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

h1.style8, h2.style8, h3.style8, p.style8 {
	text-align: center;
	color: rgba(250,247,227,0.878);
	font-family: 'Anton', sans-serif;
	font-size: 7em;
	line-height: 1.875;
	font-weight: 400;
	text-shadow: 0.088rem 0.088rem 0.625rem rgba(9,9,10,0.941);
}

h1.style8 a, h2.style8 a, h3.style8 a, p.style8 a {
	text-decoration: underline;
}

h1.style8 a:hover, h2.style8 a:hover, h3.style8 a:hover, p.style8 a:hover {
	text-decoration: none;
}

h1.style8, h2.style8, h3.style8, p.style8 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style7:not(:first-child), h2.style7:not(:first-child), h3.style7:not(:first-child), p.style7:not(:first-child) {
	margin-top: 0.75rem !important;
}

h1.style7:not(:last-child), h2.style7:not(:last-child), h3.style7:not(:last-child), p.style7:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

h1.style7, h2.style7, h3.style7, p.style7 {
	text-align: center;
	color: rgba(250,247,227,0.878);
	font-family: 'Comfortaa', sans-serif;
	font-size: 2.75em;
	line-height: 1.875;
	font-weight: 300;
	text-shadow: 0.088rem 0.088rem 0.625rem rgba(9,9,10,0.941);
}

h1.style7 a, h2.style7 a, h3.style7 a, p.style7 a {
	text-decoration: underline;
}

h1.style7 a:hover, h2.style7 a:hover, h3.style7 a:hover, p.style7 a:hover {
	text-decoration: none;
}

h1.style7, h2.style7, h3.style7, p.style7 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style9:not(:first-child), h2.style9:not(:first-child), h3.style9:not(:first-child), p.style9:not(:first-child) {
	margin-top: 0.75rem !important;
}

h1.style9:not(:last-child), h2.style9:not(:last-child), h3.style9:not(:last-child), p.style9:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

h1.style9, h2.style9, h3.style9, p.style9 {
	text-align: center;
	color: rgba(250,247,227,0.878);
	font-family: 'Anton', sans-serif;
	font-size: 7em;
	line-height: 1.875;
	font-weight: 400;
	text-shadow: 0.088rem 0.088rem 0.625rem rgba(9,9,10,0.941);
}

h1.style9 a, h2.style9 a, h3.style9 a, p.style9 a {
	text-decoration: underline;
}

h1.style9 a:hover, h2.style9 a:hover, h3.style9 a:hover, p.style9 a:hover {
	text-decoration: none;
}

h1.style9, h2.style9, h3.style9, p.style9 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style10:not(:first-child), h2.style10:not(:first-child), h3.style10:not(:first-child), p.style10:not(:first-child) {
	margin-top: 0.75rem !important;
}

h1.style10:not(:last-child), h2.style10:not(:last-child), h3.style10:not(:last-child), p.style10:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

h1.style10, h2.style10, h3.style10, p.style10 {
	text-align: center;
	color: rgba(250,247,227,0.878);
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.125em;
	line-height: 1.875;
	font-weight: 300;
	text-shadow: 0.088rem 0.088rem 0.625rem rgba(9,9,10,0.941);
}

h1.style10 a, h2.style10 a, h3.style10 a, p.style10 a {
	text-decoration: underline;
}

h1.style10 a:hover, h2.style10 a:hover, h3.style10 a:hover, p.style10 a:hover {
	text-decoration: none;
}

h1.style10, h2.style10, h3.style10, p.style10 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style11:not(:first-child), h2.style11:not(:first-child), h3.style11:not(:first-child), p.style11:not(:first-child) {
	margin-top: 0.625rem !important;
}

h1.style11:not(:last-child), h2.style11:not(:last-child), h3.style11:not(:last-child), p.style11:not(:last-child) {
	margin-bottom: 0.625rem !important;
}

h1.style11, h2.style11, h3.style11, p.style11 {
	text-align: left;
	color: rgba(250,247,227,0.878);
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.75em;
	line-height: 1.875;
	font-weight: 700;
	text-shadow: 0.088rem 0.088rem 0.625rem rgba(9,9,10,0.941);
}

h1.style11 a, h2.style11 a, h3.style11 a, p.style11 a {
	text-decoration: underline;
}

h1.style11 a:hover, h2.style11 a:hover, h3.style11 a:hover, p.style11 a:hover {
	text-decoration: none;
}

h1.style11, h2.style11, h3.style11, p.style11 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style12:not(:first-child), h2.style12:not(:first-child), h3.style12:not(:first-child), p.style12:not(:first-child) {
	margin-top: 0.625rem !important;
}

h1.style12:not(:last-child), h2.style12:not(:last-child), h3.style12:not(:last-child), p.style12:not(:last-child) {
	margin-bottom: 0.625rem !important;
}

h1.style12, h2.style12, h3.style12, p.style12 {
	text-align: center;
	font-variant: small-caps;
	color: rgba(250,247,227,0.878);
	font-family: 'Comfortaa', sans-serif;
	font-size: 3.125em;
	line-height: 1.875;
	font-weight: 600;
	text-shadow: 0.088rem 0.088rem 0.625rem rgba(9,9,10,0.941);
}

h1.style12 a, h2.style12 a, h3.style12 a, p.style12 a {
	text-decoration: underline;
}

h1.style12 a:hover, h2.style12 a:hover, h3.style12 a:hover, p.style12 a:hover {
	text-decoration: none;
}

h1.style12, h2.style12, h3.style12, p.style12 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style19, h2.style19, h3.style19, p.style19 {
	text-align: justify;
	color: rgba(255,255,255,0.702);
	font-family: 'Comfortaa', sans-serif;
	font-size: 1em;
	line-height: 1.875;
	font-weight: 300;
}

h1.style19 a, h2.style19 a, h3.style19 a, p.style19 a {
	text-decoration: underline;
}

h1.style19 a:hover, h2.style19 a:hover, h3.style19 a:hover, p.style19 a:hover {
	text-decoration: none;
}

h1.style19, h2.style19, h3.style19, p.style19 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style5:not(:first-child), h2.style5:not(:first-child), h3.style5:not(:first-child), p.style5:not(:first-child) {
	margin-top: 0.75rem !important;
}

h1.style5:not(:last-child), h2.style5:not(:last-child), h3.style5:not(:last-child), p.style5:not(:last-child) {
	margin-bottom: 0.75rem !important;
}

h1.style5, h2.style5, h3.style5, p.style5 {
	text-align: center;
	color: rgba(209,203,203,0.839);
	font-family: 'Vollkorn', serif;
	font-size: 4.125em;
	line-height: 1.875;
	font-weight: 700;
	text-shadow: 0.088rem 0.088rem 0.625rem rgba(9,9,10,0.941);
}

h1.style5 a, h2.style5 a, h3.style5 a, p.style5 a {
	text-decoration: underline;
}

h1.style5 a:hover, h2.style5 a:hover, h3.style5 a:hover, p.style5 a:hover {
	text-decoration: none;
}

h1.style5, h2.style5, h3.style5, p.style5 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

h1.style17, h2.style17, h3.style17, p.style17 {
	text-align: justify;
	color: rgba(255,255,255,0.702);
	font-family: 'Vollkorn', serif;
	font-size: 2.125em;
	line-height: 1.875;
	font-weight: 400;
}

h1.style17 a, h2.style17 a, h3.style17 a, p.style17 a {
	text-decoration: underline;
}

h1.style17 a:hover, h2.style17 a:hover, h3.style17 a:hover, p.style17 a:hover {
	text-decoration: none;
}

h1.style17, h2.style17, h3.style17, p.style17 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

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

.buttons li {
	max-width: 100%;
}

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

.buttons.style5 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons.style5 li a {
	display: flex;
	width: 30rem;
	height: 2.75rem;
	line-height: 2.75rem;
	padding: 0 1.375rem;
	vertical-align: middle;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.375em;
	font-weight: 500;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons.style5 .button {
	background-color: rgba(134,5,166,0.839);
	color: rgba(255,255,255,0.541);
	background-image: linear-gradient(181deg, rgba(23,23,25,0.671) 10%, rgba(134,5,166,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

.buttons.style5 .button:hover {
	background-color: rgba(196,4,140,0.929) !important;
}

.buttons.style5 li a:hover {
	transform: scale(0.8875);
}

.buttons.style4 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons.style4 li a {
	display: flex;
	width: 21.75rem;
	height: 2.125rem;
	line-height: 2.125rem;
	padding: 0 1.0625rem;
	vertical-align: middle;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1em;
	font-weight: 500;
	border-radius: 0.5rem;
	direction: var(--site-language-direction);
	transition: none;
}

.buttons.style4 .button {
	background-color: rgba(243,215,252,0.58);
	color: rgba(0,0,0,0.929);
	background-image: linear-gradient(160deg, rgba(244,240,247,0.91) 27%, rgba(243,215,252,0.004) 84%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

.buttons.style4 .button:hover {
	background-color: rgba(205,85,224,0.749) !important;
}

.buttons.style3 {
	gap: 1rem;
	flex-direction: column;
	flex-wrap: nowrap;
}

.buttons.style3 li a {
	display: inline-flex;
	width: 15rem;
	height: 2.875rem;
	line-height: 2.875rem;
	padding: 0 1.4375rem;
	vertical-align: middle;
	font-family: 'Comfortaa', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 1em;
	font-weight: 300;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons.style3 .button {
	background-color: rgba(75,5,77,0.82);
	color: rgba(255,255,255,0.82);
	background-image: linear-gradient(181deg, rgba(156,6,209,0.741) 33%, rgba(75,5,77,0.008) 75%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

.buttons.style3 .button:hover {
	background-color: rgba(191,4,136,0.761) !important;
}

.buttons.style3 li a:hover {
	transform: scale(0.8875);
}

hr {
	border: 0;
	padding: 0;
	position: relative;
	width: 100%;
}

hr:before {
	content: '';
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

#divider10:before {
	width: 100%;
	border-top: solid 1px rgba(88,89,92,0.012);
	height: 1px;
	margin-top: -0.5px;
}

#divider02:before {
	width: 100%;
	border-top: solid 1px rgba(88,89,92,0.18);
	height: 1px;
	margin-top: -0.5px;
}

#divider07:before {
	width: 100%;
	border-top: solid 1px rgba(88,89,92,0.18);
	height: 1px;
	margin-top: -0.5px;
}

#divider01:before {
	width: 100%;
	border-top: solid 1px rgba(88,89,92,0.18);
	height: 1px;
	margin-top: -0.5px;
}

#divider04:before {
	width: 100%;
	border-top: solid 1px rgba(88,89,92,0.18);
	height: 1px;
	margin-top: -0.5px;
}

#divider08:before {
	width: 100%;
	border-top: solid 1px rgba(88,89,92,0.18);
	height: 1px;
	margin-top: -0.5px;
}

#divider03:before {
	width: 100%;
	border-top: solid 1px rgba(88,89,92,0.18);
	height: 1px;
	margin-top: -0.5px;
}

#divider06:before {
	width: 100%;
	border-top: solid 1px transparent;
	height: 1px;
	margin-top: -0.5px;
}

#divider14:before {
	width: 100%;
	border-top: solid 1px transparent;
	height: 1px;
	margin-top: -0.5px;
}

#divider12:before {
	width: 100%;
	border-top: solid 1px transparent;
	height: 1px;
	margin-top: -0.5px;
}

#divider13:before {
	width: 100%;
	border-top: solid 1px transparent;
	height: 1px;
	margin-top: -0.5px;
}

#divider09:before {
	width: 100%;
	border-top: solid 1px transparent;
	height: 1px;
	margin-top: -0.5px;
}

#divider15:before {
	width: 100%;
	border-top: solid 1px transparent;
	height: 1px;
	margin-top: -0.5px;
}

#divider11:before {
	width: 100%;
	border-top: solid 1px rgba(225,227,232,0.02);
	height: 1px;
	margin-top: -0.5px;
}

#divider05:before {
	width: 1rem;
	border-top: solid 1px rgba(225,227,232,0.831);
	height: 1px;
	margin-top: -0.5px;
}

.slideshow {
	display: block;
	max-width: 100%;
	position: relative;
}

.slideshow .content {
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
}

.slideshow .bg {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	width: 100%;
	z-index: 1;
}

.slideshow.full .bg {
	display: block;
}

.slideshow.full:first-child .content {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.slideshow.full:last-child .content {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.slideshow.full:first-child .bg {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.slideshow.full:last-child .bg {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#slideshow03 .bg {
	width: 100vw;
	background-color: #121112;
}

#slideshow03 .bg > .slow {
	animation-duration: 65s;
}

#slideshow03 .bg > .normal {
	animation-duration: 48.75s;
}

#slideshow03 .bg > .fast {
	animation-duration: 32.5s;
}

#slideshow03 .bg > div {
	transition-duration: 2.125s;
}

.container {
	position: relative;
}

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

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

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

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

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

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

.container.style7 {
	--alignment: left;
	--flex-alignment: flex-start;
	display: flex;
	width: 100%;
	align-items: flex-end;
	justify-content: flex-end;
	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.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.65625%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'), linear-gradient(47deg, rgba(25,25,25,0.988) 0%, rgba(16,17,20,0.961) 100%);
	background-size: 512px, cover;
	background-position: center, 0% 0%;
	background-repeat: repeat, repeat;
	border-color: rgba(5,4,4,0.949);
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0.75rem 6.25rem 0.875rem rgba(0,0,0,0.871);
}

.container.style7:not(:first-child) {
	margin-top: 3.25rem !important;
}

.container.style7 > .wrapper > .inner {
	--gutters: 12rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	--spacing: 4rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(1.125rem - 5px);
}

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

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

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

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

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

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

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

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

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

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

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

.container.style7.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.style7.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.style7.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

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

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

.container.style7.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container04 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + 3rem);
}

#container04 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + 3rem);
}

#container04 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + 3rem);
}

#container04 > .wrapper > .inner > :nth-child(4) {
	width: calc(25% + 3rem);
}

.container.style1 {
	--alignment: center;
	--flex-alignment: center;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: rgba(29,25,33,0.922);
	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.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.65625%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;
	border-color: rgba(5,4,4,0.949);
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0.75rem 6.25rem 0.875rem rgba(0,0,0,0.871);
}

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

.container.style1:not(:last-child) {
	margin-bottom: 0.125rem !important;
}

.container.style1 > .wrapper > .inner {
	--gutters: 3.25rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 4rem;
	--spacing: 4rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(1.125rem - 5px);
}

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

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

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

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

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

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

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

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

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

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

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

.container.style1.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.style1.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.style1.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

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

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

.container.style1.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container08 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + 1.62rem);
}

#container08 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + 1.62rem);
}

#container11 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + 0.81rem);
}

#container11 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + 0.81rem);
}

#container11 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + 0.81rem);
}

#container11 > .wrapper > .inner > :nth-child(4) {
	width: calc(25% + 0.81rem);
}

#container02 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + 1.62rem);
}

#container02 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + 1.62rem);
}

#container15 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + 0.81rem);
}

#container15 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + 0.81rem);
}

#container15 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + 0.81rem);
}

#container15 > .wrapper > .inner > :nth-child(4) {
	width: calc(25% + 0.81rem);
}

.container.style5 {
	--alignment: center;
	--flex-alignment: center;
	display: flex;
	width: 100%;
	align-items: flex-end;
	justify-content: flex-start;
	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.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.65625%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'), linear-gradient(47deg, rgba(25,25,25,0.988) 0%, rgba(16,17,20,0.961) 100%);
	background-size: 512px, cover;
	background-position: center, 0% 0%;
	background-repeat: repeat, repeat;
	border-color: rgba(5,4,4,0.949);
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0.75rem 6.25rem 0.875rem rgba(0,0,0,0.871);
}

.container.style5:not(:first-child) {
	margin-top: 8rem !important;
}

.container.style5 > .wrapper > .inner {
	--gutters: 12rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1.625rem;
	--spacing: 4rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(1.125rem - 5px);
}

.container.style5 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.container.style5.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.style5.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.style5.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

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

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

.container.style5.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container01 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + 6rem);
}

#container01 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + 6rem);
}

#container26 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + 0.81rem);
}

#container26 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + 0.81rem);
}

#container26 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + 0.81rem);
}

#container26 > .wrapper > .inner > :nth-child(4) {
	width: calc(25% + 0.81rem);
}

.container.style6 {
	--alignment: center;
	--flex-alignment: center;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	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.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.65625%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'), linear-gradient(47deg, rgba(25,25,25,0.988) 0%, rgba(16,17,20,0.961) 100%);
	background-size: 512px, cover;
	background-position: center, 0% 0%;
	background-repeat: repeat, repeat;
	border-color: rgba(5,4,4,0.949);
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0.75rem 6.25rem 0.875rem rgba(0,0,0,0.871);
}

.container.style6:not(:first-child) {
	margin-top: 3.25rem !important;
}

.container.style6:not(:last-child) {
	margin-bottom: 5.75rem !important;
}

.container.style6 > .wrapper > .inner {
	--gutters: 12rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 5.125rem;
	--spacing: 4.125rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(1.125rem - 5px);
}

.container.style6 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.container.style6.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.style6.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.style6.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

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

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

.container.style6.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container27 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + 0.81rem);
}

#container27 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + 0.81rem);
}

#container27 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + 0.81rem);
}

#container27 > .wrapper > .inner > :nth-child(4) {
	width: calc(25% + 0.81rem);
}

#container28 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + 0.81rem);
}

#container28 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + 0.81rem);
}

#container28 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + 0.81rem);
}

#container28 > .wrapper > .inner > :nth-child(4) {
	width: calc(25% + 0.81rem);
}

#container29 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + 0.81rem);
}

#container29 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + 0.81rem);
}

#container29 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + 0.81rem);
}

#container29 > .wrapper > .inner > :nth-child(4) {
	width: calc(25% + 0.81rem);
}

.container.style12 {
	--alignment: center;
	--flex-alignment: center;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: rgba(5,4,2,0.922);
	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.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.65625%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;
	border-color: rgba(5,4,4,0.949);
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 1.625rem 6.25rem 0.875rem rgba(0,0,0,0.871);
}

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

.container.style12:not(:last-child) {
	margin-bottom: 0.125rem !important;
}

.container.style12 > .wrapper > .inner {
	--gutters: 3.25rem;
	--padding-horizontal: 6rem;
	--spacing: 4rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(1.125rem - 5px);
}

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

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

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

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

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

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

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

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

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

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

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

.container.style12.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.style12.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.style12.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

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

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

.container.style12.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container10 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + 0.81rem);
}

#container10 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + 0.81rem);
}

#container10 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + 0.81rem);
}

#container10 > .wrapper > .inner > :nth-child(4) {
	width: calc(25% + 0.81rem);
}

.container.style10 {
	--alignment: center;
	--flex-alignment: center;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: rgba(5,4,2,0.922);
	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.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.65625%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;
	border-color: rgba(5,4,4,0.949);
	border-style: solid;
	border-width: 5px;
	box-shadow: 0rem 0.75rem 6.25rem 0.875rem rgba(0,0,0,0.871);
}

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

.container.style10:not(:last-child) {
	margin-bottom: 0.125rem !important;
}

.container.style10 > .wrapper > .inner {
	--gutters: 3.25rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 4rem;
	--spacing: 4rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(1.125rem - 5px);
}

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

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

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

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

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

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

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

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

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

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

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

.container.style10.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.style10.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.style10.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

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

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

.container.style10.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

.container.style8 {
	--alignment: center;
	--flex-alignment: center;
	display: flex;
	width: 100%;
	min-height: var(--viewport-height);
	align-items: center;
	justify-content: center;
	background-color: rgba(12,11,18,0.871);
	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.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.01953125%200%200%200%200%200%200.65625%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;
	border-color: rgba(5,4,4,0.949);
	border-style: solid;
	border-width: 3px;
	box-shadow: 0rem 0.75rem 6.25rem 0.875rem rgba(0,0,0,0.871);
}

.container.style8:not(:first-child) {
	margin-top: 2.375rem !important;
}

.container.style8:not(:last-child) {
	margin-bottom: 6.625rem !important;
}

.container.style8 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 8.75rem;
	--spacing: 1.625rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(1.125rem - 3px);
}

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

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

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

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

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

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

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

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

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

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

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

.container.style8.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.style8.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.style8.columns > .wrapper > .inner > div > .full {
	margin-left: calc(var(--gutters) * -0.5);
	max-width: none;
	width: calc(100% + var(--gutters) + 0.4725px);
}

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

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

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

.container.style8.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

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

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

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

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

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

.links li {
	position: relative;
}

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

#links03 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links03:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links03:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links03 li a {
	color: rgba(200,80,242,0.98);
	text-decoration: none;
}

#links03 li a:hover {
	color: #DBD5DE;
}

#links03 .n01 a:hover {
	color: #DBD5DE;
}

#links02 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links02:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links02:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links02 li a {
	color: rgba(200,80,242,0.98);
	text-decoration: none;
}

#links02 li a:hover {
	color: #D1CBD4;
}

#links02 .n01 a:hover {
	color: #D1CBD4;
}

#links01 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links01:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links01:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links01 li a {
	color: rgba(200,80,242,0.98);
	text-decoration: none;
}

#links01 li a:hover {
	color: #E8DAEB;
}

#links01 .n01 a:hover {
	color: #E8DAEB;
}

#links14 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links14:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links14:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links14 li a {
	color: rgba(250,248,242,0.929);
	text-decoration: none;
}

#links14 li a:hover {
	color: #D4CF6A;
}

#links14 .n01 a:hover {
	color: #D4CF6A;
}

#links15 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links15:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links15:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links15 li a {
	color: rgba(250,248,245,0.929);
	text-decoration: none;
}

#links15 li a:hover {
	color: #D9CEA9;
}

#links15 .n01 a:hover {
	color: #D9CEA9;
}

#links10 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links10:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links10:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links10 li a {
	color: rgba(181,2,174,0.929);
	text-decoration: none;
}

#links10 li a:hover {
	color: #AD00FF;
}

#links10 .n01 a:hover {
	color: #AD00FF;
}

#links11 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links11:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links11:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links11 li a {
	color: rgba(176,5,169,0.929);
	text-decoration: none;
}

#links11 li a:hover {
	color: #BD00FF;
}

#links11 .n01 a:hover {
	color: #BD00FF;
}

#links12 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links12:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links12:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links12 li a {
	color: rgba(163,3,157,0.929);
	text-decoration: none;
}

#links12 li a:hover {
	color: #DB00FF;
}

#links12 .n01 a:hover {
	color: #DB00FF;
}

#links16 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links16:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links16:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links16 li a {
	color: rgba(181,2,174,0.929);
	text-decoration: none;
}

#links16 li a:hover {
	color: #AD00FF;
}

#links16 .n01 a:hover {
	color: #AD00FF;
}

#links17 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links17:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links17:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links17 li a {
	color: rgba(176,5,169,0.929);
	text-decoration: none;
}

#links17 li a:hover {
	color: #BD00FF;
}

#links17 .n01 a:hover {
	color: #BD00FF;
}

#links18 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links18:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links18:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links18 li a {
	color: rgba(163,3,157,0.929);
	text-decoration: none;
}

#links18 li a:hover {
	color: #DB00FF;
}

#links18 .n01 a:hover {
	color: #DB00FF;
}

#links19 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links19:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links19:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links19 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links19 li a:hover {
	color: #AD00FF;
}

#links19 .n01 a:hover {
	color: #AD00FF;
}

#links20 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links20:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links20:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links20 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links20 li a:hover {
	color: #BD00FF;
}

#links20 .n01 a:hover {
	color: #BD00FF;
}

#links21 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links21:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links21:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links21 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links21 li a:hover {
	color: #DB00FF;
}

#links21 .n01 a:hover {
	color: #DB00FF;
}

#links22 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links22:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links22:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links22 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links22 li a:hover {
	color: #AD00FF;
}

#links22 .n01 a:hover {
	color: #AD00FF;
}

#links23 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links23:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links23:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links23 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links23 li a:hover {
	color: #BD00FF;
}

#links23 .n01 a:hover {
	color: #BD00FF;
}

#links24 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links24:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links24:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links24 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links24 li a:hover {
	color: #DB00FF;
}

#links24 .n01 a:hover {
	color: #DB00FF;
}

#links25 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links25:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links25:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links25 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links25 li a:hover {
	color: #AD00FF;
}

#links25 .n01 a:hover {
	color: #AD00FF;
}

#links26 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links26:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links26:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links26 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links26 li a:hover {
	color: #BD00FF;
}

#links26 .n01 a:hover {
	color: #BD00FF;
}

#links27 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links27:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links27:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links27 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links27 li a:hover {
	color: #DB00FF;
}

#links27 .n01 a:hover {
	color: #DB00FF;
}

#links28 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links28:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links28:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links28 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links28 li a:hover {
	color: #AD00FF;
}

#links28 .n01 a:hover {
	color: #AD00FF;
}

#links29 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links29:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links29:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links29 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links29 li a:hover {
	color: #BD00FF;
}

#links29 .n01 a:hover {
	color: #BD00FF;
}

#links30 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Comfortaa', sans-serif;
	font-size: 1.25em;
	font-weight: 300;
}

#links30:not(:first-child) {
	margin-top: 4.5rem !important;
}

#links30:not(:last-child) {
	margin-bottom: 4.5rem !important;
}

#links30 li a {
	color: rgba(156,14,5,0.98);
	text-decoration: none;
}

#links30 li a:hover {
	color: #DB00FF;
}

#links30 .n01 a:hover {
	color: #DB00FF;
}

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

.image .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 .frame img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image.full .frame {
	display: block;
}

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

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

#image05 .frame {
	width: 7.375rem;
	height: 5.375rem;
	border-radius: 100%;
	transition: none;
}

#image05 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
}

#image05 .frame img {
	transition: none;
}

.image.style10:not(:first-child) {
	margin-top: 4.875rem !important;
}

.image.style10:not(:last-child) {
	margin-bottom: 4.875rem !important;
}

.image.style10 .frame {
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 100%;
	border-color: rgba(37,1,66,0.851);
	border-style: solid;
	border-width: 1px;
	box-shadow: 0.137rem 1.117rem 2.875rem 0.25rem rgba(6,7,8,0.58);
	transition: transform 0.5s ease, z-index 0.5s ease;
}

.image.style10 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
}

.image.style10 .frame:hover {
	transform: scale(0.835);
	z-index: 1;
}

#image07 .frame {
	width: 3.75rem;
	border-radius: 100%;
	transition: transform 0.25s ease, z-index 0.25s ease;
}

#image07 .frame:hover {
	transform: scale(0.8875);
	z-index: 1;
}

#image03:not(:first-child) {
	margin-top: 5.25rem !important;
}

#image03:not(:last-child) {
	margin-bottom: 5.25rem !important;
}

#image03 .frame {
	width: 10.125rem;
	height: 9.75rem;
	border-radius: 0.125rem;
	border-color: rgba(196,187,201,0.89);
	border-style: solid;
	border-width: 3px;
	box-shadow: 0.137rem 1.117rem 2.875rem 0.25rem rgba(8,7,7,0.941);
	transition: none;
}

#image03 .frame img:first-child {
	border-radius: calc(0.125rem - 3px) !important;
}

#image03 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	border-radius: inherit !important;
	padding: 0.25rem;
}

#image03 .frame img {
	transition: none;
}

#image16 .frame {
	width: 3.75rem;
	border-radius: 100%;
	border-color: rgba(201,201,201,0.42);
	border-style: solid;
	border-width: 1px;
	box-shadow: 0.137rem 1.117rem 2.875rem 0.25rem rgba(0,0,0,0.98);
	transition: none;
}

#image16 .frame img {
	transition: none;
}

#image14 .frame {
	width: 3.75rem;
	border-radius: 100%;
	border-color: rgba(201,201,201,0.42);
	border-style: solid;
	border-width: 1px;
	box-shadow: 0.137rem 1.117rem 2.875rem 0.25rem rgba(0,0,0,0.98);
	transition: none;
}

#image14 .frame img {
	transition: none;
}

#image24 .frame {
	width: 3.75rem;
	border-radius: 100%;
	transition: none;
}

#image24 .frame img {
	transition: none;
}

#image33 .frame {
	width: 3.75rem;
	border-radius: 100%;
	transition: none;
}

#image33 .frame img {
	transition: none;
}

#image34 .frame {
	width: 3.75rem;
	border-radius: 100%;
	transition: none;
}

#image34 .frame img {
	transition: none;
}

#image35 .frame {
	width: 3.75rem;
	border-radius: 100%;
	transition: none;
}

#image35 .frame img {
	transition: none;
}

#image32:not(:first-child) {
	margin-top: 4.25rem !important;
}

#image32:not(:last-child) {
	margin-bottom: 4.25rem !important;
}

#image32 .frame {
	width: 21.25rem;
	height: 21.5rem;
	border-radius: 100%;
	border-color: rgba(156,6,209,0.741);
	border-style: solid;
	border-width: 1px;
	box-shadow: 0rem 0rem 0.625rem 0.25rem rgba(250,0,255,0.82);
	transition: none;
}

#image32 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	border-radius: inherit !important;
	padding: 0.375rem;
}

#image32 .frame img {
	transition: none;
}

.image.style12:not(:first-child) {
	margin-top: 4.75rem !important;
}

.image.style12:not(:last-child) {
	margin-bottom: 4.75rem !important;
}

.image.style12 .frame {
	width: 37.125rem;
	height: 35.5rem;
	border-radius: 0.625rem;
	transition: none;
}

.image.style12 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
}

.image.style12 .frame img {
	transition: none;
}

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

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

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

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

form .field button > svg {
	height: 50%;
}

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

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

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

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

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

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

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

form input[type="checkbox"] + label {
	align-items: center;
	display: inline-flex;
	line-height: 1.6;
	text-align: left;
}

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

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

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

form .number {
	position: relative;
}

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

form .number > button {
	position: absolute;
}

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

form .file {
	position: relative;
}

form .file > button {
	position: absolute;
}

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

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

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

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

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

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

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

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

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

#form01 .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

#form01 .inner > :first-child {
	margin: 0;
}

#form01 .inner {
	width: 53rem;
}

#form01 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 0.75em;
	line-height: 1.5;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 300;
	color: rgba(209,203,203,0.741);
}

#form01 .field button {
	background-size: cover;
	height: 2.2rem;
	line-height: 2.2rem;
	width: 2.2rem;
	border-radius: 1.28rem;
	background-color: rgba(24,2,38,0.851);
	background-image: linear-gradient(179deg, #980CC9 0%, rgba(24,2,38,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#form01 .field button:hover {
	background-color: rgba(242,7,125,0.929);
}

#form01 .field button svg {
	fill: rgba(255,255,255,0.541);
	transition: fill 0.25s ease;
}

#form01 input[type="text"], #form01 input[type="email"], #form01 input[type="tel"], #form01 input[type="number"], #form01 textarea, #form01 select, #form01 input[type="checkbox"] + label, #form01 .file {
	font-size: 0.625em;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 300;
	border-radius: 2rem;
}

#form01 input[type="text"], #form01 input[type="email"], #form01 input[type="tel"], #form01 input[type="number"], #form01 textarea, #form01 select, #form01 .file {
	color: rgba(255,255,255,0.42);
	background-color: rgba(88,89,92,0.18);
}

#form01 input[type="text"]:focus, #form01 input[type="email"]:focus, #form01 input[type="tel"]:focus, #form01 input[type="number"]:focus, #form01 textarea:focus, #form01 select:focus, #form01 .file.focus {
	box-shadow: 0 0 0 1px #5E5E61, inset 0 0 0 1px #5E5E61;
}

#form01 input[type="checkbox"] + label {
	color: rgba(255,255,255,0.42);
}

#form01 input[type="text"], #form01 input[type="email"], #form01 input[type="tel"], #form01 input[type="number"], #form01 select, #form01 .file {
	height: 2.75rem;
	padding: 0 0.9625rem;
	line-height: 2.75rem;
}

#form01 textarea {
	padding: 0.9625rem;
	height: 10rem;
	line-height: 1.875;
	padding-top: 0.634375rem;
}

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

#form01 input[type="checkbox"] + label:before {
	border-radius: 2rem;
	color: rgba(255,255,255,0.42);
	background-color: rgba(88,89,92,0.18);
	background-size: 1.16875rem;
	height: 2.0625rem;
	width: 2.0625rem;
	margin-right: 1.03125rem;
}

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

#form01 input[type="checkbox"]:focus + label:before {
	box-shadow: 0 0 0 1px #5E5E61, inset 0 0 0 1px #5E5E61;
}

#form01 .number > input[type="number"] {
	padding-left: 2.7rem;
	padding-right: 2.7rem;
}

#form01 .number > button.decrement {
	bottom: 0.275rem;
	left: 0.275rem;
}

#form01 .number > button.increment {
	bottom: 0.275rem;
	right: 0.275rem;
}

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

#form01 .file > button {
	bottom: 0.275rem;
	right: 0.275rem;
}

#form01 .actions button {
	width: 16.875rem;
	height: 2.75rem;
	line-height: 2.75rem;
	padding: 0 1.375rem;
	font-size: 1em;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 500;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	background-color: rgba(24,2,38,0.851);
	color: rgba(255,255,255,0.541);
	background-image: linear-gradient(179deg, #980CC9 0%, rgba(24,2,38,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

#form01 .actions button:hover {
	background-color: rgba(242,7,125,0.929);
}

#form01 .inner > :first-child > label:first-child {
	margin-top: 0;
}

#form01 .actions button:before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY4QTsgc3Ryb2tlLXdpZHRoOiAycHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.0625rem;
	content: '';
	display: block;
	height: 2.0625rem;
	left: 50%;
	margin: -1.03125rem 0 0 -1.03125rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.0625rem;
}

#form01 .actions button.waiting {
	color: transparent;
}

#form01 .actions button.waiting svg {
	fill: transparent;
}

#form01 .actions button.waiting:before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

#form01 ::-webkit-input-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form01 :-moz-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form01 ::-moz-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form01 :-ms-input-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form01 .file[data-filename=""]:before {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form03 .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

#form03 .inner > :first-child {
	margin: 0;
}

#form03 .inner {
	width: 29rem;
}

#form03 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 0.75em;
	line-height: 1.5;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 300;
	color: rgba(209,203,203,0.741);
}

#form03 .field button {
	background-size: cover;
	height: 2.2rem;
	line-height: 2.2rem;
	width: 2.2rem;
	border-radius: 1.28rem;
	background-color: rgba(24,2,38,0.851);
	background-image: linear-gradient(179deg, #980CC9 0%, rgba(24,2,38,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#form03 .field button:hover {
	background-color: rgba(242,7,125,0.929);
}

#form03 .field button svg {
	fill: rgba(255,255,255,0.541);
	transition: fill 0.25s ease;
}

#form03 input[type="text"], #form03 input[type="email"], #form03 input[type="tel"], #form03 input[type="number"], #form03 textarea, #form03 select, #form03 input[type="checkbox"] + label, #form03 .file {
	font-size: 0.625em;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 300;
	border-radius: 2rem;
}

#form03 input[type="text"], #form03 input[type="email"], #form03 input[type="tel"], #form03 input[type="number"], #form03 textarea, #form03 select, #form03 .file {
	color: rgba(255,255,255,0.42);
	background-color: rgba(88,89,92,0.18);
}

#form03 input[type="text"]:focus, #form03 input[type="email"]:focus, #form03 input[type="tel"]:focus, #form03 input[type="number"]:focus, #form03 textarea:focus, #form03 select:focus, #form03 .file.focus {
	box-shadow: 0 0 0 1px #5E5E61, inset 0 0 0 1px #5E5E61;
}

#form03 input[type="checkbox"] + label {
	color: rgba(255,255,255,0.42);
}

#form03 input[type="text"], #form03 input[type="email"], #form03 input[type="tel"], #form03 input[type="number"], #form03 select, #form03 .file {
	height: 2.75rem;
	padding: 0 0.9625rem;
	line-height: 2.75rem;
}

#form03 textarea {
	padding: 0.9625rem;
	height: 10rem;
	line-height: 1.875;
	padding-top: 0.634375rem;
}

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

#form03 input[type="checkbox"] + label:before {
	border-radius: 2rem;
	color: rgba(255,255,255,0.42);
	background-color: rgba(88,89,92,0.18);
	background-size: 1.16875rem;
	height: 2.0625rem;
	width: 2.0625rem;
	margin-right: 1.03125rem;
}

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

#form03 input[type="checkbox"]:focus + label:before {
	box-shadow: 0 0 0 1px #5E5E61, inset 0 0 0 1px #5E5E61;
}

#form03 .number > input[type="number"] {
	padding-left: 2.7rem;
	padding-right: 2.7rem;
}

#form03 .number > button.decrement {
	bottom: 0.275rem;
	left: 0.275rem;
}

#form03 .number > button.increment {
	bottom: 0.275rem;
	right: 0.275rem;
}

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

#form03 .file > button {
	bottom: 0.275rem;
	right: 0.275rem;
}

#form03 .actions button {
	width: 16.875rem;
	height: 2.75rem;
	line-height: 2.75rem;
	padding: 0 1.375rem;
	font-size: 1em;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 500;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	background-color: rgba(24,2,38,0.851);
	color: rgba(255,255,255,0.541);
	background-image: linear-gradient(179deg, #980CC9 0%, rgba(24,2,38,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

#form03 .actions button:hover {
	background-color: rgba(242,7,125,0.929);
}

#form03 .inner > :first-child > label:first-child {
	margin-top: 0;
}

#form03 .actions button:before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY4QTsgc3Ryb2tlLXdpZHRoOiAycHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.0625rem;
	content: '';
	display: block;
	height: 2.0625rem;
	left: 50%;
	margin: -1.03125rem 0 0 -1.03125rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.0625rem;
}

#form03 .actions button.waiting {
	color: transparent;
}

#form03 .actions button.waiting svg {
	fill: transparent;
}

#form03 .actions button.waiting:before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

#form03 ::-webkit-input-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form03 :-moz-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form03 ::-moz-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form03 :-ms-input-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form03 .file[data-filename=""]:before {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form02 .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

#form02 .inner > :first-child {
	margin: 0;
}

#form02 .inner {
	width: 29rem;
}

#form02 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 0.75em;
	line-height: 1.5;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 300;
	color: rgba(209,203,203,0.741);
}

#form02 .field button {
	background-size: cover;
	height: 2.2rem;
	line-height: 2.2rem;
	width: 2.2rem;
	border-radius: 1.28rem;
	background-color: rgba(24,2,38,0.851);
	background-image: linear-gradient(179deg, #980CC9 0%, rgba(24,2,38,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#form02 .field button:hover {
	background-color: rgba(242,7,125,0.929);
}

#form02 .field button svg {
	fill: rgba(255,255,255,0.541);
	transition: fill 0.25s ease;
}

#form02 input[type="text"], #form02 input[type="email"], #form02 input[type="tel"], #form02 input[type="number"], #form02 textarea, #form02 select, #form02 input[type="checkbox"] + label, #form02 .file {
	font-size: 0.625em;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 300;
	border-radius: 2rem;
}

#form02 input[type="text"], #form02 input[type="email"], #form02 input[type="tel"], #form02 input[type="number"], #form02 textarea, #form02 select, #form02 .file {
	color: rgba(255,255,255,0.42);
	background-color: rgba(88,89,92,0.18);
}

#form02 input[type="text"]:focus, #form02 input[type="email"]:focus, #form02 input[type="tel"]:focus, #form02 input[type="number"]:focus, #form02 textarea:focus, #form02 select:focus, #form02 .file.focus {
	box-shadow: 0 0 0 1px #5E5E61, inset 0 0 0 1px #5E5E61;
}

#form02 input[type="checkbox"] + label {
	color: rgba(255,255,255,0.42);
}

#form02 input[type="text"], #form02 input[type="email"], #form02 input[type="tel"], #form02 input[type="number"], #form02 select, #form02 .file {
	height: 2.75rem;
	padding: 0 0.9625rem;
	line-height: 2.75rem;
}

#form02 textarea {
	padding: 0.9625rem;
	height: 10rem;
	line-height: 1.875;
	padding-top: 0.634375rem;
}

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

#form02 input[type="checkbox"] + label:before {
	border-radius: 2rem;
	color: rgba(255,255,255,0.42);
	background-color: rgba(88,89,92,0.18);
	background-size: 1.16875rem;
	height: 2.0625rem;
	width: 2.0625rem;
	margin-right: 1.03125rem;
}

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

#form02 input[type="checkbox"]:focus + label:before {
	box-shadow: 0 0 0 1px #5E5E61, inset 0 0 0 1px #5E5E61;
}

#form02 .number > input[type="number"] {
	padding-left: 2.7rem;
	padding-right: 2.7rem;
}

#form02 .number > button.decrement {
	bottom: 0.275rem;
	left: 0.275rem;
}

#form02 .number > button.increment {
	bottom: 0.275rem;
	right: 0.275rem;
}

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

#form02 .file > button {
	bottom: 0.275rem;
	right: 0.275rem;
}

#form02 .actions button {
	width: 16.875rem;
	height: 2.75rem;
	line-height: 2.75rem;
	padding: 0 1.375rem;
	font-size: 1em;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 500;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	background-color: rgba(24,2,38,0.851);
	color: rgba(255,255,255,0.541);
	background-image: linear-gradient(179deg, #980CC9 0%, rgba(24,2,38,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

#form02 .actions button:hover {
	background-color: rgba(242,7,125,0.929);
}

#form02 .inner > :first-child > label:first-child {
	margin-top: 0;
}

#form02 .actions button:before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY4QTsgc3Ryb2tlLXdpZHRoOiAycHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.0625rem;
	content: '';
	display: block;
	height: 2.0625rem;
	left: 50%;
	margin: -1.03125rem 0 0 -1.03125rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.0625rem;
}

#form02 .actions button.waiting {
	color: transparent;
}

#form02 .actions button.waiting svg {
	fill: transparent;
}

#form02 .actions button.waiting:before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

#form02 ::-webkit-input-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form02 :-moz-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form02 ::-moz-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form02 :-ms-input-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form02 .file[data-filename=""]:before {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form04 .inner > * {
	margin: 1rem 0 0 0;
	max-width: 100%;
}

#form04 .inner > :first-child {
	margin: 0;
}

#form04 .inner {
	width: 29rem;
}

#form04 label:first-child {
	margin: 0.25rem 0 0.75rem 0;
	font-size: 0.75em;
	line-height: 1.5;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 300;
	color: rgba(209,203,203,0.741);
}

#form04 .field button {
	background-size: cover;
	height: 2.2rem;
	line-height: 2.2rem;
	width: 2.2rem;
	border-radius: 1.28rem;
	background-color: rgba(24,2,38,0.851);
	background-image: linear-gradient(179deg, #980CC9 0%, rgba(24,2,38,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#form04 .field button:hover {
	background-color: rgba(242,7,125,0.929);
}

#form04 .field button svg {
	fill: rgba(255,255,255,0.541);
	transition: fill 0.25s ease;
}

#form04 input[type="text"], #form04 input[type="email"], #form04 input[type="tel"], #form04 input[type="number"], #form04 textarea, #form04 select, #form04 input[type="checkbox"] + label, #form04 .file {
	font-size: 0.625em;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 300;
	border-radius: 2rem;
}

#form04 input[type="text"], #form04 input[type="email"], #form04 input[type="tel"], #form04 input[type="number"], #form04 textarea, #form04 select, #form04 .file {
	color: rgba(255,255,255,0.42);
	background-color: rgba(88,89,92,0.18);
}

#form04 input[type="text"]:focus, #form04 input[type="email"]:focus, #form04 input[type="tel"]:focus, #form04 input[type="number"]:focus, #form04 textarea:focus, #form04 select:focus, #form04 .file.focus {
	box-shadow: 0 0 0 1px #5E5E61, inset 0 0 0 1px #5E5E61;
}

#form04 input[type="checkbox"] + label {
	color: rgba(255,255,255,0.42);
}

#form04 input[type="text"], #form04 input[type="email"], #form04 input[type="tel"], #form04 input[type="number"], #form04 select, #form04 .file {
	height: 2.75rem;
	padding: 0 0.9625rem;
	line-height: 2.75rem;
}

#form04 textarea {
	padding: 0.9625rem;
	height: 10rem;
	line-height: 1.875;
	padding-top: 0.634375rem;
}

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

#form04 input[type="checkbox"] + label:before {
	border-radius: 2rem;
	color: rgba(255,255,255,0.42);
	background-color: rgba(88,89,92,0.18);
	background-size: 1.16875rem;
	height: 2.0625rem;
	width: 2.0625rem;
	margin-right: 1.03125rem;
}

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

#form04 input[type="checkbox"]:focus + label:before {
	box-shadow: 0 0 0 1px #5E5E61, inset 0 0 0 1px #5E5E61;
}

#form04 .number > input[type="number"] {
	padding-left: 2.7rem;
	padding-right: 2.7rem;
}

#form04 .number > button.decrement {
	bottom: 0.275rem;
	left: 0.275rem;
}

#form04 .number > button.increment {
	bottom: 0.275rem;
	right: 0.275rem;
}

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

#form04 .file > button {
	bottom: 0.275rem;
	right: 0.275rem;
}

#form04 .actions button {
	width: 16.875rem;
	height: 2.75rem;
	line-height: 2.75rem;
	padding: 0 1.375rem;
	font-size: 1em;
	font-family: 'Comfortaa', sans-serif;
	font-weight: 500;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	background-color: rgba(24,2,38,0.851);
	color: rgba(255,255,255,0.541);
	background-image: linear-gradient(179deg, #980CC9 0%, rgba(24,2,38,0.008) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

#form04 .actions button:hover {
	background-color: rgba(242,7,125,0.929);
}

#form04 .inner > :first-child > label:first-child {
	margin-top: 0;
}

#form04 .actions button:before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY4QTsgc3Ryb2tlLXdpZHRoOiAycHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.0625rem;
	content: '';
	display: block;
	height: 2.0625rem;
	left: 50%;
	margin: -1.03125rem 0 0 -1.03125rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.0625rem;
}

#form04 .actions button.waiting {
	color: transparent;
}

#form04 .actions button.waiting svg {
	fill: transparent;
}

#form04 .actions button.waiting:before {
	opacity: 1.0;
	transition-delay: 0.125s;
}

#form04 ::-webkit-input-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form04 :-moz-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form04 ::-moz-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form04 :-ms-input-placeholder {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

#form04 .file[data-filename=""]:before {
	color: rgba(255,255,255,0.42);
	opacity: 0.55;
}

.table-wrapper {
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	overflow-y: hidden;
}

.table-inner {
	display: inline-block;
	max-width: 100%;
}

table {
	direction: var(--site-language-direction);
	text-align: var(--site-language-alignment);
	width: 100%;
}

th {
	font-weight: bolder;
	text-align: var(--site-language-alignment);
}

#table07 {
	color: rgba(255,255,255,0.42);
	font-family: 'Inter', sans-serif;
	font-size: 0.75em;
	line-height: 1.875;
	font-weight: 300;
}

#table07 a {
	text-decoration: underline;
}

#table07 a:hover {
	text-decoration: none;
}

#table07 .table-inner {
	width: 72rem;
}

#table07 thead {
	border-bottom: solid 2px rgba(23,22,22,0.18);
}

#table07 tbody tr {
	border-top: solid 1px rgba(23,22,22,0.067);
}

#table07 tbody tr:first-child {
	border-top: 0;
}

#table07 th, #table07 td {
	padding: 0.5rem 0.6875rem;
}

#table07 th:first-child, #table07 td:first-child {
	padding-left: 0;
}

#table07 th:last-child, #table07 td:last-child {
	padding-right: 0;
}

#table01 {
	color: rgba(255,255,255,0.42);
	font-family: 'Inter', sans-serif;
	font-size: 0.75em;
	line-height: 1.875;
	font-weight: 300;
}

#table01 a {
	text-decoration: underline;
}

#table01 a:hover {
	text-decoration: none;
}

#table01 .table-inner {
	width: 72rem;
}

#table01 thead {
	border-bottom: solid 2px rgba(23,22,22,0.18);
}

#table01 tbody tr {
	border-top: solid 1px rgba(23,22,22,0.067);
}

#table01 tbody tr:first-child {
	border-top: 0;
}

#table01 th, #table01 td {
	padding: 0.5rem 0.6875rem;
}

#table01 th:first-child, #table01 td:first-child {
	padding-left: 0;
}

#table01 th:last-child, #table01 td:last-child {
	padding-right: 0;
}

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

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

@media (max-width: 1280px) {
	html {
		font-size: 10pt;
	}
	
	
	
	#slideshow03 .bg > .slow {
		animation-duration: 48.75s;
	}
	
	#slideshow03 .bg > .normal {
		animation-duration: 36.5625s;
	}
	
	#slideshow03 .bg > .fast {
		animation-duration: 24.375s;
	}
}

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

@media (max-width: 980px) {
	html {
		font-size: 9pt;
	}
	
	.container.style12 {
		--alignment: center;
		--flex-alignment: center;
	}
	
	.container.style12.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style12.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style12.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style12.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style12.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style12.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style12.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.style12.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.style12.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style12.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style12.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style12.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style12.columns > .wrapper > .inner > div:last-of-type, .container.style12.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style12.columns > .wrapper > .inner > div:first-of-type, .container.style12.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style12.columns > .wrapper > .inner > div:last-of-type, .container.style12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style12.columns > .wrapper > .inner > div:first-of-type, .container.style12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style12.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container.style12.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: 35rem;
	}
	
	.container.style12.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: 35rem;
	}
	
	#container10 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(3) {
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(4) {
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
		width: 100% !important;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	
	
	#main > .inner {
		--padding-horizontal: 1rem;
		--padding-vertical: 1rem;
		--spacing: 0rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-1rem);
		max-width: calc(100% + 2rem + 0.4725px);
		width: calc(100% + 2rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -1rem !important;
	}
	
	#main > .inner > .active > .full:last-child {
		margin-bottom: -1rem !important;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text01 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.75em;
		line-height: 1.875;
	}
	
	#text23 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.875;
	}
	
	h1.style18:not(:first-child), h2.style18:not(:first-child), h3.style18:not(:first-child), p.style18:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	h1.style18:not(:last-child), h2.style18:not(:last-child), h3.style18:not(:last-child), p.style18:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	h1.style18, h2.style18, h3.style18, p.style18 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.25;
	}
	
	#text21 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.875;
	}
	
	#text40 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.875;
	}
	
	#text07 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.875;
	}
	
	h1.style8:not(:first-child), h2.style8:not(:first-child), h3.style8:not(:first-child), p.style8:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	h1.style8:not(:last-child), h2.style8:not(:last-child), h3.style8:not(:last-child), p.style8:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.875em;
		line-height: 1.875;
	}
	
	h1.style7:not(:first-child), h2.style7:not(:first-child), h3.style7:not(:first-child), p.style7:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	h1.style7:not(:last-child), h2.style7:not(:last-child), h3.style7:not(:last-child), p.style7:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	h1.style7, h2.style7, h3.style7, p.style7 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.875;
	}
	
	h1.style9:not(:first-child), h2.style9:not(:first-child), h3.style9:not(:first-child), p.style9:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	h1.style9:not(:last-child), h2.style9:not(:last-child), h3.style9:not(:last-child), p.style9:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	h1.style9, h2.style9, h3.style9, p.style9 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 4.625em;
		line-height: 1.875;
	}
	
	h1.style10:not(:first-child), h2.style10:not(:first-child), h3.style10:not(:first-child), p.style10:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	h1.style10:not(:last-child), h2.style10:not(:last-child), h3.style10:not(:last-child), p.style10:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	h1.style10, h2.style10, h3.style10, p.style10 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.875;
	}
	
	h1.style11:not(:first-child), h2.style11:not(:first-child), h3.style11:not(:first-child), p.style11:not(:first-child) {
		margin-top: 0.46875rem !important;
	}
	
	h1.style11:not(:last-child), h2.style11:not(:last-child), h3.style11:not(:last-child), p.style11:not(:last-child) {
		margin-bottom: 0.46875rem !important;
	}
	
	h1.style11, h2.style11, h3.style11, p.style11 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.875;
	}
	
	h1.style12:not(:first-child), h2.style12:not(:first-child), h3.style12:not(:first-child), p.style12:not(:first-child) {
		margin-top: 0.46875rem !important;
	}
	
	h1.style12:not(:last-child), h2.style12:not(:last-child), h3.style12:not(:last-child), p.style12:not(:last-child) {
		margin-bottom: 0.46875rem !important;
	}
	
	h1.style12, h2.style12, h3.style12, p.style12 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1.875;
	}
	
	h1.style19, h2.style19, h3.style19, p.style19 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.875;
	}
	
	h1.style5:not(:first-child), h2.style5:not(:first-child), h3.style5:not(:first-child), p.style5:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	h1.style5:not(:last-child), h2.style5:not(:last-child), h3.style5:not(:last-child), p.style5:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	h1.style5, h2.style5, h3.style5, p.style5 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.875;
	}
	
	h1.style17, h2.style17, h3.style17, p.style17 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.875;
	}
	
	.buttons.style5 li a {
		letter-spacing: 0rem;
		font-size: 1.375em;
	}
	
	.buttons.style4 li a {
		letter-spacing: 0rem;
		font-size: 0.75em;
	}
	
	.buttons.style3 li a {
		letter-spacing: 0rem;
		font-size: 0.75em;
	}
	
	#divider10:before {
		width: 100rem;
	}
	
	#divider02:before {
		width: 100rem;
	}
	
	#divider07:before {
		width: 100rem;
	}
	
	#divider01:before {
		width: 100rem;
	}
	
	#divider04:before {
		width: 100rem;
	}
	
	#divider08:before {
		width: 100rem;
	}
	
	#divider03:before {
		width: 100rem;
	}
	
	#divider06:before {
		width: 100rem;
	}
	
	#divider14:before {
		width: 100rem;
	}
	
	#divider12:before {
		width: 100rem;
	}
	
	#divider13:before {
		width: 100rem;
	}
	
	#divider09:before {
		width: 100rem;
	}
	
	#divider15:before {
		width: 100rem;
	}
	
	#divider11:before {
		width: 100rem;
	}
	
	#divider05:before {
		width: 1rem;
	}
	
	#slideshow03 .bg {
		height: 20.125rem !important;
	}
	
	#slideshow03 .bg > .slow {
		animation-duration: 32.5s;
	}
	
	#slideshow03 .bg > .normal {
		animation-duration: 24.375s;
	}
	
	#slideshow03 .bg > .fast {
		animation-duration: 16.25s;
	}
	
	.container.style7 {
		--alignment: center;
		--flex-alignment: center;
	}
	
	.container.style7:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	.container.style7 > .wrapper > .inner {
		--gutters: 0.125rem;
		--padding-horizontal: 3.25rem;
		--padding-vertical: 0.375rem;
		--spacing: 2.375rem;
	}
	
	.container.style7.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style7.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style7.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style7.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.style7.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.style7.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div:last-of-type, .container.style7.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style7.columns > .wrapper > .inner > div:first-of-type, .container.style7.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style7.columns > .wrapper > .inner > div:last-of-type, .container.style7.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div:first-of-type, .container.style7.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style7.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container04 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container04 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container04 > .wrapper > .inner > :nth-child(3) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container04 > .wrapper > .inner > :nth-child(4) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	.container.style1 {
		--alignment: center;
		--flex-alignment: center;
	}
	
	.container.style1:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.container.style1:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 3.25rem;
		--padding-horizontal: 3.25rem;
		--padding-vertical: 3.25rem;
		--spacing: 2.375rem;
	}
	
	.container.style1.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style1.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style1.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style1.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style1.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style1.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style1.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.style1.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.style1.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style1.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style1.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style1.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style1.columns > .wrapper > .inner > div:last-of-type, .container.style1.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style1.columns > .wrapper > .inner > div:first-of-type, .container.style1.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style1.columns > .wrapper > .inner > div:last-of-type, .container.style1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style1.columns > .wrapper > .inner > div:first-of-type, .container.style1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container08 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container08 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container11 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container11 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container11 > .wrapper > .inner > :nth-child(3) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container11 > .wrapper > .inner > :nth-child(4) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container02 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container02 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container15 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container15 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container15 > .wrapper > .inner > :nth-child(3) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container15 > .wrapper > .inner > :nth-child(4) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	.container.style5 {
		--alignment: center;
		--flex-alignment: center;
	}
	
	.container.style5:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	.container.style5 > .wrapper > .inner {
		--gutters: 1.875rem;
		--padding-horizontal: 3.25rem;
		--padding-vertical: 1.875rem;
		--spacing: 2.375rem;
	}
	
	.container.style5.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style5.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style5.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style5.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.style5.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.style5.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type, .container.style5.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type, .container.style5.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type, .container.style5.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type, .container.style5.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style5.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container01 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container01 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container26 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container26 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container26 > .wrapper > .inner > :nth-child(3) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container26 > .wrapper > .inner > :nth-child(4) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	.container.style6 {
		--alignment: center;
		--flex-alignment: center;
	}
	
	.container.style6:not(:first-child) {
		margin-top: 0.125rem !important;
	}
	
	.container.style6:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.container.style6 > .wrapper > .inner {
		--gutters: 1.875rem;
		--padding-horizontal: 3.25rem;
		--padding-vertical: 1.875rem;
		--spacing: 2.375rem;
	}
	
	.container.style6.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style6.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style6.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style6.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.style6.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.style6.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div:last-of-type, .container.style6.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style6.columns > .wrapper > .inner > div:first-of-type, .container.style6.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style6.columns > .wrapper > .inner > div:last-of-type, .container.style6.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div:first-of-type, .container.style6.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style6.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container27 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container27 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container27 > .wrapper > .inner > :nth-child(3) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container27 > .wrapper > .inner > :nth-child(4) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container28 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container28 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container28 > .wrapper > .inner > :nth-child(3) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container28 > .wrapper > .inner > :nth-child(4) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container29 > .wrapper > .inner > :nth-child(1) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container29 > .wrapper > .inner > :nth-child(2) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container29 > .wrapper > .inner > :nth-child(3) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	#container29 > .wrapper > .inner > :nth-child(4) {
		width: 100% !important;
		--alignment: center;
		--flex-alignment: center;
		min-height: 100% !important;
	}
	
	.container.style12:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.container.style12:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.container.style12 > .wrapper > .inner {
		--gutters: 3.25rem;
		--padding-horizontal: 2.25rem;
		--padding-vertical: 2rem;
		--spacing: 0.75rem;
	}
	
	.container.style12 {
		min-height: 18rem;
	}
	
	.container.style12.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style12.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	.container.style12.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container10 > .wrapper > .inner > :nth-child(1) {
		width: calc(25% + 0.81rem);
	}
	
	#container10 > .wrapper > .inner > :nth-child(2) {
		width: calc(25% + 0.81rem);
	}
	
	#container10 > .wrapper > .inner > :nth-child(3) {
		width: calc(25% + 0.81rem);
	}
	
	#container10 > .wrapper > .inner > :nth-child(4) {
		width: calc(25% + 0.81rem);
	}
	
	.container.style10 {
		--alignment: center;
		--flex-alignment: center;
	}
	
	.container.style10:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.container.style10:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.container.style10 > .wrapper > .inner {
		--gutters: 3.25rem;
		--padding-horizontal: 3.25rem;
		--padding-vertical: 3.5rem;
		--spacing: 2.375rem;
	}
	
	.container.style10.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style10.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style10.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style10.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style10.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style10.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style10.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.style10.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.style10.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style10.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style10.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style10.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style10.columns > .wrapper > .inner > div:last-of-type, .container.style10.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style10.columns > .wrapper > .inner > div:first-of-type, .container.style10.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style10.columns > .wrapper > .inner > div:last-of-type, .container.style10.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style10.columns > .wrapper > .inner > div:first-of-type, .container.style10.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style10.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container.style8 {
		--alignment: center;
		--flex-alignment: center;
	}
	
	.container.style8:not(:first-child) {
		margin-top: 3.375rem !important;
	}
	
	.container.style8:not(:last-child) {
		margin-bottom: 4.875rem !important;
	}
	
	.container.style8 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 3.25rem;
		--padding-vertical: 5.25rem;
		--spacing: 2.375rem;
	}
	
	.container.style8.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style8.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style8.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style8.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style8.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style8.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style8.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.style8.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.style8.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style8.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style8.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style8.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style8.columns > .wrapper > .inner > div:last-of-type, .container.style8.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style8.columns > .wrapper > .inner > div:first-of-type, .container.style8.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style8.columns > .wrapper > .inner > div:last-of-type, .container.style8.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style8.columns > .wrapper > .inner > div:first-of-type, .container.style8.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style8.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style8.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#links03 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links03:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links03:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links02 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links02:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links02:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links01 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links01:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links01:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links14 {
		gap: 1rem;
		font-size: 1em;
	}
	
	#links14:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links14:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links15 {
		gap: 1rem;
		font-size: 1em;
	}
	
	#links15:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links15:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links10 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links10:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links10:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links11 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links11:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links11:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links12 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links12:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links12:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links16 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links16:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links16:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links17 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links17:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links17:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links18 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links18:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links18:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links19 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links19:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links19:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links20 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links20:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links20:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links21 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links21:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links21:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links22 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links22:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links22:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links23 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links23:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links23:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links24 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links24:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links24:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links25 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links25:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links25:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links26 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links26:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links26:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links27 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links27:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links27:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links28 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links28:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links28:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links29 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links29:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links29:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#links30 {
		gap: 1rem;
		font-size: 1.25em;
	}
	
	#links30:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#links30:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image05 .frame {
		width: 7.375rem;
		height: 6.71875rem !important;
	}
	
	#image05 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image.style10:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.image.style10:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.image.style10 .frame {
		width: 4.375rem;
		height: 5.46875rem !important;
	}
	
	.image.style10 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image07 .frame {
		width: 3.75rem;
	}
	
	#image03:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image03:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image03 .frame {
		width: 10.125rem;
		height: 12.1875rem !important;
	}
	
	#image03 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image16 .frame {
		width: 3.75rem;
	}
	
	#image14 .frame {
		width: 3.75rem;
	}
	
	#image24 .frame {
		width: 3.75rem;
	}
	
	#image33 .frame {
		width: 3.75rem;
	}
	
	#image34 .frame {
		width: 3.75rem;
	}
	
	#image35 .frame {
		width: 3.75rem;
	}
	
	#image32:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image32:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image32 .frame {
		width: 15.75rem;
		height: 19.21875rem !important;
	}
	
	#image32 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image.style12:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	.image.style12:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.image.style12 .frame {
		width: 15.25rem;
		height: 17.65625rem !important;
	}
	
	.image.style12 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#form01 label:first-child {
		font-size: 0.75em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	#form01 input[type="text"], #form01 input[type="email"], #form01 input[type="tel"], #form01 input[type="number"], #form01 textarea, #form01 select, #form01 input[type="checkbox"] + label, #form01 .file {
		font-size: 0.625em;
		letter-spacing: 0rem;
	}
	
	
	
	#form01 textarea {
		line-height: 1.875;
		padding-top: 0.634375rem;
	}
	
	#form01 .actions button {
		font-size: 1em;
		letter-spacing: 0rem;
	}
	
	#form03 label:first-child {
		font-size: 0.75em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	#form03 input[type="text"], #form03 input[type="email"], #form03 input[type="tel"], #form03 input[type="number"], #form03 textarea, #form03 select, #form03 input[type="checkbox"] + label, #form03 .file {
		font-size: 0.625em;
		letter-spacing: 0rem;
	}
	
	
	
	#form03 textarea {
		line-height: 1.875;
		padding-top: 0.634375rem;
	}
	
	#form03 .actions button {
		font-size: 1em;
		letter-spacing: 0rem;
	}
	
	#form02 label:first-child {
		font-size: 0.75em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	#form02 input[type="text"], #form02 input[type="email"], #form02 input[type="tel"], #form02 input[type="number"], #form02 textarea, #form02 select, #form02 input[type="checkbox"] + label, #form02 .file {
		font-size: 0.625em;
		letter-spacing: 0rem;
	}
	
	
	
	#form02 textarea {
		line-height: 1.875;
		padding-top: 0.634375rem;
	}
	
	#form02 .actions button {
		font-size: 1em;
		letter-spacing: 0rem;
	}
	
	#form04 label:first-child {
		font-size: 0.75em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	#form04 input[type="text"], #form04 input[type="email"], #form04 input[type="tel"], #form04 input[type="number"], #form04 textarea, #form04 select, #form04 input[type="checkbox"] + label, #form04 .file {
		font-size: 0.625em;
		letter-spacing: 0rem;
	}
	
	
	
	#form04 textarea {
		line-height: 1.875;
		padding-top: 0.634375rem;
	}
	
	#form04 .actions button {
		font-size: 1em;
		letter-spacing: 0rem;
	}
	
	#table07 {
		letter-spacing: 0rem;
		font-size: 0.75em;
		line-height: 1.875;
	}
	
	#table07 th, #table07 td {
		padding: 0.5rem 0.6875rem;
	}
	
	#table01 {
		letter-spacing: 0rem;
		font-size: 0.75em;
		line-height: 1.875;
	}
	
	#table01 th, #table01 td {
		padding: 0.5rem 0.6875rem;
	}
}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 0rem;
	}
	
	.buttons.style5 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons.style5 li a {
		display: inline-flex;
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons.style4 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons.style4 li a {
		display: inline-flex;
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons.style3 li a {
		width: 11.625rem;
	}
	
	.container.style7 > .wrapper > .inner {
		--spacing: 2.375rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--spacing: 2.375rem;
	}
	
	.container.style5 > .wrapper > .inner {
		--spacing: 2.375rem;
	}
	
	.container.style6 > .wrapper > .inner {
		--spacing: 2.375rem;
	}
	
	.container.style12 > .wrapper > .inner {
		--spacing: 0.75rem;
	}
	
	.container.style10 > .wrapper > .inner {
		--spacing: 2.375rem;
	}
	
	.container.style8 > .wrapper > .inner {
		--spacing: 2.375rem;
	}
	
	#image05 .frame {
		height: 5.375rem !important;
	}
	
	.image.style10 .frame {
		height: 4.375rem !important;
	}
	
	#image03 .frame {
		height: 9.75rem !important;
	}
	
	#image32 .frame {
		height: 15.375rem !important;
	}
	
	.image.style12 .frame {
		height: 14.125rem !important;
	}
	
	#form01 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	#form03 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	#form02 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	#form04 .actions button {
		max-width: 32rem;
		width: 100%;
	}
}

@media (max-width: 360px) {
	#main > .inner {
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-0.75rem);
		max-width: calc(100% + 1.5rem + 0.4725px);
		width: calc(100% + 1.5rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -0.75rem !important;
	}
	
	#main > .inner > .active > .full:last-child {
		margin-bottom: -0.75rem !important;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		font-size: 2em;
	}
	
	#text01 {
		font-size: 0.75em;
	}
	
	#text23 {
		font-size: 2em;
	}
	
	h1.style18, h2.style18, h3.style18, p.style18 {
		font-size: 2em;
	}
	
	#text21 {
		font-size: 1.5em;
	}
	
	#text40 {
		font-size: 2em;
	}
	
	#text07 {
		font-size: 2em;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		font-size: 2.875em;
	}
	
	h1.style7, h2.style7, h3.style7, p.style7 {
		font-size: 1.25em;
	}
	
	h1.style9, h2.style9, h3.style9, p.style9 {
		font-size: 4.625em;
	}
	
	h1.style10, h2.style10, h3.style10, p.style10 {
		font-size: 1.25em;
	}
	
	h1.style11, h2.style11, h3.style11, p.style11 {
		font-size: 0.875em;
	}
	
	h1.style12, h2.style12, h3.style12, p.style12 {
		font-size: 1.5em;
	}
	
	h1.style19, h2.style19, h3.style19, p.style19 {
		font-size: 1em;
	}
	
	h1.style5, h2.style5, h3.style5, p.style5 {
		font-size: 1.125em;
	}
	
	h1.style17, h2.style17, h3.style17, p.style17 {
		font-size: 0.875em;
	}
	
	.buttons.style5 {
		gap: 0.75rem;
	}
	
	.buttons.style4 {
		gap: 0.75rem;
	}
	
	.buttons.style3 {
		gap: 0.75rem;
	}
	
	.container.style7 > .wrapper > .inner {
		--gutters: 0.125rem;
		--padding-horizontal: 2.4375rem;
		--padding-vertical: 0.28125rem;
		--spacing: 2.078125rem;
	}
	
	#container04 > .wrapper > .inner > :nth-child(1) {
		width: calc(25% + 0.03rem);
	}
	
	#container04 > .wrapper > .inner > :nth-child(2) {
		width: calc(25% + 0.03rem);
	}
	
	#container04 > .wrapper > .inner > :nth-child(3) {
		width: calc(25% + 0.03rem);
	}
	
	#container04 > .wrapper > .inner > :nth-child(4) {
		width: calc(25% + 0.03rem);
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 2.4375rem;
		--padding-horizontal: 2.4375rem;
		--padding-vertical: 2.4375rem;
		--spacing: 2.078125rem;
	}
	
	#container08 > .wrapper > .inner > :nth-child(1) {
		width: calc(50% + 1.21rem);
	}
	
	#container08 > .wrapper > .inner > :nth-child(2) {
		width: calc(50% + 1.21rem);
	}
	
	#container11 > .wrapper > .inner > :nth-child(1) {
		width: calc(25% + 0.6rem);
	}
	
	#container11 > .wrapper > .inner > :nth-child(2) {
		width: calc(25% + 0.6rem);
	}
	
	#container11 > .wrapper > .inner > :nth-child(3) {
		width: calc(25% + 0.6rem);
	}
	
	#container11 > .wrapper > .inner > :nth-child(4) {
		width: calc(25% + 0.6rem);
	}
	
	#container02 > .wrapper > .inner > :nth-child(1) {
		width: calc(50% + 1.21rem);
	}
	
	#container02 > .wrapper > .inner > :nth-child(2) {
		width: calc(50% + 1.21rem);
	}
	
	#container15 > .wrapper > .inner > :nth-child(1) {
		width: calc(25% + 0.6rem);
	}
	
	#container15 > .wrapper > .inner > :nth-child(2) {
		width: calc(25% + 0.6rem);
	}
	
	#container15 > .wrapper > .inner > :nth-child(3) {
		width: calc(25% + 0.6rem);
	}
	
	#container15 > .wrapper > .inner > :nth-child(4) {
		width: calc(25% + 0.6rem);
	}
	
	.container.style5 > .wrapper > .inner {
		--gutters: 1.875rem;
		--padding-horizontal: 2.4375rem;
		--padding-vertical: 1.40625rem;
		--spacing: 2.078125rem;
	}
	
	#container01 > .wrapper > .inner > :nth-child(1) {
		width: calc(50% + 0.93rem);
	}
	
	#container01 > .wrapper > .inner > :nth-child(2) {
		width: calc(50% + 0.93rem);
	}
	
	#container26 > .wrapper > .inner > :nth-child(1) {
		width: calc(25% + 0.6rem);
	}
	
	#container26 > .wrapper > .inner > :nth-child(2) {
		width: calc(25% + 0.6rem);
	}
	
	#container26 > .wrapper > .inner > :nth-child(3) {
		width: calc(25% + 0.6rem);
	}
	
	#container26 > .wrapper > .inner > :nth-child(4) {
		width: calc(25% + 0.6rem);
	}
	
	.container.style6 > .wrapper > .inner {
		--gutters: 1.875rem;
		--padding-horizontal: 2.4375rem;
		--padding-vertical: 1.40625rem;
		--spacing: 2.078125rem;
	}
	
	#container27 > .wrapper > .inner > :nth-child(1) {
		width: calc(25% + 0.6rem);
	}
	
	#container27 > .wrapper > .inner > :nth-child(2) {
		width: calc(25% + 0.6rem);
	}
	
	#container27 > .wrapper > .inner > :nth-child(3) {
		width: calc(25% + 0.6rem);
	}
	
	#container27 > .wrapper > .inner > :nth-child(4) {
		width: calc(25% + 0.6rem);
	}
	
	#container28 > .wrapper > .inner > :nth-child(1) {
		width: calc(25% + 0.6rem);
	}
	
	#container28 > .wrapper > .inner > :nth-child(2) {
		width: calc(25% + 0.6rem);
	}
	
	#container28 > .wrapper > .inner > :nth-child(3) {
		width: calc(25% + 0.6rem);
	}
	
	#container28 > .wrapper > .inner > :nth-child(4) {
		width: calc(25% + 0.6rem);
	}
	
	#container29 > .wrapper > .inner > :nth-child(1) {
		width: calc(25% + 0.6rem);
	}
	
	#container29 > .wrapper > .inner > :nth-child(2) {
		width: calc(25% + 0.6rem);
	}
	
	#container29 > .wrapper > .inner > :nth-child(3) {
		width: calc(25% + 0.6rem);
	}
	
	#container29 > .wrapper > .inner > :nth-child(4) {
		width: calc(25% + 0.6rem);
	}
	
	.container.style12 > .wrapper > .inner {
		--gutters: 2.4375rem;
		--padding-horizontal: 1.6875rem;
		--padding-vertical: 1.5rem;
		--spacing: 0.65625rem;
	}
	
	.container.style12 {
		min-height: 13.5rem;
	}
	
	#container10 > .wrapper > .inner > :nth-child(1) {
		width: calc(25% + 0.6rem);
	}
	
	#container10 > .wrapper > .inner > :nth-child(2) {
		width: calc(25% + 0.6rem);
	}
	
	#container10 > .wrapper > .inner > :nth-child(3) {
		width: calc(25% + 0.6rem);
	}
	
	#container10 > .wrapper > .inner > :nth-child(4) {
		width: calc(25% + 0.6rem);
	}
	
	.container.style10 > .wrapper > .inner {
		--gutters: 2.4375rem;
		--padding-horizontal: 2.4375rem;
		--padding-vertical: 2.625rem;
		--spacing: 2.078125rem;
	}
	
	.container.style8 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 2.4375rem;
		--padding-vertical: 3.9375rem;
		--spacing: 2.078125rem;
	}
	
	#links03 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links02 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links01 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links14 {
		gap: 0.75rem;
		font-size: 1em;
	}
	
	#links15 {
		gap: 0.75rem;
		font-size: 1em;
	}
	
	#links10 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links11 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links12 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links16 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links17 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links18 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links19 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links20 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links21 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links22 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links23 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links24 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links25 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links26 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links27 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links28 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links29 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#links30 {
		gap: 0.75rem;
		font-size: 1.25em;
	}
	
	#image05 .frame {
		height: 4.703125rem !important;
	}
	
	.image.style10 .frame {
		height: 3.828125rem !important;
	}
	
	#image03 .frame {
		height: 8.53125rem !important;
	}
	
	#image32 .frame {
		height: 13.453125rem !important;
	}
	
	.image.style12 .frame {
		height: 12.359375rem !important;
	}
	
	#table07 {
		font-size: 0.75em;
	}
	
	#table01 {
		font-size: 0.75em;
	}
}