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

body:after {
	background-color: #AB95A5;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	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 {
	--text-clr: white;
	--hidden-text-clr: rgb(170, 170, 170);
	--border-radius: 0.45rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: var(--bg-clr);
	color: var(--text-clr);
	--background-height: 100vh;
	--site-language-alignment: left;
	--site-language-direction: ltr;
	--site-language-flex-alignment: flex-start;
	--site-language-indent-left: 1;
	--site-language-indent-right: 0;
	--viewport-height: 100vh;
}

#animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

/* Start of Discord Widget */

#avatar {
    border-radius: 50%;
	border: 1px solid black;
}


.display {
    min-width: 20vw;
    padding: 1.75em;
    background: var(--fg-clr);
    border-radius: var(--border-radius);
}

.userinfo {
    background-image:
        linear-gradient(
            rgb(0, 0, 0, 0.3),
            rgb(0, 0, 0, 0.3)
        ),
        var(--backdrop-url);
    background-size: cover;
    background-position: 50% 50%;
    border-radius: var(--border-radius);
    padding: 1em 1em;

    display: grid;
    grid-template-columns: min-content 1fr max-content;
    gap: 0 12px;
    align-items: center;
    grid-template-areas:
        "avatar display view"
        "avatar username view"
        "avatar status view";
		text-align: left;
}

#avatar {
    grid-area: avatar;;
}
#username {
    color: var(--hidden-text-clr);
    grid-area: username;
}
#display {
    grid-area: display;
}
#status {
    grid-area: status;
}
#viewuser {
    grid-area: view;
}

.activity {
    display: grid;
    grid-template-columns: min-content 1fr;
    grid-template-rows: min-content min-content min-content;
    gap: 0px 12px;
    align-items: center;
    grid-template-areas: 
        "images name"
        "images details"
        "images state";
		text-align: left;
}

.act-name {
    font-weight: 700;
    grid-area: name;
}
.act-details {
    grid-area: details;
}
.act-state {
    grid-area: state;
}

.act-images {
    position: relative;
    grid-area: images;
}

.largeimage {
    border-radius: var(--border-radius);
}

.smallimage {
    position: absolute;
    bottom: -4px;
    right: -4px;

    border-radius: 50%;
    border: 4px solid var(--fg-clr);
}

.activities {
    display: grid;
    gap: 16px 0;
}

.return {
    position: absolute;
    top: 8px;
    left: 8px;
}

a {
    text-decoration: none;
}

.button {
    cursor: pointer;
    padding: 4px 8px;

    border: transparent;
    border-radius: var(--border-radius);
    color: var(--text-clr);
    background: var(--accent-clr);
}

.spotify-activity {
    /* Styling for the Spotify container */
    margin-top: 20px; /* Space from other activities */
}

.spotify-image {
    width: 50px; /* Example size */
    height: 50px;
    /* Additional styling as needed */
}

.spotify-song, .spotify-artist {
    /* Styling for song title and artist */
    /* Example: */
    font-size: 14px;
    color: var(--text-clr);
}

/* Define keyframes for the gradient animation */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    100% { background-position: -300% 50%; }
}

.gradient-link {
    /* More natural and smoother rainbow gradient */
    background: linear-gradient(90deg, 
                                rgb(255, 0, 0),     /* Red */
                                rgb(255, 127, 0),   /* Orange */
                                rgb(255, 255, 0),   /* Yellow */
                                rgb(127, 255, 0),   /* Light Green */
                                rgb(0, 255, 0),     /* Green */
                                rgb(0, 127, 255),   /* Light Blue */
                                rgb(0, 0, 255),     /* Blue */
                                rgb(75, 0, 130),    /* Indigo */
                                rgb(148, 0, 211),   /* Violet */
                                rgb(75, 0, 130),    /* Indigo */
                                rgb(0, 0, 255),     /* Blue */
                                rgb(0, 127, 255),   /* Light Blue */
                                rgb(0, 255, 0),     /* Green */
                                rgb(127, 255, 0),   /* Light Green */
                                rgb(255, 255, 0),   /* Yellow */
                                rgb(255, 127, 0),   /* Orange */
                                rgb(255, 0, 0));    /* Red */
    background-size: 2000% 2000%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    transition: text-decoration-color 0.3s ease, text-decoration-thickness 0.3s, text-decoration-style 0.3s ease;

    animation: gradient-animation 100s linear infinite;
}

.gradient-link:hover {
    text-decoration: underline; /* Add an underline on hover */
    text-decoration-color: rgba(255, 255, 255, 0.3); /* Use a semi-transparent white for the underline */
    text-decoration-thickness: 1px; /* Set the thickness of the underline */
    
}

/* End of Discord Widget */

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

.typing-container {
    text-align: left; /* Centers the typing animation horizontally */
    margin-left: auto;
    margin-right: auto;
}

.typing-animation {
    display: inline-block; /* Allows the text to be wrapped and centered */
    font-family: 'Courier New', Courier, monospace; /* Monospace font for coding look */
    color: white; /* Text color */
    font-size: 16px;
    white-space: nowrap;
    position: relative;
    padding: 10px;
    margin: 0 auto;
    max-width: 50%;
    text-transform: initial;
}

.cursor {
    display: inline-block;
    vertical-align: bottom; /* Align with the bottom of the text */
    background-color: #DAFDBA;
    width: 14px; /* Width of the cursor */
    height: 2px; /* Height of the cursor */
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    to { visibility: hidden; }
}

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

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

s {
	text-decoration: line-through;
}

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

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

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

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

#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;
	padding: 3.5rem 3.5rem 3.5rem 3.5rem;
}

#main {
	--alignment: left;
	--flex-alignment: flex-start;
	--indent-left: 1;
	--indent-right: 0;
	--border-radius-tl: 0.5rem;
	--border-radius-tr: 0.5rem;
	--border-radius-br: 0.5rem;
	--border-radius-bl: 0.5rem;
	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;
	background-color: rgba(163,163,163,0.271);
	box-shadow: 0rem 3rem 3.125rem 0.5rem rgba(44,42,54,0.451);
	border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
	border-top: solid 1px #BABABA;
	border-right: solid 1px #BABABA;
	border-bottom: solid 1px #BABABA;
	border-left: solid 1px #BABABA;
	transition: opacity 1.25s ease 0s,transform 1.25s ease 0s;
}

#main > .inner {
	--border-radius-tl: calc(0.5rem - 1px);
	--border-radius-tr: calc(0.5rem - 1px);
	--border-radius-br: calc(0.5rem - 1px);
	--border-radius-bl: calc(0.5rem - 1px);
	--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 > 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(-3rem);
	max-width: calc(100% + 6rem + 0.4725px);
	width: calc(100% + 6rem + 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: -3.75rem !important;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}

#main > .inner > .active > .full:first-child {
	margin-top: -3.75rem !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;
	transform: translateY(1.6875rem);
}

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

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

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

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

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

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

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

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

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

hr {
	align-items: center;
	border: 0;
	display: flex;
	justify-content: var(--flex-alignment);
	min-height: 1rem;
	padding: 0;
	position: relative;
	width: 100%;
}

hr:before {
	content: '';
}

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

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

#divider04:before {
	width: 3rem;
	background-color: #FFFFFF;
	height: 2px;
	border-radius: 0px;
}

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

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

#divider05:before {
	width: 32rem;
	background-color: rgba(255,255,255,0.18);
	height: 1px;
	border-radius: 0px;
}

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

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

#divider07 {
	justify-content: center;
}

#divider07:before {
	width: 3rem;
	background-color: #FFFFFF;
	height: 2px;
	border-radius: 0px;
}

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

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

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

#text09 {
	color: #FFFFFF;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1em;
	line-height: 1.75;
	font-weight: 200;
}

#text09 a {
	text-decoration: underline;
}

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

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

#text12 {
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.375rem;
	width: calc(100% + 0.375rem);
	font-size: 1.25em;
	line-height: 1.375;
	font-weight: 400;
}

#text12 a {
	text-decoration: underline;
}

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

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

#text13 {
	text-align: center;
	color: #FFFFFF;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1em;
	line-height: 1.75;
	font-weight: 200;
}

#text13 a {
	text-decoration: underline;
}

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

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

#text01 {
	color: #FFFFFF;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1em;
	line-height: 1.75;
	font-weight: 200;
}

#text01 a {
	text-decoration: underline;
}

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

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

#text02 {
	color: #FFFFFF;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 1em;
	line-height: 1.75;
	font-weight: 200;
}

#text02 a {
	text-decoration: underline;
}

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

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

#text04 {
	color: rgba(255,255,255,0.349);
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 200;
}

#text04 a {
	text-decoration: underline;
}

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

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

.container {
	position: relative;
}

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

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

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

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

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

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

#columns03 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
}

#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 !important;
	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 !important;
	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%;
}

#columns04 {
	--alignment: center;
	--flex-alignment: center;
	--indent-left: 1;
	--indent-right: 1;
}

#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 !important;
	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 !important;
	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%;
}

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

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

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

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

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

#buttons03 li a {
	display: inline-block;
	width: auto;
	height: 2rem;
	line-height: calc(2rem - 2px);
	padding: 0 1rem;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.3rem;
	padding-left: calc(0.3rem + 1rem);
	font-size: 0.5em;
	font-weight: 300;
	border-radius: 2rem;
	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;
}

#buttons03 .button {
	color: #FFFFFF;
	border: solid 1px #FFFFFF;
}

#buttons03 .button:hover {
	border-color: #FFCCB0 !important;
	color: #FFCCB0 !important;
}

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

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

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

th {
	font-weight: bolder;
	text-align: var(--site-language-alignment);
}

#table01 {
	color: #FFFFFF;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: 0.025rem;
	font-size: 1em;
	line-height: 1.75;
	font-weight: 200;
	text-shadow: 0.088rem 0.088rem 0.125rem rgba(0,0,0,0.6);
}

#table01 a {
	text-decoration: underline;
}

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

#table01 .table-inner {
	width: 30rem;
}

#table01 thead {
	border-bottom: solid 2px #FFFFFF;
}

#table01 tbody tr {
	border-top: solid 1px #FFFFFF;
}

#table01 tbody tr:first-child {
	border-top: 0;
}

#table01 th, #table01 td {
	padding: 0.5rem 0.6875rem;
}

#table01 th:first-child, #table01 td:first-child {
	padding-left: 0;
}

#table01 th:last-child, #table01 td:last-child {
	padding-right: 0;
}

#table02 {
	color: #FFFFFF;
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: 0.025rem;
	font-size: 1em;
	line-height: 1.75;
	font-weight: 200;
	text-shadow: 0.088rem 0.088rem 0.125rem rgba(0,0,0,0.6);
}

#table02 a {
	text-decoration: underline;
}

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

#table02 .table-inner {
	width: 30rem;
}

#table02 thead {
	border-bottom: solid 2px #FFFFFF;
}

#table02 tbody tr {
	border-top: solid 1px #FFFFFF;
}

#table02 tbody tr:first-child {
	border-top: 0;
}

#table02 th, #table02 td {
	padding: 0.5rem 0.6875rem;
}

#table02 th:first-child, #table02 td:first-child {
	padding-left: 0;
}

#table02 th:last-child, #table02 td:last-child {
	padding-right: 0;
}

.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.25em;
	gap: 1.25rem;
}

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

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

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

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

#icons01 a svg {
	fill: #FFFFFF;
}

#icons01 a {
	border: solid 1px #FFFFFF;
}

#icons01 a:hover {
	border-color: #FFCCB0 !important;
}

#icons01 a:hover svg {
	fill: #FFCCB0 !important;
}

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

#icons01 li a:hover {
	transform: scale(1.1125);
}

#icons01 li a:hover + svg {
	transform: scale(1.1125);
}

#icons01 .n01:hover {
	border-color: #2A475E !important;
}

#icons01 .n01:hover svg {
	fill: #2A475E !important;
}

#icons01 .n03:hover {
	border-color: #00FF19 !important;
}

#icons01 .n03:hover svg {
	fill: #00FF19 !important;
}

#icons01 .n04:hover {
	border-color: #6E6E6E !important;
}

#icons01 .n04:hover svg {
	fill: #6E6E6E !important;
}

#icons01 .n05:hover {
	border-color: #000000 !important;
}

#icons01 .n05:hover svg {
	fill: #000000 !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;
	}
	
	
	
	#wrapper {
		padding: 3.5rem 3.5rem 3.5rem 3.5rem;
	}
	
	#main > .inner {
		--padding-horizontal: 2rem;
		--padding-vertical: 3.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: -3.5rem !important;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -3.5rem !important;
	}
	
	#divider04:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider04:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider04:before {
		width: 3rem;
	}
	
	#divider05:not(:first-child) {
		margin-top: 1.75rem !important;
	}
	
	#divider05:not(:last-child) {
		margin-bottom: 1.75rem !important;
	}
	
	#divider05:before {
		width: 32rem;
	}
	
	#divider07:not(:first-child) {
		margin-top: 0.25rem !important;
	}
	
	#divider07:not(:last-child) {
		margin-bottom: 0.25rem !important;
	}
	
	#divider07:before {
		width: 3rem;
	}
	
	#text09 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1em;
		line-height: 1.75;
	}
	
	#text12 {
		letter-spacing: 0.328125rem;
		width: calc(100% + 0.328125rem);
		font-size: 1.25em;
		line-height: 1.375;
	}
	
	#text13 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1em;
		line-height: 1.75;
	}
	
	#text01 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1em;
		line-height: 1.75;
	}
	
	#text02 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 1em;
		line-height: 1.75;
	}
	
	#text04 {
		letter-spacing: 0.021875rem;
		width: calc(100% + 0.021875rem);
		font-size: 0.75em;
		line-height: 1.75;
	}
	
	#columns03 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
	}
	
	#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;
	}
	
	#columns04 {
		--alignment: center;
		--flex-alignment: center;
		--indent-left: 1;
		--indent-right: 1;
	}
	
	#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;
	}
	
	#footer {
		margin-top: 1.3125rem !important;
	}
	
	#buttons03 {
		gap: 0.75rem;
	}
	
	#buttons03:not(:first-child) {
		margin-top: 1.40625rem !important;
	}
	
	#buttons03:not(:last-child) {
		margin-bottom: 1.40625rem !important;
	}
	
	#buttons03 li a {
		letter-spacing: 0.3rem;
		padding-left: calc(0.3rem + 1rem);
		font-size: 0.5em;
	}
	
	#table01 {
		letter-spacing: 0.021875rem;
		font-size: 1em;
		line-height: 1.75;
	}
	
	#table01 th, #table01 td {
		padding: 0.5rem 0.6875rem;
	}
	
	#table02 {
		letter-spacing: 0.021875rem;
		font-size: 1em;
		line-height: 1.75;
	}
	
	#table02 th, #table02 td {
		padding: 0.5rem 0.6875rem;
	}
	
	#icons01 {
		font-size: 1.25em;
		gap: 1.25rem;
	}
	
	#icons01:not(:first-child) {
		margin-top: 1.21875rem !important;
	}
	
	#icons01:not(:last-child) {
		margin-bottom: 1.21875rem !important;
	}
}

@media (max-width: 480px) {
	#wrapper {
		padding: 2.25rem 2.25rem 2.25rem 2.25rem;
	}
	
	#main > .inner {
		--spacing: 1.3125rem;
	}
	
	#columns03 > .wrapper > .inner {
		--spacing: 0.875rem;
	}
	
	#columns04 > .wrapper > .inner {
		--spacing: 0.875rem;
	}
}

@media (max-width: 360px) {
	#wrapper {
		padding: 2.0625rem 2.0625rem 2.0625rem 2.0625rem;
	}
	
	#main > .inner {
		--padding-horizontal: 1.5rem;
		--padding-vertical: 2.625rem;
		--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: -2.625rem !important;
	}
	
	#main > .inner > .active > .full:first-child {
		margin-top: -2.625rem !important;
	}
	
	#text09 {
		font-size: 1em;
	}
	
	#text12 {
		font-size: 1.25em;
	}
	
	#text13 {
		font-size: 1em;
	}
	
	#text01 {
		font-size: 1em;
	}
	
	#text02 {
		font-size: 1em;
	}
	
	#text04 {
		font-size: 0.75em;
	}
	
	#columns03 > .wrapper > .inner {
		--gutters: 2.25rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 0.75rem;
	}
	
	#columns04 > .wrapper > .inner {
		--gutters: 2.25rem;
		--padding-horizontal: 0rem;
		--padding-vertical: 0rem;
		--spacing: 0.75rem;
	}
	
	#buttons03 {
		gap: 0.5625rem;
	}
	
	#table01 {
		font-size: 1em;
	}
	
	#table02 {
		font-size: 1em;
	}
	
	#icons01 {
		gap: 0.9375rem;
	}
}