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

:root {
	--background-height: 100vh;
	--site-language-alignment: left;
	--site-language-direction: ltr;
	--site-language-flex-alignment: flex-start;
	--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);
}

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

#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: center;
	--flex-alignment: center;
	--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;
	transition: opacity 1s ease-in-out 0s;
}

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

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

#main > .inner > footer {
	margin-top: var(--spacing);
	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(-2rem);
	max-width: calc(100% + 4rem + 0.4725px);
	width: calc(100% + 4rem + 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 > footer > .full:last-child {
	margin-bottom: -2.5rem !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

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

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

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

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

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

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

#main > .inner > section.inactive {
	opacity: 0;
	transition: opacity 0.375s 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;
}

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

.image .frame {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	vertical-align: top;
	width: 100%;
}

.image .frame img {
	border-radius: 0 !important;
	max-width: 100%;
	vertical-align: top;
	width: inherit;
}

.image.full .frame {
	display: block;
}

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

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

#image01 .frame {
	width: 8rem;
	border-radius: 100%;
	transition: none;
}

#image01 .frame img {
	transition: none;
}

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

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

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

#text01 {
	text-transform: uppercase;
	color: #FF8CA8;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 2.5em;
	line-height: 1.375;
	font-weight: 400;
}

#text01 a {
	text-decoration: underline;
}

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

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

#text04 {
	color: #FFFFFF;
	font-family: 'Quicksand', sans-serif;
	font-size: 1em;
	line-height: 1.625;
	font-weight: 400;
}

#text04 a {
	text-decoration: underline;
}

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

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

#text05 {
	text-transform: uppercase;
	color: #FF8CA8;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 1.375;
	font-weight: 400;
}

#text05 a {
	text-decoration: underline;
}

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

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

#text02 {
	color: #FFFFFF;
	font-family: 'Quicksand', sans-serif;
	font-size: 1em;
	line-height: 1.625;
	font-weight: 400;
}

#text02 a {
	text-decoration: underline;
}

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

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

#text07 {
	text-transform: uppercase;
	color: #FF8CA8;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 1.375;
	font-weight: 400;
}

#text07 a {
	text-decoration: underline;
}

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

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

#text08 {
	color: #FFFFFF;
	font-family: 'Quicksand', sans-serif;
	font-size: 1em;
	line-height: 1.625;
	font-weight: 400;
}

#text08 a {
	text-decoration: underline;
}

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

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

#text03 {
	text-transform: uppercase;
	color: #FF8CA8;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 0.325rem;
	width: calc(100% + 0.325rem);
	font-size: 1.5em;
	line-height: 1.375;
	font-weight: 400;
}

#text03 a {
	text-decoration: underline;
}

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

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

#text06 {
	color: #FFFFFF;
	font-family: 'Quicksand', sans-serif;
	font-size: 1em;
	line-height: 1.625;
	font-weight: 400;
}

#text06 a {
	text-decoration: underline;
}

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

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

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

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

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

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

.gallery-modal {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	align-items: center;
	background-color: rgba(10,10,10,0.85);
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	left: 0;
	opacity: 0;
	outline: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	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-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5jaXJjbGUge2ZpbGw6IHRyYW5zcGFyZW50OyBzdHJva2U6ICNmZmY7IHN0cm9rZS13aWR0aDogMS41cHg7IH08L3N0eWxlPjxkZWZzPjxjbGlwUGF0aCBpZD0iY29ybmVyIj48cG9seWdvbiBwb2ludHM9IjAsMCA0OCwwIDQ4LDQ4IDk2LDQ4IDk2LDk2IDAsOTYiIC8+PC9jbGlwUGF0aD48L2RlZnM+PGcgY2xpcC1wYXRoPSJ1cmwoI2Nvcm5lcikiPjxjaXJjbGUgY3g9IjQ4IiBjeT0iNDgiIHI9IjMyIi8+PC9nPjwvc3ZnPg==');
	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 {
	opacity: 0;
	transform: translateY(0.75em);
	transition: all 0.5s ease;
}

.gallery-modal .inner img {
	box-shadow: 0 1em 3em 0 rgba(0,0,0,0.35);
	display: block;
	max-height: 85vh;
	max-width: 80vw;
}

.gallery-modal .nav {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNmZmY7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjQiIHkxPSI4IiB4Mj0iNDgiIHkyPSIzMiIgLz48bGluZSB4MT0iMjQiIHkxPSI1NiIgeDI9IjQ4IiB5Mj0iMzIiIC8+PC9zdmc+');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 3rem;
	cursor: pointer;
	height: 40%;
	max-width: 10vw;
	min-height: 6rem;
	opacity: 0.25;
	position: fixed;
	top: 30%;
	transition: opacity 0.25s ease, transform 0.5s ease;
	width: 8rem;
}

.gallery-modal .nav:hover {
	opacity: 1;
}

.gallery-modal .nav.next {
	right: 0;
}

.gallery-modal .nav.previous {
	left: 0;
	transform: scaleX(-1);
}

.gallery-modal .close {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNmZmY7c3Ryb2tlLXdpZHRoOiAxLjVweDt9PC9zdHlsZT48bGluZSB4MT0iMjAiIHkxPSIyMCIgeDI9IjQ0IiB5Mj0iNDQiIC8+PGxpbmUgeDE9IjIwIiB5MT0iNDQiIHgyPSI0NCIgeTI9IjIwIiAvPjwvc3ZnPg==');
	background-position: top 1rem right 1rem;
	background-repeat: no-repeat;
	background-size: 3rem;
	cursor: pointer;
	display: block;
	height: 6rem;
	opacity: 0.25;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.25s ease, transform 0.5s ease;
	width: 6rem;
}

.gallery-modal .close:hover {
	opacity: 1;
}

.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.switching .inner {
	transition: opacity 0.375s ease, transform 0.5s ease;
}

.gallery-modal.zooming {
	background-color: rgba(0,0,0,1);
}

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

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

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

#gallery01 .inner {
	max-width: 100%;
}

#gallery01 ul li {
	border-radius: 0.125rem;
	display: inline-block;
}

#gallery01 ul li .frame {
	border-radius: 0.125rem;
}

#gallery01 ul {
	gap: 1rem;
}

#gallery01 ul li .thumbnail {
	display: block;
	transition: none;
}

#gallery01 ul li img {
	height: auto;
	max-height: 8.375rem;
}

#gallery01 ul li .thumbnail img {
	transition: none;
}

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

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

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

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

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

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

#icons01 {
	font-size: 1.5em;
	gap: 1.5rem;
}

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

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

#icons01 li a {
	height: 1em;
	width: 1em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons01 li a svg {
	height: 100%;
	width: 100%;
	transition: fill 0.25s ease;
}

#icons01 a svg {
	fill: #FF8CA8;
}

#icons01 li a + svg {
	transition: fill 0.25s ease, stroke 0.25s ease;
}

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

.links li {
	position: relative;
}

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

#links01 {
	gap: 0rem;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: 'Quicksand', sans-serif;
	font-size: 1em;
	font-weight: 400;
		margin-top: 0.25rem !important;
}

#links01 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%3Crect%20x%3D%227.5%22%20y%3D%227.5%22%20transform%3D%22matrix%280.7071%20-0.7071%200.7071%200.7071%20-8.2843%2020%29%22%20width%3D%2225%22%20height%3D%2225%22%20fill%3D%22rgba(255,255,255,0.169)%22%20%2F%3E%3C%2Fsvg%3E');
	background-position: center;
	background-repeat: none;
	background-size: 1rem;
	content: '';
	display: block;
	height: 1rem;
	left: -0.5rem;
	pointer-events: none;
	position: absolute;
	top: calc(55% - 0.5rem);
	width: 1rem;
}

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

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

#links01 li a:hover {
	text-decoration: underline;
}

#links01 .n01 a {
	color: #FF8CA8;
}

hr {
	border: 0;
	padding: 0;
	position: relative;
	width: 100%;
}

hr:before {
	content: '';
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

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

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

#divider01:before {
	width: 7rem;
	border-top: solid 1px rgba(255,255,255,0.169);
	height: 1px;
	margin-top: -0.5px;
}

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

.buttons li {
	max-width: 100%;
}

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

#buttons01 {
	gap: 1rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons01 li a {
	display: inline-block;
	width: 8.125rem;
	height: 2.625rem;
	line-height: calc(2.625rem - 2px);
	padding: 0 0.5rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Quicksand', sans-serif;
	letter-spacing: 0.225rem;
	padding-left: calc(0.225rem + 0.5rem);
	font-size: 0.625em;
	font-weight: 400;
	border-radius: 0.375rem;
	direction: var(--site-language-direction);
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons01 .button {
	color: #FFFFFF;
	border: solid 1px rgba(255,255,255,0.169);
}

#buttons01 .button:hover {
	border-color: #FF8CA8 !important;
	color: #FF8CA8 !important;
}

@media (orientation: portrait) {
	.gallery-modal .inner img {
		max-width: 100vw;
	}
	
	.gallery-modal .nav {
		background-image: none;
		max-width: 35%;
		opacity: 1;
		width: 8rem;
	}
	
	.gallery-modal .nav:before {
		background-color: rgba(144,144,144,0.5);
		background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNjRweCIgaGVpZ2h0PSI2NHB4IiB2aWV3Qm94PSIwIDAgNjQgNjQiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5saW5lIHtzdHJva2U6ICNmZmY7c3Ryb2tlLXdpZHRoOiAzcHg7fTwvc3R5bGU+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: 13pt;
	}
}

@media (max-width: 1280px) {
	html {
		font-size: 13pt;
	}
	
	
	
	.gallery-modal .nav {
		opacity: 1;
	}
	
	.gallery-modal .close {
		opacity: 1;
	}
}

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

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

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	
	
	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 2.5rem;
		--spacing: 1.5rem;
	}
	
	#main > .inner > * > .full {
		margin-left: calc(-2rem);
		max-width: calc(100% + 4rem + 0.4725px);
		width: calc(100% + 4rem + 0.4725px);
	}
	
	#main > .inner > * > .full.screen {
		margin-left: -50vw;
	}
	
	#main > .inner > footer > .full:last-child {
		margin-bottom: -2.5rem !important;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -2.5rem !important;
	}
	
	#image01 .frame {
		width: 8rem;
	}
	
	#text01 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 2.5em;
		line-height: 1.375;
	}
	
	#text04 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.625;
	}
	
	#text05 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 1.375;
	}
	
	#text02 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.625;
	}
	
	#text07 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 1.375;
	}
	
	#text08 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.625;
	}
	
	#text03 {
		letter-spacing: 0.284375rem;
		width: calc(100% + 0.284375rem);
		font-size: 1.5em;
		line-height: 1.375;
	}
	
	#text06 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 1.625;
	}
	
	#footer {
		margin-top: 0rem !important;
	}
	
	.gallery-modal .close {
		background-position: top 0.5rem right 0.5rem;
	}
	
	#gallery01:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#gallery01:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#gallery01 ul li img {
		max-height: none;
		display: block;
		height: auto;
		width: 100%;
	}
	
	#gallery01 .inner {
		width: 100%;
	}
	
	#gallery01 ul {
		flex-direction: column;
	}
	
	#gallery01 ul li {
		width: 100%;
	}
	
	#gallery01 ul li .thumbnail {
		display: block;
	}
	
	#gallery01 ul li .frame {
		display: block;
	}
	
	#icons01 {
		font-size: 1.5em;
		gap: 1.5rem;
	}
	
	#icons01:not(:first-child) {
		margin-top: 1.6875rem !important;
	}
	
	#icons01:not(:last-child) {
		margin-bottom: 1.6875rem !important;
	}
	
	#links01 {
		gap: 0rem;
		font-size: 1em;
	}
	
	#links01 li:before {
		left: -0.5rem;
	}
	
	#divider01:not(:first-child) {
		margin-top: 0.5rem !important;
	}
	
	#divider01:not(:last-child) {
		margin-bottom: 0.5rem !important;
	}
	
	#divider01:before {
		width: 7rem;
	}
	
	#buttons01:not(:first-child) {
		margin-top: 1.5rem !important;
	}
	
	#buttons01:not(:last-child) {
		margin-bottom: 1.5rem !important;
	}
	
	#buttons01 li a {
		letter-spacing: 0.225rem;
		padding-left: calc(0.225rem + 0.5rem);
		font-size: 0.625em;
	}
}

@media (max-width: 480px) {
	#main > .inner {
		--spacing: 1.3125rem;
	}
	
	#buttons01 li a {
		width: 8.125rem;
	}
}

@media (max-width: 360px) {
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 1.875rem;
		--spacing: 1.125rem;
	}
	
	#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 > footer > .full:last-child {
		margin-bottom: -1.875rem !important;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -1.875rem !important;
	}
	
	#text01 {
		font-size: 2em;
	}
	
	#text04 {
		font-size: 1em;
	}
	
	#text05 {
		font-size: 1.5em;
	}
	
	#text02 {
		font-size: 1em;
	}
	
	#text07 {
		font-size: 1.5em;
	}
	
	#text08 {
		font-size: 1em;
	}
	
	#text03 {
		font-size: 1.5em;
	}
	
	#text06 {
		font-size: 1em;
	}
	
	#gallery01 ul {
		gap: 0.75rem;
	}
	
	#icons01 {
		gap: 1.125rem;
	}
	
	#links01 {
		gap: 0rem;
		font-size: 1em;
	}
	
	#links01 li:before {
		left: -0.5rem;
	}
	
	#buttons01 {
		gap: 0.75rem;
	}
}