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

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

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

body:before {
	content: '';
	display: block;
	background-attachment: scroll;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: 100vw;
	z-index: 0;
	background-image: url('images/bg.jpg');
	background-position: top left;
	background-repeat: repeat;
	background-size: auto;
	background-color: #FFFFFF;
}

: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: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: var(--viewport-height);
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 0.125rem 0.125rem 0.125rem 0.125rem;
}

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

#main > .inner {
	--padding-horizontal: 3.25rem;
	--padding-vertical: 1.75rem;
	--spacing: 0rem;
	--width: 58rem;
	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-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;
}

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

#text03 {
	text-align: center;
	max-width: 51.125rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: rgba(252,250,250,0.969);
	font-family: 'Roboto Slab', serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 3.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text03 a {
	text-decoration: underline;
}

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

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

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

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

#text19 {
	text-align: center;
	max-width: 51.125rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: auto;
	--margin-right: auto;
	color: rgba(252,250,250,0.969);
	font-family: 'Roboto Slab', serif;
	letter-spacing: 0.05rem;
	width: calc(100% + 0.05rem);
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text19 a {
	text-decoration: underline;
}

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

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

h1.style2, h2.style2, h3.style2, p.style2 {
	text-align: center;
	color: #000000;
	font-family: 'Roboto Slab', serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2em;
	line-height: 1.375;
	font-weight: 700;
}

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

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

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

h1.style1, h2.style1, h3.style1, p.style1 {
	text-align: left;
	max-width: 95.625rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

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

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

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

#text04 {
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.75em;
	line-height: 1.25;
	font-weight: 400;
}

#text04 a {
	text-decoration: underline;
}

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

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

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

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

#text15 {
	text-align: center;
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.375em;
	line-height: 1.75;
	font-weight: 400;
}

#text15 a {
	text-decoration: underline;
}

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

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

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

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

#text10 {
	text-align: center;
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.75em;
	line-height: 1.75;
	font-weight: 400;
}

#text10 a {
	text-decoration: underline;
}

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

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

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

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

#text11 {
	text-align: center;
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.375em;
	line-height: 1.75;
	font-weight: 400;
}

#text11 a {
	text-decoration: underline;
}

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

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

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

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

#text24 {
	text-align: center;
	color: #000000;
	font-family: 'Roboto Slab', serif;
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.75em;
	line-height: 1.375;
	font-weight: 400;
}

#text24 a {
	text-decoration: underline;
}

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

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

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

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

#text16 {
	text-align: center;
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.75em;
	line-height: 1.75;
	font-weight: 400;
}

#text16 a {
	text-decoration: underline;
}

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

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

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

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

#text07 {
	text-align: center;
	color: #000000;
	font-family: 'Roboto Slab', serif;
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.75em;
	line-height: 1.75;
	font-weight: 400;
}

#text07 a {
	text-decoration: underline;
}

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

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

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

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

#text21 {
	text-align: left;
	max-width: 95.625rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 1.25;
	font-weight: 400;
}

#text21 a {
	text-decoration: underline;
}

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

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

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

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

#text06 {
	color: #000000;
	font-family: 'Roboto Slab', serif;
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.75em;
	line-height: 1.125;
	font-weight: 400;
}

#text06 a {
	text-decoration: underline;
}

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

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

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

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

#text01 {
	text-align: center;
	color: #000000;
	font-family: 'Roboto Slab', serif;
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.75em;
	line-height: 1.125;
	font-weight: 400;
}

#text01 a {
	text-decoration: underline;
}

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

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

#text20 {
	text-align: center;
	color: #000000;
	font-family: 'Roboto Slab', serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2em;
	line-height: 1.375;
	font-weight: 400;
}

#text20 a {
	text-decoration: underline;
}

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

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

#text12 {
	text-align: center;
	color: #000000;
	font-family: 'Roboto Slab', serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2em;
	line-height: 1.375;
	font-weight: 400;
}

#text12 a {
	text-decoration: underline;
}

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

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

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

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

h1.style3, h2.style3, h3.style3, p.style3 {
	text-align: left;
	max-width: 66.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1em;
	line-height: 1.5;
	font-weight: 400;
}

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

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

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

#text27 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text27 a {
	text-decoration: underline;
}

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

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

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

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

#text31 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text31 a {
	text-decoration: underline;
}

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

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

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

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

#text33 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text33 a {
	text-decoration: underline;
}

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

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

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

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

#text35 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text35 a {
	text-decoration: underline;
}

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

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

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

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

#text37 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text37 a {
	text-decoration: underline;
}

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

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

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

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

#text39 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text39 a {
	text-decoration: underline;
}

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

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

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

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

#text41 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text41 a {
	text-decoration: underline;
}

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

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

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

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

#text43 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text43 a {
	text-decoration: underline;
}

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

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

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

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

#text45 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text45 a {
	text-decoration: underline;
}

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

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

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

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

#text47 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text47 a {
	text-decoration: underline;
}

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

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

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

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

#text25 {
	text-align: center;
	color: #000000;
	font-family: 'Roboto Slab', serif;
	text-indent: 1.5rem;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 2.75em;
	line-height: 1.375;
	font-weight: 400;
}

#text25 a {
	text-decoration: underline;
}

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

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

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

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

#text17 {
	text-align: left;
	max-width: 68.25rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #F01616;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1.25em;
	line-height: 2.125;
	font-weight: 300;
}

#text17 a {
	text-decoration: underline;
}

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

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

#buttons01 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons01 li a {
	display: inline-block;
	width: 25.25rem;
	height: auto;
	line-height: 1.5625rem;
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1.5em;
	font-weight: 700;
	border-radius: 1.75rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 0.78125rem;
	padding-top: 0.78125rem;
	white-space: normal;
	text-align: var(--alignment);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons01 .button {
	background-color: #1ABC9C;
	color: #FFFFFF;
}

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

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

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

#buttons05 li a {
	display: inline-block;
	width: 25.25rem;
	height: auto;
	line-height: 1.5625rem;
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1.5em;
	font-weight: 700;
	border-radius: 1.75rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 0.78125rem;
	padding-top: 0.78125rem;
	white-space: normal;
	text-align: var(--alignment);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons05 .button {
	background-color: #1ABC9C;
	color: #FFFFFF;
}

.buttons.style1 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

.buttons.style1 li a {
	display: inline-block;
	width: 14.5rem;
	height: auto;
	line-height: 1.25rem;
	padding: 0 1rem;
	vertical-align: middle;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1.375em;
	font-weight: 700;
	border-radius: 2.625rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 0.625rem;
	padding-top: 0.625rem;
	white-space: normal;
	text-align: var(--alignment);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

#buttons04 {
	--flex-alignment: center;
	--alignment: center;
	gap: 0.875rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons04 li a {
	display: inline-block;
	width: 25.25rem;
	height: auto;
	line-height: 1.5625rem;
	padding: 0 1.25rem;
	vertical-align: middle;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1.5em;
	font-weight: 700;
	border-radius: 1.75rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 0.78125rem;
	padding-top: 0.78125rem;
	white-space: normal;
	text-align: var(--alignment);
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons04 .button {
	background-color: #1ABC9C;
	color: #FFFFFF;
}

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

#container03 {
	--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-attachment: scroll;
	background-image: url('images/container03.jpg');
	background-position: 50% 50%;
	background-repeat: repeat;
	background-size: cover;
}

#container03 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.75rem;
	--spacing: 0.625rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container01 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

#container01 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 76rem;
	background-color: transparent;
}

#container01 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.625rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

#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 > div:first-child, #container01.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

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

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

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

#container07 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container07 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 76rem;
	background-color: #FFFFFF;
}

#container07 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.5rem;
	--padding-vertical: 0.375rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

#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 > div:first-child, #container07.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

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

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

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

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

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

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

#container06 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

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

#container06 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 76rem;
	background-color: #FFFFFF;
}

#container06 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

#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 > div:first-child, #container06.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

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

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

#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(60% + (var(--gutters) / 2));
}

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

#container02 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container02 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 76rem;
	background-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container20 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

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

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

#container20 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 48rem;
	background-color: transparent;
	border-color: rgba(227,225,225,0.961);
	border-style: solid;
	border-width: 12px;
}

#container20 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 0.5rem;
	--padding-vertical: 1.625rem;
	--spacing: 2.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container04 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container04 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 98rem;
	background-color: #CCE6D9;
}

#container04 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container.style2 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

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

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

.container.style2 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 48rem;
	background-color: transparent;
	border-color: rgba(227,225,225,0.961);
	border-style: solid;
	border-width: 12px;
}

.container.style2 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 0.5rem;
	--padding-vertical: 1.625rem;
	--spacing: 2.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container.style1 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

.container.style1 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 76rem;
	background-color: transparent;
}

.container.style1 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

.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: flex-start;
}

.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 > div:first-child, .container.style1.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

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

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

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

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

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

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

#container05 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container05 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 76rem;
	background-color: transparent;
}

#container05 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.5rem;
	--spacing: 2.875rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container10 {
	--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-image: linear-gradient(45deg, #8ED674 0%, #918AC2 60%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

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

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

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

#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 > div:first-child, #container10.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

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

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

#container15 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

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

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

#container15 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 48rem;
	background-color: transparent;
	border-color: rgba(227,225,225,0.961);
	border-style: solid;
	border-width: 12px;
}

#container15 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 0.5rem;
	--padding-vertical: 1.625rem;
	--spacing: 2.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container13 > .wrapper > .inner {
	--gutters: 1.875rem;
	--padding-horizontal: 1.25rem;
	--padding-vertical: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container12 {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--margin-left: 0;
	--margin-right: auto;
}

#container12 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 76rem;
	background-color: transparent;
}

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

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

#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 > div:first-child, #container12.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

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

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

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

#container11 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

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

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

#container11 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 48rem;
	background-color: transparent;
	border-color: rgba(227,225,225,0.961);
	border-style: solid;
	border-width: 12px;
}

#container11 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 0.5rem;
	--padding-vertical: 1.625rem;
	--spacing: 2.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container16 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

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

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

#container16 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 48rem;
	background-color: transparent;
	border-color: rgba(227,225,225,0.961);
	border-style: solid;
	border-width: 12px;
}

#container16 > .wrapper > .inner {
	--gutters: calc(var(--padding-horizontal) * 2);
	--padding-horizontal: 0.5rem;
	--padding-vertical: 1.625rem;
	--spacing: 2.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container09 {
	--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-image: linear-gradient(45deg, #8ED674 0%, #918AC2 60%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

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

#container09 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 1.5rem;
	--padding-vertical: 2.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

#container09 > .wrapper {
	max-width: var(--width);
	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: flex-start;
}

#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 > div:first-child, #container09.columns > .wrapper > .inner > div:first-child > .full:first-child {
	border-top-left-radius: inherit;
}

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

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

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

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

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

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

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

#divider03:before {
	width: 100%;
	background-color: #000000;
	height: 1px;
	border-radius: 0px;
}

#divider01:before {
	width: 100%;
	background-color: #000000;
	height: 1px;
	border-radius: 0px;
}

#divider02:before {
	width: 100%;
	background-color: #000000;
	height: 1px;
	border-radius: 0px;
}

#divider04:before {
	width: 100%;
	background-color: #000000;
	height: 1px;
	border-radius: 0px;
}

#divider05:before {
	width: 100%;
	background-color: #000000;
	height: 3px;
	border-radius: 0px;
}

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

#image04 .frame {
	max-width: 100%;
	width: 234px;
	transition: none;
}

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

#image04 .frame img {
	transition: none;
}

#image02 .frame {
	max-width: 100%;
	width: 234px;
	transition: none;
}

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

#image02 .frame img {
	transition: none;
}

#image01 .frame {
	width: 100vw;
	height: 26.875rem;
	transition: none;
}

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

#image01 .frame img {
	transition: none;
}

#image06 {
	text-align: center;
}

#image06 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image06 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image06 .frame img {
	transition: none;
}

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

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

#image07 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image07 .frame img {
	transition: none;
}

#image10 {
	text-align: center;
}

#image10 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image10 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image10 .frame img {
	transition: none;
}

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

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

#image11 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image11 .frame img {
	transition: none;
}

#image12 {
	text-align: center;
}

#image12 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image12 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image12 .frame img {
	transition: none;
}

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

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

#image13 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image13 .frame img {
	transition: none;
}

#image14 {
	text-align: center;
}

#image14 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image14 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image14 .frame img {
	transition: none;
}

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

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

#image15 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image15 .frame img {
	transition: none;
}

#image16 {
	text-align: center;
}

#image16 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image16 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image16 .frame img {
	transition: none;
}

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

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

#image17 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image17 .frame img {
	transition: none;
}

#image18 {
	text-align: center;
}

#image18 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image18 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image18 .frame img {
	transition: none;
}

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

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

#image19 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image19 .frame img {
	transition: none;
}

#image20 {
	text-align: center;
}

#image20 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image20 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image20 .frame img {
	transition: none;
}

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

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

#image21 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image21 .frame img {
	transition: none;
}

#image22 {
	text-align: center;
}

#image22 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image22 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image22 .frame img {
	transition: none;
}

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

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

#image23 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image23 .frame img {
	transition: none;
}

#image24 {
	text-align: center;
}

#image24 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image24 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image24 .frame img {
	transition: none;
}

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

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

#image25 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image25 .frame img {
	transition: none;
}

#image26 {
	text-align: center;
}

#image26 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image26 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image26 .frame img {
	transition: none;
}

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

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

#image27 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image27 .frame img {
	transition: none;
}

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

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

#image05 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

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

#image05 .frame img {
	transition: none;
}

#image03 {
	text-align: center;
}

#image03 .frame {
	width: 5rem;
	height: 5rem;
	transition: none;
}

#image03 img {
	height: 100% !important;
	object-fit: cover;
	object-position: top left;
	width: 100% !important;
}

#image03 .frame img {
	transition: none;
}

.list {
	display: block;
}

.list ul, .list ol {
	display: inline-block;
	max-width: 100%;
	text-align: var(--site-language-alignment);
	vertical-align: middle;
}

.list ul li, .list ol li {
	direction: var(--site-language-direction);
	display: flex;
	position: relative;
}

.list ul li:before, .list ol li:before {
	background-repeat: no-repeat;
	content: '';
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	font-variant: normal !important;
	letter-spacing: 0 !important;
	order: 1;
	position: relative;
}

.list ul li:after, .list ol li:after {
	content: '';
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	order: 2;
	pointer-events: none;
}

.list ul li p, .list ol li p {
	flex-grow: 1;
	flex-shrink: 1;
	order: 3;
}

.list ul li:first-child, .list ol li:first-child {
	margin-top: 0 !important;
}

.list.style1 {
	color: #000000;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	letter-spacing: 0.025rem;
	font-size: 1em;
	line-height: 1.75;
	font-weight: 400;
	padding-left: calc(3.25rem * var(--indent-left));
	padding-right: calc(3.25rem * var(--indent-right));
}

.list.style1 a {
	text-decoration: underline;
}

.list.style1 a:hover {
	text-decoration: none;
}

.list.style1 ul {
	width: 39rem;
}

.list.style1 ul li {
	margin-top: 0.75rem;
}

.list.style1 ul li:after {
	width: 0.625rem;
}

.list.style1 ul li:before {
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cpath%20d%3D%22M37.9%2C10.6l-3.2-3.2c-0.4-0.4-1-0.7-1.6-0.7c-0.6%2C0-1.2%2C0.2-1.6%2C0.7L15.9%2C23l-7-7c-0.4-0.4-1-0.7-1.6-0.7S6.1%2C15.6%2C5.6%2C16%20l-3.2%2C3.2c-0.4%2C0.4-0.7%2C1-0.7%2C1.6S2%2C22%2C2.4%2C22.5l8.6%2C8.6l3.2%2C3.2c0.4%2C0.4%2C1%2C0.7%2C1.6%2C0.7c0.6%2C0%2C1.2-0.2%2C1.6-0.7l3.2-3.2l17.2-17.2%20c0.4-0.4%2C0.7-1%2C0.7-1.6C38.6%2C11.6%2C38.4%2C11.1%2C37.9%2C10.6z%22%20fill%3D%22%23000000%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 2rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.75rem;
	line-height: 1.75rem;
	min-width: 1.3125rem;
}

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

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

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

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

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

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	
	
	#wrapper {
		padding: 0.125rem 0.125rem 0.125rem 0.125rem;
	}
	
	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 1.75rem;
		--spacing: 0rem;
	}
	
	#text03 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 3em;
		line-height: 1.25;
	}
	
	#text19:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#text19:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#text19 {
		letter-spacing: 0.04375rem;
		width: calc(100% + 0.04375rem);
		font-size: 1.625em;
		line-height: 1.25;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2em;
		line-height: 1.375;
	}
	
	h1.style1:not(:first-child), h2.style1:not(:first-child), h3.style1:not(:first-child), p.style1:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	h1.style1:not(:last-child), h2.style1:not(:last-child), h3.style1:not(:last-child), p.style1:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	#text04:not(:first-child) {
		margin-top: 0.5625rem !important;
	}
	
	#text04:not(:last-child) {
		margin-bottom: 0.5625rem !important;
	}
	
	#text04 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.75em;
		line-height: 1.25;
	}
	
	#text15:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text15:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text15 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.375em;
		line-height: 1.75;
	}
	
	#text10:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text10:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text10 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.75em;
		line-height: 1.75;
	}
	
	#text11:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text11:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text11 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.375em;
		line-height: 1.75;
	}
	
	#text24:not(:first-child) {
		margin-top: 2.53125rem !important;
	}
	
	#text24:not(:last-child) {
		margin-bottom: 2.53125rem !important;
	}
	
	#text24 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.75em;
		line-height: 1.375;
	}
	
	#text16:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text16:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text16 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.75em;
		line-height: 1.75;
	}
	
	#text07:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text07:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text07 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.75em;
		line-height: 1.75;
	}
	
	#text21:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#text21:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#text21 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 1.25;
	}
	
	#text06:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text06:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text06 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.75em;
		line-height: 1.125;
	}
	
	#text01:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text01:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text01 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.75em;
		line-height: 1.125;
	}
	
	#text20 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2em;
		line-height: 1.375;
	}
	
	#text12 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2em;
		line-height: 1.375;
	}
	
	h1.style3:not(:first-child), h2.style3:not(:first-child), h3.style3:not(:first-child), p.style3:not(:first-child) {
		margin-top: 1.03125rem !important;
	}
	
	h1.style3:not(:last-child), h2.style3:not(:last-child), h3.style3:not(:last-child), p.style3:not(:last-child) {
		margin-bottom: 1.03125rem !important;
	}
	
	h1.style3, h2.style3, h3.style3, p.style3 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1em;
		line-height: 1.5;
	}
	
	#text27:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text27:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text27 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text31:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text31:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text31 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text33:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text33:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text33 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text35:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text35:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text35 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text37:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text37:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text37 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text39:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text39:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text39 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text41:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text41:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text41 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text43:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text43:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text43 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text45:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text45:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text45 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text47:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text47:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text47 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#text25:not(:first-child) {
		margin-top: 1.21875rem !important;
	}
	
	#text25:not(:last-child) {
		margin-bottom: 1.21875rem !important;
	}
	
	#text25 {
		text-indent: 1.125rem;
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 2.75em;
		line-height: 1.375;
	}
	
	#text17:not(:first-child) {
		margin-top: 1.125rem !important;
	}
	
	#text17:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#text17 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1.25em;
		line-height: 2.125;
	}
	
	#buttons01 {
		gap: 0.875rem;
	}
	
	#buttons01:not(:first-child) {
		margin-top: 1.59375rem !important;
	}
	
	#buttons01:not(:last-child) {
		margin-bottom: 1.59375rem !important;
	}
	
	#buttons01 li a {
		letter-spacing: 0rem;
		font-size: 1.5em;
	}
	
	#buttons05 {
		gap: 0.875rem;
	}
	
	#buttons05:not(:first-child) {
		margin-top: 1.59375rem !important;
	}
	
	#buttons05:not(:last-child) {
		margin-bottom: 1.59375rem !important;
	}
	
	#buttons05 li a {
		letter-spacing: 0rem;
		font-size: 1.5em;
	}
	
	.buttons.style1 {
		gap: 0.875rem;
	}
	
	.buttons.style1:not(:first-child) {
		margin-top: 0.375rem !important;
	}
	
	.buttons.style1:not(:last-child) {
		margin-bottom: 0.375rem !important;
	}
	
	.buttons.style1 li a {
		letter-spacing: 0rem;
		font-size: 1.375em;
	}
	
	#buttons04 {
		gap: 0.875rem;
	}
	
	#buttons04:not(:first-child) {
		margin-top: 1.59375rem !important;
	}
	
	#buttons04:not(:last-child) {
		margin-bottom: 1.59375rem !important;
	}
	
	#buttons04 li a {
		letter-spacing: 0rem;
		font-size: 1.5em;
	}
	
	
	
	#container03 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.75rem;
		--spacing: 0.625rem;
	}
	
	#container03.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container03.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container03.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container03.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container03.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type, #container03.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type, #container03.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container03.columns > .wrapper > .inner > div:first-of-type, #container03.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > div:last-of-type, #container03.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container03.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container01 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.625rem;
	}
	
	#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;
	}
	
	
	
	#container07 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0.375rem;
	}
	
	#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;
	}
	
	
	
	#container06:not(:last-child) {
		margin-bottom: 0.46875rem !important;
	}
	
	#container06 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
	}
	
	#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) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container06 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container02 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
	}
	
	#container02.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container02.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container02.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container02.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container02.columns > .wrapper > .inner > div:first-of-type, #container02.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > div:last-of-type, #container02.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container20:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container20:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container20 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.5rem;
		--padding-vertical: 1.625rem;
		--spacing: 2.75rem;
	}
	
	#container20.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container20.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container20.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container20.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container20.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type, #container20.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type, #container20.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container20.columns > .wrapper > .inner > div:first-of-type, #container20.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > div:last-of-type, #container20.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container20.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container20 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container20 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container20 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container04 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
	}
	
	#container04.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container04.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container04.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container04.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container04.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type, #container04.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type, #container04.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container04.columns > .wrapper > .inner > div:first-of-type, #container04.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > div:last-of-type, #container04.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container.style2:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	.container.style2:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.5rem;
		--padding-vertical: 1.625rem;
		--spacing: 2.75rem;
	}
	
	.container.style2.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style2.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style2.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style2.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style2.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style2.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div:first-of-type, .container.style2.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style2.columns > .wrapper > .inner > div:last-of-type, .container.style2.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style2.columns > .wrapper > .inner > div:first-of-type, .container.style2.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > div:last-of-type, .container.style2.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style2.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container24 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container24 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container24 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container.style1 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
	}
	
	.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;
	}
	
	
	
	#container05 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--spacing: 2.875rem;
	}
	
	#container05.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container05.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container05.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container05.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container05.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type, #container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type, #container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container05.columns > .wrapper > .inner > div:first-of-type, #container05.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > div:last-of-type, #container05.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container05 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container10 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.75rem;
	}
	
	#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;
	}
	
	
	
	#container15:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container15:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container15 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.5rem;
		--padding-vertical: 1.625rem;
		--spacing: 2.75rem;
	}
	
	#container15.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container15.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container15.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container15.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container15.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type, #container15.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type, #container15.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container15.columns > .wrapper > .inner > div:first-of-type, #container15.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > div:last-of-type, #container15.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container15.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container15 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container15 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container15 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container14:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#container14:not(:last-child) {
		margin-bottom: 0.9375rem !important;
	}
	
	#container14 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 0rem;
	}
	
	#container14.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container14.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container14.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container14.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container14.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type, #container14.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type, #container14.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container14.columns > .wrapper > .inner > div:first-of-type, #container14.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > div:last-of-type, #container14.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container14.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	#container13:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container13 > .wrapper > .inner {
		--gutters: 1.875rem;
		--padding-horizontal: 1.25rem;
		--padding-vertical: 0.25rem;
	}
	
	#container13.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container13.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container13.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container13.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container13.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type, #container13.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type, #container13.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container13.columns > .wrapper > .inner > div:first-of-type, #container13.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > div:last-of-type, #container13.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container13.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container13 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container13 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container12 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--spacing: 2.875rem;
	}
	
	#container12.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container12.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container12.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container12.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container12.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type, #container12.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type, #container12.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container12.columns > .wrapper > .inner > div:first-of-type, #container12.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > div:last-of-type, #container12.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container12.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container12 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container12 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container11:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container11:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container11 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.5rem;
		--padding-vertical: 1.625rem;
		--spacing: 2.75rem;
	}
	
	#container11.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container11.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container11.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container11.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container11.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type, #container11.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type, #container11.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container11.columns > .wrapper > .inner > div:first-of-type, #container11.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > div:last-of-type, #container11.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container11.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container11 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container11 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container11 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container16:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container16:not(:last-child) {
		margin-bottom: 1.125rem !important;
	}
	
	#container16 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.5rem;
		--padding-vertical: 1.625rem;
		--spacing: 2.75rem;
	}
	
	#container16.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container16.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container16.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container16.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container16.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type, #container16.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type, #container16.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container16.columns > .wrapper > .inner > div:first-of-type, #container16.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > div:last-of-type, #container16.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container16.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container16 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container16 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container16 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container17 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container17 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container17 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container18 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container18 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container18 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container19 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container19 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container19 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container21 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container21 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container21 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container22 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container22 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container22 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	#container09:not(:last-child) {
		margin-bottom: 1.78125rem !important;
	}
	
	#container09 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.75rem;
	}
	
	#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;
	}
	
	#container23 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container23 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container23 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#divider03:before {
		width: 100rem;
	}
	
	#divider01:before {
		width: 100rem;
	}
	
	#divider02:before {
		width: 100rem;
	}
	
	#divider04:before {
		width: 100rem;
	}
	
	#divider05:before {
		width: 100rem;
	}
	
	#image04 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image02 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image01 .frame {
		height: 33.59375rem !important;
	}
	
	#image01 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image06 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image06 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image07:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image07:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image07 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image07 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image10 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image10 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image11:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image11:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image11 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image11 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image12 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image12 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image13:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image13:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image13 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image13 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image14 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image14 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image15:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image15:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image15 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image15 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image16 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image16 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image17:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image17:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image17 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image17 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image18 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image18 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image19:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image19:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image19 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image19 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image20 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image20 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image21:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image21:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image21 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image21 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image22 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image22 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image23:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image23:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image23 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image23 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image24 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image24 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image25:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image25:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image25 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image25 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image26 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image26 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	#image27:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image27:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image27 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image27 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image05:not(:first-child) {
		margin-top: 2.625rem !important;
	}
	
	#image05:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	#image05 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image05 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image03 .frame {
		width: 5rem;
		height: 6.25rem !important;
	}
	
	#image03 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top left;
		width: 100% !important;
	}
	
	.list.style1 {
		letter-spacing: 0.021875rem;
		font-size: 1em;
		line-height: 1.75;
		padding-left: calc(2.4375rem * var(--indent-left));
		padding-right: calc(2.4375rem * var(--indent-right));
	}
	
	.list.style1 ul li:after {
		width: 0.625rem;
	}
	
	.list.style1 ul li:before {
		height: 1.75rem;
		line-height: 1.75rem;
		min-width: 1.3125rem;
	}
}

@media (max-width: 480px) {
	#wrapper {
		padding: 0.09375rem 0.09375rem 0.09375rem 0.09375rem;
	}
	
	#main > .inner {
		--spacing: 0rem;
	}
	
	#buttons01 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons01 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons05 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons05 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons.style1 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons.style1 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons04 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons04 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#container03 > .wrapper > .inner {
		--spacing: 0.546875rem;
	}
	
	
	
	
	
	
	
	
	
	#container20 > .wrapper > .inner {
		--spacing: 2.40625rem;
	}
	
	
	
	.container.style2 > .wrapper > .inner {
		--spacing: 2.40625rem;
	}
	
	
	
	#container05 > .wrapper > .inner {
		--spacing: 2.515625rem;
	}
	
	
	
	#container15 > .wrapper > .inner {
		--spacing: 2.40625rem;
	}
	
	
	
	
	
	#container12 > .wrapper > .inner {
		--spacing: 2.515625rem;
	}
	
	#container11 > .wrapper > .inner {
		--spacing: 2.40625rem;
	}
	
	#container16 > .wrapper > .inner {
		--spacing: 2.40625rem;
	}
	
	
	
	#image01 .frame {
		height: 26.875rem !important;
	}
	
	#image06 .frame {
		height: 5rem !important;
	}
	
	#image07 .frame {
		height: 5rem !important;
	}
	
	#image10 .frame {
		height: 5rem !important;
	}
	
	#image11 .frame {
		height: 5rem !important;
	}
	
	#image12 .frame {
		height: 5rem !important;
	}
	
	#image13 .frame {
		height: 5rem !important;
	}
	
	#image14 .frame {
		height: 5rem !important;
	}
	
	#image15 .frame {
		height: 5rem !important;
	}
	
	#image16 .frame {
		height: 5rem !important;
	}
	
	#image17 .frame {
		height: 5rem !important;
	}
	
	#image18 .frame {
		height: 5rem !important;
	}
	
	#image19 .frame {
		height: 5rem !important;
	}
	
	#image20 .frame {
		height: 5rem !important;
	}
	
	#image21 .frame {
		height: 5rem !important;
	}
	
	#image22 .frame {
		height: 5rem !important;
	}
	
	#image23 .frame {
		height: 5rem !important;
	}
	
	#image24 .frame {
		height: 5rem !important;
	}
	
	#image25 .frame {
		height: 5rem !important;
	}
	
	#image26 .frame {
		height: 5rem !important;
	}
	
	#image27 .frame {
		height: 5rem !important;
	}
	
	#image05 .frame {
		height: 5rem !important;
	}
	
	#image03 .frame {
		height: 5rem !important;
	}
}

@media (max-width: 360px) {
	#wrapper {
		padding: 0.09375rem 0.09375rem 0.09375rem 0.09375rem;
	}
	
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.3125rem;
		--spacing: 0rem;
	}
	
	#text03 {
		font-size: 3em;
	}
	
	#text19 {
		font-size: 1.5em;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		font-size: 1.5em;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		font-size: 1.25em;
	}
	
	#text04 {
		font-size: 2em;
	}
	
	#text15 {
		font-size: 1.375em;
	}
	
	#text10 {
		font-size: 2em;
	}
	
	#text11 {
		font-size: 1.375em;
	}
	
	#text24 {
		font-size: 2em;
	}
	
	#text16 {
		font-size: 2em;
	}
	
	#text07 {
		font-size: 2em;
	}
	
	#text21 {
		font-size: 1.25em;
	}
	
	#text06 {
		font-size: 2em;
	}
	
	#text01 {
		font-size: 2em;
	}
	
	#text20 {
		font-size: 1.5em;
	}
	
	#text12 {
		font-size: 1.5em;
	}
	
	h1.style3, h2.style3, h3.style3, p.style3 {
		font-size: 1em;
	}
	
	#text27 {
		font-size: 1.25em;
	}
	
	#text31 {
		font-size: 1.25em;
	}
	
	#text33 {
		font-size: 1.25em;
	}
	
	#text35 {
		font-size: 1.25em;
	}
	
	#text37 {
		font-size: 1.25em;
	}
	
	#text39 {
		font-size: 1.25em;
	}
	
	#text41 {
		font-size: 1.25em;
	}
	
	#text43 {
		font-size: 1.25em;
	}
	
	#text45 {
		font-size: 1.25em;
	}
	
	#text47 {
		font-size: 1.25em;
	}
	
	#text25 {
		font-size: 2em;
	}
	
	#text17 {
		font-size: 1.25em;
	}
	
	#buttons01 {
		gap: 0.65625rem;
	}
	
	#buttons05 {
		gap: 0.65625rem;
	}
	
	.buttons.style1 {
		gap: 0.65625rem;
	}
	
	#buttons04 {
		gap: 0.65625rem;
	}
	
	#container03 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.3125rem;
		--spacing: 0.46875rem;
	}
	
	#container01 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.21875rem;
	}
	
	#container07 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 0.28125rem;
	}
	
	#container06 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
	}
	
	#container02 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
	}
	
	#container20 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.375rem;
		--padding-vertical: 1.21875rem;
		--spacing: 2.0625rem;
	}
	
	#container04 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.375rem;
		--padding-vertical: 1.21875rem;
		--spacing: 2.0625rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
	}
	
	#container05 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--spacing: 2.15625rem;
	}
	
	#container10 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.0625rem;
	}
	
	#container15 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.375rem;
		--padding-vertical: 1.21875rem;
		--spacing: 2.0625rem;
	}
	
	#container14 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 0rem;
	}
	
	#container13 > .wrapper > .inner {
		--gutters: 1.40625rem;
		--padding-horizontal: 0.9375rem;
		--padding-vertical: 0.1875rem;
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--spacing: 2.15625rem;
	}
	
	#container11 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.375rem;
		--padding-vertical: 1.21875rem;
		--spacing: 2.0625rem;
	}
	
	#container16 > .wrapper > .inner {
		--gutters: calc(var(--padding-vertical) * 2);
		--padding-horizontal: 0.375rem;
		--padding-vertical: 1.21875rem;
		--spacing: 2.0625rem;
	}
	
	#container09 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.0625rem;
	}
	
	#image01 .frame {
		height: 23.515625rem !important;
	}
	
	#image06 .frame {
		height: 4.375rem !important;
	}
	
	#image07 .frame {
		height: 4.375rem !important;
	}
	
	#image10 .frame {
		height: 4.375rem !important;
	}
	
	#image11 .frame {
		height: 4.375rem !important;
	}
	
	#image12 .frame {
		height: 4.375rem !important;
	}
	
	#image13 .frame {
		height: 4.375rem !important;
	}
	
	#image14 .frame {
		height: 4.375rem !important;
	}
	
	#image15 .frame {
		height: 4.375rem !important;
	}
	
	#image16 .frame {
		height: 4.375rem !important;
	}
	
	#image17 .frame {
		height: 4.375rem !important;
	}
	
	#image18 .frame {
		height: 4.375rem !important;
	}
	
	#image19 .frame {
		height: 4.375rem !important;
	}
	
	#image20 .frame {
		height: 4.375rem !important;
	}
	
	#image21 .frame {
		height: 4.375rem !important;
	}
	
	#image22 .frame {
		height: 4.375rem !important;
	}
	
	#image23 .frame {
		height: 4.375rem !important;
	}
	
	#image24 .frame {
		height: 4.375rem !important;
	}
	
	#image25 .frame {
		height: 4.375rem !important;
	}
	
	#image26 .frame {
		height: 4.375rem !important;
	}
	
	#image27 .frame {
		height: 4.375rem !important;
	}
	
	#image05 .frame {
		height: 4.375rem !important;
	}
	
	#image03 .frame {
		height: 4.375rem !important;
	}
	
	.list.style1 {
		font-size: 1em;
	}
	
	.list.style1 ul li:after {
		width: 0.625rem;
	}
	
	.list.style1 ul li:before {
		height: 1.75rem;
		line-height: 1.75rem;
		min-width: 1.3125rem;
	}
}