@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

@font-face {
    font-family: 'Road Rage';
    src: url('fonts/Road_Rage.otf');
}

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

img, video {
    background-image: url('logo-anim.svg'); 
    background-repeat: no-repeat; 
    background-size: 30% 30%; 
    background-position: center;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

body {
	-webkit-text-size-adjust: none
}

mark {
	background-color: transparent;
	color: inherit
}

input::-moz-focus-inner {
	border: 0;
	padding: 0
}

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

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

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

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

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

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

/* --------------------------- /////////// II. PAGE PRELOADER /////////// --------------------------- */
/* -Loading Screen- */
#loader-wrapper {
    background: rgba(0, 0, 0, 0.9);
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}
.loader-logo {
    position: relative;
    color: #FFF;
    top: 43%;
    letter-spacing: 5px;
}
#progress {
    width: 0;
    height: 2px;
    background: #fff;
    position: relative;
    top: 50%;
}

.loader-text {
    position: relative;
    color: #FFF;
    top: 48%;
}

/* -Loading Screen Animation- */
.loaded {
    -moz-transform: translate3d(0px, -100%, 0px);
    -webkit-transform: translate3d(0px, -100%, 0px);
    -o-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    transform: translate3d(0px, -100%, 0px);
    -webkit-transition: all 0.35s ease; 
    transition: all 0.35s ease;
}

.neon, .neon-min {
  font-family: 'Road Rage';
  color: #00ff9f;
  font-weight: 400;
  letter-spacing: 8px;
  
}

.neon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 5px;
}

.neon-loader {
    color: #fff;
    font-size: 6vw;
    top: -webkit-calc(50% - 3.5vw);
    top: -moz-calc(50% - 3.5vw);
    top: calc(50% - 3.5vw);
}

@media(min-width: 1081px) {
    .neon {
      text-shadow: 1px 0px 4px #00ff9f, 2px 0px 4px #00ff9f, 3px 0px 4px #00ff9f, 2px 0px 3px #D42CCA, 2px 3px 15px #D42CCA, 2px 0px 15px, 5px 0px 60px, 20px 0vw 100px #D42CCA, 40px 0vw 100px #D42CCA;
    }
    
    .neon-loader {
        text-shadow: 1px 0px 4px #00ff9f, 2px 0px 4px #00ff9f, 3px 0px 4px #00ff9f, 2px 0px 3px #D42CCA, 2px 3px 15px #D42CCA, 2px 0px 15px, 5px 0px 60px, 20px 0vw 100px #D42CCA, 40px 0vw 100px #D42CCA;
    }
}

.splash-wrap {
	margin-top: 3rem;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.splash-wrap.scroll {
	max-width: 30vw;
	overflow: hidden;
}

.splash {
	font-size: 1rem;
	color: #fff;
	font-family: 'Roboto', serif;
	font-weight: 800;
	text-shadow: none;
	letter-spacing: 5px;
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
}

.splash.scroll {
	animation: marquee 6s linear infinite;
}

.splash p {
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.flicker-slow{
  animation: flicker 3s linear infinite;
}

.flicker-fast{
  animation: flicker 1s linear infinite;
}

@keyframes flicker {
	0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: .99;
		
	}
	20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
		opacity: 0.4;
	}
}

.spaced {
    padding: 0 2em 0 2em;
}

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

#main {
	--alignment: left;
	--flex-alignment: flex-start;
	--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 1.25s ease 0s, transform 1.25s ease 0s;
}

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

#main>.inner>* {
	margin-top: var(--spacing);
	margin-bottom: var(--spacing);
	transition: opacity 1s ease-in-out 0.25s;
}

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

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

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

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

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

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

body.is-loading #main {
	opacity: 0;
	transform: translateY(1.6875rem);
}

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

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

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

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

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

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

#text10 {
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	font-family: 'Roboto', serif;
	letter-spacing: 0.275rem;
	width: calc(100% + 0.275rem);
	font-size: 0.875em;
	line-height: 1.375;
	font-weight: 400;
	margin-bottom: 1.75rem !important;
}

#text10 a {
	text-decoration: underline;
}

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

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

#text11 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Roboto', serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 4%;
	line-height: 1.75;
	font-weight: 400;
	margin-top: 1em;
	margin-left: -1em;
	white-space: nowrap;
}

#text11 a {
	text-decoration: underline;
}

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

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

#text03 {
	text-transform: uppercase;
	color: #FFFFFF;
	font-family: 'Roboto', serif;
	letter-spacing: 0.6rem;
	width: calc(100% + 0.6rem);
	font-size: 1.625em;
	line-height: 1.25;
	font-weight: 400;
}

#text03 a {
	text-decoration: underline;
}

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

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

#text09 {
	color: #FFFFFF;
	font-family: 'Roboto', serif;
	letter-spacing: 0.075rem;
	width: calc(100% + 0.075rem);
	font-size: 1.125em;
	line-height: 1.375;
	font-weight: 400;
}

#text09 a {
	text-decoration: underline;
}

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

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

#text04 {
	color: rgba(255, 255, 255, 1);
	font-family: 'Roboto', serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 0.75em;
	line-height: 1.75;
	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 {
	color: rgba(255, 255, 255, 1);
	font-family: 'Roboto', serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 400;
	font-style:italic;
	font-size:15px;
	margin-top: 0.35rem;
	text-align: center;
}

#text05 a {
	text-decoration: underline;
}

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

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

#handles {
    padding-bottom: 2rem;
}

#handles h3 {
    display: none;
    position: absolute;
}

.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;
}
#image02, #image02 img, #image02 video {
	border-radius: 100%;
	transition: none;
	position: relative;
    width: 4.35rem;
	height: 4.35rem;
}
#image03:not(:first-child) {
	margin-top: 0.625rem !important;
}

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

/* --------------------------- /////////// FRAME ANIMATIONS /////////// --------------------------- */
#image03 .frame {
	width: 8.75rem;
	border-radius: 100%;
	transition: none;
	position: relative;
	top: 0.5rem;
}

/* --------------------------- /////////// ANIMATION A /////////// --------------------------- */
#image03 .frame.plus-a {
	width: 9.75rem;
	height: 9.75rem;
	border-radius: 100%;
	margin-bottom: 2rem;
	opacity: 0.85;
	
	animation: anim-a 10s infinite;
	box-shadow: 0 -2vmin 4vmin yellow inset, 0 1vmin 4vmin gold inset, 0 -2vmin 7vmin orange inset;
	content: "";
	filter: drop-shadow(0 0 3vmin gold) drop-shadow(0 3vmin 4vmin hotpink);
}

@keyframes anim-a {
	0%,
	100% {
		filter: drop-shadow(0 0 3vmin gold) drop-shadow(0 3vmin 4vmin hotpink);
		box-shadow: 0 -2vmin 4vmin yellow inset, 0 -4vmin 4vmin gold inset, 0 -2vmin 7vmin orange inset;
	}
	30% {
		filter: drop-shadow(0 0 3vmin hotpink) drop-shadow(0 3vmin 4vmin gold);
		box-shadow: 0 -4vmin 8vmin hotpink inset, -1vmin -2vmin 6vmin yellow inset, -1vmin -2vmin 4vmin gold inset, 1vmin 4vmin 8vmin orange inset;
	}

	50% {
		drop-shadow(0 0 3vmin gold) drop-shadow(0 3vmin 4vmin yellow) drop-shadow(2vmin -2vmin 15vmin orange) drop-shadow(0 0 7vmin hotpink);
		box-shadow: 0 4vmin 16vmin hotpink inset, 0 2vmin 5vmin yellow inset, 0 4vmin 4vmin gold inset, 0 6vmin 8vmin orange inset;
	}
	70% {
		drop-shadow(0 0 3vmin yellow) drop-shadow(0 3vmin 4vmin orange) drop-shadow(2vmin -2vmin 15vmin gold) drop-shadow(0 0 7vmin hotpink);
		box-shadow: 1vmin 1vmin 8vmin yellow inset, 2vmin -1vmin 4vmin gold inset, -1vmin -1vmin 16vmin orange inset;
	}
}

/* --------------------------- /////////// ANIMATION B /////////// --------------------------- */
#image03 .frame.plus-b {
	width: 9.75rem;
	height: 9.75rem;
	border-radius: 100%;
	margin-bottom: 2rem;
	opacity: 0.85;
	content: '';
	z-index: -1;
	background-size: 100% 100%;
	background-image: conic-gradient(transparent 20%, #213, #38f, #f03);
	background-position: center center;
	background-repeat: no-repeat;
	animation: anim-b 3s linear infinite;
}

#image03 .frame.plus-b span {
	animation: anim-b 3s linear infinite;
	animation-direction: reverse;
}
	
@keyframes anim-b {
	from { 
		transform: rotate(0deg); 
	} to {
		transform: rotate(360deg);
	}
}

/* --------------------------- /////////// ANIMATION C /////////// --------------------------- */
#image03 .frame.plus-c {
	width: 9.75rem;
	height: 9.75rem;
	border-radius: 100%;
	opacity: 0.85;

	border: 2.5px dashed gold;
	animation: anim-b 10s linear infinite;
}

#image03 .frame.plus-c span {
	animation: anim-b 10s linear infinite;
	animation-direction: reverse;
}

/* --------------------------- /////////// ANIMATION D /////////// --------------------------- */
#image03 .frame.plus-d {
	width: 9.75rem;
	height: 9.75rem;
	border-radius: 100%;
	margin-bottom: 2rem;
	opacity: 0.85;
}

#image03 .frame.plus-d:before, #image03 .frame.plus-d:after {
	content: '';
	position: absolute;
	left: -2px;
	top: -2px;
	background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000);
	background-size: 400%;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	z-index: -1;
	animation: anim-d 20s linear infinite;
}

@keyframes anim-d {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: 100% 0;
	}
	100% {
		background-position: 0 0;
	}
}

/* --------------------------- /////////// ANIMATION E /////////// --------------------------- */
#image03 .frame.plus-e {
	width: 9.75rem;
	height: 9.75rem;
	border-radius: 100%;
	opacity: 0.85;
	
	position: relative;
	overflow: hidden;
}

#image03 .frame.plus-e::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	border-radius: 100%;
	background: repeating-linear-gradient(
			transparent 0%,
			transparent 7.5px,
			gold 7.5px,
			gold 15px,
			transparent 15px,
			transparent 22.5px,
			gold 22.5px,
			gold 30px);
	transform: translateX(-20%) translateY(-20%) rotate(-45deg);
	animation: anim-e 20s linear infinite;
}

@keyframes anim-e {
	from {
		background-position: 0;
	}

	to {
		background-position: 0 450px;
	}
}

/* --------------------------- /////////// END FRAME ANIMATIONS /////////// --------------------------- */

#image03 .frame img,video {
	transition: none;
}

#image03 .frame, #image03 video {
	width:8.75rem;
	height:8.75rem;
}

#image04 {
    max-height:90%; 
    max-width:90%; 
    min-height:10rem; 
    min-width:10rem;
    height:auto; 
    width:auto; 
    margin-top:2.5rem; 
    margin-bottom:2.5rem;
    display:inline; 
}

#image05 {
    max-height:45%; 
    max-width:45%; 
    min-height:10rem; 
    min-width:10rem;
    height:auto; 
    width:auto; 
    margin-top:2.5rem; 
    margin-bottom:2.5rem;
    display:inline; 
}


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

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

#divider04:before {
	width: 25rem;
	border-top: solid 2px #FFFFFF;
	height: 2px;
	margin-top: -1px;
}

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

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

#divider05:before {
	width: 32rem;
	border-top: solid 1px rgba(255, 255, 255, 0.18);
	height: 1px;
	margin-top: -0.5px;
}

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

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

#divider06:before {
	width: 32rem;
	border-top: solid 1px rgba(255, 255, 255, 0.18);
	height: 1px;
	margin-top: -0.5px;
}

.icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: var(--flex-alignment);
	letter-spacing: 0;
	padding: 0;
	fill: white;
    /*padding-bottom: 2rem;*/
}

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

.char {
    margin: 0 0.75em 0 0.75em;
}

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

.icons li a:hover img {
    filter: invert(82%) sepia(26%) saturate(4415%) hue-rotate(99deg) brightness(102%) contrast(101%);
    animation: flicker 3s linear infinite;
}

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

.icons li a+img:hover {
    filter: invert(82%) sepia(26%) saturate(4415%) hue-rotate(99deg) brightness(102%) contrast(101%);
}

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

#icons01 {
	font-size: 1.375em;
	gap: 1.175rem;
	fill: white;
}

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

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

#icons01 li {
	margin: 0 0.1rem 0 0.1rem;
}

#icons01 li a {
	border-radius: 100%;
	color: white;
	height: 2em;
	width: 2em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
	padding: inherit;
}

#icons01 li a .collapsible {
	align-items: center;
	display: flex;
	justify-content: center;
}

#icons01 li a svg {
	height: 60%;
	width: 60%;
	transition: fill 0.25s ease;
}
#icons01 li #text05 {
        max-width: 3em;
        display: flex;
        justify-content: center;
}

#icons01 a svg {
	fill: #FFFFFF;
}

#icons01 a {
	border: solid 2px #FFFFFF;
	color: white;
	text-decoration:none;
}

#icons01 a:hover {
	border-color: #00FF9F !important;
	color: #00FF9F !important;
    animation: flicker 2s linear infinite;
}

.container {
	position: relative;
}

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

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

#icons02 {
	font-size: 1.15em;
	gap: 0.375rem;
	padding-bottom: 2em;
}

#icons02 img {
    width:0.9rem;
    height:0.9rem;
}

#icons02 li a {
	border-radius: 100%;
	height: 2em;
	width: 2em;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#icons02 li a .collapsible {
	align-items: center;
	display: flex;
	justify-content: center;
}

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

#icons02 a svg {
	fill: #FFFFFF;
}

#icons02 a {
	border: solid 2px #FFFFFF;
	color: white;
	text-decoration:none;
}

#icons02 a:hover {
	border-color: #00FF9F !important;
	color: #00FF9F !important;
}

#icons02 a:hover .iconImg {
	border-color: #00FF9F !important;
	color: #00FF9F !important;
}

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

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

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

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

#columns03 {
	--alignment: center;
	--flex-alignment: center;
}

#columns03>.wrapper {
	display: inline-block;
	width: 38rem;
	background-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#columns01>.wrapper {
	display: inline-block;
	width: 38rem;
	background-color: transparent;
}

#columns01>.wrapper>.inner {
	--gutters: 2.5rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	--spacing: 1rem;
	padding: var(--padding-vertical) var(--padding-horizontal);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#columns04 {
	--alignment: center;
	--flex-alignment: center;
}

#columns04>.wrapper {
	display: inline-block;
	width: 38rem;
	background-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 0.5rem;
	flex-direction: row;
	flex-wrap: wrap;
}

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

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

#buttons01 li a {
	display: flex;
	width: 10rem;
	height: 1.5rem;
	line-height: 1.5rem;
	padding: 0 0.75rem;
	vertical-align: middle;
	font-variant: small-caps;
	font-family: 'Roboto', serif;
	letter-spacing: 0.075rem;
	padding-left: calc(0.075rem + 0.75rem);
	font-size: 0.875em;
	font-weight: 400;
	border-radius: 0.75rem;
	flex-direction: row-reverse;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons01 li a svg {
	display: block;
	fill: #FFFFFF;
	height: 100%;
	min-width: 16px;
	width: 0.75em;
	margin-left: 0.5em;
	margin-right: calc(-0.125em + 0.075rem);
	transition: fill 0.25s ease;
}

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

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

#buttons01 .n01 svg {
	fill: #FFFFFF;
}

#buttons01 .n01 {
	background-color: #111;
	color: #FFFFFF;
}

#buttons01 .n02 {
	background-color: rgba(0,255,159,0.75);
	color: #111;
}

#buttons01 .n01:hover {
	background-color: rgba(0,255,159,0.75) !important;
	color: #111;
}

#buttons01 .n02:hover {
	background-color: #111;
	color: #FFFFFF;
}

.icc-credits {
	display: block;
	opacity: 1 !important;
	position: relative;
	transition-delay: 0s !important;
}

.icc-credits span {
	border-radius: 24px;
	cursor: pointer;
	display: inline-block;
	font-family: Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 0;
	line-height: 1;
	position: relative;
	text-decoration: none;
	width: auto;
}

.icc-credits span a {
	display: inline-block;
	padding: 0.5em 0.375em;
	position: relative;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
	z-index: 1;
}

.icc-credits span a:before {
	content: '( ';
	opacity: 1;
	transition: opacity 0.25s ease;
}

.icc-credits span a:after {
	content: ' )';
	opacity: 1;
	transition: opacity 0.25s ease;
}

.icc-credits span::after {
	background-image: linear-gradient(30deg, #A464A1 15%, #3B5DAD 85%);
	border-radius: inherit;
	box-shadow: 0 0.25em 1.25em 0 rgba(0, 0, 0, 0.25);
	content: '';
	display: block;
	height: calc(100% + 2px);
	left: -1px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: -1px;
	transition: opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	width: calc(100% + 2px);
}

.icc-credits span:hover {
	text-transform: none !important;
}

.icc-credits span:hover a {
	color: #ffffff !important;
	transform: scale(1.1) translateY(-0.05rem);
}

.icc-credits span:hover a:before {
	opacity: 0;
}

.icc-credits span:hover a:after {
	opacity: 0;
}

.icc-credits span:hover::after {
	opacity: 1;
	transform: scale(1.1) translateY(-0.05rem);
}

#credits span {
	color: rgba(255, 255, 255, 0.498);
	margin-top: 1.5rem !important;
}

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

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

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

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

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

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

	#main>.inner {
	--padding-horizontal: 1.875rem;
	--padding-vertical: 3.125rem;
	--spacing: 1.5rem;
	}

	#text10 {
	letter-spacing: 0.240625rem;
	width: calc(100% + 0.240625rem);
	font-size: 0.875em;
	line-height: 1.375;
	}

	#text11 {
	letter-spacing: 0.021875rem;
	width: calc(100% + 0.021875rem);
	font-size: 1em;
	line-height: 1.75;
	}

	#text03 {
	letter-spacing: 0.525rem;
	width: calc(100% + 0.525rem);
	font-size: 1.625em;
	line-height: 1.25;
	}

	#text09 {
	letter-spacing: 0.065625rem;
	width: calc(100% + 0.065625rem);
	font-size: 1.125em;
	line-height: 1.375;
	}

	#text04 {
	letter-spacing: 0.021875rem;
	width: calc(100% + 0.021875rem);
	font-size: 0.75em;
	line-height: 1.75;
	}

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

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

	#image03 .frame {
	width: 8.75rem;
	}

	#divider04:before {
	width: 25rem;
	}

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

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

	#divider05:before {
	width: 32rem;
	}

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

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

	#divider06:before {
	width: 32rem;
	}

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

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

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

	#columns03 {
	--alignment: center;
	--flex-alignment: center;
	}

	#columns03>.wrapper>.inner {
	--gutters: 2.25rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	--spacing: 1rem;
	}

	#columns03.columns>.wrapper>.inner {
	flex-direction: column !important;
	flex-wrap: nowrap !important;
	}

	#columns03.columns>.wrapper>.inner>span {
	height: 0;
	margin-top: calc(var(--gutters) * -1);
	pointer-events: none;
	visibility: hidden;
	}

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

	#columns03.columns>.wrapper>.inner>* {
	padding: calc(var(--gutters) * 0.5) 0 !important;
	}

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

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

	#columns03.columns>.wrapper>.inner>div:first-of-type>.full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}

	#columns03.columns>.wrapper>.inner>div:last-of-type>.full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}

	#columns03.columns>.wrapper>.inner>div>.full:first-child {
	margin-top: calc(var(--gutters) * -0.5) !important;
	}

	#columns03.columns>.wrapper>.inner>div>.full:last-child {
	margin-bottom: calc(var(--gutters) * -0.5) !important;
	}

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

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

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

	#columns03.columns>.wrapper>.inner>div:last-of-type,
	#columns03.columns>.wrapper>.inner>div:last-of-type>.full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	}

	#columns03.columns>.wrapper>.inner>div:first-of-type,
	#columns03.columns>.wrapper>.inner>div:first-of-type>.full:last-child {
	border-bottom-left-radius: 0 !important;
	}

	#columns03.columns>.wrapper>.inner>div:last-of-type,
	#columns03.columns>.wrapper>.inner>div:last-of-type>.full:first-child {
	border-top-right-radius: 0 !important;
	}

	#columns03.columns>.wrapper>.inner>.full>.full:first-child:last-child {
	height: auto;
	}

	#columns03.columns>.wrapper>.inner>.full>.full:first-child:last-child>* {
	height: auto;
	position: relative;
	width: auto;
	}

	#columns01 {
	--alignment: center;
	--flex-alignment: center;
	}

	#columns01>.wrapper>.inner {
	--gutters: 1.875rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	--spacing: 1rem;
	}

	#columns01.columns>.wrapper>.inner {
	flex-direction: column-reverse !important;
	flex-wrap: nowrap !important;
	}

	#columns01.columns>.wrapper>.inner>span {
	height: 0;
	margin-top: calc(var(--padding-vertical) * -2);
	pointer-events: none;
	visibility: hidden;
	}

	#columns01.columns>.wrapper>.inner>*:first-child {
	margin-left: 0 !important;
	padding-bottom: 0 !important;
	}

	#columns01.columns>.wrapper>.inner>* {
	padding: calc(var(--gutters) * 0.5) 0 !important;
	}

	#columns01.columns>.wrapper>.inner>*:last-child {
	padding-top: 0 !important;
	}

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

	#columns01.columns>.wrapper>.inner>div:first-of-type>.full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}

	#columns01.columns>.wrapper>.inner>div:last-of-type>.full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}

	#columns01.columns>.wrapper>.inner>div>.full:first-child {
	margin-top: calc(var(--gutters) * -0.5) !important;
	}

	#columns01.columns>.wrapper>.inner>div>.full:last-child {
	margin-bottom: calc(var(--gutters) * -0.5) !important;
	}

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

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

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

	#columns01.columns>.wrapper>.inner>div:first-of-type,
	#columns01.columns>.wrapper>.inner>div:first-of-type>.full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	}

	#columns01.columns>.wrapper>.inner>div:last-of-type,
	#columns01.columns>.wrapper>.inner>div:last-of-type>.full:last-child {
	border-bottom-right-radius: 0 !important;
	}

	#columns01.columns>.wrapper>.inner>div:first-of-type,
	#columns01.columns>.wrapper>.inner>div:first-of-type>.full:first-child {
	border-top-left-radius: 0 !important;
	}

	#columns01.columns>.wrapper>.inner>.full>.full:first-child:last-child {
	height: auto;
	}

	#columns01.columns>.wrapper>.inner>.full>.full:first-child:last-child>* {
	height: auto;
	position: relative;
	width: auto;
	}

	#columns04 {
	--alignment: center;
	--flex-alignment: center;
	}

	#columns04>.wrapper>.inner {
	--gutters: 2.25rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	--spacing: 1rem;
	}

	#columns04.columns>.wrapper>.inner {
	flex-direction: column !important;
	flex-wrap: nowrap !important;
	}

	#columns04.columns>.wrapper>.inner>span {
	height: 0;
	margin-top: calc(var(--gutters) * -1);
	pointer-events: none;
	visibility: hidden;
	}

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

	#columns04.columns>.wrapper>.inner>* {
	padding: calc(var(--gutters) * 0.5) 0 !important;
	}

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

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

	#columns04.columns>.wrapper>.inner>div:first-of-type>.full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}

	#columns04.columns>.wrapper>.inner>div:last-of-type>.full {
	margin-left: calc(var(--padding-horizontal) * -1);
	width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
	}

	#columns04.columns>.wrapper>.inner>div>.full:first-child {
	margin-top: calc(var(--gutters) * -0.5) !important;
	}

	#columns04.columns>.wrapper>.inner>div>.full:last-child {
	margin-bottom: calc(var(--gutters) * -0.5) !important;
	}

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

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

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

	#columns04.columns>.wrapper>.inner>div:last-of-type,
	#columns04.columns>.wrapper>.inner>div:last-of-type>.full:last-child {
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
	}

	#columns04.columns>.wrapper>.inner>div:first-of-type,
	#columns04.columns>.wrapper>.inner>div:first-of-type>.full:last-child {
	border-bottom-left-radius: 0 !important;
	}

	#columns04.columns>.wrapper>.inner>div:last-of-type,
	#columns04.columns>.wrapper>.inner>div:last-of-type>.full:first-child {
	border-top-right-radius: 0 !important;
	}

	#columns04.columns>.wrapper>.inner>.full>.full:first-child:last-child {
	height: auto;
	}

	#columns04.columns>.wrapper>.inner>.full>.full:first-child:last-child>* {
	height: auto;
	position: relative;
	width: auto;
	}

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

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

	#buttons01 li a {
	letter-spacing: 0.075rem;
	padding-left: calc(0.075rem + 0.75rem);
	font-size: 0.875em;
	}

	#buttons01 li a svg {
	width: 0.75em;
	}
}

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

	#columns03>.wrapper>.inner {
	--spacing: 0.875rem;
	}

	#columns01>.wrapper>.inner {
	--spacing: 0.875rem;
	}

	#columns04>.wrapper>.inner {
	--spacing: 0.875rem;
	}

	#buttons01 {
	flex-direction: column;
	flex-wrap: nowrap;
	}

	#buttons01 li a {
	display: inline-flex;
	max-width: 32rem;
	width: 100%;
	}
}

@media (max-width: 360px) {
	#main>.inner {
	--padding-horizontal: 1.40625rem;
	--padding-vertical: 2.34375rem;
	--spacing: 1.125rem;
	}

	#text10 {
	font-size: 0.875em;
	}

	#text11 {
	font-size: 1em;
	}

	#text03 {
	font-size: 1.5em;
	}

	#text09 {
	font-size: 1.125em;
	}

	#text04 {
	font-size: 0.75em;
	}

	#icons01 {
	gap: 0.65625rem;
	}

	#columns03>.wrapper>.inner {
	--gutters: 2.25rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	--spacing: 0.75rem;
	}

	#columns01>.wrapper>.inner {
	--gutters: 1.875rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	--spacing: 0.75rem;
	}

	#columns04>.wrapper>.inner {
	--gutters: 2.25rem;
	--padding-horizontal: 0rem;
	--padding-vertical: 0rem;
	--spacing: 0.75rem;
	}

	#buttons01 {
	gap: 0.375rem;
	}
}

/* --------------------------- /////////// III. PROGRESS TRACKER /////////// --------------------------- */

.progress-tracker {
  display: flex;
  margin: 60px auto;
  padding: 0;
  list-style: none;
}

.progress-step {
  flex: 1 1 0%;
  margin: 0;
  padding: 0;
  min-width: 24px;
}
.progress-step:last-child {
  flex-grow: 0;
}
.progress-step:last-child .progress-marker::after {
  display: none;
}

.progress-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.progress-marker {
  display: block;
  position: relative;
}
.progress-marker::before {
  content: attr(data-text);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  width: 24px;
  height: 24px;
  padding-bottom: 2px;
  border-radius: 50%;
  transition: background-color, border-color;
  transition-duration: 0.3s;
}
.progress-marker::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -10;
  top: 10px;
  right: -12px;
  width: 100%;
  height: 4px;
  transition: background-color 0.3s, background-position 0.3s;
}

.progress-text {
  display: block;
  /*padding: 8px 8px;*/
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-title {
  margin-top: 0;
}

.progress-step .progress-marker {
  color: #fff;
}
.progress-step .progress-marker::before {
  background-color: #b6b6b6;
}
.progress-step .progress-marker::after {
  background-color: #b6b6b6;
}
.progress-step .progress-text {
  color: #333;
}
.progress-step.is-active .progress-marker::before {
  background-color: #2196F3;
}
.progress-step.is-complete .progress-marker::before, .progress-step.is-progress .progress-marker::before {
  background-color: #1976D2;
}
.progress-step.is-complete .progress-marker::after, .progress-step.is-progress .progress-marker::after {
  background-color: #868686;
}
.progress-step.is-progress-10 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 10%, #b6b6b6 10%);
}
.progress-step.is-progress-20 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 20%, #b6b6b6 20%);
}
.progress-step.is-progress-30 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 30%, #b6b6b6 30%);
}
.progress-step.is-progress-40 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 40%, #b6b6b6 40%);
}
.progress-step.is-progress-50 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 50%, #b6b6b6 50%);
}
.progress-step.is-progress-60 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 60%, #b6b6b6 60%);
}
.progress-step.is-progress-70 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 70%, #b6b6b6 70%);
}
.progress-step.is-progress-80 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 80%, #b6b6b6 80%);
}
.progress-step.is-progress-90 .progress-marker::after {
  background-image: linear-gradient(to right, #868686 90%, #b6b6b6 90%);
}
.progress-step:hover .progress-marker::before {
  background-color: #56ADF5;
}
.progress-tracker--text .progress-step:last-child, .progress-tracker--center .progress-step:last-child, .progress-tracker--right .progress-step:last-child {
  flex-grow: 1;
}

.progress-tracker--center {
  text-align: center;
}
.progress-tracker--center .progress-marker::before, .progress-tracker--center .progress-text--dotted::before {
  margin-left: auto;
  margin-right: auto;
}
.progress-tracker--center .progress-marker::after {
  right: -50%;
}

.progress-tracker--right {
  text-align: right;
}
.progress-tracker--right .progress-marker::before, .progress-tracker--right .progress-text--dotted::before {
  margin-left: auto;
}
.progress-tracker--right .progress-marker::after {
  right: calc(-100% + 12px);
}

.progress-tracker--spaced .progress-marker::after {
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-right: 20px;
}

.progress-tracker--border {
  padding: 4px;
  border: 2px solid #333;
  border-radius: 32px;
}

.progress-tracker--theme-lime .progress-step .progress-marker {
  color: #fff;
}
.progress-tracker--theme-lime .progress-step .progress-marker::before {
  background-color: #2e2e2e;
}
.progress-tracker--theme-lime .progress-step .progress-marker::after {
  background-color: rgba(255, 255, 255, 0.18);
}
.progress-tracker--theme-lime .progress-step .progress-text {
  color: #00FF9F;
}
.progress-tracker--theme-lime .progress-step.is-active .progress-marker::before {
  background-color: #00FF9F;
  animation: flashanim 1.5s linear infinite;
}
@keyframes flashanim{
   0%{
	 background-color: #2e2e2e;
   }
   50%{
	 background-color: #00FF9F;
   }
   100%{
	 background-color: #2e2e2e;
   }
 }
 
.progress-tracker--theme-lime .progress-step.is-complete .progress-marker::before {
	/* Complete dots */
  background-color: #fff;
}
.progress-tracker--theme-lime .progress-step.is-complete .progress-marker::after {
	/* Complete lines */
  background-color: rgba(255, 255, 255, 0.5);
}
.progress-tracker--theme-lime .progress-step:hover .progress-marker::before {
  background-color: #00FF9F;
}
.progress-text--dotted::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 6px -2px;
  background-size: 12px 18px;
  background-image: repeating-radial-gradient(circle at center 6px, #b6b6b6, #b6b6b6 5px, rgba(182, 182, 182, 0.5) 5.5px, rgba(182, 182, 182, 0.01) 6px, transparent 100%);
}

.progress-text--dotted-1::before {
  height: 12px;
}

.progress-text--dotted-2::before {
  height: 30px;
}

.progress-text--dotted-3::before {
  height: 48px;
}

.progress-text--dotted-4::before {
  height: 66px;
}

.progress-text--dotted-5::before {
  height: 84px;
}

.progress-text--dotted-6::before {
  height: 102px;
}

.progress-text--dotted-7::before {
  height: 120px;
}

.progress-text--dotted-8::before {
  height: 138px;
}

.progress-text--dotted-9::before {
  height: 156px;
}

.progress-text--dotted-10::before {
  height: 174px;
}

.progress-text--dotted-11::before {
  height: 192px;
}

.progress-text--dotted-12::before {
  height: 210px;
}

.progress-tracker--text-top .progress-text {
  height: 100%;
}
.progress-tracker--text-top .progress-marker {
  top: -24px;
}

.progress-tracker--text-inline {
  overflow: hidden;
}
.progress-tracker--text-inline .progress-step, .progress-tracker--text-inline .progress-marker {
  display: flex;
  align-items: center;
}
.progress-tracker--text-inline .progress-marker {
  flex-grow: 1;
}
.progress-tracker--text-inline .progress-marker::after {
  top: auto;
}
.progress-tracker--text-inline .progress-text {
  position: relative;
  z-index: 30;
  max-width: 70%;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
}
.progress-tracker--text-inline .progress-marker .progress-text {
  display: inline-block;
}
.progress-tracker--text-inline .progress-title {
  margin: 0;
}

.progress-tracker--square .progress-marker::before {
  border-radius: 0;
}
.progress-tracker--square .progress-marker::after {
  top: auto;
  bottom: 0;
}

@media {
  .progress-tracker-wrapper {
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }
  .progress-tracker-wrapper .progress-step {
    min-width: 35%;
    scroll-snap-align: start;
  }
}
.progress-tracker--vertical {
  flex-direction: column;
}
.progress-tracker--vertical .progress-step {
  display: flex;
  flex: 1 1 auto;
}
.progress-tracker--vertical.progress-tracker--right .progress-step {
  flex-direction: row-reverse;
}
.progress-tracker--vertical .progress-marker::after {
  right: auto;
  top: 12px;
  left: 10px;
  width: 4px;
  height: 100%;
}
.progress-tracker--vertical .progress-text {
  padding: 0 12px 24px 12px;
}

@keyframes scale-up {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
.anim-ripple .progress-link::before, .anim-ripple-large .progress-link::before, .anim-ripple-splash .progress-link::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
}
.anim-ripple .progress-link:not(:active)::before, .anim-ripple-large .progress-link:not(:active)::before, .anim-ripple-splash .progress-link:not(:active)::before {
  animation: scale-up 0.3s ease-out;
}
.anim-ripple .progress-link:focus::before, .anim-ripple-large .progress-link:focus::before, .anim-ripple-splash .progress-link:focus::before {
  visibility: visible;
}

.anim-ripple.progress-tracker--center .progress-link::before, .anim-ripple.progress-tracker--center .progress-link::after, .progress-tracker--center .anim-ripple .progress-link::before, .progress-tracker--center .anim-ripple .progress-link::after, .anim-ripple-large.progress-tracker--center .progress-link::before, .anim-ripple-large.progress-tracker--center .progress-link::after, .progress-tracker--center .anim-ripple-large .progress-link::before, .progress-tracker--center .anim-ripple-large .progress-link::after, .anim-ripple-splash.progress-tracker--center .progress-link::before, .anim-ripple-splash.progress-tracker--center .progress-link::after, .progress-tracker--center .anim-ripple-splash .progress-link::before, .progress-tracker--center .anim-ripple-splash .progress-link::after, .anim-ripple-double.progress-tracker--center .progress-link::before, .anim-ripple-double.progress-tracker--center .progress-link::after, .progress-tracker--center .anim-ripple-double .progress-link::before, .progress-tracker--center .anim-ripple-double .progress-link::after {
  left: 50%;
}
.anim-ripple.progress-tracker--right .progress-link::before, .anim-ripple.progress-tracker--right .progress-link::after, .progress-tracker--right .anim-ripple .progress-link::before, .progress-tracker--right .anim-ripple .progress-link::after, .anim-ripple-large.progress-tracker--right .progress-link::before, .anim-ripple-large.progress-tracker--right .progress-link::after, .progress-tracker--right .anim-ripple-large .progress-link::before, .progress-tracker--right .anim-ripple-large .progress-link::after, .anim-ripple-splash.progress-tracker--right .progress-link::before, .anim-ripple-splash.progress-tracker--right .progress-link::after, .progress-tracker--right .anim-ripple-splash .progress-link::before, .progress-tracker--right .anim-ripple-splash .progress-link::after, .anim-ripple-double.progress-tracker--right .progress-link::before, .anim-ripple-double.progress-tracker--right .progress-link::after, .progress-tracker--right .anim-ripple-double .progress-link::before, .progress-tracker--right .anim-ripple-double .progress-link::after {
  left: calc(100% - 12px);
}

.anim-ripple-splash .progress-link::before {
  width: 48px;
  height: 48px;
  box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.35);
}

.anim-ripple-double .progress-link::before, .anim-ripple-double .progress-link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
  background: none;
  border: 3px solid rgba(0, 0, 0, 0.3);
}
.anim-ripple-double .progress-link:not(:active)::before, .anim-ripple-double .progress-link:not(:active)::after {
  animation: scale-up 0.3s ease-out 0s;
}
.anim-ripple-double .progress-link:not(:active)::after {
  animation-delay: 0.15s;
}
.anim-ripple-double .progress-link:focus::before, .anim-ripple-double .progress-link:focus::after {
  visibility: visible;
}

.anim--large .progress-link::before, .anim--large .progress-link::after {
  width: 48px;
  height: 48px;
}

.anim--path .progress-marker::after {
  background-image: linear-gradient(to right, #b6b6b6 50%, #868686 50%);
  background-size: 200% 100%;
  background-position: 0% 100%;
  transition: background-position 0.3s ease-out;
}
.progress-step.is-complete .anim--path .progress-marker::after {
  background-position: -100% 100%;
}
.anim--path .progress-step.is-complete .progress-marker::after {
  background-position: -100% 100%;
}

[dir=rtl] .progress-marker::after {
  right: auto;
  left: -12px;
}
[dir=rtl] .progress-tracker--center .progress-marker::after {
  left: -50%;
}