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}@media (prefers-reduced-motion) { *, *:before, *:after { transform: none !important; } }

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

#bg:before {
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
	background-image: linear-gradient(109deg, rgba(38,0,56,0.4) 0%, rgba(0,0,0,0.22) 100%, rgba(255,255,255,0.278) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#bg {
	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-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#bg video {
	bottom: 0;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	width: 100%;
}

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

html {
	font-size: 17pt;
}

u {
	text-decoration: underline;
}

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

em {
	font-style: italic;
}

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

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

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

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

s {
	text-decoration: line-through;
}

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

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

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

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

unloaded-script {
	display: none;
}

#wrapper {
	-webkit-overflow-scrolling: touch;
	align-items: stretch;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 0 0 0rem 0;
}

#main {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	--border-radius-tl: 0;
	--border-radius-tr: 0;
	--border-radius-br: 0;
	--border-radius-bl: 0;
	align-items: center;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	max-width: 100%;
	position: relative;
	text-align: var(--alignment);
	z-index: 1;
	background-color: transparent;
	transition: opacity 0.125s ease-in-out 0s;
}

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

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

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

#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(-2.75rem);
	max-width: calc(100% + 5.5rem + 0.4725px);
	width: calc(100% + 5.5rem + 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 > header > .full:first-child {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	margin-top: 0rem !important;
}

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

body.is-loading #main {
	opacity: 0;
}

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

#main > .inner > header.hidden, #main > .inner > footer.hidden {
	transition: opacity 0.125s ease-in-out, visibility 0.125s;
	opacity: 0;
	visibility: hidden;
}

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

#main > .inner > section.inactive {
	opacity: 0;
	transition: opacity 0.125s ease-in-out;
}

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;
	pointer-events: none;
	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, h1 spoiler-text, h2 spoiler-text, h3 spoiler-text, p spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

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

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

#text23 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.1rem;
	width: calc(100% + 0.1rem);
	font-size: 1em;
	line-height: 1.25;
	font-weight: 300;
}

#text23 mark {
	background-color: transparent;
}

#text23 a:hover {
	color: #6A00FF;
}

#text23 a {
	text-decoration: underline;
}

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

#text36 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.375em;
	line-height: 0.875;
	font-weight: 400;
}

#text36 mark {
	background-color: transparent;
}

#text36 a {
	text-decoration: underline;
}

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

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

#text36 {
	z-index: 9999;
}

#text36 a {
	text-decoration: none;
}

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

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

#text37 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 3.625em;
	line-height: 1.125;
	font-weight: 600;
}

#text37 mark {
	color: #26FFCE;
	background-color: transparent;
}

#text37 a {
	text-decoration: none;
}

#text37 a:hover {
	text-decoration: underline;
}

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

#text50 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 4em;
	line-height: 1;
	font-weight: 700;
}

#text50 mark {
	color: #0D101D;
	background-color: transparent;
}

#text50 a {
	text-decoration: none;
}

#text50 a:hover {
	text-decoration: underline;
}

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

h1.style2, h2.style2, h3.style2, p.style2 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 2.5em;
	line-height: 1;
	font-weight: 100;
}

h1.style2 mark, h2.style2 mark, h3.style2 mark, p.style2 mark {
	color: #0D101D;
	background-color: transparent;
}

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

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

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

h1.style1, h2.style1, h3.style1, p.style1 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 4em;
	line-height: 1;
	font-weight: 700;
}

h1.style1 mark, h2.style1 mark, h3.style1 mark, p.style1 mark {
	color: #0D101D;
	background-color: transparent;
}

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

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

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

h1.style3, h2.style3, h3.style3, p.style3 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.075rem;
	width: calc(100% + 0.075rem);
	font-size: 1em;
	line-height: 1.25;
	font-weight: 100;
}

h1.style3 mark, h2.style3 mark, h3.style3 mark, p.style3 mark {
	background-color: transparent;
}

h1.style3 a:hover, h2.style3 a:hover, h3.style3 a:hover, p.style3 a:hover {
	color: #6A00FF;
}

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

h1.style3 span.p:nth-child(n + 2), h2.style3 span.p:nth-child(n + 2), h3.style3 span.p:nth-child(n + 2), p.style3 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.5rem !important;
}

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

h1.style8, h2.style8, h3.style8, p.style8 {
	text-align: left;
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 4em;
	line-height: 1;
	font-weight: 700;
}

h1.style8 mark, h2.style8 mark, h3.style8 mark, p.style8 mark {
	color: #0D101D;
	background-color: transparent;
}

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

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

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

h1.style7, h2.style7, h3.style7, p.style7 {
	text-align: left;
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 2.5em;
	line-height: 1;
	font-weight: 100;
}

h1.style7 mark, h2.style7 mark, h3.style7 mark, p.style7 mark {
	color: #0D101D;
	background-color: transparent;
}

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

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

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

h1.style5, h2.style5, h3.style5, p.style5 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 2.5em;
	line-height: 1;
	font-weight: 700;
}

h1.style5 mark, h2.style5 mark, h3.style5 mark, p.style5 mark {
	color: #0D101D;
	background-color: transparent;
}

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

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

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

h1.style6, h2.style6, h3.style6, p.style6 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 2em;
	line-height: 1;
	font-weight: 100;
}

h1.style6 mark, h2.style6 mark, h3.style6 mark, p.style6 mark {
	color: #0D101D;
	background-color: transparent;
}

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

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

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

h1.style4, h2.style4, h3.style4, p.style4 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.075rem;
	width: calc(100% + 0.075rem);
	font-size: 1em;
	line-height: 1.25;
	font-weight: 100;
}

h1.style4 mark, h2.style4 mark, h3.style4 mark, p.style4 mark {
	background-color: transparent;
}

h1.style4 a:hover, h2.style4 a:hover, h3.style4 a:hover, p.style4 a:hover {
	color: #6A00FF;
}

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

h1.style4 span.p:nth-child(n + 2), h2.style4 span.p:nth-child(n + 2), h3.style4 span.p:nth-child(n + 2), p.style4 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: 0rem !important;
}

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

h1.style9, h2.style9, h3.style9, p.style9 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1.375em;
	line-height: 1;
	font-weight: 400;
}

h1.style9 mark, h2.style9 mark, h3.style9 mark, p.style9 mark {
	color: #0D101D;
	background-color: transparent;
}

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

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

h1.style9 span.p:nth-child(n + 2), h2.style9 span.p:nth-child(n + 2), h3.style9 span.p:nth-child(n + 2), 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.5rem !important;
}

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

h1.style10, h2.style10, h3.style10, p.style10 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1.375em;
	line-height: 1;
	font-weight: 400;
}

h1.style10 mark, h2.style10 mark, h3.style10 mark, p.style10 mark {
	color: #0D101D;
	background-color: transparent;
}

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

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

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

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

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

#text70 {
	text-align: left;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1.375em;
	line-height: 1;
	font-weight: 400;
}

#text70 mark {
	color: #0D101D;
	background-color: transparent;
}

#text70 a {
	text-decoration: none;
}

#text70 a:hover {
	text-decoration: underline;
}

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

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

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

#text16 {
	color: #151515;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 2.5em;
	line-height: 1.5;
	font-weight: 800;
}

#text16 mark {
	color: #0D101D;
	background-color: transparent;
}

#text16 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text16 a:hover {
	text-decoration: underline;
}

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

#text16 {
	margin-bottom: -20px !important;
}

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

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

#text29 {
	color: #151515;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.875;
	font-weight: 400;
}

#text29 mark {
	color: #0D101D;
	background-color: transparent;
}

#text29 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text29 a:hover {
	text-decoration: underline;
}

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

#text29 {
	margin-bottom: 10px !important;
}

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

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

#text15 {
	color: #151515;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1.25em;
	line-height: 1.875;
	font-weight: 400;
}

#text15 mark {
	color: #0D101D;
	background-color: transparent;
}

#text15 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text15 a:hover {
	text-decoration: underline;
}

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

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

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

#text03 {
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 2.125em;
	line-height: 1;
	font-weight: 400;
}

#text03 mark {
	color: #0D101D;
	background-color: transparent;
}

#text03 a {
	text-decoration: none;
}

#text03 a:hover {
	text-decoration: underline;
}

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

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

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

#text24 {
	color: #D357FF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 3.375em;
	line-height: 1.125;
	font-weight: 600;
}

#text24 mark {
	color: #0D101D;
	background-color: transparent;
}

#text24 a {
	color: #FFFFFF;
	text-decoration: none;
}

#text24 a:hover {
	text-decoration: underline;
}

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

#text25 {
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	line-height: 1;
	font-weight: 400;
}

#text25 mark {
	background-color: transparent;
}

#text25 a:hover {
	color: #6A00FF;
}

#text25 a {
	text-decoration: underline;
}

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

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

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

#text26 {
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1.125em;
	line-height: 0.75;
	font-weight: 300;
}

#text26 mark {
	color: #0D101D;
	background-color: transparent;
}

#text26 a {
	text-decoration: none;
}

#text26 a:hover {
	text-decoration: underline;
}

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

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

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

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

#links02 {
	--flex-alignment: flex-end;
	--alignment: right;
	gap: 1.125rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	font-weight: 200;
}

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

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

#links02 li a {
	color: #FFFFFF;
	text-decoration: none;
}

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

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

#links02 .n02 a:hover {
	color: #BF80FF;
}

#links02 .n03 a:hover {
	color: #BF80FF;
}

#links02 .n04 a:hover {
	color: #BF80FF;
}

#links02 .n05 a:hover {
	color: #BF80FF;
}

.links.style1 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0rem;
	flex-direction: column;
	flex-wrap: nowrap;
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
	font-weight: 200;
}

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

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

.links.style1 li a {
	color: #FFFFFF;
	text-decoration: none;
}

.links.style1 li a:hover {
	color: #B880FF;
}

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

#links03 .n01 a {
	cursor: pointer;
}

#links03 .n02 a:hover {
	color: #B880FF;
}

#links03 .n02 a {
	cursor: pointer;
}

#links03 .n03 a:hover {
	color: #B880FF;
}

#links03 .n03 a {
	cursor: pointer;
}

#links03 .n04 a:hover {
	color: #B880FF;
}

#links03 .n04 a {
	cursor: pointer;
}

#links03 .n05 a:hover {
	color: #B880FF;
}

#links03 .n05 a {
	cursor: pointer;
}

#links03 .n06 a:hover {
	color: #B880FF;
}

#links03 .n06 a {
	cursor: pointer;
}

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

#links01 .n01 a {
	cursor: pointer;
}

#links01 .n02 a:hover {
	color: #B880FF;
}

#links01 .n02 a {
	cursor: pointer;
}

#links01 .n03 a:hover {
	color: #B880FF;
}

#links01 .n03 a {
	cursor: pointer;
}

#links01 .n04 a:hover {
	color: #B880FF;
}

#links01 .n04 a {
	cursor: pointer;
}

#links01 .n05 a:hover {
	color: #B880FF;
}

#links01 .n05 a {
	cursor: pointer;
}

#links01 .n06 a:hover {
	color: #B880FF;
}

#links01 .n06 a {
	cursor: pointer;
}

#links04 .n01 a:hover {
	color: #B880FF;
}

#links04 .n01 a {
	cursor: pointer;
}

#links04 .n02 a:hover {
	color: #B880FF;
}

#links04 .n02 a {
	cursor: pointer;
}

#links04 .n03 a:hover {
	color: #B880FF;
}

#links04 .n03 a {
	cursor: pointer;
}

#links04 .n04 a:hover {
	color: #B880FF;
}

#links04 .n04 a {
	cursor: pointer;
}

#links04 .n05 a:hover {
	color: #B880FF;
}

#links04 .n05 a {
	cursor: pointer;
}

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

#footer {
	margin-top: 0rem !important;
}

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

#navbar {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: rgba(32,32,31,0.38);
	-webkit-backdrop-filter: blur(0.45rem);
	backdrop-filter: blur(0.45rem);
}

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

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

#navbar > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 6rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#navbar > .wrapper {
	max-width: var(--width);
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#navbar.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container12 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	min-height: var(--viewport-height);
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-size: cover;
}

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

#container12 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 6rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container12 > .wrapper {
	max-width: var(--width);
	width: 100%;
}

#container12 > .slideshow-background {
	border-radius: inherit;
	height: 100%;
	left: 0;
	object-fit: cover;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
	background-color: #000000;
}

#container12:before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%22600%22%20height%3D%22347%22%20viewBox%3D%220%200%20600%20347%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20style%3D%22filter%3A%20blur%286px%29%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20polygon%20%7B%20fill%3A%20rgba(255,255,255,0.278)%3B%20transform%3A%20scale%28109%25%29%3B%20%7D%20%3C%2Fstyle%3E%20%3Cpolygon%20points%3D%22150.0%2C225.1666%20170.0%2C225.1666%20180.0%2C242.4871%20170.0%2C259.8076%20150.0%2C259.8076%20140.0%2C242.4871%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2217650ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.5%3B0.9%3B1%3B0.9%3B0.5%3B0%3B0%3B0%3B0.5%3B0.7%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22540.0%2C277.1281%20560.0%2C277.1281%20570.0%2C294.4486%20560.0%2C311.7691%20540.0%2C311.7691%20530.0%2C294.4486%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2217550ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.3%3B0.9%3B1%3B0.9%3B0.3%3B0%3B0%3B0%3B0.2%3B0.7%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22450.0%2C225.1666%20470.0%2C225.1666%20480.0%2C242.4871%20470.0%2C259.8076%20450.0%2C259.8076%20440.0%2C242.4871%22%20fill-opacity%3D%220.3%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2211550ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220.3%3B0.7%3B0%3B0%3B0%3B0.5%3B0.9%3B1%3B0.9%3B0.5%3B0%3B0%3B0%3B0.3%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22300.0%2C242.4871%20320.0%2C242.4871%20330.0%2C259.8076%20320.0%2C277.1281%20300.0%2C277.1281%20290.0%2C259.8076%22%20fill-opacity%3D%220.2%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2216600ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220.2%3B0.9%3B1%3B0.9%3B0.2%3B0%3B0%3B0%3B0.4%3B0.9%3B0%3B0%3B0%3B0.2%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22270.0%2C17.3205%20290.0%2C17.3205%20300.0%2C34.641%20290.0%2C51.9615%20270.0%2C51.9615%20260.0%2C34.641%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2218500ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.2%3B0.7%3B0%3B0%3B0%3B0.2%3B0.9%3B1%3B0.9%3B0.2%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22150.0%2C17.3205%20170.0%2C17.3205%20180.0%2C34.641%20170.0%2C51.9615%20150.0%2C51.9615%20140.0%2C34.641%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2217050ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.2%3B0.9%3B1%3B0.9%3B0.2%3B0%3B0%3B0%3B0.2%3B0.7%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22510.0%2C51.9615%20530.0%2C51.9615%20540.0%2C69.282%20530.0%2C86.6025%20510.0%2C86.6025%20500.0%2C69.282%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2218700ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.5%3B0.9%3B1%3B0.9%3B0.5%3B0%3B0%3B0%3B0.4%3B0.8%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22510.0%2C190.5256%20530.0%2C190.5256%20540.0%2C207.8461%20530.0%2C225.1666%20510.0%2C225.1666%20500.0%2C207.8461%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2218400ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.5%3B0.7%3B0%3B0%3B0%3B0.5%3B0.9%3B1%3B0.9%3B0.5%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22360.0%2C173.2051%20380.0%2C173.2051%20390.0%2C190.5256%20380.0%2C207.8461%20360.0%2C207.8461%20350.0%2C190.5256%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2219750ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.5%3B0.9%3B1%3B0.9%3B0.5%3B0%3B0%3B0%3B0.5%3B0.8%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22240.0%2C173.2051%20260.0%2C173.2051%20270.0%2C190.5256%20260.0%2C207.8461%20240.0%2C207.8461%20230.0%2C190.5256%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2210300ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.3%3B0.8%3B0%3B0%3B0%3B0.5%3B0.9%3B1%3B0.9%3B0.5%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22300.0%2C69.282%20320.0%2C69.282%20330.0%2C86.6025%20320.0%2C103.923%20300.0%2C103.923%20290.0%2C86.6025%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2212050ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.3%3B0.8%3B0%3B0%3B0%3B0.2%3B0.9%3B1%3B0.9%3B0.2%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%2230.0%2C259.8076%2050.0%2C259.8076%2060.0%2C277.1281%2050.0%2C294.4486%2030.0%2C294.4486%2020.0%2C277.1281%22%20fill-opacity%3D%220.2%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2210750ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220.2%3B0.9%3B1%3B0.9%3B0.2%3B0%3B0%3B0%3B0.4%3B0.9%3B0%3B0%3B0%3B0.2%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%2230.0%2C17.3205%2050.0%2C17.3205%2060.0%2C34.641%2050.0%2C51.9615%2030.0%2C51.9615%2020.0%2C34.641%22%20fill-opacity%3D%220.5%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2219150ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220.5%3B0.9%3B1%3B0.9%3B0.5%3B0%3B0%3B0%3B0.3%3B0.7%3B0%3B0%3B0%3B0.5%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22390.0%2C121.2436%20410.0%2C121.2436%20420.0%2C138.5641%20410.0%2C155.8846%20390.0%2C155.8846%20380.0%2C138.5641%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2210000ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.5%3B0.9%3B1%3B0.9%3B0.5%3B0%3B0%3B0%3B0.5%3B0.8%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22450.0%2C51.9615%20470.0%2C51.9615%20480.0%2C69.282%20470.0%2C86.6025%20450.0%2C86.6025%20440.0%2C69.282%22%20fill-opacity%3D%220.5%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2213950ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220.5%3B0.9%3B1%3B0.9%3B0.5%3B0%3B0%3B0%3B0.2%3B0.8%3B0%3B0%3B0%3B0.5%22%20%2F%3E%20%3C%2Fpolygon%3E%20%3Cpolygon%20points%3D%22180.0%2C277.1281%20200.0%2C277.1281%20210.0%2C294.4486%20200.0%2C311.7691%20180.0%2C311.7691%20170.0%2C294.4486%22%20fill-opacity%3D%220%22%3E%20%3Canimate%20attributeName%3D%22fill-opacity%22%20dur%3D%2211000ms%22%20repeatCount%3D%22indefinite%22%20values%3D%220%3B0%3B0%3B0.4%3B0.9%3B1%3B0.9%3B0.4%3B0%3B0%3B0%3B0.4%3B0.9%3B0%22%20%2F%3E%20%3C%2Fpolygon%3E%3C%2Fsvg%3E'), linear-gradient(114deg, rgba(0,0,0,0.4) 0%, transparent 57%);
	background-size: cover, cover;
	background-position: center, 0% 0%;
	background-repeat: no-repeat, repeat;
}

#container12 > .slideshow-background > .slow {
	animation-duration: 50s;
}

#container12 > .slideshow-background > .normal {
	animation-duration: 37.5s;
}

#container12 > .slideshow-background > .fast {
	animation-duration: 25s;
}

#container12 > .slideshow-background > div {
	transition-duration: 2.5s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container12 > .wrapper > .inner > :nth-child(1) {
	width: calc(40% + (var(--gutters) / 3));
}

#container12 > .wrapper > .inner > :nth-child(2) {
	width: calc(31% + (var(--gutters) / 3));
}

#container12 > .wrapper > .inner > :nth-child(3) {
	width: calc(29% + (var(--gutters) / 3));
}

#container12 > .wrapper {
	height: 100svh;
	display: flex;
	align-items: center;
}

#container01 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	min-height: var(--viewport-height);
	align-items: center;
	justify-content: center;
	background-image: radial-gradient(39% 66% at 19% 49%, rgba(47,0,74,0.431) 0%, #000000 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

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

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

#container01 > .wrapper > .inner {
	--gutters: 1.375rem;
	--padding-vertical: 2.375rem;
	--spacing: 0.875rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container01 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container01.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% + (var(--gutters) / 3));
}

#container01 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + (var(--gutters) / 3));
}

#container01 > .wrapper > .inner > :nth-child(3) {
	width: calc(25% + (var(--gutters) / 3));
}

#container01 > .wrapper {
	min-height: 100vh;
	align-items: center;
	display: flex;
}

.container.style2 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #FFFFFF;
}

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

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

.container.style2 > .wrapper > .inner {
	--gutters: 9.25rem;
	--padding-vertical: 2.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container02 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(181deg, rgba(90,0,112,0.22) 0%, #000000 63%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

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

#container02 > .wrapper > .inner {
	--gutters: 9.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container02 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container02.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container02 > .wrapper {
	min-height: 50vh;
	align-items: center;
	display: flex;
	padding: 5% 0;
}

.container.style3 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	min-height: var(--viewport-height);
	align-items: center;
	justify-content: center;
	background-image: radial-gradient(100% 66% at 90% 35%, rgba(10,120,0,0.329) 0%, #000000 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	border-color: #FFFFFF;
	border-style: solid;
	border-top-width: 1px;
	border-bottom-width: 1px;
}

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

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

.container.style3 > .wrapper > .inner {
	--gutters: 1.375rem;
	--padding-vertical: 4rem;
	--spacing: 0.875rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container03 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + (var(--gutters) / 3));
}

#container03 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + (var(--gutters) / 3));
}

#container03 > .wrapper > .inner > :nth-child(3) {
	width: calc(50% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container27 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	min-height: var(--viewport-height);
	align-items: center;
	justify-content: center;
	background-image: radial-gradient(99% 66% at 10% 52%, rgba(117,89,30,0.349) 0%, #000000 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	border-color: #FFFFFF;
	border-style: solid;
	border-bottom-width: 1px;
}

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

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

#container27 > .wrapper > .inner {
	--gutters: 1.375rem;
	--padding-vertical: 4rem;
	--spacing: 0.875rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container27 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container27.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(50% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container27 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + (var(--gutters) / 3));
}

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

.container.style1 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	min-height: var(--viewport-height);
	align-items: center;
	justify-content: center;
	background-image: radial-gradient(100% 66% at 90% 35%, rgba(181,0,22,0.329) 0%, #000000 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	border-color: #FFFFFF;
	border-style: solid;
	border-top-width: 1px;
	border-bottom-width: 1px;
}

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

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

.container.style1 > .wrapper > .inner {
	--gutters: 1.375rem;
	--padding-vertical: 4rem;
	--spacing: 0.875rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container.style1 > .wrapper {
	max-width: 100%;
	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 !important;
	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 !important;
	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;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

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

#container25 > .wrapper > .inner > :nth-child(1) {
	width: calc(25% + (var(--gutters) / 3));
}

#container25 > .wrapper > .inner > :nth-child(2) {
	width: calc(25% + (var(--gutters) / 3));
}

#container25 > .wrapper > .inner > :nth-child(3) {
	width: calc(50% + (var(--gutters) / 3));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container30 > .wrapper {
	min-height: 20vh;
}

#container29 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-image: radial-gradient(57% 105% at 86% 50%, rgba(63,0,92,0.459) 0%, #000000 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

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

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

#container29 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 0rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container29 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container29.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container29 > .wrapper > .inner > :nth-child(1) {
	width: 70%;
}

#container29 > .wrapper > .inner > :nth-child(2) {
	width: 30%;
}

#container29 > .wrapper {
	min-height: 70vh;
	align-items: center;
	display: flex;
}

#container05 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(181deg, rgba(90,0,112,0.22) 0%, #000000 63%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

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

#container05 > .wrapper > .inner {
	--gutters: 9.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container05 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container05.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container05 > .wrapper {
	min-height: 70vh;
	align-items: center;
	display: flex;
}

#container14 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	min-height: var(--viewport-height);
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(0deg, rgba(47,0,74,0.212) 0%, #000000 61%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	border-color: #FFFFFF;
	border-style: solid;
	border-top-width: 1px;
	border-bottom-width: 1px;
}

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

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

#container14 > .wrapper > .inner {
	--gutters: 6rem;
	--padding-vertical: 2.375rem;
	--spacing: 0.875rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container14 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container14 > .wrapper > .inner > :nth-child(1) {
	width: calc(70% + (var(--gutters) / 2));
}

#container14 > .wrapper > .inner > :nth-child(2) {
	width: calc(30% + (var(--gutters) / 2));
}

#bannerbottom {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

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

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

#bannerbottom > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 0rem;
	--padding-vertical: 0.75rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#bannerbottom > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#bannerbottom.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container15 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: center;
	background-color: #FFFFFF;
}

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

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

#container15 > .wrapper > .inner {
	--gutters: 4.25rem;
	--padding-vertical: 3.875rem;
	--spacing: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container15 > .wrapper {
	max-width: 59rem;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container15.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container18 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	min-height: var(--viewport-height);
	align-items: center;
	justify-content: center;
	background-image: radial-gradient(50% 50% at 50% 50%, rgba(50,0,89,0.239) 0%, rgba(0,0,0,0.8) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

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

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

#container18 > .wrapper > .inner {
	--gutters: 9.25rem;
	--padding-vertical: 2.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container18 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container07 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,0.702);
	border-color: #FFFFFF;
	border-style: solid;
	border-top-width: 1px;
}

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

#container07 > .wrapper > .inner {
	--gutters: 12rem;
	--padding-horizontal: 6rem;
	--padding-vertical: 1.125rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container07 > .wrapper {
	max-width: 100%;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container07.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

#container07 > .wrapper > .inner > :nth-child(1) {
	width: calc(50% + (var(--gutters) / 2));
}

#container07 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
	--alignment: right;
	--flex-alignment: flex-end;
	--indent-left: 0;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: 0;
}

#container07 > .wrapper {
	height: 60px;
}

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

hr:before {
	content: '';
}

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

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

#divider14:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

hr.style2:before {
	width: 1rem;
	background-color: transparent;
	height: 1px;
	border-radius: 0px;
}

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

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

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

#buttons03 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons03 li a {
	display: inline-block;
	width: auto;
	height: 1.875rem;
	line-height: calc(1.875rem - 4px);
	padding: 0 0.9375rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.025rem;
	padding-left: calc(0.025rem + 0.9375rem);
	font-size: 0.75em;
	font-weight: 500;
	border-radius: 2.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.5s ease, color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}

#buttons03 .button {
	color: #FFFFFF;
	border: solid 2px #FFFFFF;
}

#buttons03 li a:hover {
	transform: scale(0.975);
}

.buttons.style1 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 0.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

.buttons.style1 li a {
	display: inline-block;
	width: auto;
	height: 1.5rem;
	line-height: calc(1.5rem - 2px);
	padding: 0 0.75rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.025rem;
	padding-left: calc(0.025rem + 0.75rem);
	font-size: 0.5em;
	font-weight: 300;
	border-radius: 2.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.5s ease, color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}

.buttons.style1 .button {
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
}

.buttons.style1 li a:hover {
	transform: scale(0.975);
}

#buttons09 .n01:hover {
	border-color: #FF8FAA !important;
	color: #FF8FAA !important;
}

#buttons09 .n01 {
	cursor: pointer;
}

#buttons09 .n02:hover {
	border-color: #FF8FAA !important;
	color: #FF8FAA !important;
}

#buttons09 .n02 {
	cursor: pointer;
}

#buttons09 .n03:hover {
	border-color: #FF8FAA !important;
	color: #FF8FAA !important;
}

#buttons09 .n03 {
	cursor: pointer;
}

#buttons09 .n04:hover {
	border-color: #FF8FAA !important;
	color: #FF8FAA !important;
}

#buttons09 .n04 {
	cursor: pointer;
}

#buttons09 .n05:hover {
	border-color: #FF8FAA !important;
	color: #FF8FAA !important;
}

#buttons09 .n05 {
	cursor: pointer;
}

#buttons01 .n01:hover {
	border-color: #8AFF00 !important;
	color: #8AFF00 !important;
}

#buttons01 .n01 {
	cursor: pointer;
}

#buttons01 .n02:hover {
	border-color: #8AFF00 !important;
	color: #8AFF00 !important;
}

#buttons01 .n02 {
	cursor: pointer;
}

#buttons01 .n03:hover {
	border-color: #8AFF00 !important;
	color: #8AFF00 !important;
}

#buttons01 .n03 {
	cursor: pointer;
}

#buttons01 .n04:hover {
	border-color: #8AFF00 !important;
	color: #8AFF00 !important;
}

#buttons01 .n04 {
	cursor: pointer;
}

#buttons01 .n05:hover {
	border-color: #8AFF00 !important;
	color: #8AFF00 !important;
}

#buttons01 .n05 {
	cursor: pointer;
}

#buttons11 .n01:hover {
	border-color: #FFC03B !important;
	color: #FFC03B !important;
}

#buttons11 .n01 {
	cursor: pointer;
}

#buttons11 .n02:hover {
	border-color: #FFC03B !important;
	color: #FFC03B !important;
}

#buttons11 .n02 {
	cursor: pointer;
}

#buttons11 .n03:hover {
	border-color: #FFC03B !important;
	color: #FFC03B !important;
}

#buttons11 .n03 {
	cursor: pointer;
}

#buttons11 .n04:hover {
	border-color: #FFC03B !important;
	color: #FFC03B !important;
}

#buttons11 .n04 {
	cursor: pointer;
}

#buttons11 .n05:hover {
	border-color: #FFC03B !important;
	color: #FFC03B !important;
}

#buttons11 .n05 {
	cursor: pointer;
}

#buttons02 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0rem;
	flex-direction: row;
	flex-wrap: wrap;
}

#buttons02 li a {
	display: inline-block;
	width: 100vw;
	height: auto;
	line-height: 2rem;
	padding: 0 1.875rem;
	vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
	font-size: 2em;
	font-weight: 600;
	border-radius: 0rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 1.171875rem;
	padding-top: 1.171875rem;
	white-space: normal;
	text-align: left;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

#buttons02 .button {
	background-color: transparent;
	color: #FFFFFF;
}

#buttons02 li a:hover {
	transform: scale(1.0425);
}

#buttons02 .n01 {
	cursor: pointer;
}

#buttons02 .n02 {
	cursor: pointer;
}

#buttons02 .n03 {
	cursor: pointer;
}

#buttons02 .n04 {
	cursor: pointer;
}

#buttons02 .n05 {
	cursor: pointer;
}

#buttons13 {
	--flex-alignment: center;
	--alignment: center;
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons13 li a {
	display: inline-flex;
	width: 10.875rem;
	height: 2.75rem;
	line-height: 2.75rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.025rem;
	padding-left: calc(0.025rem + 0.5rem);
	font-size: 0.625em;
	font-weight: 700;
	border-radius: 2.5rem;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons13 li a svg {
	display: block;
	fill: #14110F;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 16px;
	pointer-events: none;
	width: 1.625em;
	margin-left: -0.125em;
	margin-right: calc(0.5em + 0.025rem);
	transition: fill 0.25s ease;
}

#buttons13 li a .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

#buttons13 .button {
	color: #14110F;
	border: solid 3px #20201F;
}

#buttons13 .button:hover {
	border-color: #467DAB !important;
	color: #467DAB !important;
}

#buttons13 .button:hover svg {
	fill: #467DAB !important;
}

#buttons13 li a:hover {
	transform: scale(1.1125);
}

#buttons05 {
	--flex-alignment: center;
	--alignment: center;
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons05 li a {
	display: inline-block;
	width: 9.75rem;
	height: 2.25rem;
	line-height: calc(2.25rem - 6px);
	padding: 0 0.5rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.025rem;
	padding-left: calc(0.025rem + 0.5rem);
	font-size: 0.75em;
	font-weight: 700;
	border-radius: 2.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons05 .button {
	color: #000000;
	border: solid 3px #14110F;
}

#buttons05 li a:hover {
	transform: scale(1.1125);
}

#buttons05 li a {
	margin-bottom: 250px !important;
}

#buttons08 {
	--flex-alignment: center;
	--alignment: center;
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons08 li a {
	display: inline-block;
	width: 9.75rem;
	height: 2.25rem;
	line-height: calc(2.25rem - 6px);
	padding: 0 0.5rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.025rem;
	padding-left: calc(0.025rem + 0.5rem);
	font-size: 0.75em;
	font-weight: 700;
	border-radius: 2.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons08 .button {
	color: #20201F;
	border: solid 3px #14110F;
}

#buttons08 li a:hover {
	transform: scale(1.1125);
}

#buttons08 li a {
	margin-bottom: 230px !important;
}

#buttons06 {
	--flex-alignment: center;
	--alignment: center;
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons06 li a {
	display: inline-block;
	width: 10.25rem;
	height: 1.75rem;
	line-height: 1.75rem;
	padding: 0 0.4375rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.025rem;
	padding-left: calc(0.025rem + 0.4375rem);
	font-size: 0.625em;
	font-weight: 700;
	border-radius: 2.5rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons06 .button {
	background-color: #FFFFFF;
	color: #14110F;
}

#buttons06 li a:hover {
	transform: scale(1.1125);
}

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[data-type="label"] + div {
	margin-top: 0 !important;
}

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

form .field button > svg {
	height: 50%;
	min-width: 100%;
}

form input[type="text"], form input[type="email"], form input[type="tel"], form input[type="number"], form textarea, form select, form .file, form .date {
	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 p {
	display: block;
}

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: var(--site-language-alignment);
}

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 .field .number > button > svg {
	height: 40%;
}

form .file {
	position: relative;
}

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 .date {
	overflow: hidden;
	position: relative;
}

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

form .date[data-value]:before {
	background-repeat: no-repeat;
	display: block;
	height: 100%;
	overflow: hidden;
	position: absolute;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

form .date:not([data-value=""]):before {
	content: attr(data-value);
}

form .date[data-value=""]:before {
	content: attr(data-placeholder);
}

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

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

form.style1 {
	justify-content: flex-start;
	text-align: left;
}

form.style1 .inner > * {
	margin: 1.125rem 0 0 0;
	max-width: 100%;
}

form.style1 .inner > :first-child {
	margin: 0;
}

form.style1 .inner {
	width: 100%;
}

form.style1 label:first-child {
	margin: 0.25rem 0 0.84375rem 0;
	text-transform: uppercase;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Dela Gothic One', cursive;
	font-weight: 400;
	color: #151515;
}

form.style1 .field button {
	background-size: 2rem;
	height: calc(4rem - 2px);
	width: calc(4rem - 2px);
	border-radius: 0.96rem;
	border: solid 1px #FFFFFF;
	transition: transform 0.75s ease, color 0.75s ease, background-color 0.75s ease, border-color 0.75s ease;
}

form.style1 .field button:hover {
	border-color: #F9E3FF;
}

form.style1 .field button svg {
	fill: #FFFFFF;
	transition: fill 0.75s ease;
}

form.style1 .field button:hover svg {
	fill: #F9E3FF;
}

form.style1 input[type="text"], form.style1 input[type="email"], form.style1 input[type="tel"], form.style1 input[type="number"], form.style1 textarea, form.style1 select, form.style1 .file, form.style1 .date {
	font-size: 1em;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.025rem;
	padding-left: calc(0.025rem + 1.75rem);
	font-weight: 400;
	border-radius: 1.5rem;
	color: #FFFFFF;
	border: solid 1px #E8E8E8;
}

form.style1 input[type="text"]:focus, form.style1 input[type="email"]:focus, form.style1 input[type="tel"]:focus, form.style1 input[type="number"]:focus, form.style1 textarea:focus, form.style1 select:focus, form.style1 .file:focus, form.style1 .date.focus {
	border-color: #F9E3FF;
	box-shadow: 0 0 0 1px #F9E3FF;
}

form.style1 input[type="text"], form.style1 input[type="email"], form.style1 input[type="tel"], form.style1 input[type="number"], form.style1 select, form.style1 .file, form.style1 .date {
	height: 5rem;
	padding: 0 1.75rem;
	line-height: calc(5rem - 2px);
}

form.style1 textarea {
	padding: 1.75rem;
	height: 8rem;
	line-height: 1.25;
	padding-top: 1.53125rem;
}

form.style1 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='%23E8E8E8' /%3E%3C/svg%3E");
	background-position: calc(100% - 1.75rem) center;
	padding-right: 4.5rem;
}

form.style1 input[type="checkbox"] + label:before {
	border-radius: 1.5rem;
	color: #FFFFFF;
	border: solid 1px #E8E8E8;
	background-size: 2.125rem;
	height: 3.75rem;
	width: 3.75rem;
	margin-right: 1.875rem;
}

form.style1 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='%23FFFFFF' /%3E%3C/svg%3E");
}

form.style1 input[type="checkbox"]:focus + label:before {
	border-color: #F9E3FF;
	box-shadow: 0 0 0 1px #F9E3FF;
}

form.style1 .number > input[type="number"] {
	padding-left: 4.5rem;
	padding-right: 4.5rem;
}

form.style1 .number > button.decrement {
	bottom: calc(0.5rem + 1px);
	left: calc(0.5rem + 1px);
}

form.style1 .number > button.increment {
	bottom: calc(0.5rem + 1px);
	right: calc(0.5rem + 1px);
}

form.style1 .file:before {
	width: calc(100% - 6.75rem);
	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='%23FFFFFF' /%3E%3C/svg%3E");
	background-size: 1rem;
	background-position: left;
	padding-left: 1.4rem;
}

form.style1 .file > button {
	bottom: 0.5rem;
	right: 0.5rem;
}

form.style1 .date:before {
	width: calc(100% - 6.75rem);
}

form.style1 .date > button {
	bottom: 0.5rem;
	right: 0.5rem;
}

form.style1 input[type="checkbox"] + label, form.style1 p {
	font-size: 1em;
	line-height: 1.25;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.025rem;
	padding-left: 0.025rem;
	font-weight: 400;
	color: #000000;
}

form.style1 .actions button {
	display: inline-flex;
	width: 20rem;
	height: 3.625rem;
	line-height: 3.625rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.35rem;
	padding-left: calc(0.35rem + 0.5rem);
	font-size: 0.875em;
	font-weight: 500;
	border-radius: 2.5rem;
	flex-direction: row-reverse;
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
	transition: transform 0.75s ease, color 0.75s ease, background-color 0.75s ease, border-color 0.75s ease;
	position: relative;
}

form.style1 .actions button svg {
	display: block;
	fill: #FFFFFF;
	flex-grow: 0;
	flex-shrink: 0;
	height: 100%;
	min-width: 18px;
	pointer-events: none;
	width: 1.25em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0.35rem);
	transition: fill 0.75s ease;
}

form.style1 .actions button:hover {
	border-color: #F9E3FF;
	color: #F9E3FF;
	transform: scale(1.0425);
}

form.style1 .actions button:hover svg {
	fill: #F9E3FF;
}

form.style1 .actions button .label {
	direction: var(--site-language-direction);
	overflow: hidden;
}

form.style1 .inner > :first-child > label:first-child {
	margin-top: 0;
}

form.style1 .actions button:before {
	animation: button-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMnB4OyB9PC9zdHlsZT48ZGVmcz48Y2xpcFBhdGggaWQ9ImNvcm5lciI+PHBvbHlnb24gcG9pbnRzPSIwLDAgNDgsMCA0OCw0OCA5Niw0OCA5Niw5NiAwLDk2IiAvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjb3JuZXIpIj48Y2lyY2xlIGN4PSI0OCIgY3k9IjQ4IiByPSIzMiIvPjwvZz48L3N2Zz4=');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2.71875rem;
	content: '';
	display: block;
	height: 2.71875rem;
	left: 50%;
	margin: -1.359375rem 0 0 -1.359375rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0s;
	width: 2.71875rem;
}

form.style1 .actions button.waiting {
	color: transparent;
}

form.style1 .actions button.waiting svg {
	fill: transparent;
}

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

form.style1 ::-webkit-input-placeholder {
	color: #FFFFFF;
	opacity: 0.55;
}

form.style1 :-moz-placeholder {
	color: #FFFFFF;
	opacity: 0.55;
}

form.style1 ::-moz-placeholder {
	color: #FFFFFF;
	opacity: 0.55;
}

form.style1 :-ms-input-placeholder {
	color: #FFFFFF;
	opacity: 0.55;
}

form.style1 .file[data-filename=""]:before {
	color: #FFFFFF;
	opacity: 0.55;
}

form.style1 .date[data-value=""]:before {
	color: #FFFFFF;
	opacity: 0.55;
}

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

#image02 .frame {
	width: 100vw;
	transition: none;
}

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

#image02 .frame img {
	transition: none;
}

#image01 .frame {
	width: 100vw;
	height: 12.125rem;
	border-radius: 2rem;
	box-shadow: -0.767rem 0.823rem 6.75rem 1.625rem rgba(127,0,171,0.329);
	transition: transform 0.625s ease, z-index 0.625s ease;
}

#image01 img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

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

#image03 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.723rem 0.862rem 6rem 0.625rem rgba(127,0,171,0.329);
	transition: transform 0.75s ease, z-index 0.75s ease;
}

#image03 img {
	-webkit-touch-callout: none;
	user-select: none;
}

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

#image19 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.767rem 0.823rem 6.75rem 1.625rem rgba(181,0,22,0.329);
	transition: transform 0.75s ease, z-index 0.75s ease;
}

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

#image20 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.723rem 0.862rem 6rem 0.625rem rgba(181,0,22,0.329);
	transition: transform 0.75s ease, z-index 0.75s ease;
}

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

#image05 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.767rem 0.823rem 6.75rem 1.625rem rgba(57,105,0,0.329);
	transition: transform 0.75s ease, z-index 0.75s ease;
}

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

#image06 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.723rem 0.862rem 6rem 0.625rem rgba(57,105,0,0.329);
	transition: transform 0.75s ease, z-index 0.75s ease;
}

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

#image21 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.767rem 0.823rem 6.75rem 1.625rem rgba(94,74,30,0.259);
	transition: transform 0.75s ease, z-index 0.75s ease;
}

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

#image22 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.723rem 0.862rem 6rem 0.625rem rgba(94,74,30,0.259);
	transition: transform 0.75s ease, z-index 0.75s ease;
}

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

#image13 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.723rem 0.862rem 6rem 0.625rem rgba(94,74,30,0.259);
	transition: transform 0.75s ease, z-index 0.75s ease;
}

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

#image04 .frame {
	width: 100vw;
	height: 34.875rem;
	transition: none;
}

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

#image04 .frame img {
	transition: none;
}

#image11 .frame {
	max-width: 100%;
	width: 208px;
	border-radius: 100%;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

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

#image10 .frame {
	width: 12.5rem;
	transition: transform 0.375s ease, z-index 0.375s ease;
}

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

.gallery .inner {
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

.gallery ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: var(--flex-alignment);
}

.gallery ul li {
	position: relative;
}

.gallery ul li .thumbnail {
	border-radius: inherit;
	position: relative;
}

.gallery ul li .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}

.gallery ul li img {
	margin: 0;
	max-width: 100%;
	vertical-align: top;
	width: auto;
}

.gallery ul li .caption {
	width: 100%;
}

.gallery ul li .caption p {
	width: 100%;
}

.gallery ul li .caption a, .gallery ul li .caption spoiler-text {
	pointer-events: auto;
}

.gallery.style1 {
	text-align: left;
}

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

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

.gallery.style1 .inner {
	max-width: 100%;
}

.gallery.style1 ul {
	justify-content: flex-start;
	gap: 0.5rem;
}

.gallery.style1 ul li {
	border-radius: 12rem;
	display: inline-block;
}

.gallery.style1 ul li .frame {
	border-radius: 12rem;
}

.gallery.style1 ul li .thumbnail {
	display: block;
	transition: transform 0.75s ease, z-index 0.75s ease;
}

.gallery.style1 ul li img {
	height: 5rem;
	object-fit: cover;
	object-position: center;
	width: 5rem;
}

.gallery.style1 ul li .thumbnail:hover {
	transform: scale(1.025);
	z-index: 1;
}

#gallery02 ul li .n01 img {
	object-position: center;
}

#gallery02 ul li .n01 {
	cursor: pointer;
}

#gallery02 ul li .n02 img {
	object-position: center;
}

#gallery02 ul li .n02 {
	cursor: pointer;
}

#gallery02 ul li .n03 img {
	object-position: center;
}

#gallery02 ul li .n03 {
	cursor: pointer;
}

#gallery02 ul li .n04 img {
	object-position: center;
}

#gallery02 ul li .n04 {
	cursor: pointer;
}

#gallery02 ul li .n05 img {
	object-position: center;
}

#gallery02 ul li .n05 {
	cursor: pointer;
}

#gallery02 ul li:nth-child(1) > img {
	cursor: pointer;
}

#gallery02 ul li:nth-child(2) > img {
	cursor: pointer;
}

#gallery02 ul li:nth-child(3) > img {
	cursor: pointer;
}

#gallery02 ul li:nth-child(4) > img {
	cursor: pointer;
}

#gallery02 ul li:nth-child(5) > img {
	cursor: pointer;
}

#gallery04 {
	text-align: center;
}

#gallery04 .inner {
	max-width: 100%;
}

#gallery04 ul {
	justify-content: center;
	gap: 1.25rem;
}

#gallery04 ul li {
	border-radius: 0rem;
	display: inline-block;
}

#gallery04 ul li .frame {
	border-radius: 0rem;
}

#gallery04 ul li .thumbnail {
	display: block;
	transition: transform 0.5s ease, z-index 0.5s ease;
}

#gallery04 ul li img {
	height: auto;
	max-height: 6rem;
}

#gallery04 ul li .thumbnail:hover {
	transform: scale(1.0425);
	z-index: 1;
}

#gallery04 ul li .n01 {
	cursor: pointer;
}

#gallery04 ul li .n02 {
	cursor: pointer;
}

#gallery04 ul li .n03 {
	cursor: pointer;
}

#gallery04 ul li .n04 {
	cursor: pointer;
}

#gallery04 ul li .n05 {
	cursor: pointer;
}

#gallery04 ul li .n06 {
	cursor: pointer;
}

#gallery04 ul li .n07 {
	cursor: pointer;
}

#gallery04 ul li .n08 {
	cursor: pointer;
}

#gallery04 ul li .n09 {
	cursor: pointer;
}

#gallery04 ul li .n10 {
	cursor: pointer;
}

#gallery04 ul li .n11 {
	cursor: pointer;
}

#gallery04 ul li .n12 {
	cursor: pointer;
}

#gallery04 ul li .n13 {
	cursor: pointer;
}

#gallery04 ul li .frame {
	border-radius: 20px;
	box-shadow: 0px 0px 50px 2px rgba(127,0,171,0.302);
}

#gallery04 ul li:nth-child(1) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(2) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(3) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(4) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(5) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(6) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(7) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(8) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(9) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(10) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(11) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(12) > img {
	cursor: pointer;
}

#gallery04 ul li:nth-child(13) > img {
	cursor: pointer;
}

#gallery06 ul li .n01 img {
	object-position: center;
}

#gallery06 ul li .n01 {
	cursor: pointer;
}

#gallery06 ul li .n02 img {
	object-position: center;
}

#gallery06 ul li .n02 {
	cursor: pointer;
}

#gallery06 ul li .n03 img {
	object-position: center;
}

#gallery06 ul li .n03 {
	cursor: pointer;
}

#gallery06 ul li:nth-child(1) > img {
	cursor: pointer;
}

#gallery06 ul li:nth-child(2) > img {
	cursor: pointer;
}

#gallery06 ul li:nth-child(3) > img {
	cursor: pointer;
}

#gallery01 ul li .n01 img {
	object-position: center;
}

#gallery01 ul li .n01 {
	cursor: pointer;
}

#gallery01 ul li .n02 img {
	object-position: center;
}

#gallery01 ul li .n02 {
	cursor: pointer;
}

#gallery01 ul li .n03 img {
	object-position: center;
}

#gallery01 ul li .n03 {
	cursor: pointer;
}

#gallery01 ul li:nth-child(1) > img {
	cursor: pointer;
}

#gallery01 ul li:nth-child(2) > img {
	cursor: pointer;
}

#gallery01 ul li:nth-child(3) > img {
	cursor: pointer;
}

#gallery07 ul li .n01 img {
	object-position: center;
}

#gallery07 ul li .n01 {
	cursor: pointer;
}

#gallery07 ul li .n02 img {
	object-position: center;
}

#gallery07 ul li .n02 {
	cursor: pointer;
}

#gallery07 ul li .n03 img {
	object-position: center;
}

#gallery07 ul li .n03 {
	cursor: pointer;
}

#gallery07 ul li:nth-child(1) > img {
	cursor: pointer;
}

#gallery07 ul li:nth-child(2) > img {
	cursor: pointer;
}

#gallery07 ul li:nth-child(3) > img {
	cursor: pointer;
}

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

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

#gallery03 .inner {
	max-width: 100%;
}

#gallery03 ul li {
	border-radius: 0rem;
	display: inline-block;
}

#gallery03 ul li .frame {
	border-radius: 0rem;
}

#gallery03 ul li .caption p {
	padding-bottom: 0rem;
	padding-top: 1rem;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75em;
	line-height: 0.875;
	font-weight: 400;
}

#gallery03 ul {
	gap: 2rem;
}

#gallery03 ul li .thumbnail {
	display: block;
	transition: transform 0.5s ease, z-index 0.5s ease;
}

#gallery03 ul li img {
	height: auto;
	max-height: 5.75rem;
}

#gallery03 ul li .thumbnail:hover {
	transform: scale(1.0775);
	z-index: 1;
}

.video {
	position: relative;
}

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

.video .frame {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: top;
}

.video .frame:before {
	content: '';
	display: block;
	width: 100%;
}

.video .frame iframe {
	bottom: 0px;
	height: 100%;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 100%;
	background-color: #000000;
}

.video.full video {
	display: block;
}

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

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

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

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

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

#video01 {
	text-align: center;
}

#video01 video {
	border-radius: 0rem;
	width: 18.5rem;
}

#video01 .frame {
	border-radius: 0rem;
	width: 18.5rem;
}

#video01 video, #video01 .frame {
	border-radius: 50px;
	box-shadow: 7px 7px 60px 15px rgba(127,0,171,0.302);
}

#video02 {
	text-align: center;
}

#video02 video {
	border-radius: 0rem;
	width: 18.5rem;
}

#video02 .frame {
	border-radius: 0rem;
	width: 18.5rem;
}

#video02 video, #video02 .frame {
	border-radius: 50px;
	box-shadow: 7px 7px 60px 15px rgba(181,0,22,0.329);
}

#video03 {
	text-align: center;
}

#video03 video {
	border-radius: 0rem;
	width: 18.5rem;
}

#video03 .frame {
	border-radius: 0rem;
	width: 18.5rem;
}

#video03 video, #video03 .frame {
	border-radius: 50px;
	box-shadow: 7px 7px 60px 15px rgba(10,120,0,0.329);
}

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

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

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

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

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

.icons li a .label {
	display: none;
}

#icons03 {
	justify-content: center;
	font-size: 1.125em;
	gap: 1.875rem;
}

#icons03 li a {
	border-radius: 100%;
	height: 2em;
	width: 2em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons03 li a svg {
	height: 60%;
	width: 60%;
	transition: fill 0.25s ease;
}

#icons03 a {
	background-color: transparent;
}

#icons03 a svg {
	fill: #FFFFFF;
}

#icons03 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons03 li a:hover {
	transform: scale(1.0775);
}

#icons03 li a:hover + svg {
	transform: scale(1.0775);
}

#icons02 {
	font-size: 1.25em;
	gap: 2rem;
}

#icons02 li a {
	border-radius: 100%;
	height: 2em;
	width: 2em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons02 li a svg {
	height: 60%;
	width: 60%;
	transition: fill 0.25s ease;
}

#icons02 a svg {
	fill: #14110F;
}

#icons02 a {
	border: solid 3px #20201F;
}

#icons02 a:hover {
	border-color: #467DAB !important;
}

#icons02 a:hover svg {
	fill: #467DAB !important;
}

#icons02 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons02 li a:hover {
	transform: scale(1.2);
}

#icons02 li a:hover + svg {
	transform: scale(1.2);
}

#icons01 {
	font-size: 1.125em;
	gap: 1.5rem;
}

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

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

#icons01 li a {
	border-radius: 100%;
	height: 2em;
	width: 2em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons01 li a svg {
	height: 60%;
	width: 60%;
	transition: fill 0.25s ease;
}

#icons01 a {
	background-color: #FFFFFF;
}

#icons01 a svg {
	fill: #14110F;
}

#icons01 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

#icons01 li a:hover {
	transform: scale(1.2);
}

#icons01 li a:hover + svg {
	transform: scale(1.2);
}

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

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

@media (max-width: 1280px) {
	html {
		font-size: 12pt;
	}
	
	
	
	#container12 > .slideshow-background > .slow {
		animation-duration: 37.5s;
	}
	
	#container12 > .slideshow-background > .normal {
		animation-duration: 28.125s;
	}
	
	#container12 > .slideshow-background > .fast {
		animation-duration: 18.75s;
	}
}

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

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

@media (max-width: 736px) {
	html {
		font-size: 12pt;
	}
	
	
	
	#wrapper {
		padding: 0 0 0rem 0;
	}
	
	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-2rem);
		max-width: calc(100% + 4rem + 0.4725px);
		width: calc(100% + 4rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > header > .full:first-child {
		margin-top: 0rem !important;
	}
	
	#main > .inner > footer > .full:last-child {
		margin-bottom: 0rem !important;
	}
	
	#text23:not(:first-child) {
		margin-top: 1.3125rem !important;
	}
	
	#text23:not(:last-child) {
		margin-bottom: 1.3125rem !important;
	}
	
	#text23 {
		letter-spacing: 0.0875rem;
		width: calc(100% + 0.0875rem);
		font-size: 1em;
		line-height: 1.25;
	}
	
	#text23 {
		text-align: center;
		margin-bottom: 100px !important;
	}
	
	#text36 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 0.875;
	}
	
	#text37:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text37:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text37 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.75em;
		line-height: 1;
	}
	
	#text50 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1;
	}
	
	h1.style3, h2.style3, h3.style3, p.style3 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.375;
	}
	
	h1.style8:not(:first-child), h2.style8:not(:first-child), h3.style8:not(:first-child), p.style8:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	h1.style8:not(:last-child), h2.style8:not(:last-child), h3.style8:not(:last-child), p.style8:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1;
	}
	
	h1.style7, h2.style7, h3.style7, p.style7 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 2em;
		line-height: 1;
	}
	
	h1.style5, h2.style5, h3.style5, p.style5 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1;
	}
	
	h1.style6, h2.style6, h3.style6, p.style6 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1;
	}
	
	h1.style4, h2.style4, h3.style4, p.style4 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.375;
	}
	
	h1.style9:not(:first-child), h2.style9:not(:first-child), h3.style9:not(:first-child), p.style9:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	h1.style9:not(:last-child), h2.style9:not(:last-child), h3.style9:not(:last-child), p.style9:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	h1.style9, h2.style9, h3.style9, p.style9 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1;
	}
	
	h1.style10:not(:first-child), h2.style10:not(:first-child), h3.style10:not(:first-child), p.style10:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	h1.style10:not(:last-child), h2.style10:not(:last-child), h3.style10:not(:last-child), p.style10:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	h1.style10, h2.style10, h3.style10, p.style10 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1;
	}
	
	#text70:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text70:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text70 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.5em;
		line-height: 1;
	}
	
	#text16:not(:first-child) {
		margin-top: 1rem !important;
	}
	
	#text16:not(:last-child) {
		margin-bottom: 1rem !important;
	}
	
	#text16 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 0.875;
	}
	
	#text16 {
		margin-bottom: 10px !important;
	}
	
	#text29:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#text29:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#text29 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 0.875;
	}
	
	#text15:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#text15:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#text15 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 0.875;
	}
	
	#text03:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	#text03:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	#text03 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 2.125em;
		line-height: 1;
	}
	
	#text24:not(:first-child) {
		margin-top: 0.46875rem !important;
	}
	
	#text24:not(:last-child) {
		margin-bottom: 0.46875rem !important;
	}
	
	#text24 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 3em;
		line-height: 1.125;
	}
	
	#text25 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1;
	}
	
	#text26:not(:first-child) {
		margin-top: 0.65625rem !important;
	}
	
	#text26:not(:last-child) {
		margin-bottom: 0.65625rem !important;
	}
	
	#text26 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 0.875em;
		line-height: 1.375;
	}
	
	#links02 {
		gap: 1.125rem;
		font-size: 1em;
	}
	
	#links02:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#links02:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.links.style1 {
		gap: 0rem;
		font-size: 1em;
	}
	
	.links.style1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.links.style1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#links03 li a {
		text-align: left;
	}
	
	#links01 li a {
		text-align: left;
	}
	
	#links04 li a {
		text-align: left;
	}
	
	#header {
		margin-bottom: 0rem !important;
	}
	
	#footer {
		margin-top: 0rem !important;
	}
	
	
	
	#navbar:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#navbar:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#navbar > .wrapper > .inner {
		--padding-horizontal: 1rem;
		--padding-vertical: 0rem;
	}
	
	
	
	#container12:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 1.875rem;
		--padding-vertical: 1.75rem;
		--spacing: 0rem;
	}
	
	#container12 > .slideshow-background > .slow {
		animation-duration: 25s;
	}
	
	#container12 > .slideshow-background > .normal {
		animation-duration: 18.75s;
	}
	
	#container12 > .slideshow-background > .fast {
		animation-duration: 12.5s;
	}
	
	#container12.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container12.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container12.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container12.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container12.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type, #container12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type, #container12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type, #container12.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type, #container12.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container12 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container12 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container12 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container12 > .wrapper {
		align-items: flex-start;
		height: 100dvh;
		background: linear-gradient(0deg, rgba(227, 227, 227, 0) 43%, rgba(0, 0, 0, 0.4) 100%);
	}
	
	
	
	#container01:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container01:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container01 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.375rem;
		--spacing: 0.875rem;
	}
	
	#container01.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container01.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container01.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container01.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container01.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type, #container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container01.columns > .wrapper > .inner > div:first-of-type, #container01.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > div:last-of-type, #container01.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container01 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container01 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container01 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container.style2:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container.style2:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.5rem;
	}
	
	.container.style2.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	
	
	#container02:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container02 > .wrapper > .inner {
		--gutters: 2.125rem;
	}
	
	#container02.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container02.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container02.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container02 > .wrapper {
		padding: 5% 0;
	}
	
	
	
	.container.style3:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container.style3:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container.style3 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 3.5rem;
		--spacing: 0.875rem;
	}
	
	.container.style3.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style3.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style3.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style3.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.style3.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.style3.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type, .container.style3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type, .container.style3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type, .container.style3.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type, .container.style3.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container03 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container03 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container03 > .wrapper > .inner > :nth-child(3) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container27:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container27:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container27 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 3.5rem;
		--spacing: 0.875rem;
	}
	
	#container27.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container27.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container27.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container27.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container27.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container27.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container27.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container27.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container27.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container27.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container27.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container27.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container27.columns > .wrapper > .inner > div:first-of-type, #container27.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container27.columns > .wrapper > .inner > div:last-of-type, #container27.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container27.columns > .wrapper > .inner > div:first-of-type, #container27.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container27.columns > .wrapper > .inner > div:last-of-type, #container27.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container27.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container27.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container27 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container27 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container27 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container.style1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container.style1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 3.5rem;
		--spacing: 0.875rem;
	}
	
	.container.style1.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style1.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style1.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container.style1.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style1.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 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:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !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: inherit;
		border-top-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-left-radius: inherit;
		border-bottom-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: 0 !important;
	}
	
	.container.style1.columns > .wrapper > .inner > div:last-of-type, .container.style1.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-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;
	}
	
	#container25 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container25 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container25 > .wrapper > .inner > :nth-child(3) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container29:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container29:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container29 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--spacing: 0rem;
	}
	
	#container29.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container29.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container29.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container29.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container29.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container29.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container29.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container29.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container29.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container29.columns > .wrapper > .inner > div:first-of-type, #container29.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container29.columns > .wrapper > .inner > div:last-of-type, #container29.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container29.columns > .wrapper > .inner > div:first-of-type, #container29.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > div:last-of-type, #container29.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container29.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container29 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container29 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container29 > .wrapper {
		min-height: 50vh;
		align-items: top;
		display: flex;
	}
	
	
	
	#container05:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container05 > .wrapper > .inner {
		--gutters: 2.125rem;
	}
	
	#container05.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container05.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container05.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container05.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container05.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type, #container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type, #container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type, #container05.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type, #container05.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container05 > .wrapper {
		padding: 5% 0;
	}
	
	
	
	#container14:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container14:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container14 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.375rem;
		--spacing: 0.875rem;
	}
	
	#container14.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container14.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container14.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container14.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container14.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type, #container14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type, #container14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type, #container14.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type, #container14.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container14 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container14 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#bannerbottom:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#bannerbottom:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#bannerbottom > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.75rem;
		--spacing: 0rem;
	}
	
	
	
	#container15:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#container15:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container15 > .wrapper > .inner {
		--gutters: 4.25rem;
		--padding-vertical: 3.5rem;
		--spacing: 0rem;
	}
	
	#container15.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container15.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container15.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container15.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type, #container15.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type, #container15.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type, #container15.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type, #container15.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container18:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container18:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container18 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.5rem;
	}
	
	#container18.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container18.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container18.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container18.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container18.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type, #container18.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type, #container18.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container18.columns > .wrapper > .inner > div:first-of-type, #container18.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > div:last-of-type, #container18.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container18.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container07:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container07 > .wrapper > .inner {
		--gutters: 2.125rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 1.125rem;
	}
	
	#container07.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container07.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container07.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container07.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container07.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container07.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container07.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container07.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container07.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container07.columns > .wrapper > .inner > div:first-of-type, #container07.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container07.columns > .wrapper > .inner > div:last-of-type, #container07.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container07.columns > .wrapper > .inner > div:first-of-type, #container07.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > div:last-of-type, #container07.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container07.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container07.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container07 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container07 > .wrapper > .inner > :nth-child(2) {
		--alignment: right;
		--flex-alignment: flex-end;
		--indent-left: 0;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: 0;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#divider14:not(:first-child) {
		margin-top: 2rem !important;
	}
	
	#divider14:not(:last-child) {
		margin-bottom: 2rem !important;
	}
	
	#divider14:before {
		width: 1rem;
	}
	
	hr.style2:before {
		width: 1rem;
	}
	
	#buttons03 {
		gap: 0.5rem;
	}
	
	#buttons03:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#buttons03:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#buttons03 li a {
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 0.9375rem);
		font-size: 0.5em;
	}
	
	.buttons.style1 {
		gap: 0.5rem;
	}
	
	.buttons.style1:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.buttons.style1:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.buttons.style1 li a {
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 0.75rem);
		font-size: 0.5em;
	}
	
	#buttons02 {
		gap: 0rem;
	}
	
	#buttons02 li a {
		letter-spacing: 0rem;
		font-size: 2em;
	}
	
	#buttons13 {
		gap: 1rem;
	}
	
	#buttons13:not(:first-child) {
		margin-top: 0.9375rem !important;
	}
	
	#buttons13:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	#buttons13 li a {
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 0.5rem);
		font-size: 0.75em;
	}
	
	#buttons13 li a svg {
		width: 1.625em;
	}
	
	#buttons05 {
		gap: 2rem;
	}
	
	#buttons05:not(:first-child) {
		margin-top: 0.84375rem !important;
	}
	
	#buttons05:not(:last-child) {
		margin-bottom: 0.84375rem !important;
	}
	
	#buttons05 li a {
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 0.5rem);
		font-size: 0.75em;
	}
	
	#buttons05 li a {
		margin-bottom: 320px !important;
	}
	
	#buttons08 {
		gap: 2rem;
	}
	
	#buttons08:not(:first-child) {
		margin-top: 0.84375rem !important;
	}
	
	#buttons08:not(:last-child) {
		margin-bottom: 0.84375rem !important;
	}
	
	#buttons08 li a {
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 0.5rem);
		font-size: 0.75em;
	}
	
	#buttons08 li a {
		margin-bottom: 180px !important;
	}
	
	#buttons06 {
		gap: 2rem;
	}
	
	#buttons06:not(:first-child) {
		margin-top: 1.3125rem !important;
	}
	
	#buttons06:not(:last-child) {
		margin-bottom: 1.3125rem !important;
	}
	
	#buttons06 li a {
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 0.4375rem);
		font-size: 0.75em;
	}
	
	form.style1 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	form.style1 input[type="text"], form.style1 input[type="email"], form.style1 input[type="tel"], form.style1 input[type="number"], form.style1 textarea, form.style1 select, form.style1 .file, form.style1 .date {
		font-size: 1em;
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 1.75rem);
	}
	
	form.style1 textarea {
		line-height: 1.25;
		padding-top: 1.53125rem;
	}
	
	form.style1 input[type="checkbox"] + label, form.style1 p {
		font-size: 1em;
		line-height: 1.25;
		letter-spacing: 0.025rem;
		padding-left: 0.025rem;
	}
	
	form.style1 .actions button {
		letter-spacing: 0.35rem;
		padding-left: calc(0.35rem + 0.5rem);
		font-size: 0.875em;
	}
	
	form.style1 .actions button svg {
		width: 1.25em;
	}
	
	#image01 .frame {
		width: 100vw;
		height: 25rem !important;
	}
	
	#image01 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image03 .frame {
		width: 100vw;
		height: 25rem !important;
	}
	
	#image03 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image19 .frame {
		width: 100vw;
	}
	
	#image19 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image20 .frame {
		width: 100vw;
	}
	
	#image20 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image05 .frame {
		width: 100vw;
	}
	
	#image05 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image06 .frame {
		width: 100vw;
	}
	
	#image06 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image21 .frame {
		width: 100vw;
	}
	
	#image21 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image22 .frame {
		width: 100vw;
	}
	
	#image22 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image13 .frame {
		width: 100vw;
	}
	
	#image13 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image04 .frame {
		height: 37.5rem !important;
	}
	
	#image04 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image11 .frame {
		width: 8.25rem;
	}
	
	#image11 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image10 .frame {
		width: 12.5rem;
	}
	
	.gallery.style1:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	.gallery.style1:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	.gallery.style1 ul li img {
		height: 5.375rem;
		width: 5.375rem;
	}
	
	.gallery.style1 ul {
		gap: 0.375rem;
	}
	
	#gallery04 ul li img {
		max-height: none;
		display: block;
		height: auto;
		width: 100% !important;
	}
	
	#gallery04 .inner {
		width: 100%;
	}
	
	#gallery04 ul {
		flex-direction: column;
	}
	
	#gallery04 ul li {
		width: 100%;
	}
	
	#gallery04 ul li .thumbnail {
		display: block;
	}
	
	#gallery04 ul li .frame {
		display: block;
	}
	
	#gallery03:not(:first-child) {
		margin-top: 2.4375rem !important;
	}
	
	#gallery03:not(:last-child) {
		margin-bottom: 2.4375rem !important;
	}
	
	#gallery03 ul li .caption p {
		letter-spacing: 0rem;
		font-size: 0.875em;
		line-height: 0.875;
	}
	
	#gallery03 ul li img {
		max-height: 7.5rem;
	}
	
	#video01 video {
		width: 100vw;
	}
	
	#video01 .frame {
		width: 100vw;
	}
	
	#video01 video, #video01 .frame {
		border-radius: 30px;
	}
	
	#video02 video {
		width: 100vw;
	}
	
	#video02 .frame {
		width: 100vw;
	}
	
	#video02 video, #video02 .frame {
		border-radius: 30px;
	}
	
	#video03 video {
		width: 100vw;
	}
	
	#video03 .frame {
		width: 100vw;
	}
	
	#video03 video, #video03 .frame {
		border-radius: 30px;
	}
	
	#icons03 {
		font-size: 1.125em;
		gap: 1.875rem;
	}
	
	#icons02 {
		font-size: 1.25em;
		gap: 2rem;
	}
	
	#icons02:not(:first-child) {
		margin-top: 1.25rem !important;
	}
	
	#icons02:not(:last-child) {
		margin-bottom: 1.25rem !important;
	}
	
	#icons01 {
		font-size: 1.125em;
		gap: 1.5rem;
	}
	
	#icons01:not(:first-child) {
		margin-top: 0.46875rem !important;
	}
	
	#icons01:not(:last-child) {
		margin-bottom: 0.46875rem !important;
	}
}

@media (max-width: 480px) {
	#wrapper {
		padding: 0 0 0rem 0;
	}
	
	#main > .inner {
		--spacing: 0rem;
	}
	
	
	
	#container12 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container01 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	
	
	
	
	.container.style3 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	#container27 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	#container29 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	#container14 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	#bannerbottom > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container15 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	
	
	
	
	#buttons02 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons02 li a {
		max-width: 100%;
		width: 100%;
	}
	
	#buttons13 li a {
		width: 17rem;
	}
	
	#buttons05 li a {
		width: 14rem;
	}
	
	#buttons08 li a {
		width: 14rem;
	}
	
	#buttons06 li a {
		width: 14rem;
	}
	
	#image01 .frame {
		height: 20rem !important;
	}
	
	#image03 .frame {
		height: 20rem !important;
	}
	
	#image04 .frame {
		height: 30rem !important;
	}
}

@media (max-width: 360px) {
	#wrapper {
		padding: 0 0 0rem 0;
	}
	
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-1.5rem);
		max-width: calc(100% + 3rem + 0.4725px);
		width: calc(100% + 3rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > header > .full:first-child {
		margin-top: -0rem !important;
	}
	
	#main > .inner > footer > .full:last-child {
		margin-bottom: -0rem !important;
	}
	
	#text23 {
		font-size: 1em;
	}
	
	#text36 {
		font-size: 1.375em;
	}
	
	#text37 {
		font-size: 2.75em;
	}
	
	#text50 {
		font-size: 2.25em;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		font-size: 1.5em;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		font-size: 2.25em;
	}
	
	h1.style3, h2.style3, h3.style3, p.style3 {
		font-size: 1em;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		font-size: 2.5em;
	}
	
	h1.style7, h2.style7, h3.style7, p.style7 {
		font-size: 2em;
	}
	
	h1.style5, h2.style5, h3.style5, p.style5 {
		font-size: 2.25em;
	}
	
	h1.style6, h2.style6, h3.style6, p.style6 {
		font-size: 1.5em;
	}
	
	h1.style4, h2.style4, h3.style4, p.style4 {
		font-size: 1em;
	}
	
	h1.style9, h2.style9, h3.style9, p.style9 {
		font-size: 1.5em;
	}
	
	h1.style10, h2.style10, h3.style10, p.style10 {
		font-size: 1.5em;
	}
	
	#text70 {
		font-size: 1.5em;
	}
	
	#text16 {
		font-size: 2.5em;
	}
	
	#text29 {
		font-size: 1.125em;
	}
	
	#text15 {
		font-size: 1.125em;
	}
	
	#text03 {
		font-size: 2em;
	}
	
	#text24 {
		font-size: 3em;
	}
	
	#text25 {
		font-size: 1em;
	}
	
	#text26 {
		font-size: 0.875em;
	}
	
	#links02 {
		gap: 0.84375rem;
		font-size: 1em;
	}
	
	.links.style1 {
		gap: 0rem;
		font-size: 1em;
	}
	
	#navbar > .wrapper > .inner {
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0rem;
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 1.40625rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0rem;
	}
	
	#container01 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.78125rem;
		--spacing: 0.65625rem;
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.875rem;
	}
	
	#container02 > .wrapper > .inner {
		--gutters: 2.125rem;
	}
	
	.container.style3 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.625rem;
		--spacing: 0.65625rem;
	}
	
	#container27 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.625rem;
		--spacing: 0.65625rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.625rem;
		--spacing: 0.65625rem;
	}
	
	#container29 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 0rem;
		--spacing: 0rem;
	}
	
	#container05 > .wrapper > .inner {
		--gutters: 2.125rem;
	}
	
	#container14 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.78125rem;
		--spacing: 0.65625rem;
	}
	
	#bannerbottom > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.5625rem;
		--spacing: 0rem;
	}
	
	#container15 > .wrapper > .inner {
		--gutters: 3.1875rem;
		--padding-vertical: 2.625rem;
		--spacing: 0rem;
	}
	
	#container18 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.875rem;
	}
	
	#container07 > .wrapper > .inner {
		--gutters: 2.125rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.84375rem;
	}
	
	#buttons03 {
		gap: 0.375rem;
	}
	
	.buttons.style1 {
		gap: 0.375rem;
	}
	
	#buttons02 {
		gap: 0rem;
	}
	
	#buttons13 {
		gap: 0.75rem;
	}
	
	#buttons05 {
		gap: 1.5rem;
	}
	
	#buttons08 {
		gap: 1.5rem;
	}
	
	#buttons06 {
		gap: 1.5rem;
	}
	
	#image01 .frame {
		height: 17.5rem !important;
	}
	
	#image03 .frame {
		height: 17.5rem !important;
	}
	
	#image04 .frame {
		height: 26.25rem !important;
	}
	
	.gallery.style1 ul {
		gap: 0.28125rem;
	}
	
	#gallery04 ul {
		gap: 0.9375rem;
	}
	
	#gallery03 ul li .caption p {
		font-size: 0.875em;
	}
	
	#gallery03 ul {
		gap: 1.5rem;
	}
	
	#icons03 {
		gap: 1.40625rem;
	}
	
	#icons02 {
		gap: 1.5rem;
	}
	
	#icons01 {
		gap: 1.125rem;
	}
}