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 {
	min-width: 320px;
	min-height: var(--viewport-height);
	line-height: 1.0;
	word-wrap: break-word;
	overflow-x: hidden;
}

u {
	text-decoration: underline;
}

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

em {
	font-style: italic;
}

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

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

a {
	-moz-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	-webkit-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	-ms-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	color: inherit;
	text-decoration: underline;
}

s {
	text-decoration: line-through;
}

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

body:after {
	display: block;
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1B2024;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	-moz-transition: opacity 0.5s ease-in-out 0s, visibility 0.5s 0s;
	-webkit-transition: opacity 0.5s ease-in-out 0s, visibility 0.5s 0s;
	-ms-transition: opacity 0.5s ease-in-out 0s, visibility 0.5s 0s;
	transition: opacity 0.5s ease-in-out 0s, visibility 0.5s 0s;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

body.is-loading:after {
	opacity: 1;
	visibility: visible;
}

:root {
	--site-language-direction: ltr;
	--site-language-alignment: left;
	--viewport-height: 100vh;
	--background-height: 100vh;
}

html {
	font-size: 15pt;
}

#wrapper {
	-webkit-overflow-scrolling: touch;
	display: flex;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	min-height: var(--viewport-height);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

#main {
	display: flex;
	position: relative;
	max-width: 100%;
	z-index: 1;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	-moz-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	text-align: left;
	-moz-transition: opacity 0.75s ease 0s,-moz-transform 0.75s ease 0s;
	-webkit-transition: opacity 0.75s ease 0s,-webkit-transform 0.75s ease 0s;
	-ms-transition: opacity 0.75s ease 0s,-ms-transform 0.75s ease 0s;
	transition: opacity 0.75s ease 0s,transform 0.75s ease 0s;
	-moz-transform: perspective(1000px) rotateY(0deg);
	-webkit-transform: perspective(1000px) rotateY(0deg);
	-ms-transform: perspective(1000px) rotateY(0deg);
	transform: perspective(1000px) rotateY(0deg);
	-moz-transform-origin: 50% 50%;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

#main > .inner {
	position: relative;
	z-index: 1;
	border-radius: inherit;
	padding: 3rem 3rem;
	max-width: 100%;
	width: 30rem;
}

#main > .inner > * {
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}

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

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

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

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

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

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

body.is-loading #main {
	opacity: 0;
	-moz-transform: perspective(1000px) rotateY(15deg);
	-webkit-transform: perspective(1000px) rotateY(15deg);
	-ms-transform: perspective(1000px) rotateY(15deg);
	transform: perspective(1000px) rotateY(15deg);
}

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

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

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

h1 br + br, h2 br + br, h3 br + br, p br + br {
	display: block;
	content: ' ';
}

h1 .li, h2 .li, h3 .li, p .li {
	display: list-item;
	padding-left: 0.5em;
	margin: 0.75em 0 0 1em;
}

#text04 br + br {
	margin-top: 0.675rem;
}

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

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

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

#text04 a {
	text-decoration: underline;
}

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

#text04 {
	font-family: 'lucky-typewriter';
}

#text01 br + br {
	margin-top: 1.2rem;
}

#text01 {
	text-align: left;
	color: rgba(0,0,0,0.871);
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 1em;
	line-height: 2;
	font-weight: 400;
}

#text01 a {
	text-decoration: none;
}

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

#text01 mark {
	color: #FFFFFF;
	background-color: transparent;
}

#text01 {
	font-family: 'lucky-typewriter';
}

.buttons {
	cursor: default;
	padding: 0;
	letter-spacing: 0;
}

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

#buttons03 {
	width: calc(100% + 1.25rem);
	margin-left: -0.625rem;
}

#buttons03 li {
	display: inline-block;
	vertical-align: middle;
	max-width: calc(100% - 1.25rem);
	margin: 0.625rem;
}

#buttons03 li a {
	display: flex;
	width: 30rem;
	height: 3.75rem;
	line-height: 3.75rem;
	vertical-align: middle;
	padding: 0 1.875rem;
	font-size: 1.125em;
	font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-weight: 400;
	border-radius: 2rem;
	-moz-justify-content: flex-end;
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
	-moz-flex-direction: row-reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

#buttons03 li a svg {
	display: block;
	-moz-transition: fill 0.25s ease;
	-webkit-transition: fill 0.25s ease;
	-ms-transition: fill 0.25s ease;
	transition: fill 0.25s ease;
	width: 1.625em;
	min-width: 16px;
	height: 100%;
	fill: rgba(0,0,0,0.871);
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	-moz-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	margin-right: calc(-0.125em + 0rem);
	margin-left: 0.5em;
}

#buttons03 li a .label {
	direction: var(--site-language-direction);
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	width: 100%;
	text-align: left;
}

#buttons03 .button {
	background-color: rgba(255,255,255,0.749);
	color: rgba(0,0,0,0.871);
	background-image: linear-gradient(45deg, rgba(255,138,0,0.361) 0%, rgba(255,255,255,0.004) 75%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#buttons03 .button:hover {
	background-color: #F2B10A !important;
}

#buttons03 li a {
	font-family: 'lucky-typewriter';
}

.icons {
	cursor: default;
	padding: 0;
	letter-spacing: 0;
}

.icons li {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 1;
}

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

.icons li a svg {
	display: block;
	position: relative;
	-moz-transition: fill 0.25s ease;
	-webkit-transition: fill 0.25s ease;
	-ms-transition: fill 0.25s ease;
	transition: fill 0.25s ease;
}

.icons li a + svg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	-moz-pointer-events: none;
	-webkit-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
	-moz-transition: fill 0.25s ease, stroke 0.25s ease;
	-webkit-transition: fill 0.25s ease, stroke 0.25s ease;
	-ms-transition: fill 0.25s ease, stroke 0.25s ease;
	transition: fill 0.25s ease, stroke 0.25s ease;
}

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

#icons01 {
	font-size: 0.875em;
	width: calc(100% + 1.375rem);
	margin-left: -0.6875rem;
}

#icons01 li {
	margin: 0.6875rem;
}

#icons01 li a {
	border-radius: 100%;
	width: 2em;
	height: 2em;
}

#icons01 li a svg {
	width: 60%;
	height: 60%;
}

#icons01 a {
	background-color: rgba(255,255,255,0.749);
	background-image: linear-gradient(45deg, rgba(255,138,0,0.361) 0%, rgba(255,255,255,0.004) 100%);
	background-position: 0% 0%;
	background-repeat: repeat;
	background-size: cover;
}

#icons01 a svg {
	fill: rgba(0,0,0,0.871);
}

#icons01 a:hover {
	background-color: #F2B10A !important;
}

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

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

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

@media (max-width: 736px) {
	html {
		font-size: 11pt;
	}
	
	#main > .inner {
		padding: 3rem 2rem;
	}
	
	#main > .inner > * {
		margin-top: 1.25rem;
		margin-bottom: 1.25rem;
	}
	
	#main > .inner > .full {
		margin-left: calc(-2rem);
		width: calc(100% + 4rem + 0.4725px);
		max-width: calc(100% + 4rem + 0.4725px);
	}
	
	#main > .inner > .full:first-child {
		margin-top: -3rem !important;
	}
	
	#main > .inner > .full:last-child {
		margin-bottom: -3rem !important;
	}
	
	#main > .inner > .full.screen {
		margin-left: -50vw;
	}
	
	#text04:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#text04:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#text04 {
		letter-spacing: -0.021875rem;
		width: 100%;
		font-size: 2.75em;
		line-height: 1.125;
	}
	
	#text01 {
		letter-spacing: 0rem;
		width: 100%;
		font-size: 1em;
		line-height: 2;
	}
	
	#buttons03 li a {
		font-size: 1.125em;
		letter-spacing: 0rem;
	}
	
	#buttons03 li a svg {
		width: 1.625em;
	}
	
	#icons01 {
		font-size: 0.875em;
		width: calc(100% + 1.375rem);
		margin-left: -0.6875rem;
	}
	
	#icons01 li {
		margin: 0.6875rem;
	}
}

@media (max-width: 480px) {
	#main > .inner > * {
		margin-top: 1.09375rem;
		margin-bottom: 1.09375rem;
	}
	
	#buttons03 {
		margin-left: 0;
		width: 100%;
		padding: 0.625rem 0;
	}
	
	#buttons03 li {
		max-width: 100%;
		display: block;
		margin: 1.25rem 0;
	}
	
	#buttons03 li:first-child {
		margin-top: 0;
	}
	
	#buttons03 li:last-child {
		margin-bottom: 0;
	}
	
	#buttons03 li a {
		display: inline-flex;
		width: 100%;
		max-width: 32rem;
	}
}

@media (max-width: 360px) {
	#main > .inner {
		padding: 2.25rem 1.5rem;
	}
	
	#main > .inner > * {
		margin-top: 0.9375rem;
		margin-bottom: 0.9375rem;
	}
	
	#main > .inner > .full {
		margin-left: calc(-1.5rem);
		width: calc(100% + 3rem + 0.4725px);
		max-width: calc(100% + 3rem + 0.4725px);
	}
	
	#main > .inner > .full:first-child {
		margin-top: -2.25rem !important;
	}
	
	#main > .inner > .full:last-child {
		margin-bottom: -2.25rem !important;
	}
	
	#main > .inner > .full.screen {
		margin-left: -50vw;
	}
	
	#text04 {
		font-size: 2em;
	}
	
	#text01 {
		font-size: 1em;
	}
	
	#buttons03 {
		width: 100%;
		margin-left: 0;
		padding: 0.46875rem 0;
	}
	
	#buttons03 li {
		max-width: 100%;
		margin: 0.9375rem 0;
	}
	
	#icons01 {
		width: calc(100% + 1.03125rem);
		margin-left: -0.515625rem;
	}
	
	#icons01 li {
		margin: 0.515625rem;
	}
}