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

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

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

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

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

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

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

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

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

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

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

#text29 a {
	text-decoration: none;
}

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

#text29 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.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.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: 1.25em;
	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;
}

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

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

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

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

.buttons.style2 li a {
	display: inline-block;
	width: 10.25rem;
	height: 2.375rem;
	line-height: calc(2.375rem - 2px);
	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.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;
}

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

.buttons.style2 .button:hover {
	border-color: #D0CCFC !important;
	color: #D0CCFC !important;
}

.buttons.style2 li a:hover {
	transform: scale(1.0425);
}

#buttons16 {
	--flex-alignment: flex-start;
	--alignment: left;
	gap: 2rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons16 li a {
	display: inline-block;
	width: 10.25rem;
	height: 2.375rem;
	line-height: calc(2.375rem - 2px);
	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.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#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.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(57,105,0,0.329) 0%, #000000 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
	border-color: #FFFFFF;
	border-style: solid;
	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: 5.25rem;
	--padding-vertical: 2.375rem;
	--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%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container07 > .wrapper > .inner {
	--gutters: 5.25rem;
	--padding-vertical: 2.375rem;
	--spacing: 0.875rem;
	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;
	min-height: calc(var(--viewport-height) - (var(--padding-vertical) * 2));
}

#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));
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container25 > .wrapper > .inner > :nth-child(2) {
	width: calc(50% + (var(--gutters) / 2));
	--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;
}

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

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

#container27 > .wrapper > .inner {
	--gutters: 5.25rem;
	--padding-vertical: 2.375rem;
	--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) / 2));
	--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(50% + (var(--gutters) / 2));
}

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

#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 {
	height: 100vh;
	align-items: center;
	display: flex;
}

.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.625rem !important;
}

.gallery.style1:not(:last-child) {
	margin-bottom: 0.625rem !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 img {
	-webkit-touch-callout: none;
	user-select: none;
	height: 5rem;
	object-fit: cover;
	object-position: center;
	width: 5rem;
}

.gallery.style1 ul li .thumbnail {
	display: block;
	transition: filter 0.625s ease;
	filter: saturate(0%);
}

.gallery.style1 ul li .thumbnail:hover {
	filter: saturate(100%);
}

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

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

#image01 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.767rem 0.823rem 6.75rem 1.625rem rgba(127,0,171,0.329);
	transition: filter 0.5s ease;
	filter: saturate(0%);
}

#image01 .frame:hover {
	filter: saturate(100%);
}

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

#image03 .frame:hover {
	filter: saturate(100%);
}

#image04 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.723rem 0.862rem 6rem 0.625rem rgba(127,0,171,0.329);
	transition: filter 0.5s ease;
	filter: saturate(0%);
}

#image04 .frame:hover {
	filter: saturate(100%);
}

#image02 .frame {
	width: 100vw;
	border-radius: 2rem;
	box-shadow: -0.723rem 0.862rem 6rem 0.625rem rgba(127,0,171,0.329);
	transition: filter 0.5s ease;
	filter: saturate(0%);
}

#image02 .frame:hover {
	filter: saturate(100%);
}

.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 {
	width: 18.5rem;
}

#video01 .frame {
	width: 18.5rem;
}

#video01 video, #video01 .frame {
	border-radius: 50px;
	box-shadow: 7px 7px 60px 15px rgba(127,0,171,0.302);
}

#video09 video {
	width: 100vw;
}

#video09 .frame {
	width: 100vw;
}

#video09 video, #video09 .frame {
	border-radius: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

#video10 video {
	width: 100vw;
}

#video10 .frame {
	width: 100vw;
}

#video10 video, #video10 .frame {
	border-radius: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

#video11 video {
	width: 100vw;
}

#video11 .frame {
	width: 100vw;
}

#video11 video, #video11 .frame {
	border-radius: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

#video12 video {
	width: 100vw;
}

#video12 .frame {
	width: 100vw;
}

#video12 video, #video12 .frame {
	border-radius: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

#video13 video {
	width: 100vw;
}

#video13 .frame {
	width: 100vw;
}

#video13 video, #video13 .frame {
	border-radius: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

#video14 video {
	width: 100vw;
}

#video14 .frame {
	width: 100vw;
}

#video14 video, #video14 .frame {
	border-radius: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

#video02 video {
	width: 100vw;
}

#video02 .frame {
	width: 100vw;
}

#video02 video, #video02 .frame {
	border-radius: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

#video06 video {
	width: 100vw;
}

#video06 .frame {
	width: 100vw;
}

#video06 video, #video06 .frame {
	border-radius: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

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

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

@media (max-width: 1280px) {
	html {
		font-size: 12pt;
	}
	
	
	
	#container10 > .slideshow-background > .slow {
		animation-duration: 37.5s;
	}
	
	#container10 > .slideshow-background > .normal {
		animation-duration: 28.125s;
	}
	
	#container10 > .slideshow-background > .fast {
		animation-duration: 18.75s;
	}
	
	#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;
	}
}

@media (max-width: 736px) {
	html {
		font-size: 12pt;
	}
	
	
	
	#wrapper {
		padding: 0 0 0rem 0;
	}
	
	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	#header {
		margin-bottom: 0rem !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;
	}
	
	#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;
	}
	
	#text29:not(:first-child) {
		margin-top: 0.625rem !important;
	}
	
	#text29:not(:last-child) {
		margin-bottom: 0.625rem !important;
	}
	
	#text29 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2.75em;
		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.style5, h2.style5, h3.style5, p.style5 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1;
	}
	
	h1.style4, h2.style4, h3.style4, p.style4 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.375;
	}
	
	.buttons.style2 {
		gap: 2rem;
	}
	
	.buttons.style2:not(:first-child) {
		margin-top: 1.3125rem !important;
	}
	
	.buttons.style2:not(:last-child) {
		margin-bottom: 1.3125rem !important;
	}
	
	.buttons.style2 li a {
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 0.5rem);
		font-size: 0.75em;
	}
	
	#buttons16 {
		gap: 2rem;
	}
	
	#buttons16:not(:first-child) {
		margin-top: 1.3125rem !important;
	}
	
	#buttons16:not(:last-child) {
		margin-bottom: 1.3125rem !important;
	}
	
	#buttons16 li a {
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 0.5rem);
		font-size: 0.75em;
	}
	
	
	
	#container10:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container10 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 1.875rem;
		--padding-vertical: 1.75rem;
		--spacing: 0rem;
	}
	
	#container10 > .slideshow-background > .slow {
		animation-duration: 25s;
	}
	
	#container10 > .slideshow-background > .normal {
		animation-duration: 18.75s;
	}
	
	#container10 > .slideshow-background > .fast {
		animation-duration: 12.5s;
	}
	
	#container10.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container10.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container10.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container10.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container10.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type, #container10.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type, #container10.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container10.columns > .wrapper > .inner > div:first-of-type, #container10.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > div:last-of-type, #container10.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container10.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container10 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container10 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container10 > .wrapper {
		align-items: flex-start;
		height: 90vh;
		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.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: 2.375rem;
		--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;
	}
	
	#container02 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container02 > .wrapper > .inner > :nth-child(2) {
		--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;
	}
	
	
	
	#container06:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container06:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container06 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.375rem;
		--spacing: 0.875rem;
	}
	
	#container06.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container06.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container06.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container06.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container06.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type, #container06.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type, #container06.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container06.columns > .wrapper > .inner > div:first-of-type, #container06.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > div:last-of-type, #container06.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container06.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container06.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container06 > .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;
	}
	
	#container06 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container03 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container03 > .wrapper > .inner > :nth-child(2) {
		--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;
	}
	
	
	
	#container07:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container07:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container07 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.375rem;
		--spacing: 0.875rem;
	}
	
	#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) {
		--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;
	}
	
	#container07 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container04 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container04 > .wrapper > .inner > :nth-child(2) {
		--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;
	}
	
	
	
	#container08:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container08:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container08 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.375rem;
		--spacing: 0.875rem;
	}
	
	#container08.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container08.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container08.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container08.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container08.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type, #container08.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type, #container08.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container08.columns > .wrapper > .inner > div:first-of-type, #container08.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > div:last-of-type, #container08.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container08.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container08 > .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;
	}
	
	#container08 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(2) {
		--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;
	}
	
	
	
	#container09:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container09:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container09 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 2.375rem;
		--spacing: 0.875rem;
	}
	
	#container09.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container09.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container09.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container09.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container09.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type, #container09.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type, #container09.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type, #container09.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type, #container09.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container09 > .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;
	}
	
	#container09 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container25 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container25 > .wrapper > .inner > :nth-child(2) {
		--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: 2.375rem;
		--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;
	}
	
	
	
	#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 {
		align-items: flex-start;
		height: 90vh;
		background: linear-gradient(0deg, rgba(227, 227, 227, 0) 43%, rgba(0, 0, 0, 0.4) 100%);
	}
	
	.gallery.style1:not(:first-child) {
		margin-top: 0.46875rem !important;
	}
	
	.gallery.style1:not(:last-child) {
		margin-bottom: 0.46875rem !important;
	}
	
	.gallery.style1 ul li img {
		height: 3.75rem;
		width: 3.75rem;
	}
	
	#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;
	}
	
	#image04 .frame {
		width: 100vw;
		height: 25rem !important;
	}
	
	#image04 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image02 .frame {
		width: 100vw;
		height: 25rem !important;
	}
	
	#image02 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#video01 video {
		width: 100vw;
	}
	
	#video01 .frame {
		width: 100vw;
	}
	
	#video01 video, #video01 .frame {
		border-radius: 30px;
	}
	
	#video09 video {
		width: 100vw;
	}
	
	#video09 .frame {
		width: 100vw;
	}
	
	#video09 video, #video09 .frame {
		border-radius: 30px;
	}
	
	#video10 video {
		width: 100vw;
	}
	
	#video10 .frame {
		width: 100vw;
	}
	
	#video10 video, #video10 .frame {
		border-radius: 30px;
	}
	
	#video11 video {
		width: 100vw;
	}
	
	#video11 .frame {
		width: 100vw;
	}
	
	#video11 video, #video11 .frame {
		border-radius: 30px;
	}
	
	#video12 video {
		width: 100vw;
	}
	
	#video12 .frame {
		width: 100vw;
	}
	
	#video12 video, #video12 .frame {
		border-radius: 30px;
	}
	
	#video13 video {
		width: 100vw;
	}
	
	#video13 .frame {
		width: 100vw;
	}
	
	#video13 video, #video13 .frame {
		border-radius: 30px;
	}
	
	#video14 video {
		width: 100vw;
	}
	
	#video14 .frame {
		width: 100vw;
	}
	
	#video14 video, #video14 .frame {
		border-radius: 30px;
	}
	
	#video02 video {
		width: 100vw;
	}
	
	#video02 .frame {
		width: 100vw;
	}
	
	#video02 video, #video02 .frame {
		border-radius: 30px;
	}
	
	#video06 video {
		width: 100vw;
	}
	
	#video06 .frame {
		width: 100vw;
	}
	
	#video06 video, #video06 .frame {
		border-radius: 30px;
	}
}

@media (max-width: 480px) {
	#wrapper {
		padding: 0 0 0rem 0;
	}
	
	#main > .inner {
		--spacing: 0rem;
	}
	
	.buttons.style2 li a {
		width: 14rem;
	}
	
	#buttons16 li a {
		width: 14rem;
	}
	
	#container10 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container01 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	#container06 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	#container07 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	#container08 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	#container09 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	#container27 > .wrapper > .inner {
		--spacing: 0.765625rem;
	}
	
	#container12 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#image01 .frame {
		height: 20rem !important;
	}
	
	#image03 .frame {
		height: 20rem !important;
	}
	
	#image04 .frame {
		height: 20rem !important;
	}
	
	#image02 .frame {
		height: 20rem !important;
	}
}

@media (max-width: 360px) {
	#wrapper {
		padding: 0 0 0rem 0;
	}
	
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	#text37 {
		font-size: 2.75em;
	}
	
	#text29 {
		font-size: 2.75em;
	}
	
	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.style5, h2.style5, h3.style5, p.style5 {
		font-size: 2.25em;
	}
	
	h1.style4, h2.style4, h3.style4, p.style4 {
		font-size: 1em;
	}
	
	.buttons.style2 {
		gap: 1.5rem;
	}
	
	#buttons16 {
		gap: 1.5rem;
	}
	
	#container10 > .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.style1 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.78125rem;
		--spacing: 0.65625rem;
	}
	
	#container06 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.78125rem;
		--spacing: 0.65625rem;
	}
	
	#container07 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.78125rem;
		--spacing: 0.65625rem;
	}
	
	#container08 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.78125rem;
		--spacing: 0.65625rem;
	}
	
	#container09 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.78125rem;
		--spacing: 0.65625rem;
	}
	
	#container27 > .wrapper > .inner {
		--gutters: 0.75rem;
		--padding-vertical: 1.78125rem;
		--spacing: 0.65625rem;
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 0rem;
		--padding-horizontal: 1.40625rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0rem;
	}
	
	.gallery.style1 ul {
		gap: 0.375rem;
	}
	
	#image01 .frame {
		height: 17.5rem !important;
	}
	
	#image03 .frame {
		height: 17.5rem !important;
	}
	
	#image04 .frame {
		height: 17.5rem !important;
	}
	
	#image02 .frame {
		height: 17.5rem !important;
	}
}