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

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

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

body::before {
	background-attachment: scroll;
	content: '';
	display: block;
	height: var(--background-height);
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(1);
	width: 100vw;
	z-index: 0;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cfilter%20id%3D%22noise%22%3E%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%20%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220.99609375%200%200%200%200%200%200.99609375%200%200%200%200%200%200.99609375%200%200%200%200%200%200.1484375%200%22%20%2F%3E%20%3C%2Ffilter%3E%20%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E');
	background-size: 512px;
	background-position: center;
	background-repeat: repeat;
}

: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: 16pt;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

h1.style8, h2.style8, h3.style8, p.style8 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1.75em;
	line-height: 1.375;
	font-weight: 600;
}

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

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

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

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

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

h1.style5, h2.style5, h3.style5, p.style5 {
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.15rem;
	width: 100%;
	font-size: 3.125em;
	line-height: 1.25;
	font-weight: 600;
	text-shadow: 0.088rem 0.088rem 0.5625rem rgba(0,0,0,0.188);
}

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

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

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

h1.style1, h2.style1, h3.style1, p.style1 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #142E61;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1.75em;
	line-height: 1.375;
	font-weight: 600;
}

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

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

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

h1.style2, h2.style2, h3.style2, p.style2 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #142E61;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.75;
	font-weight: 300;
}

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

h1.style2 a:hover, h2.style2 a:hover, h3.style2 a:hover, p.style2 a:hover {
	color: #FFFFFF;
}

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.style4, h2.style4, h3.style4, p.style4 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #142E61;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.05rem;
	width: 100%;
	font-size: 2.75em;
	line-height: 1.375;
	font-weight: 600;
}

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

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

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

h1.style7, h2.style7, h3.style7, p.style7 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: #142E61;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.25em;
	line-height: 1.75;
	font-weight: 300;
}

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

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

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

h1.style3, h2.style3, h3.style3, p.style3 {
	text-align: left;
	max-width: rem;
	margin-left: var(--margin-left);
	margin-right: var(--margin-right);
	--margin-left: 0;
	--margin-right: auto;
	color: rgba(255,255,255,0.549);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.375;
	font-weight: 300;
}

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

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

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

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

.buttons.style1 {
	gap: 0rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

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

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

.buttons.style1 .button svg {
	fill: rgba(0,0,0,0.42);
}

.buttons.style1 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

.buttons.style2 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons.style2 li a {
	display: inline-flex;
	width: 8rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

.buttons.style2 .button {
	background-color: #FFFFFF;
	color: #000000;
}

.buttons.style2 .button svg {
	fill: rgba(0,0,0,0.42);
}

.buttons.style2 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

#buttons31 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons31 li a {
	display: inline-flex;
	width: 14.375rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

#buttons31 .button {
	background-color: #FFFFFF;
	color: #000000;
}

#buttons31 .button svg {
	fill: #000000;
}

#buttons31 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

#buttons13 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons13 li a {
	display: inline-flex;
	width: 14.375rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

#buttons13 .button {
	background-color: #FFFFFF;
	color: #000000;
}

#buttons13 .button svg {
	fill: #000000;
}

#buttons13 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

#buttons30 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons30 li a {
	display: inline-flex;
	width: 14.375rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

#buttons30 .button {
	background-color: #FFFFFF;
	color: #000000;
}

#buttons30 .button svg {
	fill: #000000;
}

#buttons30 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

#buttons29 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons29 li a {
	display: inline-flex;
	width: 14.375rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

#buttons29 .button {
	background-color: #FFFFFF;
	color: #000000;
}

#buttons29 .button svg {
	fill: #000000;
}

#buttons29 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

#buttons34 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons34 li a {
	display: inline-flex;
	width: 14.375rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

#buttons34 .button {
	background-color: #FFFFFF;
	color: #000000;
}

#buttons34 .button svg {
	fill: #000000;
}

#buttons34 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

#buttons32 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons32 li a {
	display: inline-flex;
	width: 14.375rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

#buttons32 .button {
	background-color: #FFFFFF;
	color: #000000;
}

#buttons32 .button svg {
	fill: #000000;
}

#buttons32 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

#buttons35 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons35 li a {
	display: inline-flex;
	width: 14.375rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

#buttons35 .button {
	background-color: #FFFFFF;
	color: #000000;
}

#buttons35 .button svg {
	fill: #000000;
}

#buttons35 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

#buttons33 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons33 li a {
	display: inline-flex;
	width: 14.375rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

#buttons33 .button {
	background-color: #FFFFFF;
	color: #000000;
}

#buttons33 .button svg {
	fill: #000000;
}

#buttons33 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

#buttons36 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons36 li a {
	display: inline-flex;
	width: 14.375rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

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

#buttons36 .button {
	background-color: #FFFFFF;
	color: #000000;
}

#buttons36 .button svg {
	fill: #000000;
}

#buttons36 .button:hover {
	background-color: rgba(255,255,255,0.902) !important;
}

.container {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container.style5 {
	display: flex;
	width: 100%;
	min-height: 43rem;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-color: #33DAFF;
	border-style: solid;
	border-top-width: 15px;
}

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

.container.style5 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 4rem;
	--spacing: 0.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

.container.style5::before {
	border-radius: inherit;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	background-image: linear-gradient(to top, rgba(44,46,97,0.29), rgba(44,46,97,0.29));
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: auto;
}

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

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

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

.container.style5 > .slideshow-background > div {
	transition-duration: 1.5s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container.style2 > .wrapper > .inner {
	--gutters: 4rem;
	--padding-horizontal: 1rem;
	--padding-vertical: 6.5rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

.container.style4 {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

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

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

.container.style4 > .wrapper > .inner {
	--gutters: 3rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container.style1 {
	display: flex;
	width: 100%;
	min-height: 28rem;
	align-items: center;
	justify-content: center;
	background-color: #D6E9FF;
	border-radius: 0.625rem;
}

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

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

.container.style1 > .wrapper > .inner {
	--gutters: 8rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 6rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.625rem - 0px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container.style6 {
	display: flex;
	width: 100%;
	min-height: 28rem;
	align-items: center;
	justify-content: center;
	background-color: #D6E9FF;
	border-radius: 0.625rem;
}

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

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

.container.style6 > .wrapper > .inner {
	--gutters: 8rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 6rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.625rem - 0px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container.style7 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 30rem;
	background-color: #D6E9FF;
	border-radius: 0.625rem;
}

.container.style7 > .wrapper > .inner {
	--gutters: 8rem;
	--padding-horizontal: 3rem;
	--padding-vertical: 3rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
	border-radius: calc(0.625rem - 0px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container22 {
	display: flex;
	width: 100%;
	min-height: 43rem;
	align-items: center;
	justify-content: center;
	background-attachment: scroll;
	border-color: #33DAFF;
	border-style: solid;
	border-top-width: 15px;
	background-image: linear-gradient(to top, rgba(44,46,97,0.29), rgba(44,46,97,0.29)), url('images/container22.jpg');
	background-position: 0% 0%, 50% 0%;
	background-repeat: repeat, repeat;
	background-size: auto, cover;
}

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

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

#container22 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 4rem;
	--spacing: 0.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container28 > .wrapper > .inner {
	--gutters: 8rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 6rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container33 {
	display: flex;
	width: 100%;
	min-height: 43rem;
	align-items: center;
	justify-content: center;
	background-attachment: scroll;
	border-color: #33DAFF;
	border-style: solid;
	border-top-width: 15px;
	background-image: linear-gradient(to top, rgba(44,46,97,0.29), rgba(44,46,97,0.29)), url('images/container33.jpg');
	background-position: 0% 0%, 50% 0%;
	background-repeat: repeat, repeat;
	background-size: auto, cover;
}

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

#container33 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 4rem;
	--spacing: 0.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container56 > .wrapper > .inner {
	--gutters: 8rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 6rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container38 > .wrapper > .inner {
	--gutters: 8rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 6rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container43 {
	display: flex;
	width: 100%;
	min-height: 43rem;
	align-items: center;
	justify-content: center;
	background-attachment: scroll;
	border-color: #33DAFF;
	border-style: solid;
	border-top-width: 15px;
	background-image: linear-gradient(to top, rgba(44,46,97,0.29), rgba(44,46,97,0.29)), url('images/container43.jpg');
	background-position: 0% 0%, 50% 0%;
	background-repeat: repeat, repeat;
	background-size: auto, cover;
}

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

#container43 > .wrapper > .inner {
	--gutters: 2rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 4rem;
	--spacing: 0.75rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container50 > .wrapper > .inner {
	--gutters: 8rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 6rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#container12 {
	display: flex;
	width: 100%;
	min-height: 43rem;
	align-items: center;
	justify-content: center;
	background-attachment: scroll;
	border-color: #33DAFF;
	border-style: solid;
	border-top-width: 15px;
	background-image: linear-gradient(to top, rgba(44,46,97,0.29), rgba(44,46,97,0.29)), url('images/container12.jpg');
	background-position: 0% 0%, 50% 0%;
	background-repeat: repeat, repeat;
	background-size: auto, cover;
}

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

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

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

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

#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;
	min-height: calc(43rem - (var(--padding-vertical) * 2));
}

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

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

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

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

#container09 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(135deg, #E3F3FF 0%, #A3DEF7 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

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

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

#container09 > .wrapper > .inner {
	--gutters: 4rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 6.5rem;
	--spacing: 1.5rem;
	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%;
}

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

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

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

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

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

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

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

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

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

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

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

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

#foto-apartmaenty-zermatt {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
	display: flex;
	width: 100%;
	min-height: 16rem;
	align-items: center;
	justify-content: center;
	background-color: transparent;
}

#foto-apartmaenty-zermatt:not(:first-child) {
	margin-top: 4rem !important;
}

#foto-apartmaenty-zermatt:not(:last-child) {
	margin-bottom: 4rem !important;
}

#foto-apartmaenty-zermatt > .wrapper > .inner {
	--gutters: 8rem;
	--padding-horizontal: 4rem;
	--padding-vertical: 6rem;
	--spacing: 1.5rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#foto-apartmaenty-zermatt.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);
}

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

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

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

#foto-apartmaenty-zermatt.columns > .wrapper > .inner > .full {
	align-self: stretch;
	min-height: calc(16rem - (var(--padding-vertical) * 2));
}

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

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

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

#foto-apartmaenty-zermatt.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(50% + (var(--gutters) / 2));
}

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

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

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

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

.icons li a svg {
	display: block;
	pointer-events: none;
	position: relative;
}

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

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

#icons02 {
	font-size: 1.625em;
	gap: 1.375rem;
}

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

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

#icons02 li a {
	border-radius: 2rem;
	height: 1em;
	width: 1em;
	transition: none;
}

#icons02 li a svg {
	height: 100%;
	width: 100%;
	transition: none;
}

#icons02 a svg {
	fill: #142E61;
}

#icons02 a:hover svg {
	fill: #33DAFF !important;
}

#icons02 li a + svg {
	transition: none;
}

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

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

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

.icons.style1 a svg {
	fill: #142E61;
}

.icons.style1 a {
	border: solid 2px rgba(255,255,255,0.259);
}

.icons.style1 a:hover {
	border-color: #33DAFF !important;
}

.icons.style1 a:hover svg {
	fill: #33DAFF !important;
}

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

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

#image26 .frame {
	max-width: 100%;
	width: 209px;
	transition: none;
}

#image26 .frame img {
	transition: none;
}

#image07 .frame {
	width: 100vw;
	height: 27rem;
	border-radius: 0.625rem;
	transition: none;
}

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

#image07 .frame img {
	transition: none;
}

.image.style1 .frame {
	width: 100vw;
	height: 29rem;
	border-radius: 0.625rem;
	transition: none;
}

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

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

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

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

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

#image02 .frame {
	width: 100vw;
	height: 27rem;
	border-radius: 0.625rem;
	transition: none;
}

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

#image02 .frame img {
	transition: none;
}

#image15 .frame {
	width: 100vw;
	height: 27rem;
	border-radius: 0.625rem;
	transition: none;
}

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

#image15 .frame img {
	transition: none;
}

#image20 .frame {
	width: 100vw;
	height: 27rem;
	border-radius: 0.625rem;
	transition: none;
}

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

#image20 .frame img {
	transition: none;
}

#image27 .frame {
	width: 12.375rem;
	height: 10.25rem;
	border-radius: 0.625rem;
	transition: none;
}

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

#image27 .frame img {
	transition: none;
}

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

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

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

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

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

#links02 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.375em;
	font-weight: 400;
}

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

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

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

#links02 li a:hover {
	color: #3378FF;
}

#links02 .n01 a:hover {
	color: #3378FF;
}

#links01 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.375em;
	font-weight: 400;
}

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

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

#links01 li a {
	color: #142E61;
	text-decoration: none;
}

#links01 li a:hover {
	color: #3378FF;
}

#links01 .n01 a:hover {
	color: #3378FF;
}

#links03 {
	gap: 2.25rem;
	flex-direction: row;
	flex-wrap: wrap;
	text-transform: uppercase;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 0.875em;
	font-weight: 400;
}

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

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

#links03 li::before {
	background: #186B7D;
	content: '';
	display: block;
	height: 100%;
	left: calc(-1.125rem - 0.5px);
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 1px;
}

#links03 li:first-child::before {
	display: none;
}

#links03 li a {
	color: #142E61;
	text-decoration: none;
}

#links03 li a:hover {
	color: #33DAFF;
}

#links03 .n01 a:hover {
	color: #33DAFF;
}

#links03 .n02 a:hover {
	color: #33DAFF;
}

#links03 .n03 a:hover {
	color: #33DAFF;
}

#links03 .n04 a:hover {
	color: #33DAFF;
}

#links03 .n05 a:hover {
	color: #33DAFF;
}

#links03 .n06 a:hover {
	color: #33DAFF;
}

#links03 .n07 a:hover {
	color: #33DAFF;
}

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

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

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

form .field[data-type="label"] + div {
	margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

form p {
	display: block;
}

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

form input[type="checkbox"] + label {
	align-items: center;
	display: inline-flex;
	line-height: 1.6;
	text-align: var(--site-language-alignment);
}

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

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

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

form .number {
	position: relative;
}

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

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

form .file {
	position: relative;
}

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

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

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

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

form .date {
	overflow: hidden;
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

form.style2 label:first-child {
	margin: 0.25rem 0 1.25rem 0;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #FFFFFF;
}

form.style2 .field button {
	background-size: 1.4rem;
	height: calc(2.8rem - 4px);
	width: calc(2.8rem - 4px);
	border-radius: 1.28rem;
	background-color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

form.style2 .field button:hover {
	background-color: rgba(255,255,255,0.902);
}

form.style2 .field button svg {
	fill: #142E61;
	transition: fill 0.25s ease;
}

form.style2 input[type="text"], form.style2 input[type="email"], form.style2 input[type="tel"], form.style2 input[type="number"], form.style2 textarea, form.style2 select, form.style2 .file, form.style2 .date {
	font-size: 1em;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	border-radius: 2rem;
	color: #142E61;
	border: solid 2px #142E61;
}

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

form.style2 input[type="text"], form.style2 input[type="email"], form.style2 input[type="tel"], form.style2 input[type="number"], form.style2 select, form.style2 .file, form.style2 .date {
	height: 3.5rem;
	padding: 0 1.225rem;
	line-height: calc(3.5rem - 4px);
}

form.style2 textarea {
	padding: 1.225rem;
	height: 10rem;
	line-height: 1.5;
	padding-top: 0.9625rem;
}

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

form.style2 input[type="checkbox"] + label::before {
	border-radius: 2rem;
	color: #142E61;
	border: solid 2px #142E61;
	background-size: 1.4875rem;
	height: 2.625rem;
	width: 2.625rem;
	margin-right: 1.3125rem;
}

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

form.style2 input[type="checkbox"]:focus + label::before {
	border-color: #3378FF;
	box-shadow: 0 0 0 2px #3378FF;
}

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

form.style2 .number > button.decrement {
	bottom: calc(0.35rem + 2px);
	left: calc(0.35rem + 2px);
}

form.style2 .number > button.increment {
	bottom: calc(0.35rem + 2px);
	right: calc(0.35rem + 2px);
}

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

form.style2 .file > button {
	bottom: 0.35rem;
	right: 0.35rem;
}

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

form.style2 .date > button {
	bottom: 0.35rem;
	right: 0.35rem;
}

form.style2 input[type="checkbox"] + label, form.style2 p {
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	color: #142E61;
}

form.style2 .actions button {
	display: inline-block;
	width: 10rem;
	height: 3.5rem;
	line-height: 3.5rem;
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Inter', sans-serif;
	font-size: 1em;
	font-weight: 700;
	border-radius: 2rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #FFFFFF;
	color: #142E61;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	position: relative;
}

form.style2 .actions button:hover {
	background-color: rgba(255,255,255,0.902);
}

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

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

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

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

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

form.style2 ::-webkit-input-placeholder {
	color: #142E61;
	opacity: 0.55;
}

form.style2 :-moz-placeholder {
	color: #142E61;
	opacity: 0.55;
}

form.style2 ::-moz-placeholder {
	color: #142E61;
	opacity: 0.55;
}

form.style2 :-ms-input-placeholder {
	color: #142E61;
	opacity: 0.55;
}

form.style2 .file[data-filename=""]::before {
	color: #142E61;
	opacity: 0.55;
}

form.style2 .date[data-value=""]::before {
	color: #142E61;
	opacity: 0.55;
}

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

#list04 {
	color: #142E61;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 300;
}

#list04 a {
	color: #FF91ED;
	text-decoration: underline;
}

#list04 a:hover {
	color: #33DAFF;
}

#list04 ul {
	width: 100%;
}

#list04 ul li {
	margin-top: 0.5rem;
}

#list04 ul li::after {
	width: 0.703125rem;
}

#list04 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%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%23142E61%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 2rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.6875rem;
	line-height: 1.6875rem;
	min-width: 0.791015625rem;
}

#list01 {
	color: #142E61;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 300;
}

#list01 a {
	color: #FF91ED;
	text-decoration: underline;
}

#list01 a:hover {
	color: #33DAFF;
}

#list01 ul {
	width: 100%;
}

#list01 ul li {
	margin-top: 0.5rem;
}

#list01 ul li::after {
	width: 0.703125rem;
}

#list01 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%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%23142E61%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 2rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.6875rem;
	line-height: 1.6875rem;
	min-width: 0.791015625rem;
}

.list.style1 {
	color: #142E61;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 300;
}

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

.list.style1 a:hover {
	color: #33DAFF;
}

.list.style1 ul {
	width: 100%;
}

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

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

.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%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%23142E61%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 2rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.6875rem;
	line-height: 1.6875rem;
	min-width: 0.791015625rem;
}

#list03 {
	color: #142E61;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 300;
}

#list03 a {
	color: #FF91ED;
	text-decoration: underline;
}

#list03 a:hover {
	color: #33DAFF;
}

#list03 ul {
	width: 100%;
}

#list03 ul li {
	margin-top: 0.5rem;
}

#list03 ul li::after {
	width: 0.703125rem;
}

#list03 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%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%23142E61%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 2rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.6875rem;
	line-height: 1.6875rem;
	min-width: 0.791015625rem;
}

#list02 {
	color: #142E61;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	font-weight: 300;
}

#list02 a {
	color: #FF91ED;
	text-decoration: underline;
}

#list02 a:hover {
	color: #33DAFF;
}

#list02 ul {
	width: 100%;
}

#list02 ul li {
	margin-top: 0.5rem;
}

#list02 ul li::after {
	width: 0.703125rem;
}

#list02 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%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%2210%22%20fill%3D%22%23142E61%22%20%2F%3E%3C%2Fsvg%3E');
	border-radius: 2rem;
	background-position: left 60%;
	background-repeat: no-repeat;
	background-size: contain;
	height: 1.6875rem;
	line-height: 1.6875rem;
	min-width: 0.791015625rem;
}

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

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

.gallery ul li {
	position: relative;
}

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

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

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

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

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

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

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

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

.gallery-modal {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	align-content: center;
	align-items: center;
	background-color: var(--color-background);
	display: grid;
	grid-template-areas: "previous image next" "caption caption caption";
	grid-template-columns: min-content auto min-content;
	height: 100%;
	justify-content: space-between;
	left: 0;
	opacity: 0;
	outline: 0;
	padding: 2rem 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	touch-action: pan-x pinch-zoom;
	transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s, background-color 0.5s ease;
	user-select: none;
	visibility: hidden;
	width: 100%;
	z-index: 0;
}

.gallery-modal::before {
	animation: gallery-modal-spinner 1s infinite linear;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 4rem;
	content: '';
	display: block;
	height: 4rem;
	left: 50%;
	margin: -2rem 0 0 -2rem;
	opacity: 0;
	position: absolute;
	top: 50%;
	transition: opacity 0.25s ease;
	transition-delay: 0.5s;
	width: 4rem;
}

.gallery-modal .inner {
	box-shadow: 0 1em 3em 0 rgba(0,0,0,0.35);
	grid-area: image;
	height: 100%;
	opacity: 0;
	overflow: hidden;
	transform: translateY(0.75em);
	transition: all 0.5s ease;
	width: 100%;
}

.gallery-modal .inner img {
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
	max-width: var(--natural-width, none);
	max-height: var(--natural-height, none);
	margin: 0 auto;
}

.gallery-modal .caption {
	color: var(--color-caption-text);
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1rem;
	grid-area: caption;
	line-height: 1.6;
	opacity: 0;
	padding: 2rem 2rem 0 2rem;
	pointer-events: none;
	text-align: center;
	transform: translateY(0.25em);
	transition: all 0.5s ease;
}

.gallery-modal .caption::-webkit-scrollbar {
	display: none;
}

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

.gallery-modal .nav {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 3rem;
	cursor: pointer;
	height: 6rem;
	transition: opacity 0.25s ease, transform 0.5s ease;
	width: 8rem;
}

.gallery-modal .nav:hover {
	opacity: 1 !important;
}

.gallery-modal .nav.next {
	grid-area: next;
}

.gallery-modal .nav.previous {
	grid-area: previous;
	transform: scaleX(-1);
}

.gallery-modal .close {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-position: top 1rem right 1rem;
	background-repeat: no-repeat;
	background-size: 3rem;
	cursor: pointer;
	display: block;
	height: 6rem;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.25s ease, transform 0.5s ease;
	width: 6rem;
}

.gallery-modal .close:hover {
	opacity: 1 !important;
}

.gallery-modal.visible {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	z-index: 10000;
}

.gallery-modal.visible::before {
	opacity: 1;
}

.gallery-modal.loaded::before {
	opacity: 0 !important;
	transition-delay: 0s !important;
}

.gallery-modal.loaded .inner {
	opacity: 1;
	transform: translateY(0);
}

.gallery-modal.loaded .caption {
	opacity: 1;
	transform: translateY(0);
}

.gallery-modal.switching .inner {
	transition: opacity 0.375s ease, transform 0.5s ease;
}

.gallery-modal.switching.from-left .inner {
	transform: translateY(0) translateX(-1.5em);
}

.gallery-modal.switching.from-right .inner {
	transform: translateY(0) translateX(1.5em);
}

.gallery-modal.switching.done .inner {
	transition: opacity 0.375s ease;
	transform: translateY(0) translateX(0);
}

.gallery-modal.zooming {
	background-color: var(--color-background-zooming);
}

.gallery-modal.zooming .caption {
	opacity: 0;
}

.gallery-modal.zooming .nav.next {
	opacity: 0;
	pointer-events: none;
	transform: translateX(50%);
}

.gallery-modal.zooming .nav.previous {
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) scaleX(-1);
}

.gallery-modal.zooming .close {
	opacity: 0;
	pointer-events: none;
	transform: translateX(50%) translateY(-50%);
}

.gallery-modal.dark {
	--color-background: rgba(10,10,10,0.85);
	--color-background-zooming: rgba(0,0,0,1);
	--color-caption-text: #FFFFFF;
}

.gallery-modal.dark::before {
	animation: gallery-modal-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNGRkZGRkY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
}

.gallery-modal.dark .close {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNGRkZGRkY7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIC8+PGxpbmUgeDE9IjIwIiB5MT0iNDQiIHgyPSI0NCIgeTI9IjIwIiAvPjwvc3ZnPg==');
	opacity: 0.25;
}

.gallery-modal.dark .nav {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNGRkZGRkY7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjQiIHkxPSI4IiB4Mj0iNDgiIHkyPSIzMiIgLz48bGluZSB4MT0iMjQiIHkxPSI1NiIgeDI9IjQ4IiB5Mj0iMzIiIC8+PC9zdmc+');
	opacity: 0.25;
}

.gallery-modal.light {
	--color-background: rgba(255,255,255,0.9);
	--color-background-zooming: rgba(255,255,255,1);
	--color-caption-text: #000000;
}

.gallery-modal.light::before {
	animation: gallery-modal-spinner 1s infinite linear;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICMwMDAwMDA7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
}

.gallery-modal.light .close {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICMwMDAwMDA7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIC8+PGxpbmUgeDE9IjIwIiB5MT0iNDQiIHgyPSI0NCIgeTI9IjIwIiAvPjwvc3ZnPg==');
	opacity: 0.375;
}

.gallery-modal.light .nav {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICMwMDAwMDA7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjQiIHkxPSI4IiB4Mj0iNDgiIHkyPSIzMiIgLz48bGluZSB4MT0iMjQiIHkxPSI1NiIgeDI9IjQ4IiB5Mj0iMzIiIC8+PC9zdmc+');
	opacity: 0.375;
}

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

#gallery03 ul li {
	border-radius: 0.625rem;
	display: inline-block;
}

#gallery03 ul li .frame {
	border-radius: 0.625rem;
}

#gallery03 ul {
	gap: 1rem;
}

#gallery03 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery03 ul li img {
	height: 21.25rem;
	object-fit: cover;
	object-position: center;
	width: 21.25rem;
}

#gallery03 ul li .thumbnail img {
	transition: none;
}

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

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

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

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

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

#gallery03 ul li .n06 img {
	object-position: center;
}

#gallery03 ul li .n07 img {
	object-position: center;
}

#gallery03 ul li .n08 img {
	object-position: center;
}

#gallery03 ul li .n09 img {
	object-position: center;
}

#gallery03 ul li .n10 img {
	object-position: center;
}

#gallery03 ul li .n11 img {
	object-position: center;
}

#gallery03 ul li .n12 img {
	object-position: center;
}

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

#gallery01 ul li {
	border-radius: 0.625rem;
	display: inline-block;
}

#gallery01 ul li .frame {
	border-radius: 0.625rem;
}

#gallery01 ul {
	gap: 1rem;
}

#gallery01 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery01 ul li img {
	height: 21.25rem;
	object-fit: cover;
	object-position: center;
	width: 21.25rem;
}

#gallery01 ul li .thumbnail img {
	transition: none;
}

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

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

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

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

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

#gallery01 ul li .n06 img {
	object-position: center;
}

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

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

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

#gallery02 ul li {
	border-radius: 0.625rem;
	display: inline-block;
}

#gallery02 ul li .frame {
	border-radius: 0.625rem;
}

#gallery02 ul li .caption {
	align-items: flex-end;
	border-radius: inherit;
	display: flex;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: opacity 0.25s ease, transform 0.25s ease, z-index 0.25s ease;
}

#gallery02 ul li .caption p {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	padding-bottom: 0.859375rem;
	padding-left: 1.375rem;
	padding-right: 1.375rem;
	padding-top: 0.859375rem;
	text-align: left;
	color: #000000;
	background-color: rgba(255,255,255,0.667);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 600;
}

#gallery02 ul {
	gap: 1rem;
}

#gallery02 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery02 ul li img {
	height: 21.25rem;
	object-fit: cover;
	object-position: center;
	width: 21.25rem;
}

#gallery02 ul li .thumbnail img {
	transition: none;
}

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

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

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

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

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

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

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

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

#gallery04 ul li .caption {
	align-items: flex-end;
	border-radius: inherit;
	display: flex;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: opacity 0.25s ease, transform 0.25s ease, z-index 0.25s ease;
}

#gallery04 ul li .caption p {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	padding-bottom: 0.859375rem;
	padding-left: 1.375rem;
	padding-right: 1.375rem;
	padding-top: 0.859375rem;
	text-align: left;
	color: #000000;
	background-color: rgba(255,255,255,0.667);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 600;
}

#gallery04 ul {
	gap: 1rem;
}

#gallery04 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery04 ul li img {
	height: 21.25rem;
	object-fit: cover;
	object-position: center;
	width: 21.25rem;
}

#gallery04 ul li .thumbnail img {
	transition: none;
}

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

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

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

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

#gallery05 ul li {
	border-radius: 0.625rem;
	display: inline-block;
}

#gallery05 ul li .frame {
	border-radius: 0.625rem;
}

#gallery05 ul {
	gap: 1rem;
}

#gallery05 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery05 ul li img {
	height: 21.25rem;
	object-fit: cover;
	object-position: center;
	width: 21.25rem;
}

#gallery05 ul li .thumbnail img {
	transition: none;
}

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

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

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

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

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

#gallery05 ul li .n06 img {
	object-position: center;
}

#gallery05 ul li .n07 img {
	object-position: center;
}

#gallery05 ul li .n08 img {
	object-position: center;
}

#gallery05 ul li .n09 img {
	object-position: center;
}

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

#gallery09 ul li {
	border-radius: 0.625rem;
	display: inline-block;
}

#gallery09 ul li .frame {
	border-radius: 0.625rem;
}

#gallery09 ul {
	gap: 1rem;
}

#gallery09 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery09 ul li img {
	height: 21.25rem;
	object-fit: cover;
	object-position: center;
	width: 21.25rem;
}

#gallery09 ul li .thumbnail img {
	transition: none;
}

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

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

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

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

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

#gallery09 ul li .n06 img {
	object-position: center;
}

#gallery09 ul li .n07 img {
	object-position: center;
}

#gallery09 ul li .n08 img {
	object-position: center;
}

#gallery09 ul li .n09 img {
	object-position: center;
}

#gallery09 ul li .n10 img {
	object-position: center;
}

#gallery09 ul li .n11 img {
	object-position: center;
}

#gallery09 ul li .n12 img {
	object-position: center;
}

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

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

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

#gallery06 ul li {
	border-radius: 0.625rem;
	display: inline-block;
}

#gallery06 ul li .frame {
	border-radius: 0.625rem;
}

#gallery06 ul li .caption {
	align-items: flex-end;
	border-radius: inherit;
	display: flex;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: opacity 0.25s ease, transform 0.25s ease, z-index 0.25s ease;
}

#gallery06 ul li .caption p {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	padding-bottom: 0.859375rem;
	padding-left: 1.375rem;
	padding-right: 1.375rem;
	padding-top: 0.859375rem;
	text-align: left;
	color: #000000;
	background-color: rgba(255,255,255,0.667);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 600;
}

#gallery06 ul {
	gap: 1rem;
}

#gallery06 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery06 ul li img {
	height: 21.25rem;
	object-fit: cover;
	object-position: center;
	width: 21.25rem;
}

#gallery06 ul li .thumbnail img {
	transition: none;
}

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

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

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

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

#gallery07 ul li {
	border-radius: 0.625rem;
	display: inline-block;
}

#gallery07 ul li .frame {
	border-radius: 0.625rem;
}

#gallery07 ul {
	gap: 1rem;
}

#gallery07 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery07 ul li img {
	height: 21.25rem;
	object-fit: cover;
	object-position: center;
	width: 21.25rem;
}

#gallery07 ul li .thumbnail img {
	transition: none;
}

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

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

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

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

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

#gallery07 ul li .n06 img {
	object-position: center;
}

#gallery07 ul li .n07 img {
	object-position: center;
}

#gallery07 ul li .n08 img {
	object-position: center;
}

#gallery07 ul li .n09 img {
	object-position: center;
}

#gallery07 ul li .n10 img {
	object-position: center;
}

#gallery07 ul li .n11 img {
	object-position: center;
}

#gallery07 ul li .n12 img {
	object-position: center;
}

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

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

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

#gallery08 ul li {
	border-radius: 0.625rem;
	display: inline-block;
}

#gallery08 ul li .frame {
	border-radius: 0.625rem;
}

#gallery08 ul li .caption {
	align-items: flex-end;
	border-radius: inherit;
	display: flex;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	transition: opacity 0.25s ease, transform 0.25s ease, z-index 0.25s ease;
}

#gallery08 ul li .caption p {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	padding-bottom: 0.859375rem;
	padding-left: 1.375rem;
	padding-right: 1.375rem;
	padding-top: 0.859375rem;
	text-align: left;
	color: #000000;
	background-color: rgba(255,255,255,0.667);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125em;
	line-height: 1.5;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 600;
}

#gallery08 ul {
	gap: 1rem;
}

#gallery08 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery08 ul li img {
	height: 21.25rem;
	object-fit: cover;
	object-position: center;
	width: 21.25rem;
}

#gallery08 ul li .thumbnail img {
	transition: none;
}

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

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

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

.timer {
	cursor: default;
	line-height: 1;
}

.timer ul {
	display: inline-flex;
	flex-direction: row;
	list-style: none;
	max-width: 100%;
}

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

.timer ul li.delimiter {
	flex: 0 1 auto;
}

.timer ul li.delimiter .symbol {
	display: block;
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
}

.timer ul li.number {
	flex: 1;
	min-width: 2rem;
}

.timer ul li.number .item {
	position: relative;
}

.timer ul li.number .item .digit {
	display: block;
	position: relative;
	white-space: nowrap;
}

.timer ul li.number .item .digit .component {
	display: inline-block;
	width: 50%;
}

.timer ul li.number .item .digit.count2 .component {
	width: 50%;
}

.timer ul li.number .item .digit.count3 .component {
	width: 33.3333%;
}

.timer ul li.number .item .digit.count4 .component {
	width: 25%;
}

.timer ul li.number .item .digit.count5 .component {
	width: 20%;
}

.timer ul li.number .item .label {
	display: block;
	white-space: nowrap;
}

.timer ul li.number .item .label > * {
	display: inline-block;
}

.timer ul li.number .item .label .full {
	width: 5em;
}

.timer ul li.number .item .label .abbreviated {
	width: 3em;
}

.timer ul li.number .item .label .initialed {
	width: 1em;
}

.timer.style1 ul {
	width: 30rem;
}

.timer.style1 ul li.delimiter {
	width: 2.5rem;
	min-width: 1rem;
}

.timer.style1 ul li.delimiter .symbol {
	color: rgba(255,255,255,0.259);
	margin-top: 0.675em;
}

.timer.style1 ul li.number .item .digit {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #142E61;
	line-height: 1.325em;
	margin: 20%;
	text-align: center;
}

.timer.style1 ul li.number .item .digit::after {
	content: '';
	height: 0;
	left: 0%;
	margin-left: -30%;
	margin-top: -25%;
	padding-bottom: 160%;
	position: absolute;
	top: 0%;
	width: 160%;
	z-index: -1;
	box-shadow: inset 0 0 0 2px #142E61;
	border-radius: 1rem;
}

.timer.style1 ul li.number .item .label > * {
	margin-top: calc(0.625rem + 0.25em);
}

.timer.style1 ul li.number .item .label {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	color: #142E61;
}

#timer01 ul {
	width: 30rem;
}

#timer01 ul li.delimiter {
	width: 2.5rem;
	min-width: 1rem;
}

#timer01 ul li.delimiter .symbol {
	color: rgba(255,255,255,0.259);
	margin-top: 0.675em;
}

#timer01 ul li.number .item .digit {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #142E61;
	line-height: 1.325em;
	margin: 20%;
	text-align: center;
}

#timer01 ul li.number .item .digit::after {
	content: '';
	height: 0;
	left: 0%;
	margin-left: -30%;
	margin-top: -25%;
	padding-bottom: 160%;
	position: absolute;
	top: 0%;
	width: 160%;
	z-index: -1;
	box-shadow: inset 0 0 0 2px #142E61;
	border-radius: 1rem;
}

#timer01 ul li.number .item .label > * {
	margin-top: calc(0.625rem + 0.25em);
}

#timer01 ul li.number .item .label {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	color: #142E61;
}

#timer04 ul {
	width: 30rem;
}

#timer04 ul li.delimiter {
	width: 2.5rem;
	min-width: 1rem;
}

#timer04 ul li.delimiter .symbol {
	color: rgba(255,255,255,0.259);
	margin-top: 0.675em;
}

#timer04 ul li.number .item .digit {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #142E61;
	line-height: 1.325em;
	margin: 20%;
	text-align: center;
}

#timer04 ul li.number .item .digit::after {
	content: '';
	height: 0;
	left: 0%;
	margin-left: -30%;
	margin-top: -25%;
	padding-bottom: 160%;
	position: absolute;
	top: 0%;
	width: 160%;
	z-index: -1;
	box-shadow: inset 0 0 0 2px #142E61;
	border-radius: 1rem;
}

#timer04 ul li.number .item .label > * {
	margin-top: calc(0.625rem + 0.25em);
}

#timer04 ul li.number .item .label {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	color: rgba(255,255,255,0.259);
}

#timer05 ul {
	width: 30rem;
}

#timer05 ul li.delimiter {
	width: 2.5rem;
	min-width: 1rem;
}

#timer05 ul li.delimiter .symbol {
	color: rgba(255,255,255,0.259);
	margin-top: 0.675em;
}

#timer05 ul li.number .item .digit {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #142E61;
	line-height: 1.325em;
	margin: 20%;
	text-align: center;
}

#timer05 ul li.number .item .digit::after {
	content: '';
	height: 0;
	left: 0%;
	margin-left: -30%;
	margin-top: -25%;
	padding-bottom: 160%;
	position: absolute;
	top: 0%;
	width: 160%;
	z-index: -1;
	box-shadow: inset 0 0 0 2px #142E61;
	border-radius: 1rem;
}

#timer05 ul li.number .item .label > * {
	margin-top: calc(0.625rem + 0.25em);
}

#timer05 ul li.number .item .label {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	color: #142E61;
}

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

#divider01::before {
	width: 100%;
	background-color: #B2D2F7;
	height: 1px;
}

@media (orientation: portrait) {
	.gallery-modal {
		grid-template-areas: "image" "caption";
		grid-template-columns: auto;
		justify-content: center;
	}
	
	.gallery-modal .nav {
		background-image: none !important;
		mix-blend-mode: difference;
		opacity: 1 !important;
		position: absolute;
	}
	
	.gallery-modal .nav.next {
		right: 0;
	}
	
	.gallery-modal .nav.previous {
		left: 0;
	}
	
	.gallery-modal .nav::before {
		background-color: rgba(144,144,144,0.5);
		background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNGRkZGRkY7c3Ryb2tlLXdpZHRoOiAzcHg7fTwvc3R5bGU+PGxpbmUgeDE9IjI0IiB5MT0iOCIgeDI9IjQ4IiB5Mj0iMzIiIC8+PGxpbmUgeDE9IjI0IiB5MT0iNTYiIHgyPSI0OCIgeTI9IjMyIiAvPjwvc3ZnPg==');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 1.5rem;
		border-radius: 3rem;
		content: '';
		display: block;
		height: 3rem;
		position: absolute;
		right: 1rem;
		top: calc(50% - 1.5rem);
		width: 3rem;
	}
}

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

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

@media (max-width: 1280px) {
	html {
		font-size: 12pt;
	}
	
	
	
	.container.style5 > .slideshow-background > .slow {
		animation-duration: 45s;
	}
	
	.container.style5 > .slideshow-background > .normal {
		animation-duration: 33.75s;
	}
	
	.container.style5 > .slideshow-background > .fast {
		animation-duration: 22.5s;
	}
	
	.gallery-modal .nav {
		opacity: 1 !important;
	}
	
	.gallery-modal .close {
		opacity: 1 !important;
	}
}

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

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

@media (max-width: 736px) {
	html {
		font-size: 12pt;
	}
	
	
	
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
		--spacing: 0rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-1.5rem);
		max-width: calc(100% + 3rem + 0.4725px);
		width: calc(100% + 3rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > header > .full:first-child {
		margin-top: -3rem !important;
	}
	
	#main > .inner > footer > .full:last-child {
		margin-bottom: -3rem !important;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.375;
	}
	
	h1.style5:not(:first-child), h2.style5:not(:first-child), h3.style5:not(:first-child), p.style5:not(:first-child) {
		margin-top: 1.875rem !important;
	}
	
	h1.style5:not(:last-child), h2.style5:not(:last-child), h3.style5:not(:last-child), p.style5:not(:last-child) {
		margin-bottom: 1.875rem !important;
	}
	
	h1.style5, h2.style5, h3.style5, p.style5 {
		letter-spacing: -0.13125rem;
		width: 100%;
		font-size: 2.5em;
		line-height: 1.125;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.375;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.125em;
		line-height: 1.75;
	}
	
	h1.style4, h2.style4, h3.style4, p.style4 {
		letter-spacing: -0.04375rem;
		width: 100%;
		font-size: 2.25em;
		line-height: 1.25;
	}
	
	h1.style7, h2.style7, h3.style7, p.style7 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.75;
	}
	
	h1.style3, h2.style3, h3.style3, p.style3 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.375;
	}
	
	.buttons.style1 {
		gap: 0rem;
	}
	
	.buttons.style1 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons.style1 li a svg {
		width: 1em;
	}
	
	.buttons.style2 {
		gap: 0.75rem;
	}
	
	.buttons.style2 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	.buttons.style2 li a svg {
		width: 1.25em;
	}
	
	#buttons31 {
		gap: 0.75rem;
	}
	
	#buttons31:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons31:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons31 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons31 li a svg {
		width: 1em;
	}
	
	#buttons13 {
		gap: 0.75rem;
	}
	
	#buttons13:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons13:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons13 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons13 li a svg {
		width: 1em;
	}
	
	#buttons30 {
		gap: 0.75rem;
	}
	
	#buttons30:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons30:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons30 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons30 li a svg {
		width: 1em;
	}
	
	#buttons29 {
		gap: 0.75rem;
	}
	
	#buttons29:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons29:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons29 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons29 li a svg {
		width: 1em;
	}
	
	#buttons34 {
		gap: 0.75rem;
	}
	
	#buttons34:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons34:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons34 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons34 li a svg {
		width: 1em;
	}
	
	#buttons32 {
		gap: 0.75rem;
	}
	
	#buttons32:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons32:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons32 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons32 li a svg {
		width: 1em;
	}
	
	#buttons35 {
		gap: 0.75rem;
	}
	
	#buttons35:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons35:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons35 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons35 li a svg {
		width: 1em;
	}
	
	#buttons33 {
		gap: 0.75rem;
	}
	
	#buttons33:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons33:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons33 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons33 li a svg {
		width: 1em;
	}
	
	#buttons36 {
		gap: 0.75rem;
	}
	
	#buttons36:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons36:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons36 li a {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#buttons36 li a svg {
		width: 1em;
	}
	
	
	
	#container08 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.125rem;
		--spacing: 0rem;
	}
	
	#container08 > .wrapper > .inner > :nth-child(1) {
		--alignment: left;
		--flex-alignment: flex-start;
		--indent-left: 1;
		--indent-right: 0;
		--margin-left: 0;
		--margin-right: auto;
	}
	
	#container08 > .wrapper > .inner > :nth-child(2) {
		--alignment: right;
		--flex-alignment: flex-end;
		--indent-left: 0;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: 0;
	}
	
	.container.style5 {
		min-height: 32.25rem;
	}
	
	.container.style5:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	.container.style5 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
		--spacing: 0.75rem;
	}
	
	.container.style5 > .slideshow-background > .slow {
		animation-duration: 30s;
	}
	
	.container.style5 > .slideshow-background > .normal {
		animation-duration: 22.5s;
	}
	
	.container.style5 > .slideshow-background > .fast {
		animation-duration: 15s;
	}
	
	.container.style5.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style5.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style5.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style5.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type, .container.style5.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type, .container.style5.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style5.columns > .wrapper > .inner > div:first-of-type, .container.style5.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > div:last-of-type, .container.style5.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container.style5.columns > .wrapper > .inner > .full {
		min-height: calc(32.25rem - (var(--padding-vertical) * 2));
	}
	
	.container.style5.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style5.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container.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.125rem !important;
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
		--spacing: 1.5rem;
	}
	
	.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;
	}
	
	#container13 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container13 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container13 > .wrapper > .inner > :nth-child(3) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container.style4:not(:first-child) {
		margin-top: 3rem !important;
	}
	
	.container.style4:not(:last-child) {
		margin-bottom: 2.625rem !important;
	}
	
	.container.style4 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 1.5rem;
	}
	
	.container.style4.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style4.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style4.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container.style4.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style4.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container.style4.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style4.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.style4.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.style4.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style4.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style4.columns > .wrapper > .inner > div:first-of-type, .container.style4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style4.columns > .wrapper > .inner > div:last-of-type, .container.style4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style4.columns > .wrapper > .inner > div:first-of-type, .container.style4.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container.style4.columns > .wrapper > .inner > div:last-of-type, .container.style4.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container.style4.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style4.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container.style1 {
		min-height: 21rem;
	}
	
	.container.style1:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.container.style1:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 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 {
		min-height: calc(21rem - (var(--padding-vertical) * 2));
	}
	
	.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;
	}
	
	#container14 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container14 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container.style6 {
		min-height: 21rem;
	}
	
	.container.style6:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.container.style6:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.container.style6 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 1.5rem;
	}
	
	.container.style6.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style6.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style6.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style6.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style6.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style6.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div:last-of-type, .container.style6.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style6.columns > .wrapper > .inner > div:first-of-type, .container.style6.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style6.columns > .wrapper > .inner > div:last-of-type, .container.style6.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > div:first-of-type, .container.style6.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style6.columns > .wrapper > .inner > .full {
		min-height: calc(21rem - (var(--padding-vertical) * 2));
	}
	
	.container.style6.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style6.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#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;
	}
	
	#container02 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container02 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container07 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container07 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container03 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container03 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container05 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container.style7:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	.container.style7:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	.container.style7 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 1.5rem;
	}
	
	.container.style7.columns > .wrapper > .inner {
		flex-direction: column-reverse !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style7.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--padding-vertical) * -2);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style7.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > *:last-child {
		padding-top: 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style7.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style7.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style7.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div:last-of-type, .container.style7.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style7.columns > .wrapper > .inner > div:first-of-type, .container.style7.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style7.columns > .wrapper > .inner > div:last-of-type, .container.style7.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-right-radius: 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > div:first-of-type, .container.style7.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: 0 !important;
	}
	
	.container.style7.columns > .wrapper > .inner > .full {
		min-height: calc(12rem - (var(--padding-vertical) * 2));
	}
	
	.container.style7.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style7.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container22 {
		min-height: 32.25rem;
	}
	
	#container22:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container22:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container22 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
		--spacing: 0.75rem;
	}
	
	#container22.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container22.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container22.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container22.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container22.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type, #container22.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type, #container22.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container22.columns > .wrapper > .inner > div:first-of-type, #container22.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > div:last-of-type, #container22.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container22.columns > .wrapper > .inner > .full {
		min-height: calc(32.25rem - (var(--padding-vertical) * 2));
	}
	
	#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container22.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container23 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container23 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#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;
	}
	
	#container25 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container25 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container26 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container26 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container.style3 > .wrapper > .inner {
		--gutters: 3rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	.container.style3.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container.style3.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container.style3.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container.style3.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type, .container.style3.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type, .container.style3.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container.style3.columns > .wrapper > .inner > div:first-of-type, .container.style3.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > div:last-of-type, .container.style3.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container.style3.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container.style3.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container27 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container27 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container28 {
		min-height: 12rem;
	}
	
	#container28:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container28:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container28 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 1.5rem;
	}
	
	#container28.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container28.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container28.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container28.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container28.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container28.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container28.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container28.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container28.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container28.columns > .wrapper > .inner > div:first-of-type, #container28.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container28.columns > .wrapper > .inner > div:last-of-type, #container28.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container28.columns > .wrapper > .inner > div:first-of-type, #container28.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > div:last-of-type, #container28.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container28.columns > .wrapper > .inner > .full {
		min-height: calc(12rem - (var(--padding-vertical) * 2));
	}
	
	#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container28.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container29 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container29 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container33 {
		min-height: 32.25rem;
	}
	
	#container33:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container33 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
		--spacing: 0.75rem;
	}
	
	#container33.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container33.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container33.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container33.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container33.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container33.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container33.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container33.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container33.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container33.columns > .wrapper > .inner > div:first-of-type, #container33.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container33.columns > .wrapper > .inner > div:last-of-type, #container33.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container33.columns > .wrapper > .inner > div:first-of-type, #container33.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > div:last-of-type, #container33.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container33.columns > .wrapper > .inner > .full {
		min-height: calc(32.25rem - (var(--padding-vertical) * 2));
	}
	
	#container33.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container33.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container32 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container32 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container34 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container34 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container35 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container35 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container54 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container54 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container55 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container55 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container56 {
		min-height: 12rem;
	}
	
	#container56:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container56:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container56 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 1.5rem;
	}
	
	#container56.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container56.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container56.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container56.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container56.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container56.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container56.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container56.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container56.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container56.columns > .wrapper > .inner > div:first-of-type, #container56.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container56.columns > .wrapper > .inner > div:last-of-type, #container56.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container56.columns > .wrapper > .inner > div:first-of-type, #container56.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > div:last-of-type, #container56.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container56.columns > .wrapper > .inner > .full {
		min-height: calc(12rem - (var(--padding-vertical) * 2));
	}
	
	#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container56.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container36 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container36 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container38 {
		min-height: 12rem;
	}
	
	#container38:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container38:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container38 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 1.5rem;
	}
	
	#container38.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container38.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container38.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container38.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container38.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type, #container38.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type, #container38.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container38.columns > .wrapper > .inner > div:first-of-type, #container38.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > div:last-of-type, #container38.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container38.columns > .wrapper > .inner > .full {
		min-height: calc(12rem - (var(--padding-vertical) * 2));
	}
	
	#container38.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container38.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container39 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container39 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container43 {
		min-height: 32.25rem;
	}
	
	#container43:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container43 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
		--spacing: 0.75rem;
	}
	
	#container43.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container43.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container43.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container43.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container43.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type, #container43.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type, #container43.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container43.columns > .wrapper > .inner > div:first-of-type, #container43.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > div:last-of-type, #container43.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container43.columns > .wrapper > .inner > .full {
		min-height: calc(32.25rem - (var(--padding-vertical) * 2));
	}
	
	#container43.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container43.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container44 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container44 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container45 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container45 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container46 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container46 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container47 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container47 > .wrapper > .inner > :nth-child(2) {
		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;
	}
	
	#container49 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container49 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container50 {
		min-height: 12rem;
	}
	
	#container50:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#container50:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#container50 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 1.5rem;
	}
	
	#container50.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container50.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container50.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container50.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container50.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type, #container50.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type, #container50.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container50.columns > .wrapper > .inner > div:first-of-type, #container50.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > div:last-of-type, #container50.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container50.columns > .wrapper > .inner > .full {
		min-height: calc(12rem - (var(--padding-vertical) * 2));
	}
	
	#container50.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container50.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container51 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container51 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container12 {
		min-height: 32.25rem;
	}
	
	#container12:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container12:not(:last-child) {
		margin-bottom: 0rem !important;
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
		--spacing: 0.75rem;
	}
	
	#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 {
		min-height: calc(32.25rem - (var(--padding-vertical) * 2));
	}
	
	#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;
	}
	
	#container09 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
	}
	
	#container09:not(:first-child) {
		margin-top: 0rem !important;
	}
	
	#container09:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#container09 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 3rem;
		--spacing: 1.5rem;
	}
	
	#container09.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#container09.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#container09.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#container09.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#container09.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type, #container09.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type, #container09.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#container09.columns > .wrapper > .inner > div:first-of-type, #container09.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > div:last-of-type, #container09.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#container09.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	#container09 > .wrapper > .inner > :nth-child(1) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container09 > .wrapper > .inner > :nth-child(2) {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
		--margin-left: auto;
		--margin-right: auto;
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container42 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container42 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#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;
	}
	
	#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;
	}
	
	#container48 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	#container48 > .wrapper > .inner > :nth-child(2) {
		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;
	}
	
	#foto-apartmaenty-zermatt {
		min-height: 12rem;
	}
	
	#foto-apartmaenty-zermatt:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#foto-apartmaenty-zermatt:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#foto-apartmaenty-zermatt > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 2rem;
		--padding-vertical: 2rem;
		--spacing: 1.5rem;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:first-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:last-of-type > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:first-of-type, #foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:last-of-type, #foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:first-of-type, #foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:last-of-type, #foto-apartmaenty-zermatt.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > .full {
		min-height: calc(12rem - (var(--padding-vertical) * 2));
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	#foto-apartmaenty-zermatt.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;
	}
	
	#icons02 {
		font-size: 1.375em;
		gap: 1.375rem;
	}
	
	#icons02:not(:first-child) {
		margin-top: 0.516rem !important;
	}
	
	#icons02:not(:last-child) {
		margin-bottom: 0.516rem !important;
	}
	
	.icons.style1 {
		font-size: 1.375em;
		gap: 0.75rem;
	}
	
	#image26 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image07 .frame {
		width: 100vw;
		height: 33.75rem !important;
	}
	
	#image07 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top;
		width: 100% !important;
	}
	
	.image.style1 .frame {
		width: 100vw;
		height: 36.25rem !important;
	}
	
	.image.style1 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image.style2 .frame {
		height: 20rem !important;
	}
	
	.image.style2 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#image02 .frame {
		width: 100vw;
		height: 33.75rem !important;
	}
	
	#image02 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top;
		width: 100% !important;
	}
	
	#image15 .frame {
		width: 100vw;
		height: 33.75rem !important;
	}
	
	#image15 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top;
		width: 100% !important;
	}
	
	#image20 .frame {
		width: 100vw;
		height: 33.75rem !important;
	}
	
	#image20 img {
		height: 100% !important;
		object-fit: cover;
		object-position: top;
		width: 100% !important;
	}
	
	#image27 .frame {
		width: 12.375rem;
		height: 12.8125rem !important;
	}
	
	#image27 img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	#header {
		margin-bottom: 0rem !important;
	}
	
	#footer {
		margin-top: 0rem !important;
	}
	
	#links02 {
		gap: 1rem;
		font-size: 1.375em;
	}
	
	#links02:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#links02:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#links01 {
		gap: 1rem;
		font-size: 1.375em;
	}
	
	#links01:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#links01:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#links03 {
		gap: 2.25rem;
		flex-direction: column;
		flex-wrap: nowrap;
		font-size: 0.875em;
	}
	
	#links03:not(:first-child) {
		margin-top: 0.84375rem !important;
	}
	
	#links03:not(:last-child) {
		margin-bottom: 0.84375rem !important;
	}
	
	#links03 li::before {
		left: 0;
		height: 1px;
		width: 100%;
		top: calc(-1.125rem - 0.5px);
	}
	
	form.style2 label:first-child {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	form.style2 input[type="text"], form.style2 input[type="email"], form.style2 input[type="tel"], form.style2 input[type="number"], form.style2 textarea, form.style2 select, form.style2 .file, form.style2 .date {
		font-size: 1em;
		letter-spacing: 0rem;
	}
	
	form.style2 textarea {
		line-height: 1.5;
		padding-top: 0.9625rem;
	}
	
	form.style2 input[type="checkbox"] + label, form.style2 p {
		font-size: 1em;
		line-height: 1.5;
		letter-spacing: 0rem;
	}
	
	form.style2 .actions button {
		letter-spacing: 0rem;
		font-size: 1em;
	}
	
	#list04 {
		letter-spacing: 0rem;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	#list04 ul li::after {
		width: 0.703125rem;
	}
	
	#list04 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	#list01 {
		letter-spacing: 0rem;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	#list01 ul li::after {
		width: 0.703125rem;
	}
	
	#list01 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	.list.style1 {
		letter-spacing: 0rem;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	.list.style1 ul li::after {
		width: 0.703125rem;
	}
	
	.list.style1 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	#list03 {
		letter-spacing: 0rem;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	#list03 ul li::after {
		width: 0.703125rem;
	}
	
	#list03 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	#list02 {
		letter-spacing: 0rem;
		font-size: 1.125em;
		line-height: 1.5;
	}
	
	#list02 ul li::after {
		width: 0.703125rem;
	}
	
	#list02 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	.gallery-modal .close {
		background-position: top 0.5rem right 0.5rem;
	}
	
	#gallery03 ul li img {
		height: 15.9375rem;
		width: 15.9375rem;
	}
	
	#gallery01 ul li img {
		height: 15.9375rem;
		width: 15.9375rem;
	}
	
	#gallery02:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#gallery02:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#gallery02 ul li .caption {
		opacity: 1;
	}
	
	#gallery02 ul li .thumbnail:hover + .caption {
		opacity: 1;
	}
	
	#gallery02 ul li .caption p {
		letter-spacing: 0rem;
		font-size: 1.125em;
	}
	
	#gallery02 ul li img {
		height: 15.9375rem;
		width: 15.9375rem;
	}
	
	#gallery04:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#gallery04:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#gallery04 ul li .caption {
		opacity: 1;
	}
	
	#gallery04 ul li .thumbnail:hover + .caption {
		opacity: 1;
	}
	
	#gallery04 ul li .caption p {
		letter-spacing: 0rem;
		font-size: 1.125em;
	}
	
	#gallery04 ul li img {
		height: 15.9375rem;
		width: 15.9375rem;
	}
	
	#gallery05 ul li img {
		height: 15.9375rem;
		width: 15.9375rem;
	}
	
	#gallery09 ul li img {
		height: 15.9375rem;
		width: 15.9375rem;
	}
	
	#gallery06:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#gallery06:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#gallery06 ul li .caption {
		opacity: 1;
	}
	
	#gallery06 ul li .thumbnail:hover + .caption {
		opacity: 1;
	}
	
	#gallery06 ul li .caption p {
		letter-spacing: 0rem;
		font-size: 1.125em;
	}
	
	#gallery06 ul li img {
		height: 15.9375rem;
		width: 15.9375rem;
	}
	
	#gallery07 ul li img {
		height: 15.9375rem;
		width: 15.9375rem;
	}
	
	#gallery08:not(:first-child) {
		margin-top: 0.75rem !important;
	}
	
	#gallery08:not(:last-child) {
		margin-bottom: 0.75rem !important;
	}
	
	#gallery08 ul li .caption {
		opacity: 1;
	}
	
	#gallery08 ul li .thumbnail:hover + .caption {
		opacity: 1;
	}
	
	#gallery08 ul li .caption p {
		letter-spacing: 0rem;
		font-size: 1.125em;
	}
	
	#gallery08 ul li img {
		height: 15.9375rem;
		width: 15.9375rem;
	}
}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 0rem;
	}
	
	.buttons.style1 li a {
		width: 8.25rem;
	}
	
	.buttons.style2 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons.style2 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons31 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons31 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons13 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons13 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons30 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons30 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons29 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons29 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons34 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons34 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons32 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons32 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons35 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons35 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons33 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons33 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#buttons36 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	#buttons36 li a {
		max-width: 32rem;
		width: 100%;
	}
	
	#container08 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	.container.style5 > .wrapper > .inner {
		--spacing: 0.65625rem;
	}
	
	.container.style2 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	.container.style4 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	.container.style6 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	.container.style7 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	#container22 > .wrapper > .inner {
		--spacing: 0.65625rem;
	}
	
	.container.style3 > .wrapper > .inner {
		--spacing: 0rem;
	}
	
	#container28 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	#container33 > .wrapper > .inner {
		--spacing: 0.65625rem;
	}
	
	#container56 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	#container38 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	#container43 > .wrapper > .inner {
		--spacing: 0.65625rem;
	}
	
	#container50 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	#container12 > .wrapper > .inner {
		--spacing: 0.65625rem;
	}
	
	#container09 > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	#foto-apartmaenty-zermatt > .wrapper > .inner {
		--spacing: 1.3125rem;
	}
	
	#image07 .frame {
		height: 27rem !important;
	}
	
	.image.style1 .frame {
		height: 29rem !important;
	}
	
	.image.style2 .frame {
		height: 16rem !important;
	}
	
	#image02 .frame {
		height: 27rem !important;
	}
	
	#image15 .frame {
		height: 27rem !important;
	}
	
	#image20 .frame {
		height: 27rem !important;
	}
	
	#image27 .frame {
		height: 10.25rem !important;
	}
	
	form.style2 .actions button {
		max-width: 32rem;
		width: 100%;
	}
	
	.timer.style1 ul li.delimiter {
		width: 1.5625rem;
	}
	
	.timer.style1 ul li.number .item .label > * {
		margin-top: calc(0.5rem + 0.25em);
	}
	
	#timer01 ul li.delimiter {
		width: 1.5625rem;
	}
	
	#timer01 ul li.number .item .label > * {
		margin-top: calc(0.5rem + 0.25em);
	}
	
	#timer04 ul li.delimiter {
		width: 1.5625rem;
	}
	
	#timer04 ul li.number .item .label > * {
		margin-top: calc(0.5rem + 0.25em);
	}
	
	#timer05 ul li.delimiter {
		width: 1.5625rem;
	}
	
	#timer05 ul li.number .item .label > * {
		margin-top: calc(0.5rem + 0.25em);
	}
}

@media (max-width: 360px) {
	#main > .inner {
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.25rem;
		--spacing: 0rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-1.125rem);
		max-width: calc(100% + 2.25rem + 0.4725px);
		width: calc(100% + 2.25rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > header > .full:first-child {
		margin-top: -2.25rem !important;
	}
	
	#main > .inner > footer > .full:last-child {
		margin-bottom: -2.25rem !important;
	}
	
	h1.style8, h2.style8, h3.style8, p.style8 {
		font-size: 1.75em;
	}
	
	h1.style5, h2.style5, h3.style5, p.style5 {
		font-size: 2.5em;
	}
	
	h1.style1, h2.style1, h3.style1, p.style1 {
		font-size: 1.75em;
	}
	
	h1.style2, h2.style2, h3.style2, p.style2 {
		font-size: 1.125em;
	}
	
	h1.style4, h2.style4, h3.style4, p.style4 {
		font-size: 2.25em;
	}
	
	h1.style7, h2.style7, h3.style7, p.style7 {
		font-size: 1.25em;
	}
	
	h1.style3, h2.style3, h3.style3, p.style3 {
		font-size: 1em;
	}
	
	.buttons.style1 {
		gap: 0rem;
	}
	
	.buttons.style2 {
		gap: 0.5625rem;
	}
	
	#buttons31 {
		gap: 0.5625rem;
	}
	
	#buttons13 {
		gap: 0.5625rem;
	}
	
	#buttons30 {
		gap: 0.5625rem;
	}
	
	#buttons29 {
		gap: 0.5625rem;
	}
	
	#buttons34 {
		gap: 0.5625rem;
	}
	
	#buttons32 {
		gap: 0.5625rem;
	}
	
	#buttons35 {
		gap: 0.5625rem;
	}
	
	#buttons33 {
		gap: 0.5625rem;
	}
	
	#buttons36 {
		gap: 0.5625rem;
	}
	
	#container08 > .wrapper > .inner {
		--gutters: 2.25rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0.09375rem;
		--spacing: 0rem;
	}
	
	.container.style5 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.25rem;
		--spacing: 0.5625rem;
	}
	
	.container.style5 {
		min-height: 21.5rem;
	}
	
	.container.style5.columns > .wrapper > .inner > .full {
		min-height: calc(21.5rem - (var(--padding-vertical) * 2));
	}
	
	.container.style2 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.25rem;
		--spacing: 1.125rem;
	}
	
	.container.style4 > .wrapper > .inner {
		--gutters: 2.25rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 1.125rem;
	}
	
	.container.style1 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 1.125rem;
	}
	
	.container.style1.columns > .wrapper > .inner > .full {
		min-height: calc(14rem - (var(--padding-vertical) * 2));
	}
	
	.container.style6 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 1.125rem;
	}
	
	.container.style6.columns > .wrapper > .inner > .full {
		min-height: calc(14rem - (var(--padding-vertical) * 2));
	}
	
	.container.style7 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 1.125rem;
	}
	
	.container.style7.columns > .wrapper > .inner > .full {
		min-height: calc(8rem - (var(--padding-vertical) * 2));
	}
	
	#container22 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.25rem;
		--spacing: 0.5625rem;
	}
	
	#container22 {
		min-height: 21.5rem;
	}
	
	#container22.columns > .wrapper > .inner > .full {
		min-height: calc(21.5rem - (var(--padding-vertical) * 2));
	}
	
	.container.style3 > .wrapper > .inner {
		--gutters: 2.25rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 0rem;
	}
	
	#container28 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 1.125rem;
	}
	
	#container28 {
		min-height: 8rem;
	}
	
	#container28.columns > .wrapper > .inner > .full {
		min-height: calc(8rem - (var(--padding-vertical) * 2));
	}
	
	#container33 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.25rem;
		--spacing: 0.5625rem;
	}
	
	#container33 {
		min-height: 21.5rem;
	}
	
	#container33.columns > .wrapper > .inner > .full {
		min-height: calc(21.5rem - (var(--padding-vertical) * 2));
	}
	
	#container56 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 1.125rem;
	}
	
	#container56 {
		min-height: 8rem;
	}
	
	#container56.columns > .wrapper > .inner > .full {
		min-height: calc(8rem - (var(--padding-vertical) * 2));
	}
	
	#container38 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 1.125rem;
	}
	
	#container38 {
		min-height: 8rem;
	}
	
	#container38.columns > .wrapper > .inner > .full {
		min-height: calc(8rem - (var(--padding-vertical) * 2));
	}
	
	#container43 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.25rem;
		--spacing: 0.5625rem;
	}
	
	#container43 {
		min-height: 21.5rem;
	}
	
	#container43.columns > .wrapper > .inner > .full {
		min-height: calc(21.5rem - (var(--padding-vertical) * 2));
	}
	
	#container50 > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 1.125rem;
	}
	
	#container50 {
		min-height: 8rem;
	}
	
	#container50.columns > .wrapper > .inner > .full {
		min-height: calc(8rem - (var(--padding-vertical) * 2));
	}
	
	#container12 > .wrapper > .inner {
		--gutters: 1.5rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.25rem;
		--spacing: 0.5625rem;
	}
	
	#container12 {
		min-height: 21.5rem;
	}
	
	#container12.columns > .wrapper > .inner > .full {
		min-height: calc(21.5rem - (var(--padding-vertical) * 2));
	}
	
	#container09 > .wrapper > .inner {
		--gutters: 2rem;
		--padding-horizontal: 1.125rem;
		--padding-vertical: 2.25rem;
		--spacing: 1.125rem;
	}
	
	#foto-apartmaenty-zermatt > .wrapper > .inner {
		--gutters: 6rem;
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.5rem;
		--spacing: 1.125rem;
	}
	
	#foto-apartmaenty-zermatt {
		min-height: 8rem;
	}
	
	#foto-apartmaenty-zermatt.columns > .wrapper > .inner > .full {
		min-height: calc(8rem - (var(--padding-vertical) * 2));
	}
	
	#icons02 {
		gap: 1.03125rem;
	}
	
	.icons.style1 {
		gap: 0.5625rem;
	}
	
	#image07 .frame {
		height: 23.625rem !important;
	}
	
	.image.style1 .frame {
		height: 25.375rem !important;
	}
	
	.image.style2 .frame {
		height: 14rem !important;
	}
	
	#image02 .frame {
		height: 23.625rem !important;
	}
	
	#image15 .frame {
		height: 23.625rem !important;
	}
	
	#image20 .frame {
		height: 23.625rem !important;
	}
	
	#image27 .frame {
		height: 8.96875rem !important;
	}
	
	#links02 {
		gap: 0.75rem;
		font-size: 1.375em;
	}
	
	#links01 {
		gap: 0.75rem;
		font-size: 1.375em;
	}
	
	#links03 {
		gap: 1.6875rem;
		font-size: 0.875em;
	}
	
	#links03 li::before {
		left: 0;
		top: calc(-0.84375rem - 0.5px);
	}
	
	#list04 {
		font-size: 1.125em;
	}
	
	#list04 ul li::after {
		width: 0.703125rem;
	}
	
	#list04 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	#list01 {
		font-size: 1.125em;
	}
	
	#list01 ul li::after {
		width: 0.703125rem;
	}
	
	#list01 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	.list.style1 {
		font-size: 1.125em;
	}
	
	.list.style1 ul li::after {
		width: 0.703125rem;
	}
	
	.list.style1 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	#list03 {
		font-size: 1.125em;
	}
	
	#list03 ul li::after {
		width: 0.703125rem;
	}
	
	#list03 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	#list02 {
		font-size: 1.125em;
	}
	
	#list02 ul li::after {
		width: 0.703125rem;
	}
	
	#list02 ul li::before {
		height: 1.6875rem;
		line-height: 1.6875rem;
		min-width: 0.791015625rem;
	}
	
	#gallery03 ul {
		gap: 0.75rem;
	}
	
	#gallery01 ul {
		gap: 0.75rem;
	}
	
	#gallery02 ul li .caption p {
		font-size: 1.125em;
	}
	
	#gallery02 ul {
		gap: 0.75rem;
	}
	
	#gallery04 ul li .caption p {
		font-size: 1.125em;
	}
	
	#gallery04 ul {
		gap: 0.75rem;
	}
	
	#gallery05 ul {
		gap: 0.75rem;
	}
	
	#gallery09 ul {
		gap: 0.75rem;
	}
	
	#gallery06 ul li .caption p {
		font-size: 1.125em;
	}
	
	#gallery06 ul {
		gap: 0.75rem;
	}
	
	#gallery07 ul {
		gap: 0.75rem;
	}
	
	#gallery08 ul li .caption p {
		font-size: 1.125em;
	}
	
	#gallery08 ul {
		gap: 0.75rem;
	}
}