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

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

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

body:before {
	background-attachment: scroll;
	content: '';
	display: block;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: 100vw;
	z-index: 0;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20path%20%7B%20fill%3A%20none%3B%20stroke%3A%20rgba(255,122,0,0.122)%3B%20stroke-width%3A%201.01px%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20miter%3B%20%7D%20%3C%2Fstyle%3E%20%3Cpath%20vector-effect%3D%22non-scaling-stroke%22%20d%3D%22M256%2C128L0%2C384l-192-192%20M256%2C256%20M256%2C384%20M256%2C128v128%20M256%2C128l256%2C256l192-192%20M256%2C256%20M256%2C384%20M256%2C128%20M256%2C384%20M256%2C256%20M-64%2C704%20M0%2C384%20M511.7%2C512L256%2C256L0.3%2C512%20M512%2C384%20M0.3%2C512%20M-192%2C320L0.3%2C512%20M704%2C320L511.7%2C512%20M-192%2C448%20L0%2C640l256-256l256%2C256l192-192%20M-192-192L0%2C0l256-256%20M256-128%20M256%2C0%20M256-128V0%20M256-256L512%2C0l192-192%20M256-128%20M256%2C0%20M256-256%20M256%2C0%20M256-128%20M0.3%2C128%20M-192-64L0.3%2C128%20M704-64L511.7%2C128%20M-192%2C64L0%2C256L256%2C0l256%2C256L704%2C64%20M512%2C256v128%20M0%2C256v128%20M0-192%20V0l0.3%2C128L256-128l255.7%2C256L512%2C0v-192%20M256%2C640V512V384%22%20%2F%3E%3C%2Fsvg%3E');
	background-size: 937px;
	background-position: center;
	background-repeat: repeat;
}

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

html {
	font-size: 18pt;
}

u {
	text-decoration: underline;
}

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

em {
	font-style: italic;
}

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

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

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

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

s {
	text-decoration: line-through;
}

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

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

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

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

unloaded-script {
	display: none;
}

#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 2rem 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 1s ease-in-out 0s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body #wrapper:after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: block;
	height: 9rem;
	left: calc(50% - 4.5rem);
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: calc(50% - 4.5rem);
	transition: opacity 1s ease, visibility 1s;
	visibility: hidden;
	width: 9rem;
	z-index: 100000;
}

body.is-loading {
	pointer-events: none;
}

body.is-loading.with-loader #wrapper:after {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUgeyBmaWxsOiB0cmFuc3BhcmVudDsgc3Ryb2tlOiAjRkY3QTAwOyBzdHJva2Utd2lkdGg6IDJweDsgfTwvc3R5bGU+PGRlZnM+PGNsaXBQYXRoIGlkPSJjb3JuZXIiPjxwb2x5Z29uIHBvaW50cz0iMCwwIDQ4LDAgNDgsNDggOTYsNDggOTYsOTYgMCw5NiIgLz48L2NsaXBQYXRoPjwvZGVmcz48ZyBjbGlwLXBhdGg9InVybCgjY29ybmVyKSI+PGNpcmNsZSBjeD0iNDgiIGN5PSI0OCIgcj0iMzIiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIgLz48YW5pbWF0ZVRyYW5zZm9ybSBhdHRyaWJ1dGVOYW1lPSJ0cmFuc2Zvcm0iIGF0dHJpYnV0ZVR5cGU9IlhNTCIgdHlwZT0icm90YXRlIiBmcm9tPSIwIDQ4IDQ4IiB0bz0iMzYwIDQ4IDQ4IiBkdXI9IjFzIiByZXBlYXREdXI9ImluZGVmaW5pdGUiIC8+PC9nPjwvc3ZnPg==');
	opacity: 1;
	transform: scale(1.0);
	visibility: visible;
}

body.is-playing.with-loader #wrapper:after {
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.25s ease, transform 0.75s ease, visibility 0.25s;
	visibility: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.image.style4 .frame {
	width: 10.75rem;
	border-radius: 100%;
	border-color: rgba(38,22,22,0.059);
	border-style: solid;
	border-width: 1px;
	box-shadow: 0rem 0rem 0rem 0rem #362E2E;
	transition: none;
}

.image.style4 img {
	-webkit-touch-callout: none;
	user-select: none;
}

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

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

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

.image.style1 .frame {
	width: 5.375rem;
	border-radius: 0.125rem;
	border-color: #FCF5F5;
	border-style: solid;
	border-width: 1px;
	box-shadow: 0rem 0.75rem 2rem 0rem rgba(115,108,108,0.259);
	transition: none;
}

.image.style1 .frame img:first-child {
	border-radius: calc(0.125rem - 1px) !important;
}

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

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

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

.image.style2 .frame {
	width: 100vw;
	height: 23.25rem;
	transition: none;
}

.image.style2 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top;
	width: 100% !important;
	-webkit-touch-callout: none;
	user-select: none;
}

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

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

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

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

h1.style1, h2.style1, h3.style1, p.style1 {
	color: #3B3B3B;
	font-family: 'Inter', sans-serif;
	padding-left: calc(0.75rem * var(--indent-left));
	padding-right: calc(0.75rem * var(--indent-right));
	letter-spacing: -0.225rem;
	width: 100%;
	font-size: 3.5em;
	line-height: 1;
	font-weight: 500;
}

h1.style1 u, h2.style1 u, h3.style1 u, p.style1 u {
	text-decoration-color: #D9D9D9;
}

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

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

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

h1.style1 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.style1 > *, h2.style1 > *, h3.style1 > *, p.style1 > * {
	display: inline-block;
	line-height: 1.2;
}

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

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

h1.style2, h2.style2, h3.style2, p.style2 {
	max-width: 34.5rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #3B3B3B;
	font-family: 'Inter', sans-serif;
	padding-left: calc(1.125rem * var(--indent-left));
	padding-right: calc(1.125rem * var(--indent-right));
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 300;
}

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

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

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

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

h1.style3, h2.style3, h3.style3, p.style3 {
	color: #3B3B3B;
	font-family: 'Inter', sans-serif;
	font-size: 1.75em;
	line-height: 1.125;
	font-weight: 500;
}

h1.style3 u, h2.style3 u, h3.style3 u, p.style3 u {
	text-decoration-color: #D9D9D9;
}

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

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

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

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.style3 > *, h2.style3 > *, h3.style3 > *, p.style3 > * {
	display: inline-block;
	line-height: 1.2;
}

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

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

h1.style9, h2.style9, h3.style9, p.style9 {
	color: #3B3B3B;
	font-family: 'Inter', sans-serif;
	padding-left: calc(2rem * var(--indent-left));
	padding-right: calc(2rem * var(--indent-right));
	letter-spacing: -0.225rem;
	width: 100%;
	font-size: 3.5em;
	line-height: 1;
	font-weight: 500;
}

h1.style9 u, h2.style9 u, h3.style9 u, p.style9 u {
	text-decoration-color: #D9D9D9;
}

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

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

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

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

h1.style9 > *, h2.style9 > *, h3.style9 > *, p.style9 > * {
	display: inline-block;
	line-height: 1.2;
}

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

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

h1.style8, h2.style8, h3.style8, p.style8 {
	max-width: 18.375rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #3B3B3B;
	font-family: 'Inter', sans-serif;
	padding-left: calc(2.5rem * var(--indent-left));
	padding-right: calc(2.5rem * var(--indent-right));
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 300;
}

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

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

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

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

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

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

h1.style10, h2.style10, h3.style10, p.style10 {
	text-align: center;
	max-width: 37.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: #3B3B3B;
	font-family: 'Inter', sans-serif;
	padding-left: 1.125rem;
	padding-right: 1.125rem;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 300;
}

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

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

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

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

h1.style4, h2.style4, h3.style4, p.style4 {
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.125rem;
	width: 100%;
	font-size: 3.75em;
	line-height: 1.125;
	font-weight: 500;
}

h1.style4 u, h2.style4 u, h3.style4 u, p.style4 u {
	text-decoration-color: #D9D9D9;
}

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

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

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

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

h1.style4 > *, h2.style4 > *, h3.style4 > *, p.style4 > * {
	display: inline-block;
	line-height: 1.2;
}

h1.style5, h2.style5, h3.style5, p.style5 {
	color: rgba(255,255,255,0.839);
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	line-height: 1.75;
	font-weight: 400;
}

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

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

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

h1.style5 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: 2.5rem;
}

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

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

h1.style6, h2.style6, h3.style6, p.style6 {
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	font-size: 1.75em;
	line-height: 1.125;
	font-weight: 500;
}

h1.style6 u, h2.style6 u, h3.style6 u, p.style6 u {
	text-decoration-color: #D9D9D9;
}

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

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

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

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

h1.style6 > *, h2.style6 > *, h3.style6 > *, p.style6 > * {
	display: inline-block;
	line-height: 1.2;
}

h1.style7, h2.style7, h3.style7, p.style7 {
	color: rgba(59,59,59,0.412);
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	line-height: 1.75;
	font-weight: 400;
}

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

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

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

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

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

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

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

.buttons.style1 li a {
	display: inline-flex;
	width: auto;
	height: 4rem;
	line-height: 4rem;
	padding: 0 2rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 400;
	border-radius: 2.5rem;
	flex-direction: row-reverse;
	transition: color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

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

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

.buttons.style1 .button {
	background-color: #FF7A00;
	color: #FFFFFF;
}

.buttons.style1 .button svg {
	fill: rgba(255,255,255,0.569);
}

.buttons.style1 .button:hover {
	background-color: #FF8719 !important;
}

.container {
	position: relative;
}

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

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

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

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

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

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

.container.style5 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

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

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

.container.style5 > .wrapper > .inner {
	--gutters: 2.25rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container.style1 {
	display: flex;
	width: 100%;
	min-height: 28rem;
	align-items: center;
	justify-content: center;
	background-color: #FAFAFA;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%22640%22%20height%3D%22480%22%20viewBox%3D%220%200%20640%20480%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20rect%20%7B%20opacity%3A%200.5%3B%20%7D%20polygon%20%7B%20opacity%3A%200.75%3B%20%7D%20%3C%2Fstyle%3E%20%3Cg%20id%3D%22bg%22%3E%20%3ClinearGradient%20id%3D%22bggrad%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%220%22%20y1%3D%22239.5937%22%20x2%3D%22640%22%20y2%3D%22239.5937%22%20gradientTransform%3D%22matrix%281%200%200%20-1%200%20479.5%29%22%3E%20%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3Atransparent%22%2F%3E%20%3Cstop%20offset%3D%220.3743%22%20style%3D%22stop-color%3Argba(255,122,0,0.2)%22%2F%3E%20%3Cstop%20offset%3D%220.7682%22%20style%3D%22stop-color%3Atransparent%22%2F%3E%20%3Cstop%20offset%3D%221%22%20style%3D%22stop-color%3Argba(255,122,0,0.2)%22%2F%3E%20%3C%2FlinearGradient%3E%20%3Crect%20style%3D%22fill%3Aurl%28%23bggrad%29%3B%22%20width%3D%22640%22%20height%3D%22479.8%22%20%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22l1%22%3E%20%3ClinearGradient%20id%3D%22l1grad%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%22180.3663%22%20y1%3D%22333.5278%22%20x2%3D%2272.0669%22%20y2%3D%22521.1078%22%20gradientTransform%3D%22matrix%281%200%200%20-1%200%20479.5%29%22%3E%20%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3Argba(255,122,0,0.2)%22%2F%3E%20%3Cstop%20offset%3D%221%22%20style%3D%22stop-color%3Atransparent%22%2F%3E%20%3C%2FlinearGradient%3E%20%3Cpolygon%20style%3D%22fill%3Aurl%28%23l1grad%29%3B%22%20points%3D%220%2C69%2092.3%2C196.8%20232%2C0%200%2C0%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22l2%22%3E%20%3ClinearGradient%20id%3D%22l2grad%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%220%22%20y1%3D%22251.589%22%20x2%3D%22349.5438%22%20y2%3D%22251.589%22%20gradientTransform%3D%22matrix%281%200%200%20-1%200%20479.5%29%22%3E%20%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3Argba(255,122,0,0.2)%22%2F%3E%20%3Cstop%20offset%3D%220.8596%22%20style%3D%22stop-color%3Atransparent%22%2F%3E%20%3C%2FlinearGradient%3E%20%3Cpolygon%20style%3D%22fill%3Aurl%28%23l2grad%29%3B%22%20points%3D%2292.3%2C196.8%200%2C170.9%200%2C284.9%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22l3%22%3E%20%3ClinearGradient%20id%3D%22l3grad%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%22307.3333%22%20y1%3D%22161.2493%22%20x2%3D%22307.3333%22%20y2%3D%22479.5%22%20gradientTransform%3D%22matrix%281%200%200%20-1%200%20479.5%29%22%3E%20%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3Argba(255,122,0,0.2)%22%2F%3E%20%3Cstop%20offset%3D%221%22%20style%3D%22stop-color%3Atransparent%22%2F%3E%20%3C%2FlinearGradient%3E%20%3Cpolygon%20style%3D%22fill%3Aurl%28%23l3grad%29%3B%22%20points%3D%2292.7%2C196.4%20514.7%2C0%20522%2C0%20328.7%2C318.3%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22l4%22%3E%20%3ClinearGradient%20id%3D%22l4grad%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%22540.3333%22%20y1%3D%22470.1287%22%20x2%3D%22640%22%20y2%3D%22470.1287%22%20gradientTransform%3D%22matrix%281%200%200%20-1%200%20479.5%29%22%3E%20%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3A%23808080%22%2F%3E%20%3Cstop%20offset%3D%220.8596%22%20style%3D%22stop-color%3Atransparent%22%2F%3E%20%3C%2FlinearGradient%3E%20%3Cpolygon%20style%3D%22fill%3Aurl%28%23l4grad%29%3B%22%20points%3D%22540.3%2C0%20640%2C18.7%20640%2C0%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22l5%22%3E%20%3ClinearGradient%20id%3D%22l5grad%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%22327.3333%22%20y1%3D%22142.6941%22%20x2%3D%22640%22%20y2%3D%22142.6941%22%20gradientTransform%3D%22matrix%281%200%200%20-1%200%20479.5%29%22%3E%20%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3Argba(255,122,0,0.2)%22%2F%3E%20%3Cstop%20offset%3D%220.8596%22%20style%3D%22stop-color%3Atransparent%22%2F%3E%20%3C%2FlinearGradient%3E%20%3Cpolygon%20style%3D%22fill%3Aurl%28%23l5grad%29%3B%22%20points%3D%22327.3%2C317.1%20571.3%2C235.4%20640%2C276.3%20640%2C438.2%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22l6%22%3E%20%3ClinearGradient%20id%3D%22l6grad%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%22291.9083%22%20y1%3D%2222.7335%22%20x2%3D%22129.2015%22%20y2%3D%22304.55%22%20gradientTransform%3D%22matrix%281%200%200%20-1%200%20479.5%29%22%3E%20%3Cstop%20offset%3D%220%22%20style%3D%22stop-color%3Argba(255,122,0,0.2)%22%2F%3E%20%3Cstop%20offset%3D%221%22%20style%3D%22stop-color%3Atransparent%22%2F%3E%20%3C%2FlinearGradient%3E%20%3Cpolygon%20style%3D%22fill%3Aurl%28%23l6grad%29%3B%22%20points%3D%2292.3%2C196.2%20189.9%2C480%20251.7%2C480%20327.5%2C318.4%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

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

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

.container.style1 > .wrapper > .inner {
	--gutters: 2.5rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	--spacing: 0.125rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.container.style1 > .wrapper {
	max-width: 47rem;
	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: 28rem;
}

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

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

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

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

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

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

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

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

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

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

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

.container.style3 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-attachment: fixed;
	--background-parallax-intensity: 0.2;
	border-color: rgba(255,255,255,0.102);
	border-style: solid;
	border-top-width: 1px;
	border-bottom-width: 1px;
}

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

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

.container.style3 > .wrapper > .inner {
	--gutters: 6rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

body.is-touch .container.style3 {
	background-attachment: scroll;
	--background-parallax-intensity: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container21 {
	background-image: linear-gradient(to top, rgba(36,36,36,0.89), rgba(36,36,36,0.89)), url('images/container21.jpg');
	background-position: 0% 0%, 50% calc(50% - (((var(--scroll-y, 0) * 1px) - (var(--element-top, 0) * 1px)) * var(--background-parallax-intensity, 0)) );
	background-repeat: repeat, no-repeat;
	background-size: auto, cover;
}

.container.style2 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #FF7A00;
	border-color: rgba(255,255,255,0.122);
	border-style: solid;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-right-width: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container.style2.columns > .wrapper > .inner > *:before {
	border-left: solid 2px rgba(255,255,255,0.122);
	content: '';
	display: block;
	margin-left: calc((var(--gutters) * -0.5) - 1px);
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
}

.container.style2.columns > .wrapper > .inner > *:first-child:before {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icons li a svg {
	display: block;
	position: relative;
}

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

.icons li a .label {
	display: none;
}

.icons.style1 {
	font-size: 1.375em;
	gap: 1.375rem;
}

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

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

.icons.style1 li a {
	border-radius: 100%;
	height: 2em;
	width: 2em;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.icons.style1 li a svg {
	height: 60%;
	width: 60%;
	transition: fill 0.25s ease;
}

.icons.style1 a {
	background-color: #FF7A00;
	box-shadow: 0rem 1.625rem 2.25rem 0rem rgba(0,0,0,0.059);
}

.icons.style1 a svg {
	fill: #3B3B3B;
}

.icons.style1 a:hover {
	background-color: #FF912B !important;
}

.icons.style1 li a + svg {
	transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

.icons.style1 li a:hover {
	transform: scale(1.06);
}

.icons.style1 li a:hover + svg {
	transform: scale(1.06);
}

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

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

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

hr.style2:before {
	width: 100%;
	background-color: rgba(0,0,0,0.059);
	height: 2px;
}

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

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

@media (max-width: 1280px) {
	html {
		font-size: 13pt;
	}
	
	
	
	.container.style3 {
		background-attachment: scroll;
		--background-parallax-intensity: 0 !important;
	}
}

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

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

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	
	
	#wrapper {
		padding: 0 0 0rem 0;
	}
	
	#main > .inner {
		--padding-horizontal: 2.5rem;
		--padding-vertical: 5rem;
		--spacing: 1.75rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-2.5rem);
		max-width: calc(100% + 5rem + 0.4725px);
		width: calc(100% + 5rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -5rem !important;
	}
	
	#main > .inner > .active > .full:last-child {
		margin-bottom: -5rem !important;
	}
	
	.image.style4:not(:first-child) {
		margin-top: 2rem !important;
	}
	
	.image.style4:not(:last-child) {
		margin-bottom: 2rem !important;
	}
	
	.image.style4 .frame {
		width: 10.625rem;
		height: 12.65625rem !important;
	}
	
	.image.style4 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image.style1:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	.image.style1:not(:last-child) {
		margin-bottom: 2.25rem !important;
	}
	
	.image.style1 .frame {
		width: 4rem;
	}
	
	.image.style2:not(:first-child) {
		margin-top: 1.6875rem !important;
	}
	
	.image.style2:not(:last-child) {
		margin-bottom: 1.6875rem !important;
	}
	
	.image.style2 .frame {
		height: 29.0625rem !important;
	}
	
	.image.style2 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top;
		width: 100% !important;
	}
	
	h1.style1:not(:first-child), h2.style1:not(:first-child), h3.style1:not(:first-child), p.style1:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	h1.style1:not(:last-child), h2.style1:not(:last-child), h3.style1:not(:last-child), p.style1:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		padding-left: calc(0.5625rem * var(--indent-left));
		padding-right: calc(0.5625rem * var(--indent-right));
		letter-spacing: -0.196875rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1;
	}
	
	h1.style2:not(:first-child), h2.style2:not(:first-child), h3.style2:not(:first-child), p.style2:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	h1.style2:not(:last-child), h2.style2:not(:last-child), h3.style2:not(:last-child), p.style2:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		padding-left: calc(0.84375rem * var(--indent-left));
		padding-right: calc(0.84375rem * var(--indent-right));
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.375;
	}
	
	h1.style3, h2.style3, h3.style3, p.style3 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.125;
	}
	
	h1.style9:not(:first-child), h2.style9:not(:first-child), h3.style9:not(:first-child), p.style9:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	h1.style9:not(:last-child), h2.style9:not(:last-child), h3.style9:not(:last-child), p.style9:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	h1.style9, h2.style9, h3.style9, p.style9 {
		padding-left: calc(1.5rem * var(--indent-left));
		padding-right: calc(1.5rem * var(--indent-right));
		letter-spacing: -0.196875rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1;
	}
	
	h1.style8:not(:first-child), h2.style8:not(:first-child), h3.style8:not(:first-child), p.style8:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	h1.style8:not(:last-child), h2.style8:not(:last-child), h3.style8:not(:last-child), p.style8:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		padding-left: calc(1.875rem * var(--indent-left));
		padding-right: calc(1.875rem * var(--indent-right));
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.375;
	}
	
	h1.style10:not(:first-child), h2.style10:not(:first-child), h3.style10:not(:first-child), p.style10:not(:first-child) {
		margin-top: 1.375rem !important;
	}
	
	h1.style10:not(:last-child), h2.style10:not(:last-child), h3.style10:not(:last-child), p.style10:not(:last-child) {
		margin-bottom: 1.375rem !important;
	}
	
	h1.style10, h2.style10, h3.style10, p.style10 {
		padding-left: 0.84375rem;
		padding-right: 0.84375rem;
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.375;
	}
	
	h1.style4, h2.style4, h3.style4, p.style4 {
		letter-spacing: -0.109375rem;
		width: 100%;
		font-size: 2.75em;
		line-height: 1.125;
	}
	
	h1.style5, h2.style5, h3.style5, p.style5 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.75;
	}
	
	h1.style6:not(:first-child), h2.style6:not(:first-child), h3.style6:not(:first-child), p.style6:not(:first-child) {
		margin-top: 0.1875rem !important;
	}
	
	h1.style6:not(:last-child), h2.style6:not(:last-child), h3.style6:not(:last-child), p.style6:not(:last-child) {
		margin-bottom: 0.1875rem !important;
	}
	
	h1.style6, h2.style6, h3.style6, p.style6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.125;
	}
	
	h1.style7, h2.style7, h3.style7, p.style7 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.75;
	}
	
	.buttons.style1 {
		gap: 1rem;
	}
	
	.buttons.style1:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	.buttons.style1:not(:last-child) {
		margin-bottom: 2.25rem !important;
	}
	
	.buttons.style1 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons.style1 li a svg {
		width: 1em;
	}
	
	.container.style5 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	.container.style5:not(:first-child) {
		margin-top: 4rem !important;
	}
	
	.container.style5:not(:last-child) {
		margin-bottom: 4rem !important;
	}
	
	.container.style5 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.container.style5.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style5.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style5.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style5.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type, .container.style5.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type, .container.style5.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type, .container.style5.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type, .container.style5.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style5.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container.style1:not(:first-child) {
		margin-top: 4rem !important;
	}
	
	.container.style1:not(:last-child) {
		margin-bottom: 4rem !important;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 0.125rem;
	}
	
	.container.style1 {
		min-height: 21rem;
	}
	
	.container.style1.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style1.columns > .wrapper > .inner > .full {
		min-height: 21rem;
	}
	
	.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	.container.style1.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	#container01 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container01 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container07 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container07 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container06 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container06 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container.style3 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	.container.style3:not(:first-child) {
		margin-top: 4rem !important;
	}
	
	.container.style3:not(:last-child) {
		margin-bottom: 4rem !important;
	}
	
	.container.style3 > .wrapper > .inner {
		--gutters: 3rem;
	}
	
	.container.style3.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style3.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style3.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style3.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type, .container.style3.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type, .container.style3.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type, .container.style3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type, .container.style3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container.style2:not(:first-child) {
		margin-top: 4rem !important;
	}
	
	.container.style2:not(:last-child) {
		margin-bottom: 4rem !important;
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: 8rem;
	}
	
	.container.style2.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > *:before {
		margin-top: calc((var(--gutters) * -0.5) - 1px) !important;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child.image img {
		max-height: none;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child.slideshow .bg {
		min-height: auto;
	}
	
	.icons.style1 {
		font-size: 1.375em;
		gap: 1.375rem;
	}
	
	.icons.style1:not(:first-child) {
		margin-top: 2.25rem !important;
	}
	
	.icons.style1:not(:last-child) {
		margin-bottom: 2.25rem !important;
	}
	
	hr.style2:not(:first-child) {
		margin-top: 4rem !important;
	}
	
	hr.style2:not(:last-child) {
		margin-bottom: 4rem !important;
	}
}

@media (max-width: 480px) {
	#wrapper {
		padding: 0 0 0rem 0;
	}
	
	#main > .inner {
		--spacing: 1.53125rem;
	}
	
	.image.style4 .frame {
		height: 10.125rem !important;
	}
	
	.image.style2 .frame {
		height: 23.25rem !important;
	}
	
	.buttons.style1 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons.style1 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	
	
	.container.style1 > .wrapper > .inner {
		--spacing: 0.109375rem;
	}
}

@media (max-width: 360px) {
	#wrapper {
		padding: 0 0 0rem 0;
	}
	
	#main > .inner {
		--padding-horizontal: 1.875rem;
		--padding-vertical: 3.75rem;
		--spacing: 1.3125rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-1.875rem);
		max-width: calc(100% + 3.75rem + 0.4725px);
		width: calc(100% + 3.75rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -3.75rem !important;
	}
	
	#main > .inner > .active > .full:last-child {
		margin-bottom: -3.75rem !important;
	}
	
	.image.style4 .frame {
		height: 8.859375rem !important;
	}
	
	.image.style2 .frame {
		height: 20.34375rem !important;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		font-size: 2.5em;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		font-size: 1em;
	}
	
	h1.style3, h2.style3, h3.style3, p.style3 {
		font-size: 1.5em;
	}
	
	h1.style9, h2.style9, h3.style9, p.style9 {
		font-size: 2.5em;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		font-size: 1em;
	}
	
	h1.style10, h2.style10, h3.style10, p.style10 {
		font-size: 1.25em;
	}
	
	h1.style4, h2.style4, h3.style4, p.style4 {
		font-size: 2.75em;
	}
	
	h1.style5, h2.style5, h3.style5, p.style5 {
		font-size: 1em;
	}
	
	h1.style6, h2.style6, h3.style6, p.style6 {
		font-size: 1.5em;
	}
	
	h1.style7, h2.style7, h3.style7, p.style7 {
		font-size: 1em;
	}
	
	.buttons.style1 {
		gap: 0.75rem;
	}
	
	.container.style5 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 4rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 0.09375rem;
	}
	
	.container.style1.columns > .wrapper > .inner > .full {
		min-height: 14rem;
	}
	
	.container.style3 > .wrapper > .inner {
		--gutters: 3rem;
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: 8rem;
	}
	
	.icons.style1 {
		gap: 1.03125rem;
	}
}