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

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

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

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

html {
	font-size: 18pt;
}

u {
	text-decoration: underline;
}

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

em {
	font-style: italic;
}

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

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

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

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

s {
	text-decoration: line-through;
}

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

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

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

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

unloaded-script {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-component {
	display: block;
	line-height: 0;
	max-width: 100%;
	position: relative;
}

.image-component > .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-component > .frame > img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image-component.full > .frame {
	display: block;
}

.image-component.full:first-child > .frame {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.image-component.full:last-child > .frame {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.image-component.instance-5 > .frame {
	width: 25rem;
	height: 10.625rem;
	transition: none;
}

.image-component.instance-5 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.image-component.style-1 > .frame {
	max-width: 100%;
	width: auto;
	transition: none;
}

.image-component.style-1 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.image-component.style-3 > .frame {
	max-width: 100%;
	width: auto;
	transition: none;
}

.image-component.style-3 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.image-component.style-4 > .frame {
	width: 31.375rem;
	height: 19.625rem;
	border-radius: 0.75rem;
	transition: none;
}

.image-component.style-4 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.image-component.style-11 > .frame {
	width: 18.5rem;
	height: 16.5rem;
	transition: none;
}

.image-component.style-11 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.image-component.style-7 > .frame {
	max-width: 100%;
	width: 308px;
	border-radius: 0.75rem;
	transition: none;
}

.image-component.style-7 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.image-component.style-6 > .frame {
	width: 100vw;
	height: 8.5rem;
	border-radius: 0.875rem;
	transition: none;
}

.image-component.style-6 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.image-component.style-8 > .frame {
	width: 13.25rem;
	height: 11rem;
	border-radius: 0.875rem;
	transition: none;
}

.image-component.style-8 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.image-component.style-9 > .frame {
	max-width: 100%;
	width: 852px;
	transition: none;
}

.image-component.style-9 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.image-component.style-10 > .frame {
	width: 18.5rem;
	height: 10.125rem;
	transition: none;
}

.image-component.style-10 > .frame > img {
	height: 100% !important;
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	transition: none;
}

.video-component {
	position: relative;
}

.video-component > .frame {
	background-color: #000000;
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: top;
}

.video-component > .frame.with-overlay::before, .video-component > .frame.with-overlay::after {
	bottom: 0px;
	content: '';
	height: 100%;
	left: 0px;
	pointer-events: none;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 100%;
}

.video-component > .frame.with-overlay::before {
	background-color: transparent;
	background-image: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
	z-index: 1;
}

.video-component > .frame.with-overlay::after {
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22100%22%20height%3D%22100%22%20viewBox%3D%220%200%20100%20100%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2248%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%224%22/%3E%3Cpolygon%20points%3D%2240%2C30%2070%2C50%2040%2C70%22%20fill%3D%22white%22/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: clamp(1rem, 3.5rem, 25%);
	opacity: 0.75;
	transition: opacity 0.125s ease-in-out;
	z-index: 2;
}

.video-component > .frame.with-overlay:hover::after {
	opacity: 1.0;
}

.video-component.is-active > .frame.with-overlay::before {
	background-color: #000000;
	transition: background-color 0.25s ease-in-out;
}

.video-component.is-active > .frame.with-overlay::after {
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
}

.video-component > .frame > .player {
	border-radius: inherit;
	bottom: 0px;
	height: 100%;
	left: 0px;
	object-fit: cover;
	object-position: center;
	opacity: 1;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 100%;
}

.video-component > .frame > .player.thumbnail {
	cursor: pointer;
	object-fit: cover !important;
	object-position: center !important;
	user-select: none;
}

.video-component.full > .frame {
	display: block;
}

.video-component.full:first-child > .frame {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.video-component.full:last-child > .frame {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.video-component.instance-1 > .frame {
	border-radius: 1.625rem;
	width: 19.25rem;
}

.video-component.instance-1 > .frame {
	aspect-ratio: 0.5625;
}

.video-component.style-2 > .frame {
	border-radius: 0rem;
	width: 28rem;
}

.video-component.instance-3 > .frame {
	aspect-ratio: 1.6;
}

.text-component {
	direction: var(--site-language-direction);
	position: relative;
}

.text-component span.p {
	display: block;
	position: relative;
}

.text-component span[style], .text-component strong, .text-component a, .text-component code, .text-component mark, .text-component spoiler-text {
	-webkit-text-fill-color: currentcolor;
}

.text-component.style-4 {
	color: rgba(42,25,230,0.722);
	font-family: 'Outfit', sans-serif;
	letter-spacing: -0.025rem;
	width: 100%;
	font-size: 1.375em;
	line-height: 1.5;
	font-weight: 700;
}

.text-component.style-4 a {
	text-decoration: underline;
}

.text-component.style-4 a:hover {
	text-decoration: none;
}

.text-component.style-4 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-12 {
	text-align: center;
	color: #FF1493;
	font-family: 'Work Sans', sans-serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 2em;
	line-height: 1.125;
	font-weight: 800;
}

.text-component.style-12 a {
	text-decoration: underline;
}

.text-component.style-12 a:hover {
	text-decoration: none;
}

.text-component.style-12 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-6 {
	color: rgba(5,5,5,0.722);
	font-family: 'Outfit', sans-serif;
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 500;
}

.text-component.style-6 a {
	text-decoration: underline;
}

.text-component.style-6 a:hover {
	text-decoration: none;
}

.text-component.style-6 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-10 {
	color: #FF1493;
	font-family: 'Work Sans', sans-serif;
	letter-spacing: -0.075rem;
	width: 100%;
	font-size: 2em;
	line-height: 1.5;
	font-weight: 800;
}

.text-component.style-10 a {
	text-decoration: underline;
}

.text-component.style-10 a:hover {
	text-decoration: none;
}

.text-component.style-10 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-5 {
	text-align: center;
	color: #FF1493;
	font-family: 'Work Sans', sans-serif;
	letter-spacing: -0.1rem;
	width: 100%;
	font-size: 2em;
	line-height: 1;
	font-weight: 800;
}

.text-component.style-5 a {
	text-decoration: underline;
}

.text-component.style-5 a:hover {
	text-decoration: none;
}

.text-component.style-5 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-9 {
	color: rgba(0,0,0,0.722);
	font-family: 'Outfit', sans-serif;
	font-size: 2em;
	line-height: 1.625;
	font-weight: 900;
}

.text-component.style-9 a {
	text-decoration: underline;
}

.text-component.style-9 a:hover {
	text-decoration: none;
}

.text-component.style-9 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-13 {
	color: #FF1493;
	font-family: 'Work Sans', sans-serif;
	font-size: 1.75em;
	line-height: 1.5;
	font-weight: 800;
}

.text-component.style-13 a {
	text-decoration: underline;
}

.text-component.style-13 a:hover {
	text-decoration: none;
}

.text-component.style-13 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-14 {
	color: #FF1493;
	font-family: 'Work Sans', sans-serif;
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 800;
}

.text-component.style-14 a {
	text-decoration: underline;
}

.text-component.style-14 a:hover {
	text-decoration: none;
}

.text-component.style-14 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-17 {
	color: #FF1493;
	font-family: 'Work Sans', sans-serif;
	letter-spacing: -0.1rem;
	width: 100%;
	font-size: 2em;
	line-height: 1.5;
	font-weight: 800;
}

.text-component.style-17 a {
	text-decoration: underline;
}

.text-component.style-17 a:hover {
	text-decoration: none;
}

.text-component.style-17 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-19 {
	text-align: left;
	color: rgba(0,0,0,0.722);
	font-family: 'Outfit', sans-serif;
	font-size: 1.25em;
	line-height: 1.625;
	font-weight: 500;
}

.text-component.style-19 a {
	text-decoration: underline;
}

.text-component.style-19 a:hover {
	text-decoration: none;
}

.text-component.style-19 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

.text-component.style-20 {
	text-align: center;
	color: rgba(0,0,0,0.722);
	font-family: 'Outfit', sans-serif;
	font-size: 1.25em;
	line-height: 1.625;
	font-weight: 500;
}

.text-component.style-20 a {
	text-decoration: underline;
}

.text-component.style-20 a:hover {
	text-decoration: none;
}

.text-component.style-20 span.p:nth-child(n + 2) {
	margin-top: 1rem;
}

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

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

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

.buttons-component.style-2 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.style-2 > li > a {
	display: inline-block;
	width: 26.25rem;
	height: 4.125rem;
	line-height: calc(4.125rem - 6px);
	padding: 0 0.5rem;
	vertical-align: middle;
	text-transform: lowercase;
	font-family: 'Outfit', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 1.25em;
	font-weight: 600;
	border-radius: 2rem;
	border-color: #000000;
	border-style: solid;
	border-width: 3px;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #FB0D54;
	color: #FFFFFF;
	transition: transform 0.375s ease, color 0.375s ease, background-color 0.375s ease, border-color 0.375s ease;
}

.buttons-component.style-2 > li > a:hover {
	background-color: #70FF00 !important;
	transform: scale(1.095);
}

.buttons-component.style-3 {
	gap: 0.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.style-3 > li > a {
	display: inline-block;
	width: 25.875rem;
	height: auto;
	line-height: 2rem;
	padding: 0 2.0625rem;
	vertical-align: middle;
	text-transform: lowercase;
	font-family: 'Outfit', sans-serif;
	letter-spacing: -0.025rem;
	font-size: 1.25em;
	font-weight: 600;
	border-radius: 2rem;
	border-color: #000000;
	border-style: solid;
	border-width: 3px;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: calc(1.2890625rem - 3px);
	padding-top: calc(1.2890625rem - 3px);
	white-space: normal;
	text-align: var(--alignment);
	background-color: #FB0D54;
	color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.style-3 > li > a:hover {
	background-color: #61FF00 !important;
}

.buttons-component.style-5 {
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.style-5 > li > a {
	display: inline-block;
	width: 25.875rem;
	height: auto;
	line-height: 1.640625rem;
	padding: 0 1.3125rem;
	vertical-align: middle;
	font-family: 'Outfit', sans-serif;
	letter-spacing: -0.05rem;
	font-size: 1.25em;
	font-weight: 600;
	border-radius: 3rem;
	border-color: #000000;
	border-style: solid;
	border-width: 3px;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: calc(0.8203125rem - 3px);
	padding-top: calc(0.8203125rem - 3px);
	white-space: normal;
	text-align: var(--alignment);
	background-color: #FB0D54;
	color: #FFFFFF;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.style-5 > li > a:hover {
	transform: scale(1.1125);
}

.buttons-component.style-7 {
	--flex-alignment: flex-end;
	--alignment: right;
	gap: 0.75rem;
	flex-direction: row;
	flex-wrap: wrap;
}

.buttons-component.style-7 > li > a {
	display: inline-block;
	width: 3.25rem;
	height: 2.375rem;
	line-height: calc(2.375rem - 10px);
	padding: 0 0.5rem;
	vertical-align: middle;
	font-family: 'Outfit', sans-serif;
	font-size: 1.75em;
	font-weight: 600;
	border-radius: 0.75rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	color: #030303;
	border: solid 5px #000000;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.slideshow-component {
	display: block;
	max-width: 100%;
	position: relative;
}

.slideshow-component .bg {
	border-radius: inherit;
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	vertical-align: top;
	width: 100%;
	z-index: 1;
}

.slideshow-component > .content {
	display: inline-block;
	max-width: 100%;
	position: relative;
	vertical-align: top;
}

.slideshow-component > .content > .nav {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	display: flex;
	height: 100%;
	max-width: 25%;
	opacity: 0.5;
	position: absolute;
	top: 0;
	transition: opacity 0.25s ease, transform 0.5s ease;
	width: 8rem;
	z-index: 1;
}

.slideshow-component > .content > .nav::before {
	content: '';
	display: block;
	transition: opacity 0.25s ease, transform 0.5s ease;
}

.slideshow-component > .content > .nav:hover {
	opacity: 1;
}

.slideshow-component > .content > .nav.next {
	right: 0;
}

.slideshow-component > .content > .nav.previous {
	left: 0;
	transform: scaleX(-1) !important;
}

.slideshow-component.full .bg {
	display: block;
}

.slideshow-component.full:first-child > .content {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.slideshow-component.full:last-child > .content {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.slideshow-component.full:first-child .bg {
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}

.slideshow-component.full:last-child .bg {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

.slideshow-component.style-1:not(:first-child) {
	margin-top: 2.375rem !important;
}

.slideshow-component.style-1:not(:last-child) {
	margin-bottom: 2.375rem !important;
}

.slideshow-component.style-1 {
	-webkit-touch-callout: none;
	user-select: none;
}

.slideshow-component.style-1 > .content {
	border-radius: 0.875rem;
}

.slideshow-component.style-1 .bg {
	width: 14.875rem;
	height: 28.25rem;
}

.slideshow-component.style-1 .bg > .slow {
	animation-duration: 20s;
}

.slideshow-component.style-1 .bg > .normal {
	animation-duration: 15s;
}

.slideshow-component.style-1 .bg > .fast {
	animation-duration: 10s;
}

.table-component {
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	overflow-y: hidden;
}

.table-component > .inner {
	display: inline-block;
	max-width: 100%;
}

.table-component table {
	direction: var(--site-language-direction);
	text-align: var(--site-language-alignment);
	width: 100%;
}

.table-component th {
	text-align: var(--site-language-alignment);
}

.table-component.instance-2 > .inner {
	width: 30rem;
}

.table-component.instance-2 th {
	color: rgba(0,0,0,0.722);
	font-family: 'Outfit', sans-serif;
	font-size: 1.25em;
	line-height: 1.625;
	font-weight: 600;
}

.table-component.instance-2 th a {
	text-decoration: underline;
}

.table-component.instance-2 th a:hover {
	text-decoration: none;
}

.table-component.instance-2 td {
	text-align: center;
	color: rgba(0,0,0,0.722);
	font-family: 'Outfit', sans-serif;
	font-size: 1.25em;
	line-height: 1.625;
	font-weight: 500;
	text-shadow: 0.088rem 0.088rem 0.125rem #FFFFFF;
}

.table-component.instance-2 td a {
	text-decoration: underline;
}

.table-component.instance-2 td a:hover {
	text-decoration: none;
}

.table-component.instance-2 table > thead {
	background-color: rgba(0,0,0,0.133);
}

.table-component.instance-2 th, .table-component.instance-2 td {
	border: solid 1px rgba(0,0,0,0.722);
	padding: 0.25rem 0.34375rem;
}

.table-component.instance-1 > .inner {
	width: 30rem;
}

.table-component.instance-1 th {
	color: rgba(0,0,0,0.722);
	font-family: 'Outfit', sans-serif;
	font-size: 1.25em;
	line-height: 1.625;
	font-weight: 600;
}

.table-component.instance-1 th a {
	text-decoration: underline;
}

.table-component.instance-1 th a:hover {
	text-decoration: none;
}

.table-component.instance-1 td {
	text-align: center;
	color: rgba(0,0,0,0.722);
	font-family: 'Outfit', sans-serif;
	font-size: 1em;
	line-height: 1.625;
	font-weight: 500;
}

.table-component.instance-1 td a {
	text-decoration: underline;
}

.table-component.instance-1 td a:hover {
	text-decoration: none;
}

.table-component.instance-1 table > thead {
	background-color: rgba(0,0,0,0.133);
}

.table-component.instance-1 th, .table-component.instance-1 td {
	border: solid 1px rgba(0,0,0,0.722);
	padding: 0.5rem 0.6875rem;
}

.container-component {
	position: relative;
}

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

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

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

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

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

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

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

.container-component.instance-1 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 63rem;
	background-color: transparent;
}

.container-component.instance-1 > .wrapper > .inner {
	--gutters: 0.875rem;
	--padding-horizontal: 1.875rem;
	--padding-vertical: 0.25rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-component.instance-1.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

.container-component.instance-1 > .wrapper > .inner > :nth-child(1) {
	width: calc(40% + (var(--gutters) / 3));
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
	--margin-left: auto;
	--margin-right: auto;
}

.container-component.instance-1 > .wrapper > .inner > :nth-child(2) {
	width: calc(20% + (var(--gutters) / 3));
}

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

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

.container-component.style-2 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 51rem;
	background-color: transparent;
}

.container-component.style-2 > .wrapper > .inner {
	--gutters: 0.25rem;
	--padding-horizontal: 6rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-component.style-2.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

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

.container-component.instance-3 > .wrapper > .inner > :nth-child(2) {
	width: calc(20% + (var(--gutters) / 3));
}

.container-component.instance-3 > .wrapper > .inner > :nth-child(3) {
	width: calc(40% + (var(--gutters) / 3));
}

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

.container-component.style-4 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 35rem;
	background-color: transparent;
}

.container-component.style-4 > .wrapper > .inner {
	--gutters: 2.125rem;
	--padding-horizontal: 0rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-component.style-4.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

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

.container-component.style-7 > .wrapper {
	display: block;
	margin: 0 auto 0 auto;
	width: 63rem;
	background-color: transparent;
}

.container-component.style-7 > .wrapper > .inner {
	--gutters: 0rem;
	--padding-horizontal: 6rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-component.style-7.columns > .wrapper > .inner > .full {
	align-self: stretch;
}

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

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

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

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

.container-component.instance-4 > .wrapper > .inner > :nth-child(1) {
	width: 50%;
}

.container-component.instance-4 > .wrapper > .inner > :nth-child(2) {
	width: 50%;
}

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

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

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

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

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

.icons-component > li > a > .label {
	display: none;
}

.icons-component.instance-1 {
	font-size: 2.375em;
	gap: 1rem;
}

.icons-component.instance-1 > li > a {
	border-radius: 100%;
	height: 2em;
	width: 2em;
	background-color: #FFFFFF;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.icons-component.instance-1 > li > a > svg {
	height: 60%;
	width: 60%;
	fill: rgba(0,0,0,0.722);
	transition: fill 0.25s ease;
}

.icons-component.instance-1 > li > a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

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

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

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

.links-component.instance-1 {
	gap: 0.5rem;
	flex-direction: column;
	flex-wrap: nowrap;
	font-family: 'Outfit', sans-serif;
	font-size: 1.25em;
	font-weight: 500;
}

.links-component.instance-1 > li > a {
	color: rgba(0,0,0,0.722);
	text-decoration: none;
}

.links-component.instance-1 > li > a:hover {
	text-decoration: underline;
}

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

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

@media (max-width: 1280px) {
	html {
		font-size: 13pt;
	}
	
	
	
	.slideshow-component.style-1 .bg > .slow {
		animation-duration: 15s;
	}
	
	.slideshow-component.style-1 .bg > .normal {
		animation-duration: 11.25s;
	}
	
	.slideshow-component.style-1 .bg > .fast {
		animation-duration: 7.5s;
	}
}

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

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

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	
	
	.site-main > .inner {
		--padding-horizontal: 1rem;
		--padding-vertical: 0.5rem;
		--spacing: 2.5rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-1rem);
		max-width: calc(100% + 2rem + 0.4725px);
		width: calc(100% + 2rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > .active > .full:first-child {
		margin-top: -0.5rem !important;
	}
	
	.site-main > .inner > .active > .full:last-child {
		margin-bottom: -0.5rem !important;
	}
	
	.image-component.instance-5 > .frame {
		width: 53.125rem;
		height: 13.28125rem !important;
	}
	
	.image-component.instance-5 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image-component.style-1 > .frame {
		width: 53.125rem;
	}
	
	.image-component.style-1 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image-component.style-3 > .frame {
		width: 53.125rem;
	}
	
	.image-component.style-3 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image-component.style-4 > .frame {
		width: 53.125rem;
		height: 24.53125rem !important;
	}
	
	.image-component.style-4 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image-component.style-11 > .frame {
		width: 53.125rem;
		height: 20.625rem !important;
	}
	
	.image-component.style-11 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image-component.style-7 > .frame {
		width: 53.125rem;
	}
	
	.image-component.style-7 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image-component.style-6 > .frame {
		width: 32.625rem;
		height: 4.6875rem !important;
	}
	
	.image-component.style-6 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image-component.style-8 > .frame {
		width: 13.25rem;
		height: 13.75rem !important;
	}
	
	.image-component.style-8 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image-component.style-9 > .frame {
		width: 53.125rem;
	}
	
	.image-component.style-9 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.image-component.style-10 > .frame {
		width: 53.125rem;
		height: 12.65625rem !important;
	}
	
	.image-component.style-10 > .frame > img {
		height: 100% !important;
		object-fit: cover;
		object-position: center;
		width: 100% !important;
	}
	
	.video-component.instance-1 > .frame {
		width: 19.25rem;
	}
	
	.video-component.style-2 > .frame {
		width: 28rem;
	}
	
	.text-component.style-4 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 1.375em;
		line-height: 1.5;
	}
	
	.text-component.style-12 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.125;
	}
	
	.text-component.style-6 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.5;
	}
	
	.text-component.style-10 {
		letter-spacing: -0.065625rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.5;
	}
	
	.text-component.style-5 {
		letter-spacing: -0.0875rem;
		width: 100%;
		font-size: 2em;
		line-height: 1;
	}
	
	.text-component.style-9 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.625;
	}
	
	.text-component.style-13 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.75em;
		line-height: 1.5;
	}
	
	.text-component.style-14 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.625em;
		line-height: 1.25;
	}
	
	.text-component.style-17 {
		letter-spacing: -0.0875rem;
		width: 100%;
		font-size: 2em;
		line-height: 1.5;
	}
	
	.text-component.style-19 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.625;
	}
	
	.text-component.style-20 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1.25em;
		line-height: 1.625;
	}
	
	.buttons-component.style-2 {
		gap: 0.75rem;
	}
	
	.buttons-component.style-2 > li > a {
		letter-spacing: -0.05rem;
		font-size: 1.25em;
	}
	
	.buttons-component.style-3 {
		gap: 0.5rem;
	}
	
	.buttons-component.style-3 > li > a {
		letter-spacing: -0.025rem;
		font-size: 1.125em;
	}
	
	.buttons-component.style-5 {
		gap: 0.75rem;
	}
	
	.buttons-component.style-5 > li > a {
		letter-spacing: 0.025rem;
		padding-left: calc(0.025rem + 1.3125rem);
		font-size: 1.375em;
	}
	
	.buttons-component.style-7 {
		gap: 0.75rem;
	}
	
	.buttons-component.style-7 > li > a {
		letter-spacing: 0rem;
		font-size: 1.75em;
	}
	
	.slideshow-component.style-1:not(:first-child) {
		margin-top: 1.78125rem !important;
	}
	
	.slideshow-component.style-1:not(:last-child) {
		margin-bottom: 1.78125rem !important;
	}
	
	.slideshow-component.style-1 .bg {
		width: 14.875rem;
		height: 28.25rem !important;
	}
	
	.slideshow-component.style-1 .bg > .slow {
		animation-duration: 10s;
	}
	
	.slideshow-component.style-1 .bg > .normal {
		animation-duration: 7.5s;
	}
	
	.slideshow-component.style-1 .bg > .fast {
		animation-duration: 5s;
	}
	
	.table-component.instance-2 th {
		letter-spacing: 0rem;
		font-size: 1.25em;
		line-height: 1.625;
	}
	
	.table-component.instance-2 td {
		letter-spacing: 0rem;
		font-size: 1.25em;
		line-height: 1.625;
	}
	
	.table-component.instance-2 th, .table-component.instance-2 td {
		padding: 0.25rem 0.34375rem;
	}
	
	.table-component.instance-1 th {
		letter-spacing: 0rem;
		font-size: 1.25em;
		line-height: 1.625;
	}
	
	.table-component.instance-1 td {
		letter-spacing: 0rem;
		font-size: 1em;
		line-height: 1.625;
	}
	
	.table-component.instance-1 th, .table-component.instance-1 td {
		padding: 0.5rem 0.6875rem;
	}
	
	
	
	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 0.875rem;
		--padding-horizontal: 1.875rem;
		--padding-vertical: 0.25rem;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.instance-1.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-component.instance-1.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-component.instance-1.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:first-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > div:last-of-type, .container-component.instance-1.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.instance-1.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-1 > .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;
	}
	
	.container-component.instance-1 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-1 > .wrapper > .inner > :nth-child(3) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	
	
	.container-component.style-2 > .wrapper > .inner {
		--gutters: 0.125rem;
		--padding-horizontal: 0.25rem;
	}
	
	
	
	
	
	
	
	
	
	.container-component.style-4 > .wrapper > .inner {
		--gutters: 2.125rem;
		--padding-horizontal: 0rem;
	}
	
	.container-component.style-4.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-4.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-component.style-4.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-component.style-4.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > div:first-of-type, .container-component.style-4.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > div:last-of-type, .container-component.style-4.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > div:first-of-type, .container-component.style-4.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > div:last-of-type, .container-component.style-4.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.style-4.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	
	
	.container-component.style-7 > .wrapper > .inner {
		--gutters: 3.125rem;
		--padding-horizontal: 2rem;
	}
	
	.container-component.style-7.columns > .wrapper > .inner {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > span {
		height: 0;
		margin-top: calc(var(--gutters) * -1);
		pointer-events: none;
		visibility: hidden;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > *:first-child {
		margin-left: 0 !important;
		padding-top: 0 !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > * {
		padding: calc(var(--gutters) * 0.5) 0 !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > *:last-child {
		padding-bottom: 0 !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > div > .full {
		margin-left: calc(var(--padding-horizontal) * -1);
		width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}
	
	.container-component.style-7.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-component.style-7.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-component.style-7.columns > .wrapper > .inner > div > .full:first-child {
		margin-top: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > div > .full:last-child {
		margin-bottom: calc(var(--gutters) * -0.5) !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		margin-top: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		margin-bottom: calc(var(--padding-vertical) * -1) !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > div:first-of-type, .container-component.style-7.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > div:last-of-type, .container-component.style-7.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > div:first-of-type, .container-component.style-7.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
		border-bottom-left-radius: 0 !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > div:last-of-type, .container-component.style-7.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
		border-top-right-radius: 0 !important;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > .full > .full:first-child:last-child {
		height: auto;
	}
	
	.container-component.style-7.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
		height: auto;
		position: relative;
		width: auto;
	}
	
	.container-component.instance-4 > .wrapper > .inner > :nth-child(1) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.container-component.instance-4 > .wrapper > .inner > :nth-child(2) {
		min-height: 100% !important;
		width: 100% !important;
	}
	
	.icons-component.instance-1 {
		font-size: 2.375em;
		gap: 1rem;
	}
	
	.links-component.instance-1 {
		gap: 0.5rem;
		font-size: 1.25em;
	}
}

@media (max-width: 480px) {
	.site-main > .inner {
		--spacing: 2.1875rem;
	}
	
	.image-component.instance-5 > .frame {
		height: 10.625rem !important;
	}
	
	.image-component.style-4 > .frame {
		height: 19.625rem !important;
	}
	
	.image-component.style-11 > .frame {
		height: 16.5rem !important;
	}
	
	.image-component.style-6 > .frame {
		height: 3.75rem !important;
	}
	
	.image-component.style-8 > .frame {
		height: 11rem !important;
	}
	
	.image-component.style-10 > .frame {
		height: 10.125rem !important;
	}
	
	.buttons-component.style-2 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.style-2 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.style-3 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.style-3 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.style-5 {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.buttons-component.style-5 > li > a {
		max-width: 32rem;
		width: 100%;
	}
	
	.buttons-component.style-7 > li > a {
		width: 3.5rem;
	}
}

@media (max-width: 360px) {
	.site-main > .inner {
		--padding-horizontal: 0.75rem;
		--padding-vertical: 0.375rem;
		--spacing: 1.875rem;
	}
	
	.site-main > .inner > * > .full {
		margin-left: calc(-0.75rem);
		max-width: calc(100% + 1.5rem + 0.4725px);
		width: calc(100% + 1.5rem + 0.4725px);
	}
	
	.site-main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	.site-main > .inner > .active > .full:first-child {
		margin-top: -0.375rem !important;
	}
	
	.site-main > .inner > .active > .full:last-child {
		margin-bottom: -0.375rem !important;
	}
	
	.image-component.instance-5 > .frame {
		height: 9.296875rem !important;
	}
	
	.image-component.style-4 > .frame {
		height: 17.171875rem !important;
	}
	
	.image-component.style-11 > .frame {
		height: 14.4375rem !important;
	}
	
	.image-component.style-6 > .frame {
		height: 3.28125rem !important;
	}
	
	.image-component.style-8 > .frame {
		height: 9.625rem !important;
	}
	
	.image-component.style-10 > .frame {
		height: 8.859375rem !important;
	}
	
	.text-component.style-4 {
		font-size: 1.375em;
	}
	
	.text-component.style-12 {
		font-size: 1.5em;
	}
	
	.text-component.style-6 {
		font-size: 1.25em;
	}
	
	.text-component.style-10 {
		font-size: 1.5em;
	}
	
	.text-component.style-5 {
		font-size: 1.5em;
	}
	
	.text-component.style-9 {
		font-size: 1.5em;
	}
	
	.text-component.style-13 {
		font-size: 1.5em;
	}
	
	.text-component.style-14 {
		font-size: 1.5em;
	}
	
	.text-component.style-17 {
		font-size: 1.5em;
	}
	
	.text-component.style-19 {
		font-size: 1.25em;
	}
	
	.text-component.style-20 {
		font-size: 1.25em;
	}
	
	.buttons-component.style-2 {
		gap: 0.5625rem;
	}
	
	.buttons-component.style-3 {
		gap: 0.375rem;
	}
	
	.buttons-component.style-5 {
		gap: 0.5625rem;
	}
	
	.buttons-component.style-7 {
		gap: 0.5625rem;
	}
	
	.table-component.instance-2 th {
		font-size: 1.25em;
	}
	
	.table-component.instance-2 td {
		font-size: 1.25em;
	}
	
	.table-component.instance-1 th {
		font-size: 1.25em;
	}
	
	.table-component.instance-1 td {
		font-size: 1em;
	}
	
	.container-component.instance-1 > .wrapper > .inner {
		--gutters: 0.65625rem;
		--padding-horizontal: 1.40625rem;
		--padding-vertical: 0.1875rem;
	}
	
	.container-component.style-2 > .wrapper > .inner {
		--gutters: 0.125rem;
		--padding-horizontal: 0.1875rem;
	}
	
	.container-component.style-4 > .wrapper > .inner {
		--gutters: 1.59375rem;
		--padding-horizontal: 0rem;
	}
	
	.container-component.style-7 > .wrapper > .inner {
		--gutters: 3.125rem;
		--padding-horizontal: 1.5rem;
	}
	
	.icons-component.instance-1 {
		gap: 0.75rem;
	}
	
	.links-component.instance-1 {
		gap: 0.375rem;
		font-size: 1.25em;
	}
}